summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/flexbox-order-only-flexitems.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-flexbox/flexbox-order-only-flexitems.html')
-rw-r--r--testing/web-platform/tests/css/css-flexbox/flexbox-order-only-flexitems.html36
1 files changed, 36 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-flexbox/flexbox-order-only-flexitems.html b/testing/web-platform/tests/css/css-flexbox/flexbox-order-only-flexitems.html
new file mode 100644
index 0000000000..0d99139e0d
--- /dev/null
+++ b/testing/web-platform/tests/css/css-flexbox/flexbox-order-only-flexitems.html
@@ -0,0 +1,36 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>CSS Test: order only affects flex items</title>
+ <link rel="author" title="Sylvain Galineau" href="mailto:galineau@adobe.com">
+ <link rel="reviewer" title="Arron Eicholz" href="mailto:arronei@microsoft.com">
+ <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#order-property">
+ <link rel="match" href="reference/flexbox-order-only-flexitems-ref.html">
+ <meta name="assert" content="This test check that the order property has no effect on elements that are not flex items">
+ <style>
+ #test {
+ display: block; /* Not a flex container */
+ }
+
+ #leftmost {
+ order: 2;
+ }
+
+ #middle {
+ order:1;
+ }
+
+ #rightmost {
+ order:0;
+ }
+ </style>
+ </head>
+ <body>
+ <p>Test passes if the paragraph below reads 'First, Second, Third'.</p>
+ <div id="test">
+ <span id="leftmost">First,</span>
+ <span id="middle">Second,</span>
+ <span id="rightmost">Third</span>
+ </div>
+ </body>
+</html> \ No newline at end of file