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 /layout/reftests/inline/inline-block-baseline.html | |
parent | Initial commit. (diff) | |
download | firefox-upstream/124.0.1.tar.xz firefox-upstream/124.0.1.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/inline/inline-block-baseline.html')
-rw-r--r-- | layout/reftests/inline/inline-block-baseline.html | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/layout/reftests/inline/inline-block-baseline.html b/layout/reftests/inline/inline-block-baseline.html new file mode 100644 index 0000000000..9d1ef23890 --- /dev/null +++ b/layout/reftests/inline/inline-block-baseline.html @@ -0,0 +1,36 @@ +<!DOCTYPE html> +<html><head> +<style> +.inline-block { display: inline-block; } +.test { + background-color: lightgrey; + overflow: hidden; +} +.border { border: solid blue; border-width: 1px 3px 5px 7px; } +.padding { padding: 10px; } +.margin { margin: 1px 3px 5px 7px; } +</style> + +</head><body> + +The boxes should align vertically: +<div class="inline-block"> + <div> + <div class="test border padding margin overflow"></div> + </div> +</div> + +<div class="test inline-block margin border padding overflow"></div> + +<br> + +The boxes should align vertically: +<div class="inline-block"> + <div> + <div class="test border padding margin overflow">X</div> + </div> +</div> + +<div class="test inline-block margin border padding overflow">X</div> + +</body></html> |