JDK-8184220 : Fix tidy issues in JavaFX docs
  • Type: Bug
  • Component: javafx
  • Sub-Component: other
  • Affected Version: 9
  • Priority: P3
  • Status: Resolved
  • Resolution: Fixed
  • Submitted: 2017-07-12
  • Updated: 2019-02-20
  • Resolved: 2017-10-24
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 10
10Fixed
Related Reports
Duplicate :  
Relates :  
Relates :  
Relates :  
Relates :  
Description
While doclint catches many/most HTML issues in source code, it doesn't process all files ... especially stand-alone HTML files such as found in doc-files directories.

For now, "tidy" can be used to check such HTML files, typically using "tidy -e <file>..."  tidy is a standard utility for Unix-like platforms.

Here is the current report for the JavaFX docs in JDK 10:


Tidy Report

  1778 files read
  1520 files had no errors or warnings
     1 files reported "Not all warnings/errors were shown."
    54 errors found
  1596 warnings found
     2 recommendations to use CSS

    85 % files with no errors or warnings
  0.93 average errors or warnings per file

  1248: Warning: <.*> anchor ".*" already defined
   186: Warning: trimming empty <.*>
    27: Warning: discarding unexpected <.*>
    18: Warning: missing <.*>
     8: Error: <.*> is not recognized!
     7: Warning: <.*> isn't allowed in <.*> elements
     3: Warning: <.*> lacks ".*" attribute
     2: Warning: <a> id and name attribute value mismatch
     2: Warning: inserting implicit <.*>
     1: Warning: <.*> missing '>' for end of tag
     1: Warning: missing <!DOCTYPE> declaration

Also note:

DocType Report

  1775: HTML5
     1: -//W3C//DTD HTML 4.01 Transitional//EN
     1: -//W3C//DTD XHTML 1.0 Transitional//EN

I recommend upgrading these files to HTML5, in case that triggers more warnings/errors to be found by tidy.

Comments
Changeset: ef457e34c6af Author: jgiles Date: 2017-10-23 15:11 -0700 URL: http://hg.openjdk.java.net/openjfx/10-dev/rt/rev/ef457e34c6af 8184220: Fix tidy issues in JavaFX docs Reviewed-by: jjg, kcr
24-10-2017

Thanks. Since I found a couple things relating to the csspropertytable style class that need to be fixed as part of JDK-8184223, I will address the spacing and padding at the same time.
24-10-2017

Delta webrev looks good. That being said, there are no changes to the style declaration for csspropertytable to compensate for removing the (now ineffective) cellspacing and cellpadding, so you might want to check the generated docs to make sure they are visually pleasing and well as syntactically correct.
17-10-2017

Updated webrev with a few items fixed up: http://cr.openjdk.java.net/~kcr/8184220/webrev.02/ Here is the delta from the .1 version: http://cr.openjdk.java.net/~kcr/8184220/delta.01.02/ This includes a fix by Jonathan to remove cellpadding and cellspacing from cssref.html and removal of an orphaned javadoc block in Parent.java along with resolving a minor merge conflict with the recent fix for JDK-8182775 and fixing a minor whitespace issue.
12-10-2017

I have a patch locally that builds on top of this webrev for JDK-8184223 - once I get a +1 on this issue, I'll put up a webrev for JDK-8184223.
03-09-2017

Updated webrev for review: http://cr.openjdk.java.net/~jgiles/8184220.1
01-09-2017

Strange, tidy doesn't report these for me. Anyway, I'll fix them and get a new webrev up soon. Once that is merged I nearly have JDK-8184223 resolved - but it depends on this patch - so it would be good to get it approved ASAP.
01-09-2017

Sorry, I was getting confused. My earlier comments were from reading the webrev. Then, just now, I was trying to read the webrev, but this time round, I temporarily missed cssref.html (My mistake. Doh!) Looking at the webrev for cssref.html, I agree the summary attribute has been fixed. The file still shows use of cellspacing and cellpadding, which are not valid in HTML5, even though tidy does not warn against them. https://www.w3.org/TR/html5/tabular-data.html#tabular-data As regards the <li> messages, I still get them on a patched version of cssref.html. $ tidy -e -q --gnu-emacs true build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4073:13: Warning: missing <li> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4074:17: Warning: missing <li> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4074:21: Warning: missing <li> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4076:25: Warning: missing <li> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4076:29: Warning: missing <li> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4545:17: Warning: missing <li> These are the patched lines, starting at 4071: <h4>Substructure</h4> <ul>.list-view &mdash; the ListView&lt;T&gt; <ul>.virtual-flow &mdash; VirtualFlow <ul>.clipped-container &mdash; <a href="#region">Region</a> <ul>.sheet &mdash; Group <ul>.cell.indexed-cell.list-cell &mdash; <a href="#listcell">ListCell&lt;T&gt;</a></ul> .scroll-bar &mdash; <a href="#scrollbar">ScrollBar</a> </ul> </ul> </ul> </ul> The text immediately following each of 5 <ul> is incorrect, since there is indeed a missing <li> Here are the patched lines, starting at 4540: <h4>Substructure</h4> <ul> <li>viewport &mdash; StackPane <ul> <li> * &mdash; StackPane</li> <ul><li>The ScrollPane's content</li></ul> </ul> </li> <li>scroll-bar:vertical &mdash; ScrollBar</li> <li>scroll-bar:horizontall &mdash; ScrollBar</li> <li>corner &mdash; StackPane</li> </ul> In the middle of that, the line containing <ul><li>The ScrollPane's content</li></ul> is incorrect, since it appears in an enclosing <ul> but outside of a <li> Regrettably, the structure of the source files in javafx-exports.zip (the file I import into a JDK build) is different to the structure of the files in the webrev/patch, so it is not simple to apply the full patch to the content of my JDK build.
31-08-2017

