3789983e89
Reviewed-by: darcy, ihse
28 lines
619 B
Java
28 lines
619 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 8004832
|
|
* @summary Add new doclint package
|
|
* @library ..
|
|
* @modules jdk.compiler/com.sun.tools.doclint
|
|
* @build DocLintTester
|
|
* @run main DocLintTester -ref TextNotAllowed.out TextNotAllowed.java
|
|
*/
|
|
|
|
// tidy: Warning: plain text isn't allowed in <.*> elements
|
|
|
|
/**
|
|
* <table summary=description> abc </table>
|
|
* <table summary=description> <tbody> abc </tbody> </table>
|
|
* <table summary=description> <tr> abc </tr> </table>
|
|
*
|
|
* <dl> abc </dl>
|
|
* <ol> abc </ol>
|
|
* <ul> abc </ul>
|
|
*
|
|
* <ul>
|
|
* <li> item
|
|
* <li> item
|
|
* </ul>
|
|
*/
|
|
public class TextNotAllowed { }
|