summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/order/order-with-row-reverse-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-flexbox/order/order-with-row-reverse-ref.html')
-rw-r--r--testing/web-platform/tests/css/css-flexbox/order/order-with-row-reverse-ref.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-flexbox/order/order-with-row-reverse-ref.html b/testing/web-platform/tests/css/css-flexbox/order/order-with-row-reverse-ref.html
new file mode 100644
index 0000000000..c45b612dfe
--- /dev/null
+++ b/testing/web-platform/tests/css/css-flexbox/order/order-with-row-reverse-ref.html
@@ -0,0 +1,29 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>CSS Test Reference: flex container layout lowest order with row-reverse direction</title>
+ <link rel="author" title="tmtysk" href="mailto:tmtysk@gmail.com">
+ <link rel="reviewer" title="Tab Atkins, Jr." href="mailto:jackalmage@gmail.com">
+ <style>
+ #leftmost {
+ float: right;
+ }
+
+ #middle {
+ float: right;
+ }
+
+ #rightmost {
+ float: right;
+ }
+ </style>
+ </head>
+ <body>
+ <p>Test passes if the paragraph below reads 'First,Second,Third' from leftmost.</p>
+ <div id="test">
+ <p id="rightmost">Third</p>
+ <p id="middle">Second,</p>
+ <p id="leftmost">First,</p>
+ </div>
+ </body>
+</html>