mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8026567: Use meaningful style names for strong and italic styles
Reviewed-by: jjg
This commit is contained in:
parent
cf30c20337
commit
cee70e2272
64 changed files with 326 additions and 310 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -23,7 +23,7 @@
|
|||
|
||||
/*
|
||||
* @test
|
||||
* @bug 4927552
|
||||
* @bug 4927552 8026567
|
||||
* @summary <DESC>
|
||||
* @author jamieh
|
||||
* @library ../lib/
|
||||
|
@ -76,20 +76,20 @@ public class TestDeprecatedDocs extends JavadocTester {
|
|||
{TARGET_FILE, "pkg.DeprecatedClassByAnnotation.field"},
|
||||
|
||||
{TARGET_FILE2, "<pre>@Deprecated" + NL +
|
||||
"public class <span class=\"strong\">DeprecatedClassByAnnotation</span>" + NL +
|
||||
"public class <span class=\"typeNameLabel\">DeprecatedClassByAnnotation</span>" + NL +
|
||||
"extends java.lang.Object</pre>"},
|
||||
|
||||
{TARGET_FILE2, "<pre>@Deprecated" + NL +
|
||||
"public int field</pre>" + NL +
|
||||
"<div class=\"block\"><span class=\"strong\">Deprecated.</span> </div>"},
|
||||
"<div class=\"block\"><span class=\"deprecatedLabel\">Deprecated.</span> </div>"},
|
||||
|
||||
{TARGET_FILE2, "<pre>@Deprecated" + NL +
|
||||
"public DeprecatedClassByAnnotation()</pre>" + NL +
|
||||
"<div class=\"block\"><span class=\"strong\">Deprecated.</span> </div>"},
|
||||
"<div class=\"block\"><span class=\"deprecatedLabel\">Deprecated.</span> </div>"},
|
||||
|
||||
{TARGET_FILE2, "<pre>@Deprecated" + NL +
|
||||
"public void method()</pre>" + NL +
|
||||
"<div class=\"block\"><span class=\"strong\">Deprecated.</span> </div>"},
|
||||
"<div class=\"block\"><span class=\"deprecatedLabel\">Deprecated.</span> </div>"},
|
||||
};
|
||||
|
||||
private static final String[][] NEGATED_TEST = NO_TEST;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue