summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-break/table/table-section-paint-vrl-rtl-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-break/table/table-section-paint-vrl-rtl-ref.html')
-rw-r--r--testing/web-platform/tests/css/css-break/table/table-section-paint-vrl-rtl-ref.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-break/table/table-section-paint-vrl-rtl-ref.html b/testing/web-platform/tests/css/css-break/table/table-section-paint-vrl-rtl-ref.html
new file mode 100644
index 0000000000..bc860a560f
--- /dev/null
+++ b/testing/web-platform/tests/css/css-break/table/table-section-paint-vrl-rtl-ref.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<style>
+body {
+ writing-mode: vertical-rl;
+ direction: rtl;
+}
+.multicol {
+ inline-size: 400px;
+ block-size: 100px;
+ columns: 4;
+ column-fill: auto;
+ gap: 0;
+}
+.pattern {
+ background: repeating-linear-gradient(to left, orange, orange 30px, dodgerblue 30px, dodgerblue 60px);
+}
+</style>
+<div class="multicol">
+ <div style="position: relative; inline-size: 100%; block-size: 400px;">
+ <div style="position: absolute; inset-block-start: 0; inline-size: 100%; background: red; block-size: 50px;"></div>
+ <div class="pattern" style="position: absolute; inset-block-start: 60px; inset-inline-start: 10px; inline-size: calc(100% - 20px); block-size: 255px;"></div>
+ <div style="position: absolute; inset-block-start: 170px; inline-size: 100%; block-size: 10px; background: white;"></div>
+ <div style="position: absolute; inset-block-start: 60px; inset-inline-start: 45px; inline-size: 10px; block-size: 255px; background: white;"></div>
+ <div style="position: absolute; inset-block-end: 0; inline-size: 100%; background: red; block-size: 75px;"></div>
+ </div>
+</div>