Sign in
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
refs/heads/main
/
.
/
LayoutTests
/
fast
/
media
/
print-video-crash.html
blob: 90af360f3be4d319549fcfc94eb4b98a5dff811e [
file
] [
edit
]
<script>
if
(
window
.
testRunner
)
testRunner
.
dumpAsText
();
visualViewport
.
onresize
=
()
=>
{
print
();
};
onload
=
()
=>
{
let video
=
document
.
createElement
(
'video'
);
video
.
src
=
'data:'
;
document
.
body
.
append
(
video
);
};
</script>
PASS