Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/base/crashtests/crashtests.list
<title>Testcase for bug </title>
<head>
<script type="text/javascript">
function boom() {
document.getElementById('thead').insertBefore(colgroup, null);
}
</script>
<style type="text/css">
thead {border:3px solid purple;}
</style>
</head>
<body onload="boom()">
<table><thead id="thead"></thead></table>
</body>
</html>