repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge Chromium + Blink git repositories
[chromium-blink-merge.git]
/
third_party
/
WebKit
/
LayoutTests
/
http
/
tests
/
misc
/
resources
/
onload-remove-iframe-crash-2.html
blob
345bb1fd04042c4421bf3739ac7157c52bd8a9b4
1
<html>
2
<head>
3
<title></title>
4
<script>
5
function
done
()
6
{
7
var
f
=
document
.
getElementById
(
"iframe"
);
8
f
.
parentNode
.
removeChild
(
f
);
9
parent
.
frameLoaded
();
10
}
11
</script>
12
</head>
13
<body>
14
<div>
15
<iframe
id
=
"iframe"
onload
=
"done()"
src
=
"onload-remove-iframe.html"
>
16
</iframe>
17
</div>
18
</body>
19
</html>