blob: 0e93e047017a5cca92e9f125affd6970db3243ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!doctype html>
<title>unload IDL attribute</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
var iframe;
var t = async_test();
onload = function() {
setTimeout(function() {
var iframe = document.getElementsByTagName("iframe")[0];
iframe.src="about:blank";
}, 100)
}
</script>
<iframe src="009-1.html"></iframe>
|