Examples of HorizontalRuleEmulatorWithBorderStylingOnHorizontalRule


Examples of com.volantis.mcs.protocols.hr.HorizontalRuleEmulatorWithBorderStylingOnHorizontalRule

        "<hr style='color: red; " +
                "border-top-style: solid; " +
                "border-top-width: 1px'/>";

        HorizontalRuleEmulator emulator =
                new HorizontalRuleEmulatorWithBorderStylingOnHorizontalRule();

        /**
         * Test no style applied
         */
        element = emulator.emulateHorizontalRule(new DOMOutputBuffer(),
                                            createHorizontalRuleAttributes(null));

        assertEquals("Incorrect Hr Emulation",noStyle_Expected,
                helper.render(element));

        /**
         * Test height style applied
         */
        element = emulator.emulateHorizontalRule(new DOMOutputBuffer(),
                                    createHorizontalRuleAttributes("height: 5px"));

        assertEquals("Incorrect Hr Emulation",heightStyle_Expected,
                helper.render(element));

        /**
         * Test colour style applied
         */
        element = emulator.emulateHorizontalRule(new DOMOutputBuffer(),
                                    createHorizontalRuleAttributes("color: red"));

        assertEquals("Incorrect Hr Emulation",colorStyle_Expected,
                helper.render(element));
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.