aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/css-tests/css-flexbox-1_dev/xhtml1/reference/flexbox-baseline-multi-line-vert-002-ref.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/reference/flexbox-baseline-multi-line-vert-002-ref.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/reference/flexbox-baseline-multi-line-vert-002-ref.xht')
-rw-r--r--tests/wpt/css-tests/css-flexbox-1_dev/xhtml1/reference/flexbox-baseline-multi-line-vert-002-ref.xht66
1 files changed, 0 insertions, 66 deletions
diff --git a/tests/wpt/css-tests/css-flexbox-1_dev/xhtml1/reference/flexbox-baseline-multi-line-vert-002-ref.xht b/tests/wpt/css-tests/css-flexbox-1_dev/xhtml1/reference/flexbox-baseline-multi-line-vert-002-ref.xht
deleted file mode 100644
index 9f4828caa5c..00000000000
--- a/tests/wpt/css-tests/css-flexbox-1_dev/xhtml1/reference/flexbox-baseline-multi-line-vert-002-ref.xht
+++ /dev/null
@@ -1,66 +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/
---><!-- Reference case, using inline-block instead of inline-flex, and with the
- baseline-aligned items aligned using specific font-size / line-heights,
- and with unaligned children taken out of baseline-alignment using
- "float: left".
---><html xmlns="http://www.w3.org/1999/xhtml"><head>
- <title>CSS Reftest Reference</title>
- <link href="mailto:dholbert@mozilla.com" rel="author" title="Daniel Holbert" />
- <meta charset="utf-8" />
- <style>
- .flexContainer {
- display: inline-block;
- /* Split testcase's 40px width into 20px of padding-left and 20px of
- width, to set aside space for the testcase's (invisible) second line
- (which is to the left of the first line, since this is wrap-reverse)
- */
- width: 20px;
- padding-left: 20px;
- height: 40px;
- background: lightblue;
- }
- .flexContainer &gt; * {
- width: 20px;
- height: 20px;
- display: inline-block;
- }
-
- .smallFont {
- font-size: 8px;
- line-height: 8px;
- }
- .medFont {
- font-size: 12px;
- line-height: 12px;
- }
- .bigFont {
- font-size: 16px;
- line-height: 16px;
- }
- .unaligned { float: left }
- </style>
-</head>
-<body>
- a
- <!-- Flex containers with flex items that have a mix of baselines: -->
- <div class="flexContainer medFont">
- <div class="medFont">b</div><br /><div class="bigFont unaligned">c</div>
- </div>
-
- <div class="flexContainer bigFont">
- <div class="bigFont">f</div><br /><div class="smallFont unaligned">g</div>
- </div>
-
- <!-- Flex container with second line baseline-aligned
- (shouldn't make a difference) -->
- <div class="flexContainer smallFont">
- <div class="smallFont">j</div><br /><div class="bigFont unaligned">k</div>
- </div>
- n
-
-
-
-</body></html> \ No newline at end of file