summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/density-size-correction/density-corrected-size-bg-with-radius.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/density-size-correction/density-corrected-size-bg-with-radius.html')
-rw-r--r--testing/web-platform/tests/density-size-correction/density-corrected-size-bg-with-radius.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/testing/web-platform/tests/density-size-correction/density-corrected-size-bg-with-radius.html b/testing/web-platform/tests/density-size-correction/density-corrected-size-bg-with-radius.html
new file mode 100644
index 0000000000..8d61e7442b
--- /dev/null
+++ b/testing/web-platform/tests/density-size-correction/density-corrected-size-bg-with-radius.html
@@ -0,0 +1,31 @@
+<!DOCTYPE html>
+<title>Density corrected size: background images with border-radius</title>
+<link rel="match" href="density-corrected-size-bg-with-radius-ref.html" />
+<style>
+ body {
+ --lores: url(resources/exif-resolution-valid-lores.jpg);
+ --hires: url(resources/exif-resolution-valid-hires.jpg);
+ --default: url(resources/exif-resolution-none.jpg);
+ --non-uniform: url(resources/exif-resolution-valid-non-uniform.jpg);
+ }
+ .default-bg { background-image: var(--default); }
+ .lores-bg { background-image: var(--lores); }
+ .hires-bg { background-image: var(--hires); }
+ .non-uniform-bg { background-image: var(--non-uniform); }
+ .box {
+ width: 200px;
+ height: 200px;
+ display: inline-block;
+ border-radius: 5px;
+ }
+ .tiled { background-repeat: repeat; }
+ .stretch { background-repeat: no-repeat; background-size: contain; }
+</style>
+<div class="default-bg tiled box"></div>
+<div class="lores-bg tiled box"></div>
+<div class="hires-bg tiled box"></div>
+<div class="non-uniform-bg tiled box"></div>
+<br/>
+<div class="lores-bg stretch box"></div>
+<div class="default-bg stretch box"></div>
+<div class="non-uniform-bg stretch box"></div>