/
githubmirror
/
jdk11u-dev
Обзор
Документация
Войти
/
githubmirror
/
jdk11u-dev
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/langtools/tools/doclint/html/TextNotAllowed.java
33 строки
1 KB
Erik Joelsson
8187443: Forest Consolidation: Move files to unified layout
12 сен 2017, 20:03
12 сен 2017, 20:03
3789983
Код
Авторство
О чём код?
/* * @test /nodynamiccopyright/ * @bug 8004832 * @summary Add new doclint package * @library .. * @modules jdk.compiler/com.sun.tools.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 { }