test/tools/doclint/html/ListTagsTest.java

Wed, 27 Apr 2016 01:34:52 +0800

author
aoqi
date
Wed, 27 Apr 2016 01:34:52 +0800
changeset 0
959103a6100f
child 2525
2eb010b6cb22
permissions
-rw-r--r--

Initial load
http://hg.openjdk.java.net/jdk8u/jdk8u/langtools/
changeset: 2573:53ca196be1ae
tag: jdk8u25-b17

     1 /*
     2  * @test /nodynamiccopyright/
     3  * @bug 8006251 8013405 8022173
     4  * @summary test list tags
     5  * @library ..
     6  * @build DocLintTester
     7  * @run main DocLintTester -Xmsgs -ref ListTagsTest.out ListTagsTest.java
     8  */
    10 /** */
    11 public class ListTagsTest {
    12     /**
    13      *  <dl> <dt> abc <dd> def </dl>
    14      *  <ol> <li> abc </ol>
    15      *  <ol> <li value="1"> abc </ol>
    16      *  <ol> <li value> bad </ol>
    17      *  <ol> <li value="a"> bad </ol>
    18      *  <ol type="a"> <li> bad </ol>
    19      *  <ul> <li> abc </ul>
    20      */
    21     public void supportedTags() { }
    22 }

mercurial