Update web-platform-tests to revision 213a7607e8d6ba44d88f1774319e6c1c82ab1ccb

This commit is contained in:
WPT Sync Bot 2020-01-15 08:23:11 +00:00
parent 95614f57f1
commit 8903de3c76
119 changed files with 1456 additions and 594 deletions

View file

@ -0,0 +1,18 @@
<!DOCTYPE html>
<link rel="author" title="Mozilla" href="https://mozilla.org">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1606485">
<style>
* {
grid-template-rows: subgrid;
display: grid;
overflow: scroll;
contain: strict;
}
</style>
<script>
document.addEventListener('DOMContentLoaded', function() {
let e = document.createElement('s');
document.documentElement.appendChild(e);
document.documentElement.getBoundingClientRect() // Update layout
});
</script>