author | duke |
Wed, 05 Jul 2017 20:10:53 +0200 | |
changeset 27979 | cc2cf80c2f39 |
parent 15371 | 8f719dc43e1f |
child 30730 | d3ce7619db2c |
permissions | -rw-r--r-- |
14952 | 1 |
/* |
2 |
* @test /nodynamiccopyright/ |
|
14962 | 3 |
* @bug 8004832 |
4 |
* @summary Add new doclint package |
|
14952 | 5 |
* @library .. |
6 |
* @build DocLintTester |
|
7 |
* @run main DocLintTester -ref TextNotAllowed.out TextNotAllowed.java |
|
8 |
*/ |
|
9 |
||
10 |
/** |
|
15371
8f719dc43e1f
8006251: doclint: incorrect position for diagnostic for illegal text in tags
jjg
parents:
14962
diff
changeset
|
11 |
* <dl> abc <dt> term </dt> def <dd> description </dd> ghi </dl> |
8f719dc43e1f
8006251: doclint: incorrect position for diagnostic for illegal text in tags
jjg
parents:
14962
diff
changeset
|
12 |
* <ol> abc <li> item </li> def <li> item </li> ghi </ol> |
8f719dc43e1f
8006251: doclint: incorrect position for diagnostic for illegal text in tags
jjg
parents:
14962
diff
changeset
|
13 |
* <ul> abc <li> item </li> def <li> item </li> ghi </ul> |
8f719dc43e1f
8006251: doclint: incorrect position for diagnostic for illegal text in tags
jjg
parents:
14962
diff
changeset
|
14 |
* |
14952 | 15 |
* <table summary=description> abc </table> |
15371
8f719dc43e1f
8006251: doclint: incorrect position for diagnostic for illegal text in tags
jjg
parents:
14962
diff
changeset
|
16 |
* <table summary=description> <thead> abc </thead> </table> |
14952 | 17 |
* <table summary=description> <tbody> abc </tbody> </table> |
15371
8f719dc43e1f
8006251: doclint: incorrect position for diagnostic for illegal text in tags
jjg
parents:
14962
diff
changeset
|
18 |
* <table summary=description> <tfoot> abc </tfoot> </table> |
14952 | 19 |
* <table summary=description> <tr> abc </tr> </table> |
20 |
* |
|
15371
8f719dc43e1f
8006251: doclint: incorrect position for diagnostic for illegal text in tags
jjg
parents:
14962
diff
changeset
|
21 |
* <dl> & <dt> term </dt> < <dd> description </dd> > </dl> |
8f719dc43e1f
8006251: doclint: incorrect position for diagnostic for illegal text in tags
jjg
parents:
14962
diff
changeset
|
22 |
* <ol> & <li> item </li> < <li> item </li> > </ol> |
8f719dc43e1f
8006251: doclint: incorrect position for diagnostic for illegal text in tags
jjg
parents:
14962
diff
changeset
|
23 |
* <ul> & <li> item </li> < <li> item </li> > </ul> |
14952 | 24 |
* |
15371
8f719dc43e1f
8006251: doclint: incorrect position for diagnostic for illegal text in tags
jjg
parents:
14962
diff
changeset
|
25 |
* <table summary=description> & </table> |
8f719dc43e1f
8006251: doclint: incorrect position for diagnostic for illegal text in tags
jjg
parents:
14962
diff
changeset
|
26 |
* <table summary=description> <thead> & </thead> </table> |
8f719dc43e1f
8006251: doclint: incorrect position for diagnostic for illegal text in tags
jjg
parents:
14962
diff
changeset
|
27 |
* <table summary=description> <tbody> & </tbody> </table> |
8f719dc43e1f
8006251: doclint: incorrect position for diagnostic for illegal text in tags
jjg
parents:
14962
diff
changeset
|
28 |
* <table summary=description> <tfoot> & </tfoot> </table> |
8f719dc43e1f
8006251: doclint: incorrect position for diagnostic for illegal text in tags
jjg
parents:
14962
diff
changeset
|
29 |
* <table summary=description> <tr> & </tr> </table> |
8f719dc43e1f
8006251: doclint: incorrect position for diagnostic for illegal text in tags
jjg
parents:
14962
diff
changeset
|
30 |
* |
14952 | 31 |
*/ |
32 |
public class TextNotAllowed { } |