|
1 <!DOCTYPE html> |
|
2 <html xmlns="http://www.w3.org/1999/xhtml"> |
|
3 <head> |
|
4 <script type="text/javascript"> |
|
5 |
|
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 } |
|
13 |
|
14 </script> |
|
15 |
|
16 <style>colgroup:before { content: '0'; }</style> |
|
17 |
|
18 </head> |
|
19 |
|
20 <body onload="addSheet('x { }');"><table><colgroup></colgroup></table></body> |
|
21 </html> |