test/tools/doclint/HtmlAttrsTest.java

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

author
kizune
date
Mon, 23 Sep 2013 17:27:38 +0400
changeset 2048
809a50f24d6f
parent 1465
a22f23fb7abf
child 2110
b024fe427d24
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  * @build DocLintTester
     6  * @run main DocLintTester -Xmsgs:-html HtmlAttrsTest.java
     7  * @run main DocLintTester -ref HtmlAttrsTest.out HtmlAttrsTest.java
     8  */
    10 /** */
    11 public class HtmlAttrsTest {
    12     /**
    13      * <p xyz>
    14      */
    15     public void unknown() { }
    17     /**
    18      * <img name="x" alt="alt">
    19      */
    20     public void obsolete() { }
    22     /**
    23      * <font size="3"> text </font>
    24      */
    25     public void obsolete_use_css() { }
    26 }

mercurial