test/tools/doclint/html/TableTagsTest.java

Thu, 22 Aug 2013 12:41:20 -0700

author
jjg
date
Thu, 22 Aug 2013 12:41:20 -0700
changeset 1976
b77381d99056
parent 1507
967052c425a1
child 2525
2eb010b6cb22
permissions
-rw-r--r--

8022173: Relax some warnings in doclint
Reviewed-by: darcy

jjg@1507 1 /*
jjg@1507 2 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
jjg@1507 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jjg@1507 4 *
jjg@1507 5 * This code is free software; you can redistribute it and/or modify it
jjg@1507 6 * under the terms of the GNU General Public License version 2 only, as
jjg@1507 7 * published by the Free Software Foundation.
jjg@1507 8 *
jjg@1507 9 * This code is distributed in the hope that it will be useful, but WITHOUT
jjg@1507 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jjg@1507 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
jjg@1507 12 * version 2 for more details (a copy is included in the LICENSE file that
jjg@1507 13 * accompanied this code).
jjg@1507 14 *
jjg@1507 15 * You should have received a copy of the GNU General Public License version
jjg@1507 16 * 2 along with this work; if not, write to the Free Software Foundation,
jjg@1507 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jjg@1507 18 *
jjg@1507 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
jjg@1507 20 * or visit www.oracle.com if you need additional information or have any
jjg@1507 21 * questions.
jjg@1507 22 */
jjg@1507 23
jjg@1507 24 /*
jjg@1507 25 * @test
jjg@1976 26 * @bug 8006251 8022173
jjg@1507 27 * @summary test table tags
jjg@1507 28 * @library ..
jjg@1507 29 * @build DocLintTester
jjg@1507 30 * @run main DocLintTester -Xmsgs TableTagsTest.java
jjg@1507 31 */
jjg@1507 32
jjg@1507 33 /** */
jjg@1507 34 public class TableTagsTest {
jjg@1507 35 /**
jjg@1507 36 * <table summary="abc"> <tr> <td> </table>
jjg@1507 37 * <table summary="abc"> <tr> <th> </table>
jjg@1507 38 * <table> <caption> abc </caption> <tr> <td> </table>
jjg@1507 39 * <table summary="abc"> <thead> <tr> </thead> <tr> <td> </table>
jjg@1507 40 * <table summary="abc"> <tbody> <tr> <td> </tbody> </table>
jjg@1507 41 * <table summary="abc"> <tr> <td> <tfoot> <tr> </tfoot></table>
jjg@1976 42 * <table summary="abc" width="50%"> <tr> <td> <tfoot> <tr> </tfoot></table>
jjg@1507 43 */
jjg@1507 44 public void supportedTags() { }
jjg@1507 45 }

mercurial