test/tools/doclint/html/OtherTagsTest.java

Mon, 21 Jan 2013 10:07:37 -0800

author
jjg
date
Mon, 21 Jan 2013 10:07:37 -0800
changeset 1507
967052c425a1
child 1976
b77381d99056
permissions
-rw-r--r--

8006251: doclint: incorrect position for diagnostic for illegal text in tags
Reviewed-by: mcimadamore

jjg@1507 1 /*
jjg@1507 2 * @test /nodynamiccopyright/
jjg@1507 3 * @bug 8006251
jjg@1507 4 * @summary test other tags
jjg@1507 5 * @library ..
jjg@1507 6 * @build DocLintTester
jjg@1507 7 * @run main DocLintTester -Xmsgs -ref OtherTagsTest.out OtherTagsTest.java
jjg@1507 8 */
jjg@1507 9
jjg@1507 10 /** */
jjg@1507 11 public class OtherTagsTest {
jjg@1507 12 /**
jjg@1507 13 * <body> <p> abc </body>
jjg@1507 14 * <frame>
jjg@1507 15 * <frameset> </frameset>
jjg@1507 16 * <head> </head>
jjg@1507 17 * <link>
jjg@1507 18 * <meta>
jjg@1507 19 * <noframes> </noframes>
jjg@1507 20 * <script> </script>
jjg@1507 21 * <title> </title>
jjg@1507 22 */
jjg@1507 23 public void knownInvalidTags() { }
jjg@1507 24 }

mercurial