mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
Reviewed-by: jjg
This commit is contained in:
parent
47b467dff2
commit
a2a9e39ec7
69 changed files with 539 additions and 381 deletions
|
@ -76,25 +76,25 @@ public class TestDeprecatedDocs extends JavadocTester {
|
|||
{TARGET_FILE, "pkg.DeprecatedClassByAnnotation.method()"},
|
||||
{TARGET_FILE, "pkg.DeprecatedClassByAnnotation.field"},
|
||||
|
||||
{TARGET_FILE2, "<B>Deprecated.</B>" + NL +
|
||||
{TARGET_FILE2, "<STRONG>Deprecated.</STRONG>" + NL +
|
||||
"<P>" + NL +
|
||||
"<DL>" + NL +
|
||||
"<DT><PRE><FONT SIZE=\"-1\">@Deprecated" + NL +
|
||||
"</FONT>public class <B>DeprecatedClassByAnnotation</B>"},
|
||||
"</FONT>public class <STRONG>DeprecatedClassByAnnotation</STRONG>"},
|
||||
|
||||
{TARGET_FILE2, "public int <B>field</B></PRE>" + NL +
|
||||
{TARGET_FILE2, "public int <STRONG>field</STRONG></PRE>" + NL +
|
||||
"<DL>" + NL +
|
||||
"<DD><B>Deprecated.</B> <DL>"},
|
||||
"<DD><STRONG>Deprecated.</STRONG> <DL>"},
|
||||
|
||||
{TARGET_FILE2, "<FONT SIZE=\"-1\">@Deprecated" + NL +
|
||||
"</FONT>public <B>DeprecatedClassByAnnotation</B>()</PRE>" + NL +
|
||||
"</FONT>public <STRONG>DeprecatedClassByAnnotation</STRONG>()</PRE>" + NL +
|
||||
"<DL>" + NL +
|
||||
"<DD><B>Deprecated.</B>"},
|
||||
"<DD><STRONG>Deprecated.</STRONG>"},
|
||||
|
||||
{TARGET_FILE2, "<FONT SIZE=\"-1\">@Deprecated" + NL +
|
||||
"</FONT>public void <B>method</B>()</PRE>" + NL +
|
||||
"</FONT>public void <STRONG>method</STRONG>()</PRE>" + NL +
|
||||
"<DL>" + NL +
|
||||
"<DD><B>Deprecated.</B>"},
|
||||
"<DD><STRONG>Deprecated.</STRONG>"},
|
||||
};
|
||||
|
||||
private static final String[][] NEGATED_TEST = NO_TEST;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue