langtools/test/tools/doclint/html/ListTagsTest.java
changeset 19658 2f5e90525d0b
parent 18001 e6193c14cc7e
child 30730 d3ce7619db2c
equal deleted inserted replaced
19657:48226ff07b84 19658:2f5e90525d0b
     1 /*
     1 /*
     2  * @test /nodynamiccopyright/
     2  * @test /nodynamiccopyright/
     3  * @bug 8006251 8013405
     3  * @bug 8006251 8013405 8022173
     4  * @summary test list tags
     4  * @summary test list tags
     5  * @library ..
     5  * @library ..
     6  * @build DocLintTester
     6  * @build DocLintTester
     7  * @run main DocLintTester -Xmsgs -ref ListTagsTest.out ListTagsTest.java
     7  * @run main DocLintTester -Xmsgs -ref ListTagsTest.out ListTagsTest.java
     8  */
     8  */
    13      *  <dl> <dt> abc <dd> def </dl>
    13      *  <dl> <dt> abc <dd> def </dl>
    14      *  <ol> <li> abc </ol>
    14      *  <ol> <li> abc </ol>
    15      *  <ol> <li value="1"> abc </ol>
    15      *  <ol> <li value="1"> abc </ol>
    16      *  <ol> <li value> bad </ol>
    16      *  <ol> <li value> bad </ol>
    17      *  <ol> <li value="a"> bad </ol>
    17      *  <ol> <li value="a"> bad </ol>
       
    18      *  <ol type="a"> <li> bad </ol>
    18      *  <ul> <li> abc </ul>
    19      *  <ul> <li> abc </ul>
    19      */
    20      */
    20     public void supportedTags() { }
    21     public void supportedTags() { }
    21 }
    22 }