f765a7f513
Reviewed-by: hannesw
34 lines
1.2 KiB
Java
34 lines
1.2 KiB
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 8004832
|
|
* @summary Add new doclint package
|
|
* @library ..
|
|
* @modules jdk.javadoc/jdk.javadoc.internal.doclint
|
|
* @build DocLintTester
|
|
* @run main DocLintTester -ref TextNotAllowed.out TextNotAllowed.java
|
|
*/
|
|
|
|
/**
|
|
* <dl> abc <dt> term </dt> def <dd> description </dd> ghi </dl>
|
|
* <ol> abc <li> item </li> def <li> item </li> ghi </ol>
|
|
* <ul> abc <li> item </li> def <li> item </li> ghi </ul>
|
|
*
|
|
* <table summary=description> abc </table>
|
|
* <table summary=description> <thead> abc </thead> </table>
|
|
* <table summary=description> <tbody> abc </tbody> </table>
|
|
* <table summary=description> <tfoot> abc </tfoot> </table>
|
|
* <table summary=description> <tr> abc </tr> </table>
|
|
*
|
|
* <dl> & <dt> term </dt> < <dd> description </dd> > </dl>
|
|
* <ol> & <li> item </li> < <li> item </li> > </ol>
|
|
* <ul> & <li> item </li> < <li> item </li> > </ul>
|
|
*
|
|
* <table summary=description> & </table>
|
|
* <table summary=description> <thead> & </thead> </table>
|
|
* <table summary=description> <tbody> & </tbody> </table>
|
|
* <table summary=description> <tfoot> & </tfoot> </table>
|
|
* <table summary=description> <tr> & </tr> </table>
|
|
*
|
|
*/
|
|
public class TextNotAllowed { }
|