Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/base/crashtests/crashtests.list
<!DOCTYPE html>
<html>
<head>
<script>
function f(event) {
document.removeEventListener("DOMAttrModified", f);
// dumpln(event.attrChange); /* 2 (MutationEvent.ADDITION) */
// dumpln(event.attrName); /* "curpos" */
// dumpln(event.newValue); /* "0" */
// (gdb) break nsGlobalWindow::Dump
dump("[[[[DOMAttrModified\n");
document.removeChild(svgUse);
dump("]]]]\n");
}
document.removeChild(document.documentElement);
document.addEventListener("DOMAttrModified", f);
document.appendChild(svgUse);
</script>
</head>
<body onload="boom();"></body>
</html>