2012-12-17 07:47:05 -08:00
|
|
|
/*
|
|
|
|
* @test /nodynamiccopyright/
|
2021-01-06 22:48:00 +00:00
|
|
|
* @bug 8004832 8247957
|
2012-12-20 17:59:46 +00:00
|
|
|
* @summary Add new doclint package
|
2012-12-17 07:47:05 -08:00
|
|
|
* @library ..
|
2020-09-23 19:55:08 +00:00
|
|
|
* @modules jdk.javadoc/jdk.javadoc.internal.doclint
|
2012-12-17 07:47:05 -08:00
|
|
|
* @build DocLintTester
|
2021-08-11 18:03:40 +00:00
|
|
|
* @run main DocLintTester -Xmsgs:all,-missing -ref TextNotAllowed.out TextNotAllowed.java
|
2012-12-17 07:47:05 -08:00
|
|
|
*/
|
|
|
|
|
|
|
|
// tidy: Warning: plain text isn't allowed in <.*> elements
|
|
|
|
|
|
|
|
/**
|
2021-01-06 22:48:00 +00:00
|
|
|
* <table> <caption> description </caption> abc </table>
|
|
|
|
* <table> <caption> description </caption> <tbody> abc </tbody> </table>
|
|
|
|
* <table> <caption> description </caption> <tr> abc </tr> </table>
|
2012-12-17 07:47:05 -08:00
|
|
|
*
|
|
|
|
* <dl> abc </dl>
|
|
|
|
* <ol> abc </ol>
|
|
|
|
* <ul> abc </ul>
|
|
|
|
*
|
|
|
|
* <ul>
|
|
|
|
* <li> item
|
|
|
|
* <li> item
|
|
|
|
* </ul>
|
|
|
|
*/
|
|
|
|
public class TextNotAllowed { }
|