Package org.apache.tapestry.dom

Examples of org.apache.tapestry.dom.Document.newRootElement()


    @Test
    public void existing_head_used_if_present() throws Exception
    {
        Document document = new Document(new XMLMarkupModel());

        document.newRootElement("html").element("head").comment("existing head").getParent()
                .element("body").text("body content");

        DocumentHeadBuilder builder = new DocumentHeadBuilderImpl();

        builder.addStylesheetLink("foo.css", null);
View Full Code Here


    @Test
    public void duplicate_script_links_ignored() throws Exception
    {
        Document document = new Document();

        document.newRootElement("html").element("body").element("p").text(
                "Ready to be updated with scripts.");

        DocumentHeadBuilder builder = new DocumentHeadBuilderImpl();

        for (int i = 0; i < 3; i++)
View Full Code Here

    @Test
    public void add_script() throws Exception
    {
        Document document = new Document();

        document.newRootElement("html").element("body").element("p").text(
                "Ready to be updated with scripts.");

        DocumentHeadBuilder builder = new DocumentHeadBuilderImpl();

        builder.addScript("doSomething();");
View Full Code Here

    @Test
    public void no_body_element() throws Exception
    {
        Document document = new Document(new XMLMarkupModel());

        document.newRootElement("html").element("notbody").element("p").text(
                "Ready to be updated with scripts.");

        DocumentHeadBuilder builder = new DocumentHeadBuilderImpl();

        builder.addScriptLink("foo.js");
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.