Update web-platform-tests to revision 527a9287825118957bb7d94c098c448cef9d6982

This commit is contained in:
WPT Sync Bot 2020-01-08 08:23:30 +00:00
parent b876168721
commit ed25f52f43
289 changed files with 4880 additions and 2539 deletions

View file

@ -0,0 +1,4 @@
<!DOCTYPE html>
<style>body { margin: 0 }</style>
<div style="height: 40px"></div>
<div style="width: 100px; height: 100px; resize: both; overflow: auto; border: 1px solid blue"></div>

View file

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html class="reftest-wait">
<link rel="help" href="http://www.w3.org/TR/css3-ui/#resize">
<link rel="match" href="resize-change-margin-ref.html">
<style>body { margin: 0 }</style>
<div id="target" style="width: 100px; height: 100px; resize: both; overflow: auto; border: 1px solid blue"></div>
<script>
requestAnimationFrame(() => {
requestAnimationFrame(() => {
target.style.marginTop = "40px";
document.documentElement.classList.remove("reftest-wait");
});
});
</script>