1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/base/crashtests/387195-2.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,23 @@ 1.4 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 1.5 +<html xmlns="http://www.w3.org/1999/xhtml"> 1.6 +<title>Testcase for bug </title> 1.7 +<head> 1.8 +<script type="text/javascript"> 1.9 +function boom() { 1.10 + var colgroup = document.createElementNS("http://www.w3.org/1999/xhtml", 'colgroup'); 1.11 + document.getElementById('thead').insertBefore(colgroup, null); 1.12 +} 1.13 +</script> 1.14 + 1.15 +<style type="text/css"> 1.16 + thead {border:3px solid purple;} 1.17 +</style> 1.18 +</head> 1.19 + 1.20 + 1.21 +<body onload="boom()"> 1.22 + 1.23 +<table><thead id="thead"></thead></table> 1.24 + 1.25 +</body> 1.26 +</html>