Update web-platform-tests to revision 688aeffbd02c1e05a159c64938ad9b43e3d8ec6e

This commit is contained in:
WPT Sync Bot 2020-08-07 08:22:05 +00:00
parent 080e9dc6df
commit f99a7ba468
63 changed files with 1330 additions and 870 deletions

View file

@ -0,0 +1,5 @@
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<p>The word "PASS" should be seen below.</p>
<div style="height:2em; background:black;"></div>
PASS

View file

@ -0,0 +1,17 @@
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="help" href="https://www.w3.org/TR/css-multicol-1/">
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1066640">
<link rel="match" href="increase-prev-sibling-height-ref.html">
<p>The word "PASS" should be seen below.</p>
<div id="elm" style="background:black;"></div>
<div style="columns:2;">
PASS
</div>
<script>
requestAnimationFrame(()=>{
requestAnimationFrame(()=>{
elm.style.height = "2em";
});
});
</script>