8015997: Additional improvement in Javadoc framing

Reviewed-by: jjg
This commit is contained in:
Bhavesh Patel 2013-06-07 16:12:04 -07:00
parent 2252b22e09
commit 3f6b61d75e
2 changed files with 5 additions and 3 deletions

View File

@ -314,7 +314,8 @@ public class HtmlWriter {
" if (targetPage.indexOf(\":\") != -1 || (targetPage != \"\" && !validURL(targetPage)))" + DocletConstants.NL +
" targetPage = \"undefined\";" + DocletConstants.NL +
" function validURL(url) {" + DocletConstants.NL +
" if (!(url.indexOf(\".html\") == url.length - 5))" + DocletConstants.NL +
" var pos = url.indexOf(\".html\");" + DocletConstants.NL +
" if (pos == -1 || pos != url.length - 5)" + DocletConstants.NL +
" return false;" + DocletConstants.NL +
" var allowNumber = false;" + DocletConstants.NL +
" var allowSep = false;" + DocletConstants.NL +

View File

@ -23,7 +23,7 @@
/*
* @test
* @bug 4665566 4855876 7025314 8012375
* @bug 4665566 4855876 7025314 8012375 8015997
* @summary Verify that the output has the right javascript.
* @author jamieh
* @library ../lib/
@ -56,7 +56,8 @@ public class TestJavascript extends JavadocTester {
" if (targetPage.indexOf(\":\") != -1 || (targetPage != \"\" && !validURL(targetPage)))" + NL +
" targetPage = \"undefined\";" + NL +
" function validURL(url) {" + NL +
" if (!(url.indexOf(\".html\") == url.length - 5))" + NL +
" var pos = url.indexOf(\".html\");" + NL +
" if (pos == -1 || pos != url.length - 5)" + NL +
" return false;" + NL +
" var allowNumber = false;" + NL +
" var allowSep = false;" + NL +