diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /layout/reftests/webkit-box/webkit-box-ordinal-group-2.html | |
parent | Initial commit. (diff) | |
download | firefox-43a97878ce14b72f0981164f87f2e35e14151312.tar.xz firefox-43a97878ce14b72f0981164f87f2e35e14151312.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/webkit-box/webkit-box-ordinal-group-2.html')
-rw-r--r-- | layout/reftests/webkit-box/webkit-box-ordinal-group-2.html | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/layout/reftests/webkit-box/webkit-box-ordinal-group-2.html b/layout/reftests/webkit-box/webkit-box-ordinal-group-2.html new file mode 100644 index 0000000000..bfdde3d80a --- /dev/null +++ b/layout/reftests/webkit-box/webkit-box-ordinal-group-2.html @@ -0,0 +1,36 @@ +<!DOCTYPE html> +<!-- + Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ +--> +<html> +<head> + <title> + CSS Test: -webkit-box-ordinal-group:0 inside a -webkit-box + </title> + <style> + .box { + display: -webkit-box; + border: 1px solid black; + margin: 5px 20px; + } + + .box > * { + border: 1px dotted purple; + } + + .bogZero { -webkit-box-ordinal-group: 0; } + .bogOne { -webkit-box-ordinal-group: 1; } + </style> +</head> +<body> + <!-- -webkit-box-ordinal-group is strictly positive in Blink & WebKit. 0 is + rejected as an invalid value. So, the bogZero element below should + end up with the initial value (1) and should *not* be sorted out of its + DOM position in the final rendering. --> + <div class="box"> + <div class="bogOne">1</div> + <div class="bogZero">0</div> + </div> +</body> +</html> |