Update web-platform-tests to revision b'0e0fe1b20da0d80eacadc326dec726138fd5aa83'

This commit is contained in:
WPT Sync Bot 2021-03-10 08:20:06 +00:00
parent 57897e196c
commit 728707a192
70 changed files with 2786 additions and 976 deletions

View file

@ -0,0 +1,26 @@
<!DOCTYPE html>
<html>
<title>
Overflowing content does not affect whether a fixed-height box fits on a page,
but does get printed on the next page.
</title>
<meta name="flags" content="may">
<link rel="match" href="overflowing-block-print-ref.html">
<link rel="help" href="https://www.w3.org/TR/css-break-3/#parallel-flows">
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
height: 100%;
}
body {
border: solid orange 10px;
padding: 10px;
}
div {
border: solid gray 10px;
height: 300%;
}
</style>
<div></div>