Update web-platform-tests to revision 07b698ef4ea02ebeb65c3214ed7141ad32678a8c

This commit is contained in:
WPT Sync Bot 2020-05-06 08:20:40 +00:00
parent 81b92b9c1a
commit c5ddf8e76a
119 changed files with 2754 additions and 727 deletions

View file

@ -0,0 +1,20 @@
<!doctype html>
<html class="test-wait">
<link rel="help" href="https://crbug.com/1077501">
<style>
@keyframes test {
from { -webkit-writing-mode: var(--x) }
to { -webkit-writing-mode: var(--y) }
}
div {
animation: test 1s;
}
</style>
<div id=div></div>
<script>
window.onload = () => {
div.offsetTop;
document.documentElement.classList.remove('test-wait');
};
</script>
</html>