diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /layout/reftests/box-properties/width-special-values-image.html | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/box-properties/width-special-values-image.html')
-rw-r--r-- | layout/reftests/box-properties/width-special-values-image.html | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/layout/reftests/box-properties/width-special-values-image.html b/layout/reftests/box-properties/width-special-values-image.html new file mode 100644 index 0000000000..c3b09b60bf --- /dev/null +++ b/layout/reftests/box-properties/width-special-values-image.html @@ -0,0 +1,44 @@ +<!DOCTYPE html> +<html lang="en-US"> +<head> + <title>max-content, min-content, -moz-fit-content, and -moz-available values of CSS width property, on inline images</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"> + + img { + margin-left: 1px; + border-left: 2px solid; + padding-left: 4px; + padding-right: 8px; + border-right: 16px solid; + margin-right: 32px; + margin-bottom: 1px; + } + + img.v1 { width: max-content; } + img.v2 { width: min-content; } + img.v3 { width: -moz-fit-content; } + img.v4 { width: -moz-available; } + + img.s1 { box-sizing: content; } + img.s2 { box-sizing: padding; } + img.s3 { box-sizing: border; } + + </style> +</head> +<body style="width: 100px"> +<img src="../pixel-rounding/green-25x25.png" alt="[]" class="v1 s1"> +<img src="../pixel-rounding/green-25x25.png" alt="[]" class="v1 s2"> +<img src="../pixel-rounding/green-25x25.png" alt="[]" class="v1 s3"> +<img src="../pixel-rounding/green-25x25.png" alt="[]" class="v2 s1"> +<img src="../pixel-rounding/green-25x25.png" alt="[]" class="v2 s2"> +<img src="../pixel-rounding/green-25x25.png" alt="[]" class="v2 s3"> +<img src="../pixel-rounding/green-25x25.png" alt="[]" class="v3 s1"> +<img src="../pixel-rounding/green-25x25.png" alt="[]" class="v3 s2"> +<img src="../pixel-rounding/green-25x25.png" alt="[]" class="v3 s3"> +<img src="../pixel-rounding/green-25x25.png" alt="[]" class="v4 s1"> +<img src="../pixel-rounding/green-25x25.png" alt="[]" class="v4 s2"> +<img src="../pixel-rounding/green-25x25.png" alt="[]" class="v4 s3"> +</body> +</html> |