aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/css-tests/css-flexbox-1_dev/xhtml1/flexbox-with-pseudo-elements-003.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/flexbox-with-pseudo-elements-003.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/flexbox-with-pseudo-elements-003.xht')
-rw-r--r--tests/wpt/css-tests/css-flexbox-1_dev/xhtml1/flexbox-with-pseudo-elements-003.xht65
1 files changed, 0 insertions, 65 deletions
diff --git a/tests/wpt/css-tests/css-flexbox-1_dev/xhtml1/flexbox-with-pseudo-elements-003.xht b/tests/wpt/css-tests/css-flexbox-1_dev/xhtml1/flexbox-with-pseudo-elements-003.xht
deleted file mode 100644
index f4622cad58e..00000000000
--- a/tests/wpt/css-tests/css-flexbox-1_dev/xhtml1/flexbox-with-pseudo-elements-003.xht
+++ /dev/null
@@ -1,65 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<!--
- Any copyright is dedicated to the Public Domain.
- http://creativecommons.org/publicdomain/zero/1.0/
---><!-- Testcase to ensure we handle ::before and ::after pseudo-elements on a
- flex container, specifically when they've got display:table-row or
- table-cell.
-
- The table-row / table-cell 'display' values should be blockified, and the
- pseudo-elements should be treated as flex items. (They should not get
- wrapped in an anonymous table box.) --><html xmlns="http://www.w3.org/1999/xhtml"><head>
- <title>CSS Test: Testing that generated content nodes with table-part display types are wrapped with an anonymous table, which forms a flex item</title>
- <link href="mailto:dholbert@mozilla.com" rel="author" title="Daniel Holbert" />
- <link href="http://www.w3.org/TR/css-flexbox-1/#flex-items" rel="help" />
- <link href="reference/flexbox-with-pseudo-elements-003-ref.xht" rel="match" />
- <meta charset="utf-8" />
- <style>
- .flexContainer {
- display: flex;
- align-items: flex-end;
- justify-content: space-between;
- height: 50px;
- width: 300px;
- margin-bottom: 2px;
- background: lightgray;
- }
- div.withBefore::before {
- display: table-row;
- content: 'b';
- background: yellow;
- /* If these "align-self" &amp; "order" properties impact the rendering (as
- they should), that verifies we're being treated as a flex item. */
- align-self: center;
- order: 1;
- }
- div.withAfter::after {
- display: table-cell;
- content: 'a';
- background: lightblue;
- /* If these "align-self" &amp; "order" properties impact the rendering (as
- they should), that verifies we're being treated as a flex item. */
- align-self: center;
- order: -1;
- }
- </style>
-</head>
-<body>
- <div class="flexContainer withBefore">
- x
- <div>y</div>
- z
- </div>
- <div class="flexContainer withAfter">
- x
- <div>y</div>
- z
- </div>
- <div class="flexContainer withBefore withAfter">
- x
- <div>y</div>
- z
- </div>
-
-
-</body></html> \ No newline at end of file