test/tools/doclint/html/TextNotAllowed.java

Mon, 23 Sep 2013 17:27:38 +0400

author
kizune
date
Mon, 23 Sep 2013 17:27:38 +0400
changeset 2048
809a50f24d6f
parent 1507
967052c425a1
child 2525
2eb010b6cb22
permissions
-rw-r--r--

7154966: CRs found to be in Fixed state with no test and no noreg- keyword.
Reviewed-by: ksrini

jjg@1455 1 /*
jjg@1455 2 * @test /nodynamiccopyright/
jjg@1465 3 * @bug 8004832
jjg@1465 4 * @summary Add new doclint package
jjg@1455 5 * @library ..
jjg@1455 6 * @build DocLintTester
jjg@1455 7 * @run main DocLintTester -ref TextNotAllowed.out TextNotAllowed.java
jjg@1455 8 */
jjg@1455 9
jjg@1455 10 /**
jjg@1507 11 * <dl> abc <dt> term </dt> def <dd> description </dd> ghi </dl>
jjg@1507 12 * <ol> abc <li> item </li> def <li> item </li> ghi </ol>
jjg@1507 13 * <ul> abc <li> item </li> def <li> item </li> ghi </ul>
jjg@1507 14 *
jjg@1455 15 * <table summary=description> abc </table>
jjg@1507 16 * <table summary=description> <thead> abc </thead> </table>
jjg@1455 17 * <table summary=description> <tbody> abc </tbody> </table>
jjg@1507 18 * <table summary=description> <tfoot> abc </tfoot> </table>
jjg@1455 19 * <table summary=description> <tr> abc </tr> </table>
jjg@1455 20 *
jjg@1507 21 * <dl> &amp; <dt> term </dt> &lt; <dd> description </dd> &gt; </dl>
jjg@1507 22 * <ol> &amp; <li> item </li> &lt; <li> item </li> &gt; </ol>
jjg@1507 23 * <ul> &amp; <li> item </li> &lt; <li> item </li> &gt; </ul>
jjg@1455 24 *
jjg@1507 25 * <table summary=description> &amp; </table>
jjg@1507 26 * <table summary=description> <thead> &amp; </thead> </table>
jjg@1507 27 * <table summary=description> <tbody> &amp; </tbody> </table>
jjg@1507 28 * <table summary=description> <tfoot> &amp; </tfoot> </table>
jjg@1507 29 * <table summary=description> <tr> &amp; </tr> </table>
jjg@1507 30 *
jjg@1455 31 */
jjg@1455 32 public class TextNotAllowed { }

mercurial