repo.or.cz
/
gecko.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Bug 1660051 [wpt PR 25111] - Origin isolation: expand getter test coverage, a=testonly
[gecko.git]
/
dom
/
base
/
crashtests
/
713417-1.html
blob
a5bfd0f80905ae83b113a0505402d98e55e31369
1
<!DOCTYPE
html
>
2
<html>
3
<head>
4
<script>
5
6
function
boom
()
7
{
8
var
f
=
document
.
getElementById
(
"f"
);
9
var
w
=
f
.
contentWindow
;
10
var
d
=
w
.
document
;
11
d
.
designMode
=
'on'
;
12
var
r
=
d
.
documentElement
;
13
d
.
removeChild
(
r
);
14
document
.
adoptNode
(
r
);
15
f
.
remove
();
16
}
17
18
</script>
19
</head>
20
<body
onload
=
"boom();"
>
21
<iframe
src
=
"data:text/html,1"
id
=
"f"
></iframe>
22
</body>
23
</html>