test/langtools/jdk/javadoc/doclet/testJavascript/TestJavascript.java
changeset 59294 48b88b9c11eb
parent 54350 4f9772f4403d
--- a/test/langtools/jdk/javadoc/doclet/testJavascript/TestJavascript.java	Wed Nov 27 12:18:40 2019 +0100
+++ b/test/langtools/jdk/javadoc/doclet/testJavascript/TestJavascript.java	Wed Nov 27 13:08:16 2019 +0100
@@ -23,7 +23,7 @@
 
 /*
  * @test
- * @bug      4665566 4855876 7025314 8012375 8015997 8016328 8024756 8148985 8151921 8151743 8196202
+ * @bug      4665566 4855876 7025314 8012375 8015997 8016328 8024756 8148985 8151921 8151743 8196202 8223378
  * @summary  Verify that the output has the right javascript.
  * @author   jamieh
  * @library  ../../lib
@@ -48,18 +48,18 @@
                 "pkg", testSrc("TestJavascript.java"));
         checkExit(Exit.OK);
 
-        checkOutput("pkg/C.html", true,
+        checkOutput("pkg/C.html", false,
                 "<script type=\"text/javascript\"><!--\n"
                 + "$('.navPadding').css('padding-top', $('.fixedNav').css(\"height\"));\n"
                 + "//-->\n"
                 + "</script>");
 
-        checkOutput("index.html", true,
+        checkOutput("index.html", false,
                 "<script type=\"text/javascript\"><!--\n"
                 + "$('.navPadding').css('padding-top', $('.fixedNav').css(\"height\"));\n"
                 + "//-->\n");
 
-        checkOutput("script.js", true,
+        checkOutput("script.js", false,
                 "$(window).resize(function() {\n"
                 + "        $('.navPadding').css('padding-top', $('.fixedNav').css(\"height\"));\n"
                 + "    });");