chromium/third_party/blink/web_tests/fast/events/script-tests/create-document-crash-on-attach-event.js

description('This test checks for crashes in setting an event handler on a document element created by '
            + 'document.implementation.createDocument.');

var doc = document.implementation.createDocument('', '', null);
doc.onload = function() { };
testPassed('Attached onload event handler to created document.');