diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
commit | 0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch) | |
tree | a31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /layout/reftests/backgrounds/background-clip-1.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.tar.xz firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.zip |
Adding upstream version 115.8.0esr.upstream/115.8.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/backgrounds/background-clip-1.html')
-rw-r--r-- | layout/reftests/backgrounds/background-clip-1.html | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/layout/reftests/backgrounds/background-clip-1.html b/layout/reftests/backgrounds/background-clip-1.html new file mode 100644 index 0000000000..8cd8505de4 --- /dev/null +++ b/layout/reftests/backgrounds/background-clip-1.html @@ -0,0 +1,52 @@ +<!DOCTYPE HTML> +<title>background-clip</title> +<style type="text/css"> + +div { + position: absolute; + margin: 1px 2px 4px 8px; + border: transparent solid; + border-width: 3px 9px 6px 12px; + padding: 5px 11px 9px 7px; + width: 37px; + height: 19px; + /* + * content box: 37 x 19 + * padding box: 55 x 33 + * border box: 76 x 42 + * margin box: 86 x 47 + */ +} + +div.color { + top: 10px; + background-color: blue; +} + +div.image { + top: 110px; + background-image: url(blue-32x32.png); +} + +div.border { + background-clip: border-box; + left: 10px; +} + +div.padding { + background-clip: padding-box; + left: 110px; +} + +div.content { + background-clip: content-box; + left: 210px; +} + +</style> +<div class="color border"></div> +<div class="color padding"></div> +<div class="color content"></div> +<div class="image border"></div> +<div class="image padding"></div> +<div class="image content"></div> |