< prev index next >

test/langtools/jdk/javadoc/doclet/testHtmlTableTags/TestHtmlTableTags.java

Print this page

        

@@ -117,12 +117,12 @@
                 "<div class=\"useSummary\">\n<table>",
                 "<div class=\"useSummary\">\n<table>");
 
         // Deprecated
         checkOutput("deprecated-list.html", true,
-                "<div class=\"deprecatedSummary\">\n<table>",
-                "<div class=\"deprecatedSummary\">\n<table>");
+                "<div class=\"deprecatedSummary\" id=\"field\">\n<table>",
+                "<div class=\"deprecatedSummary\" id=\"method\">\n<table>");
 
         // Constant values
         checkOutput("constant-values.html", true,
                 "<div class=\"constantsSummary\">\n<table>");
 

@@ -222,14 +222,14 @@
                 "<div class=\"useSummary\">\n"
                 + "<table summary=\"Use table, listing classes, and an explanation\">");
 
         // Deprecated
         checkOutput("deprecated-list.html", true,
-                "<div class=\"deprecatedSummary\">\n"
+                "<div class=\"deprecatedSummary\" id=\"field\">\n"
                 + "<table summary=\"Fields table, listing fields, "
                 + "and an explanation\">",
-                "<div class=\"deprecatedSummary\">\n"
+                "<div class=\"deprecatedSummary\" id=\"method\">\n"
                 + "<table summary=\"Methods table, listing methods, "
                 + "and an explanation\">");
 
         // Constant values
         checkOutput("constant-values.html", true,
< prev index next >