Update web-platform-tests to revision 4877e40ba4bc993de5ccbd206845b63ceb07a892

This commit is contained in:
WPT Sync Bot 2020-06-20 08:20:10 +00:00
parent 0b61cfc3ae
commit 287381881b
91 changed files with 1890 additions and 393 deletions

View file

@ -0,0 +1,18 @@
<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css2/visuren.html#propdef-position">
<link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div>
<span style="border: 1px solid blue">
<span style="position: relative">
<span style="display: inline-block">
<span style="position: absolute; background: orange; width: 100px; height: 100px"></span>
</span>
</span>
</span>
</div>
<script>
// Test pass if it does not crash.
test(() => {});
</script>