Sign in
chromium
/
external
/
w3c
/
web-platform-tests
/
refs/heads/active-script-webidl-callbacks
/
.
/
html
/
semantics
/
embedded-content
/
the-audio-element
/
audio-play-in-inactive-document-crash.html
blob: ade40797b97ec4661e82a62fc601c3b27ad44d2d [
file
] [
log
] [
blame
] [
edit
]
<audio
id
=
"a"
></audio>
<iframe
id
=
"i"
></iframe>
<script>
var
a
=
document
.
getElementById
(
"a"
);
i
.
contentDocument
.
documentElement
.
appendChild
(
a
);
i
.
remove
();
a
.
play
();
</script>