langtools/test/tools/doclint/HtmlTagsTest.java
changeset 15371 8f719dc43e1f
parent 14962 19ffdfafbcd2
child 30730 d3ce7619db2c
--- a/langtools/test/tools/doclint/HtmlTagsTest.java	Mon Jan 21 10:00:46 2013 -0800
+++ b/langtools/test/tools/doclint/HtmlTagsTest.java	Mon Jan 21 10:07:37 2013 -0800
@@ -54,5 +54,17 @@
      * <i> </b> </i>
      */
     public void end_unexpected() { }
+
+    /**
+     * <ul> text <li> ... </li> </ul>
+     */
+    public void text_not_allowed() { }
+
+    /**
+     * <ul> <b>text</b> <li> ... </li> </ul>
+     */
+    public void inline_not_allowed() { }
+
+
 }