Update web-platform-tests to revision 35077458592d7cf9349840211759aa85f20cd20c

This commit is contained in:
WPT Sync Bot 2021-01-24 08:20:31 +00:00
parent 500cb865bd
commit 9320df4683
150 changed files with 2079 additions and 765 deletions

View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<div id="target" style="background: white; overflow: scroll; width: 500px; height: 500px;
font-size: 40px; will-change: transform">
</div>
<script>
for (var i = 0; i < 500; i++) {
var div = document.createElement("div");
div.textContent = i;
target.appendChild(div);
}
target.scrollTop = 10000;
</script>