langtools/test/com/sun/javadoc/testHtmlTableTags/TestHtmlTableTags.java
author jjg
Tue, 22 Apr 2014 17:57:40 -0700
changeset 24072 e7549dcbc4af
parent 24071 b0845717434e
child 24399 af1a0220d0fa
permissions -rw-r--r--
8040903: Clean up use of BUG_ID in javadoc tests Reviewed-by: ksrini
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
     1
/*
23971
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 20613
diff changeset
     2
 * Copyright (c) 2009, 2014, Oracle and/or its affiliates. All rights reserved.
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
     4
 *
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
     7
 * published by the Free Software Foundation.
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
     8
 *
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    13
 * accompanied this code).
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    14
 *
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    18
 *
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2320
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2320
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2320
diff changeset
    21
 * questions.
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    22
 */
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    23
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    24
/*
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    25
 * @test
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 14965
diff changeset
    26
 * @bug      6786688 8008164
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    27
 * @summary  HTML tables should have table summary, caption and table headers.
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    28
 * @author   Bhavesh Patel
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    29
 * @library  ../lib/
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    30
 * @build    JavadocTester
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    31
 * @build    TestHtmlTableTags
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    32
 * @run main TestHtmlTableTags
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    33
 */
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    34
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    35
public class TestHtmlTableTags extends JavadocTester {
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    36
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    37
    //Javadoc arguments.
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    38
    private static final String[] ARGS = new String[] {
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
    39
        "-d", OUTPUT_DIR, "-sourcepath", SRC_DIR, "-use", "pkg1", "pkg2"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    40
    };
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    41
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    42
    //Input for string tests for HTML table tags.
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    43
    private static final String[][] TABLE_TAGS_TEST = {
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    44
        /*
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    45
         * Test for validating summary for HTML tables
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    46
         */
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    47
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    48
        //Package summary
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
    49
        { "pkg1/package-summary.html",
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 14965
diff changeset
    50
            "<table class=\"typeSummary\" border=\"0\" cellpadding=\"3\"" +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    51
            " cellspacing=\"0\" summary=\"Class Summary table, " +
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    52
            "listing classes, and an explanation\">"
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    53
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
    54
        { "pkg1/package-summary.html",
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 14965
diff changeset
    55
            "<table class=\"typeSummary\" border=\"0\" cellpadding=\"3\"" +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    56
            " cellspacing=\"0\" summary=\"Interface Summary table, " +
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    57
            "listing interfaces, and an explanation\">"
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    58
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
    59
        { "pkg2/package-summary.html",
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 14965
diff changeset
    60
            "<table class=\"typeSummary\" border=\"0\" cellpadding=\"3\"" +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    61
            " cellspacing=\"0\" summary=\"Enum Summary table, " +
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    62
            "listing enums, and an explanation\">"
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    63
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
    64
        { "pkg2/package-summary.html",
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 14965
diff changeset
    65
            "<table class=\"typeSummary\" border=\"0\" cellpadding=\"3\"" +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    66
            " cellspacing=\"0\" summary=\"Annotation Types Summary table, " +
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    67
            "listing annotation types, and an explanation\">"
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    68
        },
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    69
        // Class documentation
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
    70
        { "pkg1/C1.html",
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 14965
diff changeset
    71
            "<table class=\"memberSummary\" border=\"0\" cellpadding=\"3\" " +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    72
            "cellspacing=\"0\" summary=\"Field Summary table, listing fields, " +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    73
            "and an explanation\">"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    74
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
    75
        { "pkg1/C1.html",
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 14965
diff changeset
    76
            "<table class=\"memberSummary\" border=\"0\" cellpadding=\"3\" " +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    77
            "cellspacing=\"0\" summary=\"Method Summary table, listing methods, " +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    78
            "and an explanation\">"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    79
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
    80
        { "pkg2/C2.html",
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 14965
diff changeset
    81
            "<table class=\"memberSummary\" border=\"0\" cellpadding=\"3\" " +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    82
            "cellspacing=\"0\" summary=\"Nested Class Summary table, listing " +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    83
            "nested classes, and an explanation\">"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    84
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
    85
        { "pkg2/C2.html",
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 14965
diff changeset
    86
            "<table class=\"memberSummary\" border=\"0\" cellpadding=\"3\" " +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    87
            "cellspacing=\"0\" summary=\"Constructor Summary table, listing " +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    88
            "constructors, and an explanation\">"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    89
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
    90
        { "pkg2/C2.ModalExclusionType.html",
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 14965
diff changeset
    91
            "<table class=\"memberSummary\" border=\"0\" cellpadding=\"3\" " +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    92
            "cellspacing=\"0\" summary=\"Enum Constant Summary table, listing " +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    93
            "enum constants, and an explanation\">"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    94
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
    95
        { "pkg2/C3.html",
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 14965
diff changeset
    96
            "<table class=\"memberSummary\" border=\"0\" cellpadding=\"3\" " +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    97
            "cellspacing=\"0\" summary=\"Required Element Summary table, " +
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    98
            "listing required elements, and an explanation\">"
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
    99
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   100
        { "pkg2/C4.html",
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 14965
diff changeset
   101
            "<table class=\"memberSummary\" border=\"0\" cellpadding=\"3\" " +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   102
            "cellspacing=\"0\" summary=\"Optional Element Summary table, " +
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   103
            "listing optional elements, and an explanation\">"
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   104
        },
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   105
        // Class use documentation
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   106
        { "pkg1/class-use/I1.html",
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 14965
diff changeset
   107
            "<table class=\"useSummary\" border=\"0\" cellpadding=\"3\" cellspacing=\"0\" summary=\"Use " +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   108
            "table, listing packages, and an explanation\">"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   109
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   110
        { "pkg1/class-use/C1.html",
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 14965
diff changeset
   111
            "<table class=\"useSummary\" border=\"0\" cellpadding=\"3\" cellspacing=\"0\" summary=\"Use " +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   112
            "table, listing fields, and an explanation\">"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   113
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   114
        { "pkg1/class-use/C1.html",
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 14965
diff changeset
   115
            "<table class=\"useSummary\" border=\"0\" cellpadding=\"3\" cellspacing=\"0\" summary=\"Use " +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   116
            "table, listing methods, and an explanation\">"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   117
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   118
        { "pkg2/class-use/C2.html",
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 14965
diff changeset
   119
            "<table class=\"useSummary\" border=\"0\" cellpadding=\"3\" cellspacing=\"0\" summary=\"Use " +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   120
            "table, listing fields, and an explanation\">"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   121
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   122
        { "pkg2/class-use/C2.html",
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 14965
diff changeset
   123
            "<table class=\"useSummary\" border=\"0\" cellpadding=\"3\" cellspacing=\"0\" summary=\"Use " +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   124
            "table, listing methods, and an explanation\">"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   125
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   126
        { "pkg2/class-use/C2.ModalExclusionType.html",
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 14965
diff changeset
   127
            "<table class=\"useSummary\" border=\"0\" cellpadding=\"3\" cellspacing=\"0\" summary=\"Use " +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   128
            "table, listing packages, and an explanation\">"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   129
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   130
        { "pkg2/class-use/C2.ModalExclusionType.html",
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 14965
diff changeset
   131
            "<table class=\"useSummary\" border=\"0\" cellpadding=\"3\" cellspacing=\"0\" summary=\"Use " +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   132
            "table, listing methods, and an explanation\">"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   133
        },
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   134
        // Package use documentation
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   135
        { "pkg1/package-use.html",
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 14965
diff changeset
   136
            "<table class=\"useSummary\" border=\"0\" cellpadding=\"3\" cellspacing=\"0\" summary=\"Use " +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   137
            "table, listing packages, and an explanation\">"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   138
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   139
        { "pkg1/package-use.html",
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 14965
diff changeset
   140
            "<table class=\"useSummary\" border=\"0\" cellpadding=\"3\" cellspacing=\"0\" summary=\"Use " +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   141
            "table, listing classes, and an explanation\">"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   142
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   143
        { "pkg2/package-use.html",
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 14965
diff changeset
   144
            "<table class=\"useSummary\" border=\"0\" cellpadding=\"3\" cellspacing=\"0\" summary=\"Use " +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   145
            "table, listing packages, and an explanation\">"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   146
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   147
        { "pkg2/package-use.html",
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 14965
diff changeset
   148
            "<table class=\"useSummary\" border=\"0\" cellpadding=\"3\" cellspacing=\"0\" summary=\"Use " +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   149
            "table, listing classes, and an explanation\">"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   150
        },
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   151
        // Deprecated
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   152
        { "deprecated-list.html",
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 14965
diff changeset
   153
            "<table class=\"deprecatedSummary\" border=\"0\" cellpadding=\"3\" cellspacing=\"0\" " +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   154
            "summary=\"Deprecated Fields table, listing deprecated fields, " +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   155
            "and an explanation\">"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   156
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   157
        { "deprecated-list.html",
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 14965
diff changeset
   158
            "<table class=\"deprecatedSummary\" border=\"0\" cellpadding=\"3\" cellspacing=\"0\" " +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   159
            "summary=\"Deprecated Methods table, listing deprecated methods, " +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   160
            "and an explanation\">"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   161
        },
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   162
        // Constant values
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   163
        { "constant-values.html",
20613
ab4801a53abb 8008164: Invisible table captions in javadoc-generated html
bpatel
parents: 14965
diff changeset
   164
            "<table class=\"constantsSummary\" border=\"0\" cellpadding=\"3\" cellspacing=\"0\" " +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   165
            "summary=\"Constant Field Values table, listing " +
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   166
            "constant fields, and values\">"
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   167
        },
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   168
        // Overview Summary
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   169
        { "overview-summary.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   170
            "<table class=\"overviewSummary\" border=\"0\" cellpadding=\"3\" " +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   171
            "cellspacing=\"0\" summary=\"Packages table, " +
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   172
            "listing packages, and an explanation\">"
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   173
        },
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   174
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   175
        /*
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   176
         * Test for validating caption for HTML tables
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   177
         */
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   178
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   179
        //Package summary
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   180
        { "pkg1/package-summary.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   181
            "<caption><span>Class Summary</span><span class=\"tabEnd\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   182
            "&nbsp;</span></caption>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   183
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   184
        { "pkg1/package-summary.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   185
            "<caption><span>Interface Summary</span><span class=\"tabEnd\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   186
            "&nbsp;</span></caption>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   187
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   188
        { "pkg2/package-summary.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   189
            "<caption><span>Enum Summary</span><span class=\"tabEnd\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   190
            "&nbsp;</span></caption>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   191
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   192
        { "pkg2/package-summary.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   193
            "<caption><span>Annotation Types Summary</span><span class=\"tabEnd\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   194
            "&nbsp;</span></caption>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   195
        },
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   196
        // Class documentation
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   197
        { "pkg1/C1.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   198
            "<caption><span>Fields</span><span class=\"tabEnd\">&nbsp;</span></caption>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   199
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   200
        { "pkg1/C1.html",
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 7681
diff changeset
   201
            "<caption><span id=\"t0\" class=\"activeTableTab\"><span>All " +
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 7681
diff changeset
   202
            "Methods</span><span class=\"tabEnd\">&nbsp;</span></span>" +
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 7681
diff changeset
   203
            "<span id=\"t2\" class=\"tableTab\"><span><a href=\"javascript:show(2);\">" +
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 7681
diff changeset
   204
            "Instance Methods</a></span><span class=\"tabEnd\">&nbsp;</span></span>" +
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 7681
diff changeset
   205
            "<span id=\"t4\" class=\"tableTab\"><span><a href=\"javascript:show(8);\">" +
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 7681
diff changeset
   206
            "Concrete Methods</a></span><span class=\"tabEnd\">&nbsp;</span></span>" +
14965
bb1eb01b8c41 8004893: the javadoc/doclet needs to be updated to accommodate lambda changes
bpatel
parents: 14549
diff changeset
   207
            "<span id=\"t6\" class=\"tableTab\"><span><a href=\"javascript:show(32);\">" +
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 7681
diff changeset
   208
            "Deprecated Methods</a></span><span class=\"tabEnd\">&nbsp;</span></span>" +
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 7681
diff changeset
   209
            "</caption>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   210
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   211
        { "pkg2/C2.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   212
            "<caption><span>Nested Classes</span><span class=\"tabEnd\">&nbsp;</span></caption>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   213
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   214
        { "pkg2/C2.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   215
            "<caption><span>Constructors</span><span class=\"tabEnd\">&nbsp;</span></caption>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   216
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   217
        { "pkg2/C2.ModalExclusionType.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   218
            "<caption><span>Enum Constants</span><span class=\"tabEnd\">&nbsp;</span></caption>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   219
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   220
        { "pkg2/C3.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   221
            "<caption><span>Required Elements</span><span class=\"tabEnd\">&nbsp;" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   222
            "</span></caption>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   223
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   224
        { "pkg2/C4.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   225
            "<caption><span>Optional Elements</span><span class=\"tabEnd\">&nbsp;" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   226
            "</span></caption>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   227
        },
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   228
        // Class use documentation
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   229
        { "pkg1/class-use/I1.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   230
            "<caption><span>Packages that use <a href=\"../../pkg1/I1.html\" " +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   231
            "title=\"interface in pkg1\">I1</a></span><span class=\"tabEnd\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   232
            "&nbsp;</span></caption>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   233
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   234
        { "pkg1/class-use/C1.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   235
            "<caption><span>Fields in <a href=\"../../pkg2/package-summary.html\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   236
            "pkg2</a> declared as <a href=\"../../pkg1/C1.html\" " +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   237
            "title=\"class in pkg1\">C1</a></span><span class=\"tabEnd\">&nbsp;" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   238
            "</span></caption>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   239
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   240
        { "pkg1/class-use/C1.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   241
            "<caption><span>Methods in <a href=\"../../pkg2/package-summary.html\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   242
            "pkg2</a> that return <a href=\"../../pkg1/C1.html\" " +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   243
            "title=\"class in pkg1\">C1</a></span><span class=\"tabEnd\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   244
            "&nbsp;</span></caption>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   245
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   246
        { "pkg2/class-use/C2.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   247
            "<caption><span>Fields in <a href=\"../../pkg1/package-summary.html\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   248
            "pkg1</a> declared as <a href=\"../../pkg2/C2.html\" " +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   249
            "title=\"class in pkg2\">C2</a></span><span class=\"tabEnd\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   250
            "&nbsp;</span></caption>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   251
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   252
        { "pkg2/class-use/C2.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   253
            "<caption><span>Methods in <a href=\"../../pkg1/package-summary.html\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   254
            "pkg1</a> that return <a href=\"../../pkg2/C2.html\" " +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   255
            "title=\"class in pkg2\">C2</a></span><span class=\"tabEnd\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   256
            "&nbsp;</span></caption>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   257
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   258
        { "pkg2/class-use/C2.ModalExclusionType.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   259
            "<caption><span>Methods in <a href=\"../../pkg2/package-summary.html\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   260
            "pkg2</a> that return <a href=\"../../pkg2/C2.ModalExclusionType.html\" " +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   261
            "title=\"enum in pkg2\">C2.ModalExclusionType</a></span>" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   262
            "<span class=\"tabEnd\">&nbsp;</span></caption>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   263
        },
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   264
        // Package use documentation
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   265
        { "pkg1/package-use.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   266
            "<caption><span>Packages that use <a href=\"../pkg1/package-summary.html\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   267
            "pkg1</a></span><span class=\"tabEnd\">&nbsp;</span></caption>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   268
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   269
        { "pkg1/package-use.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   270
            "<caption><span>Classes in <a href=\"../pkg1/package-summary.html\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   271
            "pkg1</a> used by <a href=\"../pkg1/package-summary.html\">pkg1</a>" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   272
            "</span><span class=\"tabEnd\">&nbsp;</span></caption>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   273
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   274
        { "pkg2/package-use.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   275
            "<caption><span>Packages that use <a href=\"../pkg2/package-summary.html\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   276
            "pkg2</a></span><span class=\"tabEnd\">&nbsp;</span></caption>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   277
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   278
        { "pkg2/package-use.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   279
            "<caption><span>Classes in <a href=\"../pkg2/package-summary.html\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   280
            "pkg2</a> used by <a href=\"../pkg1/package-summary.html\">pkg1</a>" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   281
            "</span><span class=\"tabEnd\">&nbsp;</span></caption>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   282
        },
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   283
        // Deprecated
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   284
        { "deprecated-list.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   285
            "<caption><span>Deprecated Fields</span><span class=\"tabEnd\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   286
            "&nbsp;</span></caption>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   287
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   288
        { "deprecated-list.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   289
            "<caption><span>Deprecated Methods</span><span class=\"tabEnd\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   290
            "&nbsp;</span></caption>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   291
        },
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   292
        // Constant values
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   293
        { "constant-values.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   294
            "<caption><span>pkg1.<a href=\"pkg1/C1.html\" title=\"class in pkg1\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   295
            "C1</a></span><span class=\"tabEnd\">&nbsp;</span></caption>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   296
        },
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   297
        // Overview Summary
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   298
        { "overview-summary.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   299
            "<caption><span>Packages</span><span class=\"tabEnd\">&nbsp;</span></caption>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   300
        },
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   301
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   302
        /*
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   303
         * Test for validating headers for HTML tables
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   304
         */
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   305
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   306
        //Package summary
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   307
        { "pkg1/package-summary.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   308
            "<th class=\"colFirst\" scope=\"col\">" +
23971
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 20613
diff changeset
   309
            "Class</th>\n" +
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 20613
diff changeset
   310
            "<th class=\"colLast\" scope=\"col\"" +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   311
            ">Description</th>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   312
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   313
        { "pkg1/package-summary.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   314
            "<th class=\"colFirst\" scope=\"col\">" +
23971
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 20613
diff changeset
   315
            "Interface</th>\n" +
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 20613
diff changeset
   316
            "<th class=\"colLast\" scope=\"col\"" +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   317
            ">Description</th>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   318
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   319
        { "pkg2/package-summary.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   320
            "<th class=\"colFirst\" scope=\"col\">" +
23971
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 20613
diff changeset
   321
            "Enum</th>\n" +
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 20613
diff changeset
   322
            "<th class=\"colLast\" scope=\"col\"" +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   323
            ">Description</th>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   324
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   325
        { "pkg2/package-summary.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   326
            "<th class=\"colFirst\" scope=\"col\">" +
23971
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 20613
diff changeset
   327
            "Annotation Type</th>\n" +
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 20613
diff changeset
   328
            "<th class=\"colLast\"" +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   329
            " scope=\"col\">Description</th>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   330
        },
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   331
        // Class documentation
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   332
        { "pkg1/C1.html",
23971
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 20613
diff changeset
   333
            "<th class=\"colFirst\" scope=\"col\">Modifier and Type</th>\n" +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   334
            "<th class=\"colLast\" scope=\"col\">Field and Description</th>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   335
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   336
        { "pkg1/C1.html",
23971
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 20613
diff changeset
   337
            "<th class=\"colFirst\" scope=\"col\">Modifier and Type</th>\n" +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   338
            "<th class=\"colLast\" scope=\"col\">Method and Description</th>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   339
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   340
        { "pkg2/C2.html",
23971
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 20613
diff changeset
   341
            "<th class=\"colFirst\" scope=\"col\">Modifier and Type</th>\n" +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   342
            "<th class=\"colLast\" scope=\"col\">Class and Description</th>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   343
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   344
        { "pkg2/C2.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   345
            "<th class=\"colOne\" scope=\"col\">Constructor and Description</th>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   346
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   347
        { "pkg2/C2.ModalExclusionType.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   348
            "<th class=\"colOne\" scope=\"col\">Enum Constant and Description</th>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   349
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   350
        { "pkg2/C3.html",
23971
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 20613
diff changeset
   351
            "<th class=\"colFirst\" scope=\"col\">Modifier and Type</th>\n" +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   352
            "<th class=\"colLast\" scope=\"col\">Required Element and Description</th>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   353
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   354
        { "pkg2/C4.html",
23971
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 20613
diff changeset
   355
            "<th class=\"colFirst\" scope=\"col\">Modifier and Type</th>\n" +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   356
            "<th class=\"colLast\" scope=\"col\">Optional Element and Description</th>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   357
        },
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   358
        // Class use documentation
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   359
        { "pkg1/class-use/I1.html",
23971
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 20613
diff changeset
   360
            "<th class=\"colFirst\" scope=\"col\">Package</th>\n" +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   361
            "<th class=\"colLast\" scope=\"col\">Description</th>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   362
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   363
        { "pkg1/class-use/C1.html",
23971
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 20613
diff changeset
   364
            "<th class=\"colFirst\" scope=\"col\">Modifier and Type</th>\n" +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   365
            "<th class=\"colLast\" scope=\"col\">Field and Description</th>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   366
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   367
        { "pkg1/class-use/C1.html",
23971
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 20613
diff changeset
   368
            "<th class=\"colFirst\" scope=\"col\">Modifier and Type</th>\n" +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   369
            "<th class=\"colLast\" scope=\"col\">Method and Description</th>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   370
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   371
        { "pkg2/class-use/C2.html",
23971
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 20613
diff changeset
   372
            "<th class=\"colFirst\" scope=\"col\">Modifier and Type</th>\n" +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   373
            "<th class=\"colLast\" scope=\"col\">Field and Description</th>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   374
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   375
        { "pkg2/class-use/C2.html",
23971
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 20613
diff changeset
   376
            "<th class=\"colFirst\" scope=\"col\">Modifier and Type</th>\n" +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   377
            "<th class=\"colLast\" scope=\"col\">Method and Description</th>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   378
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   379
        { "pkg2/class-use/C2.ModalExclusionType.html",
23971
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 20613
diff changeset
   380
            "<th class=\"colFirst\" scope=\"col\">Package</th>\n" +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   381
            "<th class=\"colLast\" scope=\"col\">Description</th>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   382
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   383
        { "pkg2/class-use/C2.ModalExclusionType.html",
23971
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 20613
diff changeset
   384
            "<th class=\"colFirst\" scope=\"col\">Modifier and Type</th>\n" +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   385
            "<th class=\"colLast\" scope=\"col\">Method and Description</th>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   386
        },
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   387
        // Package use documentation
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   388
        { "pkg1/package-use.html",
23971
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 20613
diff changeset
   389
            "<th class=\"colFirst\" scope=\"col\">Package</th>\n" +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   390
            "<th class=\"colLast\" scope=\"col\">Description</th>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   391
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   392
        { "pkg1/package-use.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   393
            "<th class=\"colOne\" scope=\"col\">Class and Description</th>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   394
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   395
        { "pkg2/package-use.html",
23971
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 20613
diff changeset
   396
            "<th class=\"colFirst\" scope=\"col\">Package</th>\n" +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   397
            "<th class=\"colLast\" scope=\"col\">Description</th>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   398
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   399
        { "pkg2/package-use.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   400
            "<th class=\"colOne\" scope=\"col\">Class and Description</th>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   401
        },
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   402
        // Deprecated
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   403
        { "deprecated-list.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   404
            "<th class=\"colOne\" scope=\"col\">Field and Description</th>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   405
        },
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   406
        { "deprecated-list.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   407
            "<th class=\"colOne\" scope=\"col\">Method and Description</th>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   408
        },
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   409
        // Constant values
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   410
        { "constant-values.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   411
            "<th class=\"colFirst\" scope=\"col\">" +
23971
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 20613
diff changeset
   412
            "Modifier and Type</th>\n" +
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 20613
diff changeset
   413
            "<th" +
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 20613
diff changeset
   414
            " scope=\"col\">Constant Field</th>\n" +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   415
            "<th class=\"colLast\" scope=\"col\">Value</th>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   416
        },
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   417
        // Overview Summary
24072
e7549dcbc4af 8040903: Clean up use of BUG_ID in javadoc tests
jjg
parents: 24071
diff changeset
   418
        { "overview-summary.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   419
            "<th class=\"colFirst\" scope=\"col\">" +
23971
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 20613
diff changeset
   420
            "Package</th>\n" +
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 20613
diff changeset
   421
            "<th class=\"colLast\" scope=\"col\"" +
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   422
            ">Description</th>"
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   423
        }
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   424
    };
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   425
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   426
    /**
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   427
     * The entry point of the test.
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   428
     * @param args the array of command line arguments.
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   429
     */
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   430
    public static void main(String[] args) {
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   431
        TestHtmlTableTags tester = new TestHtmlTableTags();
24071
b0845717434e 8041253: Avoid redundant synonyms of NO_TEST
jjg
parents: 24065
diff changeset
   432
        tester.run(ARGS, TABLE_TAGS_TEST, NO_TEST);
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   433
        tester.printSummary();
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   434
    }
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents:
diff changeset
   435
}