blob: 23d152ea02a1d7a22797af6c44f55f2c9c020882 [file] [log] [blame]
This test passes if it doesn't crash.
<script>
if (window.testRunner)
testRunner.dumpAsText();
xhr = new XMLHttpRequest();
xhr.open('GET', 'resources/onclick.html', false);
xhr.responseType = 'document';
xhr.onload = function () { r = this.responseXML; }
xhr.send();
td = r.getElementById('foo');
td.children[0].onclick;
</script>