1 description('This test checks for crashes in setting an event handler on a document element created by '
2 + 'document.implementation.createDocument.');
4 var doc
= document
.implementation
.createDocument('', '', null);
5 doc
.onload = function() { };
6 testPassed('Attached onload event handler to created document.');