Update web-platform-tests to revision 3f3849c5d05f9350fad0b06d3bb3ae30d7e18d14

This commit is contained in:
WPT Sync Bot 2019-07-24 10:23:41 +00:00
parent 9a7e2663e8
commit f767403c00
310 changed files with 8134 additions and 895 deletions

View file

@ -0,0 +1,23 @@
<!DOCTYPE html>
<link rel="help" href="https://crbug.com/984642" />
<link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
<style>
html { overflow: hidden; }
</style>
<p>Test passes if there is a filled green square.</p>
<div id="target">
<div style="width: 10%;">
<div style="display: inline-table;">
<div style="display: table-cell; width: 100%;">
<span style="display: inline-block; width: 100%; height: 100px; background: green;"></span>
</div>
<div style="display: table-cell;">
<span style="display: inline-block; width: 10px; height: 100px; background: green;"></span>
</div>
</div>
</div>
</div>
<script>
document.body.offsetTop;
document.getElementById('target').style.width = '1000px';
</script>