Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 <!DOCTYPE html>
2 <html xmlns="http://www.w3.org/1999/xhtml">
3 <head>
4 <script type="text/javascript">
6 function addSheet(text)
7 {
8 var head = document.getElementsByTagName("head")[0];
9 var sheet = document.createElement("style");
10 sheet.appendChild(document.createTextNode(text));
11 head.appendChild(sheet);
12 }
14 </script>
16 <style>colgroup:before { content: '0'; }</style>
18 </head>
20 <body onload="addSheet('x { }');"><table><colgroup></colgroup></table></body>
21 </html>