blob: 100ac7f9b165b76118e881fe9c689f2a37435658 [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<script>
if (window.testRunner)
testRunner.dumpAsText();
function mutationCallback(mutations, observer) {
mutations[0].addedNodes[-1];
}
var mutationObserver = new MutationObserver(mutationCallback);
mutationObserver.observe(document.body, {childList: true});
document.body.appendChild(document.createTextNode("PASS. WebKit didn't crash"));
</script>
</body>
</html>