This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.
http://html5.org/r/8759#diff [[ + <pre><DOCTYPE HTML> +<title>eHome Portal</title> +<link rel=stylesheet href="/styles/main.js"> +<article> + <h1>Stocks</h1> + <style scoped> @import url(/widgets/stocks/look.css); </style> + <script src="/widgets/stocks/core.js"></script> + <table> + <thead> <tr> <th> Stock <th> Value <th> Delta + <tbody> <template> <tr> <td> <td> <td> </template> + </table> + <p> <input type=button value="Refresh" onclick="stocks.refresh()"> +</article> +<article> + <h1>News</h1> + <style scoped> @import url(/widgets/news/look.css); </style> + <script src="/widgets/news/core.js"></script> + <ul> + <template> + <li> + <p><img src alt title> <strong></strong> + <p> + </template> + </ul> + <p> <input type=button value="Refresh" onclick="news.refresh()"> +</article></pre> ]] * <DOCTYPE HTML> missing ! * <style scoped> needs to be first child * </template> gives a parse error * <img src> requires non-empty value
Checked in as WHATWG revision r8761. Check-in comment: Fix syntax errors in this example http://html5.org/tools/web-apps-tracker?from=8760&to=8761