Update web-platform-tests to revision 9ca57e052ba1b19fa3dd46c6aa656e8d529469a8

This commit is contained in:
WPT Sync Bot 2020-09-12 08:20:19 +00:00
parent 68cb8f3d59
commit 75d6484415
1377 changed files with 31062 additions and 16983 deletions

View file

@ -0,0 +1,13 @@
<!doctype html>
<meta charset="utf-8">
<title>CSS test reference</title>
<style>
body { margin: 0 }
:root {
box-sizing: border-box;
width: 100%;
height: 100%;
border: 1px solid black;
}
</style>
<div>I should not overflow to the next page.</div>

View file

@ -0,0 +1,17 @@
<!doctype html>
<meta charset="utf-8">
<title>Viewport units in print account for margins</title>
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1414600">
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/5437">
<link rel="help" href="https://drafts.csswg.org/css-values-4/#viewport-relative-lengths">
<link rel="match" href="viewport-units-001-print-ref.html">
<style>
body { margin: 0 }
div {
box-sizing: border-box;
width: 100vw;
height: 100vh;
border: 1px solid black;
}
</style>
<div>I should not overflow to the next page.</div>