Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: dom/base/crashtests/crashtests.list
<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
outer.setAttribute("dir", "auto");
inner.appendChild(document.createTextNode("A"));
inner.appendChild(document.createTextNode("B"));
outer.appendChild(inner);
inner.setAttribute("dir", "ltr");
}
</script>
</head>
<body onload="boom();"></body>
</html>