Merge

Mon, 20 Jun 2011 17:39:54 -0700

author
schien
date
Mon, 20 Jun 2011 17:39:54 -0700
changeset 1037
06b6bbbe2787
parent 1020
f27b6f45a449
parent 1036
436fb6aeda5a
child 1041
e0dec1645823
child 1046
d59414955614

Merge

src/share/classes/com/sun/tools/doclets/internal/toolkit/resources/inherit.gif file | annotate | diff | comparison | revisions
     1.1 --- a/.hgtags	Wed Jun 08 10:25:17 2011 -0700
     1.2 +++ b/.hgtags	Mon Jun 20 17:39:54 2011 -0700
     1.3 @@ -120,3 +120,4 @@
     1.4  5faa9eedc44e201f2b13ad837e9077668b823d28 jdk7-b143
     1.5  8eb952f43b117d538f6ca5e9e43ff9ce7646c7ee jdk7-b144
     1.6  c455e2ae5c93014ae3fc475aba4509b5f70465f7 jdk7-b145
     1.7 +9425dd4f53d5bfcd992d9aecea0eb7d8b2d4f62b jdk7-b146
     2.1 --- a/src/share/classes/com/sun/tools/doclets/formats/html/HtmlDoclet.java	Wed Jun 08 10:25:17 2011 -0700
     2.2 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/HtmlDoclet.java	Mon Jun 20 17:39:54 2011 -0700
     2.3 @@ -110,7 +110,10 @@
     2.4          String configstylefile = configuration.stylesheetfile;
     2.5          performCopy(configdestdir, confighelpfile);
     2.6          performCopy(configdestdir, configstylefile);
     2.7 -        Util.copyResourceFile(configuration, "inherit.gif", false);
     2.8 +        Util.copyResourceFile(configuration, "background.gif", false);
     2.9 +        Util.copyResourceFile(configuration, "tab.gif", false);
    2.10 +        Util.copyResourceFile(configuration, "titlebar.gif", false);
    2.11 +        Util.copyResourceFile(configuration, "titlebar_end.gif", false);
    2.12          // do early to reduce memory footprint
    2.13          if (configuration.classuse) {
    2.14              ClassUseWriter.generate(configuration, classtree);
     3.1 Binary file src/share/classes/com/sun/tools/doclets/internal/toolkit/resources/background.gif has changed
     4.1 Binary file src/share/classes/com/sun/tools/doclets/internal/toolkit/resources/inherit.gif has changed
     5.1 --- a/src/share/classes/com/sun/tools/doclets/internal/toolkit/resources/stylesheet.css	Wed Jun 08 10:25:17 2011 -0700
     5.2 +++ b/src/share/classes/com/sun/tools/doclets/internal/toolkit/resources/stylesheet.css	Mon Jun 20 17:39:54 2011 -0700
     5.3 @@ -3,187 +3,290 @@
     5.4  Overall document style
     5.5  */
     5.6  body {
     5.7 -    font-family:Helvetica, Arial, sans-serif;
     5.8 -    color:#000000;
     5.9 +    background-color:#ffffff;
    5.10 +    color:#353833;
    5.11 +    font-family:Arial, Helvetica, sans-serif;
    5.12 +    font-size:76%;
    5.13 +    margin:0;
    5.14 +}
    5.15 +a:link, a:visited {
    5.16 +    text-decoration:none;
    5.17 +    color:#4c6b87;
    5.18 +}
    5.19 +a:hover, a:focus {
    5.20 +    text-decoration:none;
    5.21 +    color:#bb7a2a;
    5.22 +}
    5.23 +a:active {
    5.24 +    text-decoration:none;
    5.25 +    color:#4c6b87;
    5.26 +}
    5.27 +a[name] {
    5.28 +    color:#353833;
    5.29 +}
    5.30 +a[name]:hover {
    5.31 +    text-decoration:none;
    5.32 +    color:#353833;
    5.33  }
    5.34  pre {
    5.35 -    font-size:1.0em;
    5.36 +    font-size:1.3em;
    5.37  }
    5.38  h1 {
    5.39 +    font-size:1.8em;
    5.40 +}
    5.41 +h2 {
    5.42 +    font-size:1.5em;
    5.43 +}
    5.44 +h3 {
    5.45      font-size:1.4em;
    5.46  }
    5.47 -h2 {
    5.48 -    font-size:1.35em;
    5.49 -}
    5.50 -h3 {
    5.51 +h4 {
    5.52      font-size:1.3em;
    5.53  }
    5.54 -h4 {
    5.55 -    font-size:1.25em;
    5.56 +h5 {
    5.57 +    font-size:1.2em;
    5.58 +}
    5.59 +h6 {
    5.60 +    font-size:1.1em;
    5.61  }
    5.62  ul {
    5.63 -    margin:10px 0 10px 20px;
    5.64      list-style-type:disc;
    5.65  }
    5.66 -caption {
    5.67 -    background: #CCCCFF;
    5.68 -    color:#000000;
    5.69 -    text-align:left;
    5.70 -    font-size:150%;
    5.71 -    font-weight:bold;
    5.72 -    border-left:2px ridge;
    5.73 -    border-right:2px ridge;
    5.74 -    border-top:2px ridge;
    5.75 -    padding-left:5px;
    5.76 -    width:auto;
    5.77 +code, tt {
    5.78 +    font-size:1.2em;
    5.79 +}
    5.80 +dt code {
    5.81 +    font-size:1.2em;
    5.82 +}
    5.83 +table tr td dt code {
    5.84 +    font-size:1.2em;
    5.85 +    vertical-align:top;
    5.86 +}
    5.87 +sup {
    5.88 +    font-size:.6em;
    5.89  }
    5.90  /*
    5.91  Document title and Copyright styles
    5.92  */
    5.93 +.clear {
    5.94 +    clear:both;
    5.95 +    height:0px;
    5.96 +    overflow:hidden;
    5.97 +}
    5.98  .aboutLanguage {
    5.99      float:right;
   5.100 -    font-size:0.9em;
   5.101 -    color:#000000;
   5.102 +    padding:0px 21px;
   5.103 +    font-size:.8em;
   5.104 +    z-index:200;
   5.105 +    margin-top:-7px;
   5.106  }
   5.107  .legalCopy {
   5.108 -    margin:7px 0;
   5.109 +    margin-left:.5em;
   5.110  }
   5.111 -.bar {
   5.112 -    font-size:1em;
   5.113 -    margin:10px 0 0 2px;
   5.114 +.bar a, .bar a:link, .bar a:visited, .bar a:active {
   5.115 +    color:#FFFFFF;
   5.116 +    text-decoration:none;
   5.117  }
   5.118 -.bar a {
   5.119 -    font-weight:normal;
   5.120 +.bar a:hover, .bar a:focus {
   5.121 +    color:#bb7a2a;
   5.122 +}
   5.123 +.tab {
   5.124 +    background-color:#0066FF;
   5.125 +    background-image:url(resources/titlebar.gif);
   5.126 +    background-position:left top;
   5.127 +    background-repeat:no-repeat;
   5.128 +    color:#ffffff;
   5.129 +    padding:8px;
   5.130 +    width:5em;
   5.131 +    font-weight:bold;
   5.132  }
   5.133  /*
   5.134  Navigation bar styles
   5.135  */
   5.136 +.bar {
   5.137 +    background-image:url(resources/background.gif);
   5.138 +    background-repeat:repeat-x;
   5.139 +    color:#FFFFFF;
   5.140 +    padding:.8em .5em .4em .8em;
   5.141 +    height:auto;/*height:1.8em;*/
   5.142 +    font-size:1em;
   5.143 +    margin:0;
   5.144 +}
   5.145  .topNav {
   5.146 -    border-top:2px solid #C0C0C0;
   5.147 -    padding:7px 0;
   5.148 +    background-image:url(resources/background.gif);
   5.149 +    background-repeat:repeat-x;
   5.150 +    color:#FFFFFF;
   5.151 +    float:left;
   5.152 +    padding:0;
   5.153 +    width:100%;
   5.154 +    clear:right;
   5.155      height:2.8em;
   5.156 -    width:100%;
   5.157 -    min-width:600px;
   5.158 +    padding-top:10px;
   5.159 +    overflow:hidden;
   5.160  }
   5.161  .bottomNav {
   5.162 -    border-top:2px solid #C0C0C0;
   5.163 -    padding:7px 0;
   5.164 +    margin-top:10px;
   5.165 +    background-image:url(resources/background.gif);
   5.166 +    background-repeat:repeat-x;
   5.167 +    color:#FFFFFF;
   5.168 +    float:left;
   5.169 +    padding:0;
   5.170 +    width:100%;
   5.171 +    clear:right;
   5.172      height:2.8em;
   5.173 -    width:100%;
   5.174 +    padding-top:10px;
   5.175 +    overflow:hidden;
   5.176  }
   5.177  .subNav {
   5.178 -    border-bottom:2px solid #C0C0C0;
   5.179 +    background-color:#dee3e9;
   5.180 +    border-bottom:1px solid #9eadc0;
   5.181      float:left;
   5.182      width:100%;
   5.183 -    min-width:600px;
   5.184 +    overflow:hidden;
   5.185  }
   5.186  .subNav div {
   5.187      clear:left;
   5.188      float:left;
   5.189 -    padding:0 0 5px 2px;
   5.190 -    width:100%;
   5.191 +    padding:0 0 5px 6px;
   5.192  }
   5.193 -.topNav a:link,.topNav a:active, .topNav a:visited, .topNav a:hover,
   5.194 -.bottomNav a:link,.bottomNav a:active, .bottomNav a:visited, .bottomNav a:hover {
   5.195 -    color:#000000;
   5.196 -    font-weight:bold;
   5.197 -    text-decoration:underline;
   5.198 -    font-size:1em;
   5.199 -}
   5.200 -/* Navigation bar list styles */
   5.201 -.topNav ul.navList, .bottomNav ul.navList {
   5.202 -    background-color:#EEEEFF;
   5.203 -    padding:4px 4px;
   5.204 -    margin:0;
   5.205 +ul.navList, ul.subNavList {
   5.206      float:left;
   5.207 -    width:80%;
   5.208 +    margin:0 25px 0 0;
   5.209 +    padding:0;
   5.210  }
   5.211  ul.navList li{
   5.212      list-style:none;
   5.213      float:left;
   5.214 -    padding:0 4px;
   5.215 -    color:#000000;
   5.216 -    font-size:0.98em;
   5.217 -}
   5.218 -ul.navList li.navBarCell1Rev {
   5.219 -    background-color:#00008B;
   5.220 -    color:#FFFFFF;
   5.221 -    font-weight:bold;
   5.222 -    font-size:0.97em;
   5.223 -}
   5.224 -/* Sub-navigation bar list styles */
   5.225 -.subNav ul.navList {
   5.226 -    float:left;
   5.227 -    margin:0;
   5.228 -    padding:0;
   5.229 -    font-size:0.8em;
   5.230 -    width:350px;
   5.231 -}
   5.232 -ul.subNavList {
   5.233 -    float:left;
   5.234 -    font-size:0.8em;
   5.235 -    width:350px;
   5.236 -    margin:0;
   5.237 -    padding:0;
   5.238 +    padding:3px 6px;
   5.239  }
   5.240  ul.subNavList li{
   5.241      list-style:none;
   5.242      float:left;
   5.243 -    font-size:98%;
   5.244 +    font-size:90%;
   5.245 +}
   5.246 +.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited {
   5.247 +    color:#FFFFFF;
   5.248 +    text-decoration:none;
   5.249 +}
   5.250 +.topNav a:hover, .bottomNav a:hover {
   5.251 +    text-decoration:none;
   5.252 +    color:#bb7a2a;
   5.253 +}
   5.254 +.navBarCell1Rev {
   5.255 +    background-image:url(resources/tab.gif);
   5.256 +    background-color:#a88834;
   5.257 +    color:#FFFFFF;
   5.258 +    margin: auto 5px;
   5.259 +    border:1px solid #c9aa44;
   5.260  }
   5.261  /*
   5.262  Page header and footer styles
   5.263  */
   5.264  .header, .footer {
   5.265      clear:both;
   5.266 -    padding:10px 0;
   5.267 +    margin:0 20px;
   5.268 +    padding:5px 0 0 0;
   5.269  }
   5.270  .indexHeader {
   5.271 -    font-size:0.9em;
   5.272 -    margin:10px 0 0 2px;
   5.273 +    margin:10px;
   5.274 +    position:relative;
   5.275 +}
   5.276 +.indexHeader h1 {
   5.277 +    font-size:1.3em;
   5.278 +}
   5.279 +.title {
   5.280 +    color:#2c4557;
   5.281 +    margin:10px 0;
   5.282 +}
   5.283 +.subTitle {
   5.284 +    margin:5px 0 0 0;
   5.285  }
   5.286  .header ul {
   5.287 -    padding-left:20px;
   5.288 +    margin:0 0 25px 0;
   5.289 +    padding:0;
   5.290  }
   5.291 -/* Header and footer title styles */
   5.292 -.header h1.title {
   5.293 -    font-size:1.4em;
   5.294 -    text-align:center;
   5.295 -    margin:0;
   5.296 +.footer ul {
   5.297 +    margin:20px 0 5px 0;
   5.298  }
   5.299 -.header h2.title {
   5.300 -    font-size:1.35em;
   5.301 -    margin:0;
   5.302 -}
   5.303 -.subTitle {
   5.304 -    padding-top:10px;
   5.305 +.header ul li, .footer ul li {
   5.306 +    list-style:none;
   5.307 +    font-size:1.2em;
   5.308  }
   5.309  /*
   5.310 -Content styles
   5.311 +Heading styles
   5.312  */
   5.313 -.deprecatedContent {
   5.314 -    margin:0;
   5.315 -    padding:10px 0;
   5.316 +div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 {
   5.317 +    background-color:#dee3e9;
   5.318 +    border-top:1px solid #9eadc0;
   5.319 +    border-bottom:1px solid #9eadc0;
   5.320 +    margin:0 0 6px -8px;
   5.321 +    padding:2px 5px;
   5.322  }
   5.323 -.docSummary {
   5.324 -    padding-top:10px;
   5.325 +ul.blockList ul.blockList ul.blockList li.blockList h3 {
   5.326 +    background-color:#dee3e9;
   5.327 +    border-top:1px solid #9eadc0;
   5.328 +    border-bottom:1px solid #9eadc0;
   5.329 +    margin:0 0 6px -8px;
   5.330 +    padding:2px 5px;
   5.331 +}
   5.332 +ul.blockList ul.blockList li.blockList h3 {
   5.333 +    padding:0;
   5.334 +    margin:15px 0;
   5.335 +}
   5.336 +ul.blockList li.blockList h2 {
   5.337 +    padding:0px 0 20px 0;
   5.338  }
   5.339  /*
   5.340  Page layout container styles
   5.341  */
   5.342 -.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer,
   5.343 -.constantValuesContainer {
   5.344 +.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer {
   5.345      clear:both;
   5.346 +    padding:10px 20px;
   5.347      position:relative;
   5.348 -    padding-bottom:20px;
   5.349  }
   5.350  .indexContainer {
   5.351 -    padding:0 0 0 2px;
   5.352 +    margin:10px;
   5.353 +    position:relative;
   5.354 +    font-size:1.0em;
   5.355 +}
   5.356 +.indexContainer h2 {
   5.357 +    font-size:1.1em;
   5.358 +    padding:0 0 3px 0;
   5.359 +}
   5.360 +.indexContainer ul {
   5.361 +    margin:0;
   5.362 +    padding:0;
   5.363 +}
   5.364 +.indexContainer ul li {
   5.365 +    list-style:none;
   5.366 +}
   5.367 +.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt {
   5.368 +    font-size:1.1em;
   5.369 +    font-weight:bold;
   5.370 +    margin:10px 0 0 0;
   5.371 +    color:#4E4E4E;
   5.372 +}
   5.373 +.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd {
   5.374 +    margin:10px 0 10px 20px;
   5.375 +}
   5.376 +.serializedFormContainer dl.nameValue dt {
   5.377 +    margin-left:1px;
   5.378 +    font-size:1.1em;
   5.379 +    display:inline;
   5.380 +    font-weight:bold;
   5.381 +}
   5.382 +.serializedFormContainer dl.nameValue dd {
   5.383 +    margin:0 0 0 1px;
   5.384 +    font-size:1.1em;
   5.385 +    display:inline;
   5.386 +}
   5.387 +/*
   5.388 +List styles
   5.389 +*/
   5.390 +ul.horizontal li {
   5.391 +    display:inline;
   5.392      font-size:0.9em;
   5.393  }
   5.394 -/*
   5.395 -Class inheritance information styles
   5.396 -*/
   5.397  ul.inheritance {
   5.398      margin:0;
   5.399      padding:0;
   5.400 @@ -194,236 +297,178 @@
   5.401  }
   5.402  ul.inheritance li ul.inheritance {
   5.403      margin-left:15px;
   5.404 -    background-image:url(resources/inherit.gif);
   5.405 -    background-repeat:no-repeat;
   5.406      padding-left:15px;
   5.407      padding-top:1px;
   5.408  }
   5.409 -/*
   5.410 -Heading styles
   5.411 -*/
   5.412 -.indexContainer h2 {
   5.413 -    font-weight:normal;
   5.414 -    font-size:1.0em;
   5.415 -    padding:5px 0 0 0;
   5.416 -    margin:10px 0 0 0;
   5.417 -}
   5.418 -.contentContainer h2 {
   5.419 -    margin:10px 0;
   5.420 -}
   5.421 -.constantValuesContainer h2 {
   5.422 -    background:#CCCCFF;
   5.423 -    border:2px ridge;
   5.424 -    padding:3px;
   5.425 -    margin:0 0 10px 0;
   5.426 -}
   5.427 -.serializedFormContainer ul.blockList li.blockList h2 {
   5.428 -    background:#EEEEFF;
   5.429 -    border:2px ridge;
   5.430 -    padding:3px;
   5.431 -    margin:0 0 15px 0;
   5.432 -    text-align:center;
   5.433 -}
   5.434 -.classUseContainer ul li ul li h3 {
   5.435 -    margin-bottom:30px;
   5.436 -    padding:3px;
   5.437 -}
   5.438 -.serializedFormContainer ul.blockList li.blockList ul.blockList li.blockList h3 {
   5.439 -    background:#EEEEFF;
   5.440 -    margin:0 0 15px 0;
   5.441 -    padding:3px;
   5.442 -}
   5.443 -.serializedFormContainer ul.blockList li.blockList ul.blockList li.blockList ul.blockList li.blockList h3 {
   5.444 -    background:#CCCCFF;
   5.445 -    margin:0 0 15px 0;
   5.446 -    padding:3px;
   5.447 -    border:2px ridge;
   5.448 -}
   5.449 -ul.blockList ul.blockList li.blockList h3, ul.blockList ul.blockList li.blockList h3 {
   5.450 -    background:#CCCCFF;
   5.451 -    border:2px ridge;
   5.452 -    padding-left:5px;
   5.453 -}
   5.454 -div.summary ul.blockList ul.blockList li.blockList h3 {
   5.455 -    background:#CCCCFF;
   5.456 -    border:0;
   5.457 -    border:2px ridge;
   5.458 -    margin:0;
   5.459 -}
   5.460 -div.summary ul.blockList ul.blockList ul.blockList li.blockList h3 {
   5.461 -    background:#EEEEFF;
   5.462 -    border:0;
   5.463 -    border-bottom:2px ridge;
   5.464 -}
   5.465 -div.details ul.blockList ul.blockList ul.blockList li.blockList h4,
   5.466 -div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 {
   5.467 -    font-size:1.15em;
   5.468 -    font-weight:bold;
   5.469 -    padding:0 0 5px 0;
   5.470 -    margin:0;
   5.471 -}
   5.472 -/*
   5.473 -Table styles
   5.474 -*/
   5.475 -.contentContainer table {
   5.476 -    border-collapse:collapse ;
   5.477 -    width:100%;
   5.478 -}
   5.479 -.contentContainer table td, .contentContainer table th {
   5.480 -    border:2px ridge;
   5.481 -}
   5.482 -/* Constant values page table styles */
   5.483 -.constantValuesContainer table {
   5.484 -    border-collapse:collapse;
   5.485 -}
   5.486 -.constantValuesContainer table caption{
   5.487 -    font-size:0.95em;
   5.488 -    padding:3px;
   5.489 -    background:#EEEEFF;
   5.490 -}
   5.491 -.constantValuesContainer table td, .constantValuesContainer table th {
   5.492 -    border:2px ridge;
   5.493 -    padding:3px;
   5.494 -}
   5.495 -/* Class-use/Package-use page table styles */
   5.496 -.classUseContainer table {
   5.497 -    border-collapse:collapse ;
   5.498 -    width:100%;
   5.499 -    margin:0 0 10px 0;
   5.500 -}
   5.501 -.classUseContainer ul li ul li table caption{
   5.502 -    font-size:0.95em;
   5.503 -    padding:3px;
   5.504 -    background:#EEEEFF;
   5.505 -}
   5.506 -.classUseContainer table td, .classUseContainer table th {
   5.507 -    border:2px ridge;
   5.508 -    padding:3px;
   5.509 -}
   5.510 -/* Summary table styles */
   5.511 -ul.blockList li.blockList table.overviewSummary {
   5.512 -    margin:0;
   5.513 -    margin-bottom:15px;
   5.514 -}
   5.515 -ul.blockList li.blockList table caption {
   5.516 -    padding:3px;
   5.517 -}
   5.518 -ul.blockList li.blockList table.overviewSummary td.colFirst{
   5.519 -    text-align:right;
   5.520 -}
   5.521 -table.packageSummary td.colFirst, table.overviewSummary th.colFirst {
   5.522 -    width:15%;
   5.523 -}
   5.524 -div.summary ul.blockList ul.blockList li.blockList caption {
   5.525 -    display:none;
   5.526 -}
   5.527 -div.summary ul.blockList li.blockList ul.blockList li.blockList table.overviewSummary th {
   5.528 -    border-top:0;
   5.529 -}
   5.530 -/* Table column block styles */
   5.531 -ul.blockList li.blockList table.overviewSummary td.colLast div.block{
   5.532 +ul.blockList, ul.blockListLast {
   5.533 +    margin:10px 0 10px 0;
   5.534      padding:0;
   5.535 -    padding-left:40px;
   5.536 -}
   5.537 -ul.blockList li.blockList table.overviewSummary td.colOne div.block{
   5.538 -    padding:0;
   5.539 -    padding-left:40px;
   5.540 -}
   5.541 -.contentContainer ul.blockList li.blockList table .colOne div.block{
   5.542 -    padding-left:40px;
   5.543 -}
   5.544 -.classUseContainer ul li ul li table .colLast div.block,
   5.545 -.classUseContainer ul li ul li table .colOne div.block{
   5.546 -    padding-left:40px;
   5.547 -}
   5.548 -/*
   5.549 -List styles
   5.550 -*/
   5.551 -ul.horizontal li {
   5.552 -    display:inline;
   5.553 -    font-size:0.9em;   
   5.554 -}
   5.555 -/* Container specific list styles */
   5.556 -.indexContainer ul {
   5.557 -    margin:0;
   5.558 -    padding:0;
   5.559 -}
   5.560 -.indexContainer ul li {
   5.561 -    list-style:none;
   5.562 -}
   5.563 -.serializedFormContainer ul.blockList li.blockList ul.blockList li.blockList ul.blockList li.blockList {
   5.564 -    border:0;
   5.565 -}
   5.566 -.serializedFormContainer ul.blockList li.blockList ul.blockList li.blockList ul.blockList li.blockList ul.blockList li.blockList {
   5.567 -    list-style:none;
   5.568 -    border:0;
   5.569 -    border-bottom:2px ridge;
   5.570 -    height:1%;
   5.571 -}
   5.572 -.serializedFormContainer ul.blockList li.blockList ul.blockList li.blockList ul.blockList li.blockList ul.blockList li.blockListLast {
   5.573 -    list-style:none;
   5.574 -}
   5.575 -/* General list styles */
   5.576 -ul.blockList, ul.blockListLast {
   5.577 -    margin-left:0;
   5.578 -    padding-left:0;
   5.579  }
   5.580  ul.blockList li.blockList, ul.blockListLast li.blockList {
   5.581      list-style:none;
   5.582      margin-bottom:25px;
   5.583  }
   5.584 -ul.blockList ul.blockList ul.blockList li.blockList {
   5.585 -    border:2px ridge;
   5.586 +ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList {
   5.587 +    padding:0px 20px 5px 10px;
   5.588 +    border:1px solid #9eadc0;
   5.589 +    background-color:#f9f9f9;
   5.590  }
   5.591 -div.details ul.blockList ul.blockList ul.blockList li.blockList {
   5.592 -    border:0;
   5.593 -    border-bottom:2px ridge;
   5.594 -    height:1%;
   5.595 +ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList {
   5.596 +    padding:0 0 5px 8px;
   5.597 +    background-color:#ffffff;
   5.598 +    border:1px solid #9eadc0;
   5.599 +    border-top:none;
   5.600  }
   5.601 -/* Definition list styles */
   5.602 -ul.blockList li.blockList dl{
   5.603 -    margin-bottom:15px;
   5.604 +ul.blockList ul.blockList ul.blockList ul.blockList li.blockList {
   5.605 +    margin-left:0;
   5.606 +    padding-left:0;
   5.607 +    padding-bottom:15px;
   5.608 +    border:none;
   5.609 +    border-bottom:1px solid #9eadc0;
   5.610  }
   5.611 -ul.blockList li.blockList dl dd{
   5.612 -    margin:0 0 0 30px;
   5.613 +ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast {
   5.614 +    list-style:none;
   5.615 +    border-bottom:none;
   5.616 +    padding-bottom:0;
   5.617  }
   5.618 -ul.blockList li.blockList ul.blockList li.blockList ul.blockList li.blockList dl,
   5.619 -ul.blockList li.blockList ul.blockList li.blockList ul.blockListLast li.blockList dl{
   5.620 -    padding:0 0 10px 35px;
   5.621 +table tr td dl, table tr td dl dt, table tr td dl dd {
   5.622 +    margin-top:0;
   5.623 +    margin-bottom:1px;
   5.624  }
   5.625 -dl.nameValue dt, dl.nameValue dd{
   5.626 -    display:inline;
   5.627 +/*
   5.628 +Table styles
   5.629 +*/
   5.630 +.contentContainer table, .classUseContainer table, .constantValuesContainer table {
   5.631 +    border-bottom:1px solid #9eadc0;
   5.632 +    width:100%;
   5.633  }
   5.634 -ul.blockList li.blockList pre{
   5.635 -    margin:0 0 15px 0;
   5.636 +.contentContainer ul li table, .classUseContainer ul li table, .constantValuesContainer ul li table {
   5.637 +    width:100%;
   5.638  }
   5.639 -.description dl dt {
   5.640 -    font-size:0.95em;
   5.641 +.contentContainer .description table, .contentContainer .details table {
   5.642 +    border-bottom:none;
   5.643 +}
   5.644 +.contentContainer ul li table th.colOne, .contentContainer ul li table th.colFirst, .contentContainer ul li table th.colLast, .classUseContainer ul li table th, .constantValuesContainer ul li table th, .contentContainer ul li table td.colOne, .contentContainer ul li table td.colFirst, .contentContainer ul li table td.colLast, .classUseContainer ul li table td, .constantValuesContainer ul li table td{
   5.645 +    vertical-align:top;
   5.646 +    padding-right:20px;
   5.647 +}
   5.648 +.contentContainer ul li table th.colLast, .classUseContainer ul li table th.colLast,.constantValuesContainer ul li table th.colLast,
   5.649 +.contentContainer ul li table td.colLast, .classUseContainer ul li table td.colLast,.constantValuesContainer ul li table td.colLast,
   5.650 +.contentContainer ul li table th.colOne, .classUseContainer ul li table th.colOne,
   5.651 +.contentContainer ul li table td.colOne, .classUseContainer ul li table td.colOne {
   5.652 +    padding-right:3px;
   5.653 +}
   5.654 +.overviewSummary caption, .packageSummary caption, .contentContainer ul.blockList li.blockList caption, .summary caption, .classUseContainer caption, .constantValuesContainer caption {
   5.655 +    position:relative;
   5.656 +    text-align:left;
   5.657 +    background-repeat:no-repeat;
   5.658 +    color:#FFFFFF;
   5.659      font-weight:bold;
   5.660 -    margin:5px 0 0 0;
   5.661 +    clear:none;
   5.662 +    overflow:hidden;
   5.663 +    padding:0px;
   5.664 +    margin:0px;
   5.665  }
   5.666 -.description dl dd {
   5.667 -    margin:10px 0 10px 20px;
   5.668 +caption a:link, caption a:hover, caption a:active, caption a:visited {
   5.669 +    color:#FFFFFF;
   5.670  }
   5.671 -/* List content styles */
   5.672 -ul.blockList li.blockList ul.blockList li.blockList pre{
   5.673 -    margin:10px 0 10px 0;
   5.674 +.overviewSummary caption span, .packageSummary caption span, .contentContainer ul.blockList li.blockList caption span, .summary caption span, .classUseContainer caption span, .constantValuesContainer caption span {
   5.675 +    white-space:nowrap;
   5.676 +    padding-top:8px;
   5.677 +    padding-left:8px;
   5.678 +    display:block;
   5.679 +    float:left;
   5.680 +    background-image:url(resources/titlebar.gif);
   5.681 +    height:18px;
   5.682  }
   5.683 -ul.blockList li.blockList ul.blockList li.blockList ul.blockList li.blockList pre,
   5.684 -ul.blockList li.blockList ul.blockList li.blockList ul.blockListLast li.blockList pre{
   5.685 -    padding:0 0 10px 0;
   5.686 +.overviewSummary .tabEnd, .packageSummary .tabEnd, .contentContainer ul.blockList li.blockList .tabEnd, .summary .tabEnd, .classUseContainer .tabEnd, .constantValuesContainer .tabEnd {
   5.687 +    width:10px;
   5.688 +    background-image:url(resources/titlebar_end.gif);
   5.689 +    background-repeat:no-repeat;
   5.690 +    background-position:top right;
   5.691 +    position:relative;
   5.692 +    float:left;
   5.693  }
   5.694 -ul.blockList li.blockList ul.blockList li.blockList ul.blockList li.blockList div.block,
   5.695 -ul.blockList li.blockList ul.blockList li.blockList ul.blockListLast li.blockList div.block{
   5.696 -    padding:0 0 10px 35px;
   5.697 +ul.blockList ul.blockList li.blockList table {
   5.698 +    margin:0 0 12px 0px;
   5.699 +    width:100%;
   5.700 +}
   5.701 +.tableSubHeadingColor {
   5.702 +    background-color: #EEEEFF;
   5.703 +}
   5.704 +.altColor {
   5.705 +    background-color:#eeeeef;
   5.706 +}
   5.707 +.rowColor {
   5.708 +    background-color:#ffffff;
   5.709 +}
   5.710 +.overviewSummary td, .packageSummary td, .contentContainer ul.blockList li.blockList td, .summary td, .classUseContainer td, .constantValuesContainer td {
   5.711 +    text-align:left;
   5.712 +    padding:3px 3px 3px 7px;
   5.713 +}
   5.714 +th.colFirst, th.colLast, th.colOne, .constantValuesContainer th {
   5.715 +    background:#dee3e9;
   5.716 +    border-top:1px solid #9eadc0;
   5.717 +    border-bottom:1px solid #9eadc0;
   5.718 +    text-align:left;
   5.719 +    padding:3px 3px 3px 7px;
   5.720 +}
   5.721 +td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover {
   5.722 +    font-weight:bold;
   5.723 +}
   5.724 +td.colFirst, th.colFirst {
   5.725 +    border-left:1px solid #9eadc0;
   5.726 +    white-space:nowrap;
   5.727 +}
   5.728 +td.colLast, th.colLast {
   5.729 +    border-right:1px solid #9eadc0;
   5.730 +}
   5.731 +td.colOne, th.colOne {
   5.732 +    border-right:1px solid #9eadc0;
   5.733 +    border-left:1px solid #9eadc0;
   5.734 +}
   5.735 +table.overviewSummary  {
   5.736 +    padding:0px;
   5.737 +    margin-left:0px;
   5.738 +}
   5.739 +table.overviewSummary td.colFirst, table.overviewSummary th.colFirst,
   5.740 +table.overviewSummary td.colOne, table.overviewSummary th.colOne {
   5.741 +    width:25%;
   5.742 +    vertical-align:middle;
   5.743 +}
   5.744 +table.packageSummary td.colFirst, table.overviewSummary th.colFirst {
   5.745 +    width:25%;
   5.746 +    vertical-align:middle;
   5.747 +}
   5.748 +/*
   5.749 +Content styles
   5.750 +*/
   5.751 +.description pre {
   5.752 +    margin-top:0;
   5.753 +}
   5.754 +.deprecatedContent {
   5.755 +    margin:0;
   5.756 +    padding:10px 0;
   5.757 +}
   5.758 +.docSummary {
   5.759 +    padding:0;
   5.760  }
   5.761  /*
   5.762  Formatting effect styles
   5.763  */
   5.764 -.strong {
   5.765 -    font-weight:bold;
   5.766 -}
   5.767  .sourceLineNo {
   5.768      color:green;
   5.769      padding:0 30px 0 0;
   5.770  }
   5.771 +h1.hidden {
   5.772 +    visibility:hidden;
   5.773 +    overflow:hidden;
   5.774 +    font-size:.9em;
   5.775 +}
   5.776 +.block {
   5.777 +    display:block;
   5.778 +    margin:3px 0 0 0;
   5.779 +}
   5.780 +.strong {
   5.781 +    font-weight:bold;
   5.782 +}
     6.1 Binary file src/share/classes/com/sun/tools/doclets/internal/toolkit/resources/tab.gif has changed
     7.1 Binary file src/share/classes/com/sun/tools/doclets/internal/toolkit/resources/titlebar.gif has changed
     8.1 Binary file src/share/classes/com/sun/tools/doclets/internal/toolkit/resources/titlebar_end.gif has changed
     9.1 --- a/test/com/sun/javadoc/AccessH1/AccessH1.java	Wed Jun 08 10:25:17 2011 -0700
     9.2 +++ b/test/com/sun/javadoc/AccessH1/AccessH1.java	Mon Jun 20 17:39:54 2011 -0700
     9.3 @@ -1,5 +1,5 @@
     9.4  /*
     9.5 - * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
     9.6 + * Copyright (c) 2002, 2011, Oracle and/or its affiliates. All rights reserved.
     9.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     9.8   *
     9.9   * This code is free software; you can redistribute it and/or modify it
    9.10 @@ -23,7 +23,7 @@
    9.11  
    9.12  /*
    9.13   * @test
    9.14 - * @bug 4636667
    9.15 + * @bug 4636667 7052425
    9.16   * @summary  Use <H1, <H2>, and <H3> in proper sequence for accessibility
    9.17   * @author dkramer
    9.18   * @run main AccessH1
    9.19 @@ -42,7 +42,7 @@
    9.20   */
    9.21  public class AccessH1 {
    9.22  
    9.23 -    private static final String BUGID = "4636667";
    9.24 +    private static final String BUGID = "4636667-7052425";
    9.25      private static final String BUGNAME = "AccessH1";
    9.26      private static final String FS = System.getProperty("file.separator");
    9.27      private static final String PS = System.getProperty("path.separator");
    9.28 @@ -85,8 +85,7 @@
    9.29      private static final String[][] testArray = {
    9.30          // Test the style sheet
    9.31          {
    9.32 -            ".header h1.title {" + LS + "    font-size:1.4em;" + LS +
    9.33 -            "    text-align:center;" + LS + "    margin:0;" + LS +
    9.34 +            "h1 {" + LS + "    font-size:1.8em;" + LS +
    9.35              "}",
    9.36              TMPDEST_DIR1 + "stylesheet.css"
    9.37          },
    10.1 --- a/test/com/sun/javadoc/testStylesheet/TestStylesheet.java	Wed Jun 08 10:25:17 2011 -0700
    10.2 +++ b/test/com/sun/javadoc/testStylesheet/TestStylesheet.java	Mon Jun 20 17:39:54 2011 -0700
    10.3 @@ -23,7 +23,7 @@
    10.4  
    10.5  /*
    10.6   * @test
    10.7 - * @bug      4494033 7028815
    10.8 + * @bug      4494033 7028815 7052425
    10.9   * @summary  Run tests on doclet stylesheet.
   10.10   * @author   jamieh
   10.11   * @library  ../lib/
   10.12 @@ -34,7 +34,7 @@
   10.13  public class TestStylesheet extends JavadocTester {
   10.14  
   10.15      //Test information.
   10.16 -    private static final String BUG_ID = "4494033-7028815";
   10.17 +    private static final String BUG_ID = "4494033-7028815-7052425";
   10.18  
   10.19      //Javadoc arguments.
   10.20      private static final String[] ARGS = new String[] {
   10.21 @@ -52,11 +52,12 @@
   10.22          {BUG_ID + FS + "stylesheet.css",
   10.23                  "/*" + NL + "Navigation bar styles" + NL + "*/"},
   10.24          {BUG_ID + FS + "stylesheet.css",
   10.25 -                "body {" + NL + "    font-family:Helvetica, Arial, sans-serif;" + NL +
   10.26 -                "    color:#000000;" + NL + "}"},
   10.27 +                "body {" + NL + "    background-color:#ffffff;" + NL +
   10.28 +                "    color:#353833;" + NL +
   10.29 +                "    font-family:Arial, Helvetica, sans-serif;" + NL +
   10.30 +                "    font-size:76%;" + NL + "    margin:0;" + NL + "}"},
   10.31          {BUG_ID + FS + "stylesheet.css",
   10.32 -                "ul {" + NL + "    margin:10px 0 10px 20px;" + NL +
   10.33 -                "    list-style-type:disc;" + NL + "}"},
   10.34 +                "ul {" + NL + "    list-style-type:disc;" + NL + "}"},
   10.35          // Test whether a link to the stylesheet file is inserted properly
   10.36          // in the class documentation.
   10.37          {BUG_ID + FS + "pkg" + FS + "A.html",
    11.1 --- a/test/tools/javac/meth/InvokeMH.java	Wed Jun 08 10:25:17 2011 -0700
    11.2 +++ b/test/tools/javac/meth/InvokeMH.java	Mon Jun 20 17:39:54 2011 -0700
    11.3 @@ -77,23 +77,23 @@
    11.4          Object o; String s; int i;  // for return type testing
    11.5  
    11.6          // next five must have sig = (*,*)*
    11.7 -        o = mh_SiO.invokeGeneric((Object)"world", (Object)123);
    11.8 -        mh_SiO.invokeGeneric((Object)"mundus", (Object)456);
    11.9 +        o = mh_SiO.invoke((Object)"world", (Object)123);
   11.10 +        mh_SiO.invoke((Object)"mundus", (Object)456);
   11.11          Object k = "kosmos";
   11.12 -        o = mh_SiO.invokeGeneric(k, 789);
   11.13 -        o = mh_SiO.invokeGeneric(null, 000);
   11.14 -        o = mh_SiO.invokeGeneric("arda", -123);
   11.15 +        o = mh_SiO.invoke(k, 789);
   11.16 +        o = mh_SiO.invoke(null, 000);
   11.17 +        o = mh_SiO.invoke("arda", -123);
   11.18  
   11.19          // sig = ()String
   11.20 -        o = mh_vS.invokeGeneric();
   11.21 +        o = mh_vS.invoke();
   11.22  
   11.23          // sig = ()int
   11.24 -        i = (int) mh_vi.invokeGeneric();
   11.25 -        o = (int) mh_vi.invokeGeneric();
   11.26 -        mh_vi.invokeGeneric();
   11.27 +        i = (int) mh_vi.invoke();
   11.28 +        o = (int) mh_vi.invoke();
   11.29 +        mh_vi.invoke();
   11.30  
   11.31          // sig = ()void
   11.32 -        mh_vv.invokeGeneric();
   11.33 -        o = mh_vv.invokeGeneric();
   11.34 +        mh_vv.invoke();
   11.35 +        o = mh_vv.invoke();
   11.36      }
   11.37  }
    12.1 --- a/test/tools/javac/meth/XlintWarn.java	Wed Jun 08 10:25:17 2011 -0700
    12.2 +++ b/test/tools/javac/meth/XlintWarn.java	Mon Jun 20 17:39:54 2011 -0700
    12.3 @@ -35,19 +35,19 @@
    12.4  class XlintWarn {
    12.5      void test(MethodHandle mh) throws Throwable {
    12.6          int i1 = (int)mh.invokeExact();
    12.7 -        int i2 = (int)mh.invokeGeneric();
    12.8 +        int i2 = (int)mh.invoke();
    12.9          int i3 = (int)mh.invokeWithArguments();
   12.10      }
   12.11  
   12.12      void test2(MethodHandle mh) throws Throwable {
   12.13          int i1 = (int)(mh.invokeExact());
   12.14 -        int i2 = (int)(mh.invokeGeneric());
   12.15 +        int i2 = (int)(mh.invoke());
   12.16          int i3 = (int)(mh.invokeWithArguments());
   12.17      }
   12.18  
   12.19      void test3(MethodHandle mh) throws Throwable {
   12.20          int i1 = (int)((mh.invokeExact()));
   12.21 -        int i2 = (int)((mh.invokeGeneric()));
   12.22 +        int i2 = (int)((mh.invoke()));
   12.23          int i3 = (int)((mh.invokeWithArguments()));
   12.24      }
   12.25  }

mercurial