Will investigate. I'm not set up to build JavaFX, but I can try and figure a way to patch the files that get imported into a JDK build.
31-08-2017

The webrev changes here: http://cr.openjdk.java.net/~jgiles/8184220/ I presume your comment following my webrev link above was related to reviewing these changes with tidy, but maybe your comment is unrelated?
31-08-2017

[~jjg] I'm not clear on the cssref.html issue. When I run tidy against my local source I don't get any warnings on this file, and the warnings you reference don't show up in a visual inspection. Can you confirm that the issues you're seeing on cssref.html are on a version of the file that has this patch applied?
31-08-2017

It seems my javadoc task isn't outputting cssref.html, so I didn't get the output for cssref. I'll do another webrev when time permits including this file.
24-08-2017

I see lots of use of cellspacing and cellpadding, which is not allowed in HTML 5. That's really depressing, because it's the first evidence I've seen that tidy allows old/obsolete attributes. https://www.w3schools.com/tags/att_table_cellspacing.asp https://www.w3schools.com/tags/att_table_cellpadding.asp Also, on a sample of 1, I get the following errors from cssref.html. These are all confirmed by visual inspection of the file. line 3991 column 13 - Warning: missing <li> line 3992 column 17 - Warning: missing <li> line 3992 column 21 - Warning: missing <li> line 3994 column 25 - Warning: missing <li> line 3994 column 29 - Warning: missing <li> line 4463 column 17 - Warning: missing <li>
24-08-2017

I think the following webrev fixes most, if not all, of the issues identified above: http://cr.openjdk.java.net/~jgiles/8184220/
24-08-2017

Note: "Warning: trimming empty <p>" typically comes from using <p> near the end of a doc comment, such as before a block (non-inline) javadoc tag. See, for example, this example from Paper.java: /** * A class which encapsulates the size of paper media as used by printers. * <p> * The paper sizes which are enumerated for a printer is the authoritative * source of Paper sizes that may be selected for printing on that printer. * <p> * However for convenience, this class pre-defines some of the most * common paper sizes so that an application may easily set up default * parameters from code, eg by referring to <code>Paper.A4</code> * <p> <<<<========================= This is redundant, since it is not followed by any paragraph text. * @since JavaFX 8.0 */
23-08-2017

