Update web-platform-tests to revision c063a8c9acc637e3bd72b719b46e6f2fb627da4a

This commit is contained in:
WPT Sync Bot 2020-04-03 08:19:52 +00:00
parent e66ab111a6
commit 018bc3f219
140 changed files with 2806 additions and 431 deletions

View file

@ -8,6 +8,15 @@
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/check-layout-th.js"></script>
<script>
function change() {
document.body.offsetTop;
var flex = document.getElementById("flex");
flex.style.width = "100px";
checkLayout("#container");
}
</script>
<body onload="change()">
<p>There should be a green square below. No red.</p>
<!-- #container is just here to make sure the test fails more reliably visually if the bug is present. -->
<div id="container" style="width:500px;">
@ -18,9 +27,4 @@
</div>
</div>
</div>
<script>
document.body.offsetTop;
var flex = document.getElementById("flex");
flex.style.width = "100px";
checkLayout("#container");
</script>
</body>