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/table-width/default-box-sizing-collapse-quirks-ref.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 '')
-rw-r--r-- | layout/reftests/table-width/default-box-sizing-collapse-quirks-ref.html | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/layout/reftests/table-width/default-box-sizing-collapse-quirks-ref.html b/layout/reftests/table-width/default-box-sizing-collapse-quirks-ref.html new file mode 100644 index 0000000000..fa72151960 --- /dev/null +++ b/layout/reftests/table-width/default-box-sizing-collapse-quirks-ref.html @@ -0,0 +1,51 @@ +<html> +<head> +<title>default box sizing (border-collapse: separate, standards mode)</title> +<style type="text/css"> + +body > div { float: left; clear: left; background: fuchsia; margin: 2px 0; padding: 10px; } + +table { + border-collapse: collapse; + border-spacing: 5px 3px; + padding: 2px 3px 4px 5px; + border: medium solid blue; + border-width: 2px 4px 6px 8px; +} + +td { + border: medium solid aqua; + border-width: 2px 4px 6px 8px; + padding: 5px 7px 9px 11px; +} + +div.inner { + background: yellow; +} + +</style> +</head> +<body> + +<div style="padding: 10px"> + <div style="background: aqua; padding: 1px 2px 3px 4px"> + <div style="width: 200px; padding: 1px 2px 3px 4px"> + <div style="background: fuchsia; padding: 5px 7px 9px 11px"> + <div class="inner">x</div> + </div> + </div> + </div> +</div> + +<div style="padding: 10px"> + <div style="background: aqua; padding: 1px 2px 3px 4px"> + <div style="padding: 1px 2px 3px 4px"> + <div style="background: fuchsia; padding: 5px 7px 9px 11px"> + <div class="inner" style="width: 200px">x</div> + </div> + </div> + </div> +</div> + +</body> +</html> |