chromium/third_party/blink/web_tests/dom/mutation-event-tests/editing/selection/deleteFromDocument-scoped-dispatch-event-crash.html

<!DOCTYPE html>
<html>
<head>
<title>Crash issue 339186</title>
<script src="../../../../resources/js-test.js"></script>
</head>
<body>
<script>
description('Should not crash if we load a test case from crbug.com/339186.');

window.jsTestIsAsync = true;

window.addEventListener('message', didReceiveMessage, false);

var iframe = document.createElement('iframe');
iframe.src = 'resources/deleteFromDocument-scoped-dispatch-event-crash-iframe.html';
document.body.appendChild(iframe);

function didReceiveMessage(event)
{
    shouldBeEqualToString('event.data', 'FINISH');
    document.body.removeChild(iframe);
    testPassed('Did not crash.');
    window.finishJSTest();
}
</script>
</body>
</html>