summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-writing-modes/inline-box-orthogonal-child-with-margins-ref.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-writing-modes/inline-box-orthogonal-child-with-margins-ref.html
parentInitial commit. (diff)
downloadfirefox-upstream.tar.xz
firefox-upstream.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-writing-modes/inline-box-orthogonal-child-with-margins-ref.html')
-rw-r--r--testing/web-platform/tests/css/css-writing-modes/inline-box-orthogonal-child-with-margins-ref.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-writing-modes/inline-box-orthogonal-child-with-margins-ref.html b/testing/web-platform/tests/css/css-writing-modes/inline-box-orthogonal-child-with-margins-ref.html
new file mode 100644
index 0000000000..5bb6b9a95c
--- /dev/null
+++ b/testing/web-platform/tests/css/css-writing-modes/inline-box-orthogonal-child-with-margins-ref.html
@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<style>
+.container {
+ border: 1px dashed blue;
+ height: 200px;
+ width: 560px;
+ box-sizing: content-box;
+}
+.container > div {
+ float: left;
+ width: 40px;
+ margin: 10px 20px 30px 40px;
+ border-width: 20px 30px 40px 50px;
+ padding: 30px 40px 50px 60px;
+ border-style: dotted;
+}
+.container > div:nth-child(1) { background: yellow; }
+.container > div:nth-child(2) { background: purple; }
+
+</style>
+
+<div class="container">
+ <div></div>
+ <div></div>
+</div>