Here are the specific messages from tidy: $ tidy -e -q --gnu-emacs true $(find build/linux*/images/docs/api/javafx -name \*.html) build/linux-x86_64-normal-server-release/images/docs/api/javafx/animation/Animation.html:1801:2: Warning: trimming empty <p> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/Parent.html:742:2: Warning: trimming empty <p> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/Parent.html:781:2: Warning: trimming empty <p> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/Parent.html:821:2: Warning: trimming empty <p> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/Parent.html:861:2: Warning: trimming empty <p> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/layout/TilePane.html:290:2: Warning: missing <td> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/layout/TilePane.html:293:2: Warning: missing <td> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/layout/FlowPane.html:279:2: Warning: missing <td> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/layout/FlowPane.html:282:2: Warning: missing <td> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/canvas/GraphicsContext.html:432:2: Warning: missing </a> before <a> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/canvas/GraphicsContext.html:437:2: Warning: discarding unexpected </a> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/canvas/GraphicsContext.html:447:2: Warning: missing </a> before <a> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/canvas/GraphicsContext.html:453:2: Warning: discarding unexpected </a> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/canvas/GraphicsContext.html:500:2: Warning: missing </a> before <a> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/canvas/GraphicsContext.html:503:2: Warning: discarding unexpected </a> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/canvas/GraphicsContext.html:513:2: Warning: missing </a> before <a> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/canvas/GraphicsContext.html:516:2: Warning: discarding unexpected </a> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/canvas/GraphicsContext.html:550:2: Warning: missing </a> before <a> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/canvas/GraphicsContext.html:552:2: Warning: discarding unexpected </a> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/canvas/GraphicsContext.html:562:2: Warning: missing </a> before <a> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/canvas/GraphicsContext.html:564:2: Warning: discarding unexpected </a> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/canvas/GraphicsContext.html:574:2: Warning: missing </a> before <a> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/canvas/GraphicsContext.html:576:2: Warning: discarding unexpected </a> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/canvas/GraphicsContext.html:592:2: Warning: missing </a> before <a> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/canvas/GraphicsContext.html:594:2: Warning: discarding unexpected </a> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/transform/Transform.html:2458:2: Warning: trimming empty <p> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/web/WebView.html:1257:2: Warning: trimming empty <p> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/text/TextBoundsType.html:174:2: Warning: trimming empty <p> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/control/CustomMenuItem.html:193:2: Warning: trimming empty <p> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/control/SeparatorMenuItem.html:165:2: Warning: trimming empty <p> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/control/Skinnable.html:148:2: Warning: trimming empty <p> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/Node.html:8353:2: Warning: trimming empty <p> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/Node.html:8390:2: Warning: trimming empty <p> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/Node.html:8425:2: Warning: trimming empty <p> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/Node.html:8461:2: Warning: trimming empty <p> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/Node.html:8500:2: Warning: trimming empty <p> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/Node.html:8539:2: Warning: trimming empty <p> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/Node.html:8572:2: Warning: trimming empty <p> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/Node.html:8639:2: Warning: trimming empty <p> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/Group.html:679:2: Warning: trimming empty <p> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/Group.html:719:2: Warning: trimming empty <p> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4073:13: Warning: missing <li> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4074:17: Warning: missing <li> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4074:21: Warning: missing <li> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4076:25: Warning: missing <li> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4076:29: Warning: missing <li> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4545:17: Warning: missing <li> build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:600:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:1055:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:1233:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:1907:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:1921:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:1930:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:1953:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:2082:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:2116:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:2145:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:2154:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:2175:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:2185:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:2206:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:2229:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:2261:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:2316:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:2368:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:2405:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:2505:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:2958:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:2983:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:3058:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:3094:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:3104:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:3113:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:3207:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:3236:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:3273:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:3304:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:3313:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:3365:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:3374:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:3444:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:3475:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:3501:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:3520:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:3544:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:3577:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:3613:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:3641:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:3702:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:3761:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:3790:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:3860:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:3882:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:3907:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:3932:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4034:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4053:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4086:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4105:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4135:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4161:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4237:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4277:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4308:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4342:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4384:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4400:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4431:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4469:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4515:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4554:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4588:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4651:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4667:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4696:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4760:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4789:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4806:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4828:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4861:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4913:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4969:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:4990:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:5035:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:5057:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:5107:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:5149:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:5202:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:5221:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:5252:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:5281:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:5320:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:5339:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:5361:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:5392:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:5475:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:5498:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:5521:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:5537:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:5557:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:5582:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:5606:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:5614:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:5655:7: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:5672:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:5735:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:5769:7: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:5797:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:5824:7: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:5841:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:5877:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:5917:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:5938:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:5972:7: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:5995:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:6017:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:6054:7: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:6094:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:6120:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:6137:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:6176:5: Warning: The summary attribute on the <table> element is obsolete in HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/scene/doc-files/cssref.html:6252:1: Warning: <font> element removed from HTML5 build/linux-x86_64-normal-server-release/images/docs/api/javafx/print/Paper.html:181:2: Warning: trimming empty <p> build/linux-x86_64-normal-server-release/images/docs/api/javafx/print/PrinterJob.html:208:2: Warning: trimming empty <p> build/linux-x86_64-normal-server-release/images/docs/api/javafx/print/JobSettings.html:1029:2: Warning: trimming empty <p> build/linux-x86_64-normal-server-release/images/docs/api/javafx/fxml/doc-files/introduction_to_fxml.html:1102:1: Warning: <font> element removed from HTML5
23-08-2017

Update: Tidy Report 1777 files read 1752 files had no errors or warnings 0 files reported "Not all warnings/errors were shown." 0 errors found 180 warnings found 2 recommendations to use CSS 98 % files with no errors or warnings 0.10 average errors or warnings per file 114: Warning: The summary attribute on the <table> element is obsolete in HTML5 24: Warning: trimming empty <.*> 18: Warning: missing <.*> 15: Warning: discarding unexpected <.*> 7: Warning: <.*> isn't allowed in <.*> elements 2: Warning: <.*> element removed from HTML5
23-08-2017

I'm running a new docs build now, and have updated my analyzer script to understand JavaFX modules, so I'll posted updated per-module stats soon.
12-07-2017

Most tidy issues were fixed as part of JDK-8180338. With the version of tidy that I used the only remaining errors were in cssref.html, which are covered by JDK-8182300. I might have missed others, though.
12-07-2017

I would start by running "tidy" on the .html files in your source tree(s) and working through the issues it reports.
12-07-2017