Update web-platform-tests to revision 86b1ae6d6c823d07ca2c5c70865ed8c796d46c3d

This commit is contained in:
WPT Sync Bot 2020-09-20 08:20:22 +00:00
parent 46f8f3d009
commit 5304c69b42
421 changed files with 7514 additions and 1714 deletions

View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<link rel="help" href="https://crbug.com/1129563">
<body style="contain: size layout;">
<div id="target" style="contain: size layout;"></div>
<div id="child"></div>
</body>
<script>
document.body.offsetTop;
const target = document.getElementById('target');
const child = document.getElementById('child');
target.appendChild(child);
</script>