author | naoto |
Tue, 29 Mar 2016 17:06:33 -0700 | |
changeset 36739 | 145210aba850 |
parent 30730 | d3ce7619db2c |
permissions | -rw-r--r-- |
14952 | 1 |
/* |
2 |
* @test /nodynamiccopyright/ |
|
14962 | 3 |
* @bug 8004832 |
4 |
* @summary Add new doclint package |
|
14952 | 5 |
* @library .. |
30730
d3ce7619db2c
8076543: Add @modules as needed to the langtools tests
akulyakh
parents:
14962
diff
changeset
|
6 |
* @modules jdk.compiler/com.sun.tools.doclint |
14952 | 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 { } |