aboutsummaryrefslogtreecommitdiffstats
path: root/test/render/flex/flex-direction-column-reverse-002-visual.htm
diff options
context:
space:
mode:
Diffstat (limited to 'test/render/flex/flex-direction-column-reverse-002-visual.htm')
-rw-r--r--test/render/flex/flex-direction-column-reverse-002-visual.htm43
1 files changed, 43 insertions, 0 deletions
diff --git a/test/render/flex/flex-direction-column-reverse-002-visual.htm b/test/render/flex/flex-direction-column-reverse-002-visual.htm
new file mode 100644
index 00000000..09ce44c4
--- /dev/null
+++ b/test/render/flex/flex-direction-column-reverse-002-visual.htm
@@ -0,0 +1,43 @@
+<!DOCTYPE html>
+<html>
+<!-- Mirrored from test.csswg.org/suites/css-flexbox-1_dev/nightly-unstable/html/flex-direction-column-reverse-002-visual.htm by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 23 Dec 2023 16:15:11 GMT -->
+<head>
+ <title>CSS Test: flex-direction: column-reverse swaps main start and end directions</title>
+ <link href="mailto:[email protected]" rel="author" title="Sylvain Galineau">
+ <link href="mailto:[email protected]" rel="reviewer" title="Arron Eicholz">
+ <link href="http://www.w3.org/TR/css-flexbox-1/#flex-direction" rel="help">
+ <meta content="" name="flags">
+ <meta content="This test checks that column-reverse flex-direction swaps the main start and main end directions" name="assert">
+ <style>
+ .test {
+ display: flex;
+ float:left;
+ height: 3em;
+ }
+
+ .test > span {
+ height: 1em;
+ }
+
+ #column {
+ flex-direction: column;
+ }
+
+ #column-reverse {
+ flex-direction: column-reverse;
+ }
+ </style>
+ </head>
+ <body>
+ <p>Test passes if both the two columns below are identical.</p>
+ <div class="test" id="column">
+ <span>A</span><span>B</span><span>C</span>
+ </div>
+ <div class="test" id="column-reverse">
+ <span>C</span><span>B</span><span>A</span>
+ </div>
+
+
+</body>
+<!-- Mirrored from test.csswg.org/suites/css-flexbox-1_dev/nightly-unstable/html/flex-direction-column-reverse-002-visual.htm by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 23 Dec 2023 16:15:11 GMT -->
+</html> \ No newline at end of file