diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/css/css-break/block-002-wm-vlr-print.html | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-break/block-002-wm-vlr-print.html')
-rw-r--r-- | testing/web-platform/tests/css/css-break/block-002-wm-vlr-print.html | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-break/block-002-wm-vlr-print.html b/testing/web-platform/tests/css/css-break/block-002-wm-vlr-print.html new file mode 100644 index 0000000000..99949623c3 --- /dev/null +++ b/testing/web-platform/tests/css/css-break/block-002-wm-vlr-print.html @@ -0,0 +1,51 @@ +<!DOCTYPE html> +<link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com"> +<link rel="help" href="https://www.w3.org/TR/css-break-3/"> +<link rel="match" href="block-002-wm-vlr-ref.html"> +<meta name="flags" content="paged"> +<meta name="fuzzy" content="maxDifference=0-35;totalPixels=0-220"> +<html> +<style> +@page { + size: 5in 3in; + margin: 0.5in; +} + +html,body { + color:black; background-color:white; font:20px/1 monospace; padding:0; margin:0; + writing-mode: vertical-lr; +} +html { margin-block-start: 80vw; } +* { box-sizing: border-box; } + +.b { + inline-size: 50vh; + block-size: 130vw; + border: 5px solid black; + border-block-start-color: blue; + border-inline-start-color: lime; + margin-inline-start: 20px; +} + +.b > div { + inline-size: 50vh; + block-size: 150vw; + border: 5px solid grey; + margin-inline-start: 20px; + margin-block-start: -5px; +} + +.after { + inline-size: 60vh; + block-size: 30vw; + margin-block-start: 5vw; + border: 5px solid blue; +} +</style> +<body> + <div class="b"> + <div></div> + </div> + <div class="after"></div> +</body> +</html> |