1 /*
2  * @test /nodynamiccopyright/
3  * @bug 8004832
4  * @summary Add new doclint package
5  * @library ..
6  * @modules jdk.compiler/com.sun.tools.doclint
7  * @build DocLintTester
8  * @run main DocLintTester -ref TextNotAllowed.out TextNotAllowed.java
9  */
10 
11 // tidy: Warning: plain text isn't allowed in <.*> elements
12 
13 /**
14  * <table summary=description> abc </table>
15  * <table summary=description> <tbody> abc </tbody> </table>
16  * <table summary=description> <tr> abc </tr> </table>
17  *
18  * <dl> abc </dl>
19  * <ol> abc </ol>
20  * <ul> abc </ul>
21  *
22  * <ul>
23  *     <li> item
24  *     <li> item
25  * </ul>
26  */
27 public class TextNotAllowed { }
28