JDK-4753048 : stddoclet: not allowed outside <FRAMESET> element (invalid)</div> <div class="section row"> <div class="subsection col-md-4"> <!-- text block --> <ul class="detailsTable"> <li><span class="boldText">Type:</span> <span class="detailsText">Bug</span></li> <!-- Backport Need to Include --> <li><span class="boldText">Component:</span> <span class="detailsText">tools</span></li> <li><span class="boldText">Sub-Component:</span> <span class="detailsText">javadoc(tool)</span> </li> <li><span class="boldText">Affected Version:</span> <span class="detailsText">1.4.0 </span></li> </ul> </div> <div class="subsection col-md-4"> <!-- text block --> <ul class="detailsTable"> <li><span class="boldText">Priority:</span> <span class="detailsText">P4</span></li> <li><span class="boldText">Status:</span> <span class="detailsText">Resolved</span></li> <li><span class="boldText">Resolution:</span> <span class="detailsText">Fixed</span></li> <li><span class="boldText">OS:</span> <span class="detailsText">other</span></li> <li><span class="boldText">CPU:</span> <span class="detailsText">generic</span> </li> </ul> </div> <div class="subsection col-md-4"> <!-- text block --> <ul class="detailsTable"> <li><span class="boldText">Submitted:</span> <span class="detailsText">2002-09-25</span> <li><span class="boldText">Updated:</span> <span class="detailsText">2014-05-05</span> <li><span class="boldText">Resolved:</span> <span class="detailsText">2002-10-25</span> </li> </ul> </div> </div> <!-- ppppp --> <div class="sectionTitle"> <label> Versions (Unresolved/Resolved/Fixed)</label> <div class="bscTooltip"> <span class="glyphicon glyphicon-info-sign versionInfoTooltip"></span> <span class="bscTooltiptext" style="width: 350px !important;">The Version table provides details related to the release that this issue/RFE will be addressed.<br><br> <strong>Unresolved</strong> : Release in which this issue/RFE will be addressed.<br><strong>Resolved</strong>: Release in which this issue/RFE has been resolved.<br> <strong>Fixed</strong> : 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. <br><br> To download the current JDK release, click <a href="https://www.oracle.com/technetwork/java/javase/downloads/index.html" target="_blank">here</a>. </span> </div> </div> <div class="section row"> <div class="subsection col-md-3"> <!-- text block --> <table class="versionTable"> <thead class="versionTableHeader"> <tr> <th>Other</th> </tr> </thead> <tbody> <tr> <td ><span class="versionTableVal">1.4.2&nbsp;mantis</span><span class="label round label-success">Fixed </span></td> </tr> </tbody> </table> </div> </div> <div class="sectionTitle">Description</div> <div class="section row"> <div class="subsection col-md-12"><div class="descriptionText"><span id="linkDescriptionText"><PRE >Running W3C validator (http://validator.w3c.org) on the index.html page gives the following error: Error: element &#034;NOFRAMES&#034; not allowed here; check which elements this element may be contained within The problem is that &lt;NOFRAMES&gt; must be *inside* the &lt;FRAMESET&gt; element, and typically follows a &lt;FRAME&gt; element. However, the &lt;NOFRAMES&gt; tag currently follows the &lt;FRAMESET&gt; element, as shown here: 10: &lt;FRAMESET cols=&#034;20%,80%&#034;&gt; 11: &lt;FRAMESET rows=&#034;30%,70%&#034;&gt; 12: &lt;FRAME src=&#034;overview-frame.html&#034; name=&#034;packageListFrame&#034; title=&#034;All Packages&#034;&gt; 13: &lt;FRAME src=&#034;allclasses-frame.html&#034; name=&#034;packageFrame&#034; title=&#034;All classes and interfaces (except non-static nested types)&#034;&gt; 14: &lt;/FRAMESET&gt; 15: &lt;FRAME src=&#034;overview-summary.html&#034; name=&#034;classFrame&#034; title=&#034;Package, class and interface descriptions&#034;&gt; 16: &lt;/FRAMESET&gt; 17: &lt;NOFRAMES&gt; 18: &lt;H2&gt; 19: Frame Alert&lt;/H2&gt; 20: 21: &lt;P&gt; 22: This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. 23: &lt;BR&gt; 24: Link to&lt;A HREF=&#034;overview-summary.html&#034;&gt;Non-frame version.&lt;/A&gt;&lt;/NOFRAMES&gt; </PRE></span></div></div></div> <div class="sectionTitle">Comments</div> <div class="section row"> <div class="subsection col-md-12"> <table border="0" cellpadding="0" cellspacing="0" align="TOP" width="100%"> <tr><td valign="top" align="left"> <table align="left" bgcolor="#ffffff" border="0" cellpadding="5" cellspacing="2" width="100%"> <tbody> <tr><td align="left" width="80" class="grey5"> <div class="descriptionText"><span id="linkCommentText">CONVERTED DATA BugTraq+ Release Management Values COMMIT TO FIX: mantis FIXED IN: mantis INTEGRATED IN: mantis mantis-b05</span></div> </td></tr> <tr><td align="right" width="80" class="grey5"> <div class="commentDate"> 14-06-2004 </div><hr> </td></tr> <tr><td align="left" width="80" class="grey5"> <div class="descriptionText"><span id="linkCommentText">PUBLIC COMMENTS Fixed by moving printFrameWarning() inside printFrameDetails() in FrameOutputWriter.java Regression test at: &lt;ws&gt;/test/com/sun/javadoc/ValidHtml/ValidHtml.java ###@###.### 2002-09-25</span></div> </td></tr> <tr><td align="right" width="80" class="grey5"> <div class="commentDate"> 25-09-2002 </div><hr> </td></tr> <tr><td align="left" width="80" class="grey5"> <div class="descriptionText"><span id="linkCommentText">EVALUATION This example is given in the W3C 4.0 spec as a proper use of &lt;NOFRAMES&gt;: &lt;FRAMESET cols=&#034;50%, 50%&#034;&gt; &lt;FRAME src=&#034;main.html&#034;&gt; &lt;FRAME src=&#034;table_of_contents.html&#034;&gt; &lt;NOFRAMES&gt; &lt;P&gt;Here is the &lt;A href=&#034;main-noframes.html&#034;&gt; non-frame based version of the document.&lt;/A&gt; &lt;/NOFRAMES&gt; &lt;/FRAMESET&gt; ###@###.### 2002-09-25</span></div> </td></tr> <tr><td align="right" width="80" class="grey5"> <div class="commentDate"> 25-09-2002 </div><hr> </td></tr> </tbody></table> </td></tr> </table> </div> </div> <br/><br/> <!-- pppppppp --> </div> <style> /*CSS for Social-icons*/ .footer-icon, .footer-icon ul { text-align: right; padding-right: 0px; margin-right: 0px; } .footer-icon ul li { list-style: none; display: inline; } .footer-icon img.social-icon { width: 17px; height: 16px; margin-left: 4px; background-image: url(/bugdatabase/bugdatabase-theme/images/footer/social-icons.png); background-repeat: no-repeat; background-color: transparent; } .footer-icon img.social-icon.facebook { background-position: -163px 0; } .footer-icon img.social-icon.facebook:hover { background-position: -183px 0; } .footer-icon img.social-icon.linkedin { background-position: -203px 0; } .footer-icon img.social-icon.linkedin:hover { background-position: -223px 0; } .footer-icon img.social-icon.twitter { background-position: -243px 0; } .footer-icon img.social-icon.twitter:hover { background-position: -263px 0; } .footer-icon img.social-icon.googleplus { background-position: -43px 0; } .footer-icon img.social-icon.googleplus:hover { background-position: -63px 0; } .footer-icon img.social-icon.youtube { background-position: -123px 0; } .footer-icon img.social-icon.youtube:hover { background-position: -143px 0; } .footer-icon img.social-icon.rss { background-position: -283px 0; } .footer-icon img.social-icon.rss:hover { background-position: -303px 0; } </style> <footer class="footer"> <div class="container"> <div class="col-md-12"> <!--Footer Row--> <div class="row"> <h1 class="oracle-tag"> <a href="https://www.oracle.com/us/corporate/index.html"><span><img src="/bugdatabase/bugdatabase-theme/images/footer/oracle-tagline.png" /></span></a> </h1> <!--Column-1--> <div class="col-md-8 footer-link"> <ul> <li><a href="https://www.oracle.com/us/syndication/subscribe/index.html" target="_blank">Subscribe</a></li> <li><a href="https://www.oracle.com/us/corporate/index.html" target="_blank">About Oracle</a></li> <li><a href="https://www.oracle.com/us/corporate/careers/index.html" target="_blank">Careers</a></li> <li><a href="https://www.oracle.com/us/corporate/contact/index.html" target="_blank">Contact Us</a></li> <li><a href="https://www.oracle.com/us/sitemaps/index.html" target="_blank">Site Maps</a></li> <li><a href="https://www.oracle.com/us/legal/index.html" target="_blank">Legal Notices</a></li> <li><a href="https://www.oracle.com/us/legal/terms/index.html" target="_blank">Terms of Use</a></li> <li><a href="https://www.oracle.com/us/legal/privacy/index.html" target="_blank">Your Privacy Rights</a></li> <li><span id='teconsent'></span></li> </ul> </div> <!--Column-2--> <div class="col-md-4 footer-icon"> <ul> <li><a href="https://www.oracle.com/us/social-media/facebook/index.html" title="Oracle on Facebook" target="_blank"><img alt="Facebook" border="0" class="social-icon facebook" src="/bugdatabase/bugdatabase-theme/images/footer/spacer.gif"></a> </li> <li><a data-lbl="linkedin" href="https://www.oracle.com/us/social-media/linkedin/index.html" target="_blank"><img alt="Linked In" border="0" class="social-icon linkedin" src="/bugdatabase/bugdatabase-theme/images/footer/spacer.gif"></a></li> <li><a data-lbl="twitter" href="https://www.oracle.com/us/social-media/twitter/index.html" target="_blank"><img alt="Twitter" border="0" class="social-icon twitter" src="/bugdatabase/bugdatabase-theme/images/footer/spacer.gif"></a></li> <li><a data-lbl="googleplus" href="https://plus.google.com/u/0/115607918987921226255" target="_blank"><img alt="Google+" border="0" class="social-icon googleplus" src="/bugdatabase/bugdatabase-theme/images/footer/spacer.gif"></a></li> <li><a data-lbl="youtube" href="https://www.youtube.com/oracle/" target="_blank"><img alt="YouTube" border="0" class="social-icon youtube" src="/bugdatabase/bugdatabase-theme/images/footer/spacer.gif"></a></li> <li><a data-lbl="rssfeeds" href="https://www.oracle.com/us/syndication/feeds/index.html" target="_blank"><img alt="RSS Feeds" border="0" class="social-icon rss" src="/bugdatabase/bugdatabase-theme/images/footer/spacer.gif"></a></li> </ul> </div> <!-- End of Col2 --> <!-- html for Go Top--> <div> <a id="scroll-top" class="hide" href="#"><i class="glyphicon glyphicon-chevron-up"></i></a> </div> </div> <!-- End of Col --> </div> <!-- End of Row --> </div> <!--End of class="container"--> </footer> </body>