summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-writing-modes/overconstrained-rel-pos-ltr-left-right-vrl-004.xht
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-writing-modes/overconstrained-rel-pos-ltr-left-right-vrl-004.xht
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-writing-modes/overconstrained-rel-pos-ltr-left-right-vrl-004.xht')
-rw-r--r--testing/web-platform/tests/css/css-writing-modes/overconstrained-rel-pos-ltr-left-right-vrl-004.xht82
1 files changed, 82 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-writing-modes/overconstrained-rel-pos-ltr-left-right-vrl-004.xht b/testing/web-platform/tests/css/css-writing-modes/overconstrained-rel-pos-ltr-left-right-vrl-004.xht
new file mode 100644
index 0000000000..23cb1ead7e
--- /dev/null
+++ b/testing/web-platform/tests/css/css-writing-modes/overconstrained-rel-pos-ltr-left-right-vrl-004.xht
@@ -0,0 +1,82 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+
+ <head>
+
+ <title>CSS Writing Modes Test: over-constrained relatively positioned element - 'direction: ltr' and 'left' and 'right' are not 'auto' in vertical-rl context</title>
+
+ <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
+ <!--
+ Credits should go to Aleks Totić for reporting
+ Issue 695270: overconstrained position:relative in vertical-xx is not in compliance with spec
+ https://bugs.chromium.org/p/chromium/issues/detail?id=695270
+ and for providing an excellent test originally demonstrating the particular feature
+ being checked in this test.
+ -->
+ <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#vertical-layout" title="7.1 Principles of Layout in Vertical Writing Modes" />
+ <link rel="match" href="overconstrained-rel-pos-ltr-left-right-vrl-004-ref.xht" />
+
+ <meta name="flags" content="image" />
+ <meta name="assert" content="When a relatively positioned element's 'direction' is 'ltr' and its 'left' and 'right' are not 'auto' in a vertical-rl context, then the value of 'right' wins and 'left' becomes -'right'." />
+
+ <meta name="DC.date.created" content="2017-02-23T09:54:03+11:00" scheme="W3CDTF" />
+ <meta name="DC.date.modified" content="2017-02-28T09:54:03+11:00" scheme="W3CDTF" />
+
+ <style type="text/css"><![CDATA[
+ html
+ {
+ background: transparent url("support/bg-red-upp-rght-corn-320x320.png") no-repeat calc(100% - 358px) 8px;
+ /*
+ 16px : p's margin-right
+ 246px : img's width
+ 16px : p's margin-left
+ 80px : since we would need a bg-red which would be in 1st row
+ and in 3rd column (not in 4th column)
+ ========
+ 358px : background-position from the right edge of document box
+ */
+
+ /* top = 8px since the red fail square is already on 1st row in bg-red-upp-rght-corn-320x320 */
+
+ direction: ltr;
+ writing-mode: vertical-rl;
+ }
+
+/*
+Layout calculation rules (such as those in CSS2.1, Section 9.4.3) that apply to the horizontal dimension in horizontal writing modes instead apply to the vertical dimension in vertical writing modes.
+
+So here, left and right offset properties are input into the §9.4.3 algorithms where left offset property refer to top offset property in the layout rules and where right offset property refer to bottom offset property in the layout rules.
+*/
+
+ div
+ {
+ background-color: green;
+ left: 80px;
+ height: 80px;
+ position: relative;
+ right: 80px;
+ width: 80px;
+ }
+
+ /*
+ Here, 'right' should win, 'left' should be ignored and the used left value should become -'right'.
+ */
+ ]]></style>
+
+ </head>
+
+ <body>
+
+ <p><img src="support/pass-cdts-abs-pos-non-replaced.png" width="246" height="36" alt="Image download support must be enabled" /></p>
+
+ <!--
+ The image says:
+ Test passes if there is a filled
+ green square and <strong>no red</strong>.
+ -->
+
+ <div></div>
+
+ </body>
+</html>