blob: 51cb1d3cb295f8c188c74cab290c7725bcdad3fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript">
function addSheet(text)
{
var head = document.getElementsByTagName("head")[0];
var sheet = document.createElement("style");
sheet.appendChild(document.createTextNode(text));
head.appendChild(sheet);
}
</script>
<style>colgroup:before { content: '0'; }</style>
</head>
<body onload="addSheet('x { }');"><table><colgroup></colgroup></table></body>
</html>
|