layout/base/crashtests/492163-1.xhtml

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/base/crashtests/492163-1.xhtml	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,21 @@
     1.4 +<!DOCTYPE html>
     1.5 +<html xmlns="http://www.w3.org/1999/xhtml">
     1.6 +<head>
     1.7 +<script type="text/javascript">
     1.8 +
     1.9 +function addSheet(text)
    1.10 +{
    1.11 +  var head = document.getElementsByTagName("head")[0];
    1.12 +  var sheet = document.createElement("style");
    1.13 +  sheet.appendChild(document.createTextNode(text));
    1.14 +  head.appendChild(sheet);
    1.15 +}
    1.16 +
    1.17 +</script>
    1.18 +
    1.19 +<style>colgroup:before { content: '0'; }</style>
    1.20 +
    1.21 +</head>
    1.22 +
    1.23 +<body onload="addSheet('x { }');"><table><colgroup></colgroup></table></body>
    1.24 +</html>

mercurial