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/border-image/side-scaling-1h.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/border-image/side-scaling-1h.html')
-rw-r--r-- | layout/reftests/border-image/side-scaling-1h.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/layout/reftests/border-image/side-scaling-1h.html b/layout/reftests/border-image/side-scaling-1h.html new file mode 100644 index 0000000000..6ad0369af9 --- /dev/null +++ b/layout/reftests/border-image/side-scaling-1h.html @@ -0,0 +1,28 @@ +<!doctype html> +<html><head> +<title>border-image: repeat with zero-height top and bottom</title> +<style> +span { + display: inline-block; + margin: 10px; + box-sizing: border-box; + height: 24px; + border-style: solid; + border-color: transparent; + border-width: 0 6px; + border-image: url("roundrectbutton.png") 0 6 repeat; +} +</style> +</head><body> +<p> +<span style="width:12px"></span> +<span style="width:13px"></span> +<span style="width:14px"></span> +<span style="width:16px"></span> +<span style="width:18px"></span> +<span style="width:20px"></span> +<span style="width:25px"></span> +<span style="width:30px"></span> +<span style="width:40px"></span> +</p> +</body></html> |