JDK-8190249 : Missing content from cssref.html due to missed closing comment
  • Type: Bug
  • Component: javafx
  • Sub-Component: other
  • Affected Version: 8u152
  • Priority: P2
  • Status: Resolved
  • Resolution: Fixed
  • Submitted: 2017-10-27
  • Updated: 2018-01-08
  • Resolved: 2017-10-30
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 8
8u162Fixed
Related Reports
Relates :  
Description
When backporting JDK-8180064 to FX 8u-dev, a closing comment for the copyright header was inadvertently omitted in cssref.html, which is part of the javadoc bundle. This causes the entire first half of that HTML page to be skipped and the remaining of the document to be badly rendered. This bug is in 8u152, and now also present in 8u161 and 8u162 EA builds.

To see the bad doc, load the following URL in your browser:

http://hg.openjdk.java.net/openjfx/8u/rt/raw-file/5067927840b3/modules/graphics/src/main/docs/javafx/scene/doc-files/cssref.html

To see the good doc, load the following URL in your browser:

http://hg.openjdk.java.net/openjfx/8u/rt/raw-file/3545959fa67f/modules/graphics/src/main/docs/javafx/scene/doc-files/cssref.html

Comments
Changeset: 32f0fd77356c Author: kcr Date: 2017-10-30 06:54 -0700 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/32f0fd77356c 8190249: Missing content from cssref.html due to missed closing comment Reviewed-by: prr
30-10-2017

+1
27-10-2017

Here is the simple diff for review. diff --git a/modules/graphics/src/main/docs/javafx/scene/doc-files/cssref.html b/modules/graphics/src/main/docs/javafx/scene/doc-files/cssref.html --- a/modules/graphics/src/main/docs/javafx/scene/doc-files/cssref.html +++ b/modules/graphics/src/main/docs/javafx/scene/doc-files/cssref.html @@ -25,6 +25,8 @@ * or visit www.oracle.com if you need additional information or have any * questions. */ +--> + <html lang="en-US"> <head> <meta name="description" content="This document describes the JavaFX
27-10-2017