14952
|
1 |
/*
|
|
2 |
* @test /nodynamiccopyright/
|
|
3 |
* @library ..
|
|
4 |
* @build DocLintTester
|
|
5 |
* @run main DocLintTester -ref TextNotAllowed.out TextNotAllowed.java
|
|
6 |
*/
|
|
7 |
|
|
8 |
// tidy: Warning: plain text isn't allowed in <.*> elements
|
|
9 |
|
|
10 |
/**
|
|
11 |
* <table summary=description> abc </table>
|
|
12 |
* <table summary=description> <tbody> abc </tbody> </table>
|
|
13 |
* <table summary=description> <tr> abc </tr> </table>
|
|
14 |
*
|
|
15 |
* <dl> abc </dl>
|
|
16 |
* <ol> abc </ol>
|
|
17 |
* <ul> abc </ul>
|
|
18 |
*
|
|
19 |
* <ul>
|
|
20 |
* <li> item
|
|
21 |
* <li> item
|
|
22 |
* </ul>
|
|
23 |
*/
|
|
24 |
public class TextNotAllowed { }
|