Update web-platform-tests to revision 7cb66930f16381536cec572cd3f4f86c7bbb6787

This commit is contained in:
WPT Sync Bot 2020-05-19 08:19:06 +00:00
parent c183f95297
commit 9cff065d01
80 changed files with 1357 additions and 359 deletions

View file

@ -0,0 +1,15 @@
<!DOCTYPE html>
<link rel="help" href="https://crbug.com/1082447" />
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/check-layout-th.js"></script>
<div style="display: flex; width: 100px;">
<input id="target" style="position: relative; height: 20px; flex: 1; width: 0px;" data-expected-width="100" />
</div>
<script>
test(function() {
document.body.offsetTop;
document.getElementById('target').value = 'text';
checkLayout('#target');
});
</script>