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
/
fast
/
frames
/
frame-unload-crash2.html
blob
70f45a4de6ecb104ac0bb791f4aa6856f08823f6
1
<!DOCTYPE
html
>
2
<html>
3
<iframe
srcdoc
=
""
></iframe>
4
<script>
5
if
(
window
.
testRunner
)
6
testRunner
.
dumpAsText
();
7
8
window
.
onload
=
function
() {
9
frames
[
0
].
onunload
=
function
() {
10
document
.
open
();
11
document
.
write
(
"PASS. WebKit didn't crash."
);
12
document
.
close
();
13
};
14
15
frames
[
0
].
frameElement
.
remove
();
16
};
17
</script>
18
</html>