diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /layout/reftests/box-properties/box-sizing-1-ref.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/box-properties/box-sizing-1-ref.html')
-rw-r--r-- | layout/reftests/box-properties/box-sizing-1-ref.html | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/layout/reftests/box-properties/box-sizing-1-ref.html b/layout/reftests/box-properties/box-sizing-1-ref.html new file mode 100644 index 0000000000..42aee17719 --- /dev/null +++ b/layout/reftests/box-properties/box-sizing-1-ref.html @@ -0,0 +1,64 @@ +<!DOCTYPE html> +<html lang="en-US"> +<head> + <title>test of box-sizing</title> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + <meta http-equiv="Content-Style-Type" content="text/css"> + <style type="text/css"> + + body { font-size: 10px; line-height: 1; } + table { border-spacing: 0; margin: 0; } + td { border: 1px solid; padding: 1px; } + + td > div { width: 100px; } + + td > div > div { + margin-left: 1px; + border-left: 2px solid; + padding-left: 4px; + padding-right: 8px; + border-right: 16px solid; + margin-right: 32px; + + background: yellow; + margin-bottom: 1px; + + float: left; + clear: left; + } + + </style> +</head> +<body> + +<table><tr> + +<td id="bscontent"><div> + +<!-- box-sizing: content-box --> +<div style="width: 37px">A B</div> +<div style="width: auto">A B</div> +<div style="width: auto">A<br>B</div> +<div style="width: auto">A B</div> +<div style="width: 37px">A B</div> +<div style="width: 50px">A B</div> +<div style="width: 60px">A B</div> + +</div></td> + +<td id="bsborder"><div> +<!-- box-sizing: border-box --> +<div style="width: 37px">A B</div> +<div style="width: auto">A B</div> +<div style="width: auto">A<br>B</div> +<div style="width: auto">A B</div> +<div style="width: 37px">A B</div> +<div style="width: 20px">A B</div> +<div style="width: 30px">A B</div> + +</div></td> + +</tr></table> + +</body> +</html> |