test/langtools/jdk/javadoc/doclet/testTitleInHref/TestTitleInHref.java
changeset 48295 c79d31ba84b9
parent 47216 71c04702a3d5
child 48654 36f58bd6269f
equal deleted inserted replaced
48294:2608240fc957 48295:c79d31ba84b9
    21  * questions.
    21  * questions.
    22  */
    22  */
    23 
    23 
    24 /*
    24 /*
    25  * @test
    25  * @test
    26  * @bug 4714257
    26  * @bug 4714257 8164407
    27  * @summary Test to make sure that the title attribute shows up in links.
    27  * @summary Test to make sure that the title attribute shows up in links.
    28  * @author jamieh
    28  * @author jamieh
    29  * @library ../lib
    29  * @library ../lib
    30  * @modules jdk.javadoc/jdk.javadoc.internal.tool
    30  * @modules jdk.javadoc/jdk.javadoc.internal.tool
    31  * @build JavadocTester
    31  * @build JavadocTester
    53                 "<a href=\"../pkg/Class.html\" title=\"class in pkg\">",
    53                 "<a href=\"../pkg/Class.html\" title=\"class in pkg\">",
    54                 //Test to make sure that the title shows up in an interface link.
    54                 //Test to make sure that the title shows up in an interface link.
    55                 "<a href=\"../pkg/Interface.html\" title=\"interface in pkg\">",
    55                 "<a href=\"../pkg/Interface.html\" title=\"interface in pkg\">",
    56                 //Test to make sure that the title shows up in cross link shows up
    56                 //Test to make sure that the title shows up in cross link shows up
    57                 "<a href=\"" + uri + "/java/io/File.html?is-external=true\" "
    57                 "<a href=\"" + uri + "/java/io/File.html?is-external=true\" "
    58                 + "title=\"class or interface in java.io\">"
    58                 + "title=\"class or interface in java.io\" class=\"externalLink\">"
    59                 + "<code>This is a cross link to class File</code></a>");
    59                 + "<code>This is a cross link to class File</code></a>");
    60     }
    60     }
    61 }
    61 }