summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-masking/clip-path/clip-path-borderBox-1e.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/css/css-masking/clip-path/clip-path-borderBox-1e.html
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-masking/clip-path/clip-path-borderBox-1e.html')
-rw-r--r--testing/web-platform/tests/css/css-masking/clip-path/clip-path-borderBox-1e.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-masking/clip-path/clip-path-borderBox-1e.html b/testing/web-platform/tests/css/css-masking/clip-path/clip-path-borderBox-1e.html
new file mode 100644
index 0000000000..17ac0b0d72
--- /dev/null
+++ b/testing/web-platform/tests/css/css-masking/clip-path/clip-path-borderBox-1e.html
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<title>CSS Masking: clip path with border-box and border-radius</title>
+<link rel="help" href="https://drafts.fxtf.org/css-masking-1/#the-clip-path">
+<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#valdef-shape-box-border-box">
+<link rel="match" href="reference/green-circle-100x100.html">
+<meta name="fuzzy" content="maxDifference=0-126; totalPixels=0-400">
+<meta name="assert" content="Check that the 'clip-path' property supports border-box with border-radius.">
+
+<style>
+ .clipped {
+ width: 50px;
+ height: 50px;
+ background-color: green;
+ clip-path: border-box;
+ border: 25px solid green;
+ border-radius: 50px;
+ /* This outline draws outside the border box and should be clipped. */
+ outline: 8px solid red;
+ }
+</style>
+<div class="clipped"></div>