summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-break/box-decoration-break-clone-003.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-break/box-decoration-break-clone-003.html')
-rw-r--r--testing/web-platform/tests/css/css-break/box-decoration-break-clone-003.html41
1 files changed, 41 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-break/box-decoration-break-clone-003.html b/testing/web-platform/tests/css/css-break/box-decoration-break-clone-003.html
new file mode 100644
index 0000000000..702f01b4cb
--- /dev/null
+++ b/testing/web-platform/tests/css/css-break/box-decoration-break-clone-003.html
@@ -0,0 +1,41 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
+<link rel="author" title="Mozilla" href="https://www.mozilla.org/">
+<link rel="help" href="https://drafts.csswg.org/css-break/#break-decoration">
+<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1564726">
+<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
+
+<style>
+.multicol {
+ column-count: 2;
+ column-gap: 0;
+ column-fill: auto;
+ inline-size: 100px;
+ block-size: 100px;
+ background: red;
+}
+
+.container {
+ border-block-start: 15px solid green;
+ border-block-end: 15px solid pink;
+ box-decoration-break: clone;
+ block-size: 70px;
+}
+
+.child {
+ block-size: calc(85px + 100px); /* 1st column + 2nd column */
+ background: green;
+}
+</style>
+
+<!-- The container's content-box block-size is 70px, fitting exactly into the
+ first column. The child overflows the container, and get painted over the
+ container's block-end border in the first column. -->
+
+<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
+<div class="multicol">
+ <div class="container">
+ <div class="child"></div>
+ </div>
+</div>