blob: 27cccdf86298cd280a1f1fba10489d119e3d8947 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<html>
Test passes if it does not crash.
<base href=http://blocked>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
function crash()
{
GCController.collect();
if (window.testRunner)
testRunner.notifyDone();
}
</script>
<iframe onload=crash() src=does-not-exist.html srcdoc="<script>window.onload = function() { frames[0].document.getElementsByTagName('a')[0].click(); }</script><iframe seamless srcdoc='<a href=does-not-exist.html>'>">
</html>
|