Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/base/crashtests/crashtests.list
<html class="reftest-wait">
<head>
<script>
function boom() {
document.getElementById('td').appendChild(newNode);
document.getElementById('table2').setAttribute('align', 'right');
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="setTimeout(boom,30)">
<table id="table2"><tr><td id="td"></table>
</body>
</html>