aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/css-tests/css-flexbox-1_dev/xhtml1/order-with-column-reverse.xht
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2017-11-01 18:17:08 -0400
committerJosh Matthews <josh@joshmatthews.net>2017-11-02 09:22:26 -0400
commit12d22f6bd217ecd02868ab30f8b1cae8bad5d4e6 (patch)
tree982bef2092a4a03855f51022c56460a546d5bce8 /tests/wpt/css-tests/css-flexbox-1_dev/xhtml1/order-with-column-reverse.xht
parent00940911c5755651df7038c7bf4b51c77a44c225 (diff)
downloadservo-12d22f6bd217ecd02868ab30f8b1cae8bad5d4e6.tar.gz
servo-12d22f6bd217ecd02868ab30f8b1cae8bad5d4e6.zip
Remove all outdated CSS tests.
Diffstat (limited to 'tests/wpt/css-tests/css-flexbox-1_dev/xhtml1/order-with-column-reverse.xht')
-rw-r--r--tests/wpt/css-tests/css-flexbox-1_dev/xhtml1/order-with-column-reverse.xht40
1 files changed, 0 insertions, 40 deletions
diff --git a/tests/wpt/css-tests/css-flexbox-1_dev/xhtml1/order-with-column-reverse.xht b/tests/wpt/css-tests/css-flexbox-1_dev/xhtml1/order-with-column-reverse.xht
deleted file mode 100644
index 10a40038bfd..00000000000
--- a/tests/wpt/css-tests/css-flexbox-1_dev/xhtml1/order-with-column-reverse.xht
+++ /dev/null
@@ -1,40 +0,0 @@
-<!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 Test: flex container layout lowest order with column-reverse direction</title>
- <link href="mailto:tmtysk@gmail.com" rel="author" title="tmtysk" />
- <link href="mailto:jackalmage@gmail.com" rel="reviewer" title="Tab Atkins" />
- <link href="http://www.w3.org/TR/css-flexbox-1/#propdef-order" rel="help" />
- <link href="reference/order-with-column-reverse-ref.xht" rel="match" />
- <meta content="This test check that a flex container layouts out its content starting with the lowest numbered ordinal group and going up with column-reverse direction." name="assert" />
- <style>
- #test {
- display: flex;
- flex-direction: column-reverse;
- }
-
- #first {
- order: 3;
- }
-
- #second {
- order: 2;
- }
-
- #third {
- order: 1;
- }
- p {
- margin: 0;
- }
- </style>
- </head>
- <body>
- <p>Test passes if the paragraph below reads 'First,Second,Third' from top.</p>
- <div id="test">
- <p id="second">Second,</p>
- <p id="first">First,</p>
- <p id="third">Third</p>
- </div>
-
-
-</body></html> \ No newline at end of file