summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-backgrounds/border-image-15.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 09:22:09 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 09:22:09 +0000
commit43a97878ce14b72f0981164f87f2e35e14151312 (patch)
tree620249daf56c0258faa40cbdcf9cfba06de2a846 /testing/web-platform/tests/css/css-backgrounds/border-image-15.html
parentInitial commit. (diff)
downloadfirefox-43a97878ce14b72f0981164f87f2e35e14151312.tar.xz
firefox-43a97878ce14b72f0981164f87f2e35e14151312.zip
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-backgrounds/border-image-15.html')
-rw-r--r--testing/web-platform/tests/css/css-backgrounds/border-image-15.html38
1 files changed, 38 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-backgrounds/border-image-15.html b/testing/web-platform/tests/css/css-backgrounds/border-image-15.html
new file mode 100644
index 0000000000..a3e748e6f5
--- /dev/null
+++ b/testing/web-platform/tests/css/css-backgrounds/border-image-15.html
@@ -0,0 +1,38 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <meta charset="utf-8">
+ <title>
+ CSS Border and Background: border-image #15 border-image-repeat
+ </title>
+ <meta name="assert" content="Test for the border-image-repeat property with the value space" />
+
+ <link rel="author" title="Jérémie Patonnier" href="mailto:jeremie@patonnier.net" / >
+
+ <link rel="help" href="http://www.w3.org/TR/css3-background/#the-border-image-repeat">
+
+ <style type="text/css">
+
+ #test {
+ border : 10px solid red;
+ width : 39px;
+ height : 39px;
+
+ border-image-source: url(support/img-ref-2.png);
+ border-image-slice : 10;
+ border-image-repeat: space;
+ }
+
+ </style>
+
+</head>
+<body>
+
+ <p>
+ Pass if the square has borders made of plain regular green dots.
+ </p>
+
+ <div id="test"></div>
+
+</body>
+</html>