Update web-platform-tests to revision 1ac959f3e6198767fecf67740d3e1687b184265f

This commit is contained in:
WPT Sync Bot 2019-09-03 10:28:52 +00:00
parent 4f4e219e54
commit 33079866c1
61 changed files with 1114 additions and 284 deletions

View file

@ -0,0 +1,22 @@
<!doctype html>
<title>CSS Animations Test: Chrome crash when removing documentElement and @keyframes stylesheet</title>
<link rel="help" href="https://crbug.com/999522">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
@keyframes anim {
from { color: pink }
to { color: purple }
}
div {
animation: notfound 1s;
}
</style>
<div></div>
<script>
test(() => {
document.body.offsetTop;
document.querySelector("style").remove();
document.documentElement.remove();
}, "Removing documentElement and @keyframes sheet should not crash.");
</script>