langtools/test/tools/doclint/html/TextNotAllowed.java
author duke
Wed, 05 Jul 2017 20:10:53 +0200
changeset 27979 cc2cf80c2f39
parent 15371 8f719dc43e1f
child 30730 d3ce7619db2c
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14952
d0022ae20516 8004832: Add new doclint package
jjg
parents:
diff changeset
     1
/*
d0022ae20516 8004832: Add new doclint package
jjg
parents:
diff changeset
     2
 * @test /nodynamiccopyright/
14962
19ffdfafbcd2 8005307: fix missing @bug tags
jjg
parents: 14952
diff changeset
     3
 * @bug 8004832
19ffdfafbcd2 8005307: fix missing @bug tags
jjg
parents: 14952
diff changeset
     4
 * @summary Add new doclint package
14952
d0022ae20516 8004832: Add new doclint package
jjg
parents:
diff changeset
     5
 * @library ..
d0022ae20516 8004832: Add new doclint package
jjg
parents:
diff changeset
     6
 * @build DocLintTester
d0022ae20516 8004832: Add new doclint package
jjg
parents:
diff changeset
     7
 * @run main DocLintTester -ref TextNotAllowed.out TextNotAllowed.java
d0022ae20516 8004832: Add new doclint package
jjg
parents:
diff changeset
     8
 */
d0022ae20516 8004832: Add new doclint package
jjg
parents:
diff changeset
     9
d0022ae20516 8004832: Add new doclint package
jjg
parents:
diff changeset
    10
/**
15371
8f719dc43e1f 8006251: doclint: incorrect position for diagnostic for illegal text in tags
jjg
parents: 14962
diff changeset
    11
 * <dl> abc <dt> term </dt> def <dd> description </dd> ghi </dl>
8f719dc43e1f 8006251: doclint: incorrect position for diagnostic for illegal text in tags
jjg
parents: 14962
diff changeset
    12
 * <ol> abc <li> item </li> def <li> item </li> ghi </ol>
8f719dc43e1f 8006251: doclint: incorrect position for diagnostic for illegal text in tags
jjg
parents: 14962
diff changeset
    13
 * <ul> abc <li> item </li> def <li> item </li> ghi </ul>
8f719dc43e1f 8006251: doclint: incorrect position for diagnostic for illegal text in tags
jjg
parents: 14962
diff changeset
    14
 *
14952
d0022ae20516 8004832: Add new doclint package
jjg
parents:
diff changeset
    15
 * <table summary=description> abc </table>
15371
8f719dc43e1f 8006251: doclint: incorrect position for diagnostic for illegal text in tags
jjg
parents: 14962
diff changeset
    16
 * <table summary=description> <thead> abc </thead> </table>
14952
d0022ae20516 8004832: Add new doclint package
jjg
parents:
diff changeset
    17
 * <table summary=description> <tbody> abc </tbody> </table>
15371
8f719dc43e1f 8006251: doclint: incorrect position for diagnostic for illegal text in tags
jjg
parents: 14962
diff changeset
    18
 * <table summary=description> <tfoot> abc </tfoot> </table>
14952
d0022ae20516 8004832: Add new doclint package
jjg
parents:
diff changeset
    19
 * <table summary=description> <tr> abc </tr> </table>
d0022ae20516 8004832: Add new doclint package
jjg
parents:
diff changeset
    20
 *
15371
8f719dc43e1f 8006251: doclint: incorrect position for diagnostic for illegal text in tags
jjg
parents: 14962
diff changeset
    21
 * <dl> &amp; <dt> term </dt> &lt; <dd> description </dd> &gt; </dl>
8f719dc43e1f 8006251: doclint: incorrect position for diagnostic for illegal text in tags
jjg
parents: 14962
diff changeset
    22
 * <ol> &amp; <li> item </li> &lt; <li> item </li> &gt; </ol>
8f719dc43e1f 8006251: doclint: incorrect position for diagnostic for illegal text in tags
jjg
parents: 14962
diff changeset
    23
 * <ul> &amp; <li> item </li> &lt; <li> item </li> &gt; </ul>
14952
d0022ae20516 8004832: Add new doclint package
jjg
parents:
diff changeset
    24
 *
15371
8f719dc43e1f 8006251: doclint: incorrect position for diagnostic for illegal text in tags
jjg
parents: 14962
diff changeset
    25
 * <table summary=description> &amp; </table>
8f719dc43e1f 8006251: doclint: incorrect position for diagnostic for illegal text in tags
jjg
parents: 14962
diff changeset
    26
 * <table summary=description> <thead> &amp; </thead> </table>
8f719dc43e1f 8006251: doclint: incorrect position for diagnostic for illegal text in tags
jjg
parents: 14962
diff changeset
    27
 * <table summary=description> <tbody> &amp; </tbody> </table>
8f719dc43e1f 8006251: doclint: incorrect position for diagnostic for illegal text in tags
jjg
parents: 14962
diff changeset
    28
 * <table summary=description> <tfoot> &amp; </tfoot> </table>
8f719dc43e1f 8006251: doclint: incorrect position for diagnostic for illegal text in tags
jjg
parents: 14962
diff changeset
    29
 * <table summary=description> <tr> &amp; </tr> </table>
8f719dc43e1f 8006251: doclint: incorrect position for diagnostic for illegal text in tags
jjg
parents: 14962
diff changeset
    30
 *
14952
d0022ae20516 8004832: Add new doclint package
jjg
parents:
diff changeset
    31
 */
d0022ae20516 8004832: Add new doclint package
jjg
parents:
diff changeset
    32
public class TextNotAllowed { }