8007338: Method grouping tab line-folding

Reviewed-by: jjg
This commit is contained in:
Bhavesh Patel 2013-06-26 20:38:21 -07:00
parent eedcd5d290
commit 561009c4ac
2 changed files with 32 additions and 15 deletions

View file

@ -371,6 +371,7 @@ Table styles
overflow:hidden; overflow:hidden;
padding:0px; padding:0px;
margin:0px; margin:0px;
white-space:pre;
} }
caption a:link, caption a:hover, caption a:active, caption a:visited { caption a:link, caption a:hover, caption a:active, caption a:visited {
color:#FFFFFF; color:#FFFFFF;

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -23,7 +23,7 @@
/* /*
* @test * @test
* @bug 4494033 7028815 7052425 * @bug 4494033 7028815 7052425 8007338
* @summary Run tests on doclet stylesheet. * @summary Run tests on doclet stylesheet.
* @author jamieh * @author jamieh
* @library ../lib/ * @library ../lib/
@ -34,7 +34,7 @@
public class TestStylesheet extends JavadocTester { public class TestStylesheet extends JavadocTester {
//Test information. //Test information.
private static final String BUG_ID = "4494033-7028815-7052425"; private static final String BUG_ID = "4494033-7028815-7052425-8007338";
//Javadoc arguments. //Javadoc arguments.
private static final String[] ARGS = new String[] { private static final String[] ARGS = new String[] {
@ -58,6 +58,22 @@ public class TestStylesheet extends JavadocTester {
" font-size:76%;" + NL + " margin:0;" + NL + "}"}, " font-size:76%;" + NL + " margin:0;" + NL + "}"},
{BUG_ID + FS + "stylesheet.css", {BUG_ID + FS + "stylesheet.css",
"ul {" + NL + " list-style-type:disc;" + NL + "}"}, "ul {" + NL + " list-style-type:disc;" + NL + "}"},
{BUG_ID + FS + "stylesheet.css",
".overviewSummary caption, .packageSummary caption, " +
".contentContainer ul.blockList li.blockList caption, " +
".summary caption, .classUseContainer caption, " +
".constantValuesContainer caption {" + NL +
" position:relative;" + NL +
" text-align:left;" + NL +
" background-repeat:no-repeat;" + NL +
" color:#FFFFFF;" + NL +
" font-weight:bold;" + NL +
" clear:none;" + NL +
" overflow:hidden;" + NL +
" padding:0px;" + NL +
" margin:0px;" + NL +
" white-space:pre;" + NL +
"}"},
// Test whether a link to the stylesheet file is inserted properly // Test whether a link to the stylesheet file is inserted properly
// in the class documentation. // in the class documentation.
{BUG_ID + FS + "pkg" + FS + "A.html", {BUG_ID + FS + "pkg" + FS + "A.html",