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

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

mercurial