aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/css-tests/css21_dev/xhtml1/table-height-algorithm-013.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/css21_dev/xhtml1/table-height-algorithm-013.xht
parent00940911c5755651df7038c7bf4b51c77a44c225 (diff)
downloadservo-12d22f6bd217ecd02868ab30f8b1cae8bad5d4e6.tar.gz
servo-12d22f6bd217ecd02868ab30f8b1cae8bad5d4e6.zip
Remove all outdated CSS tests.
Diffstat (limited to 'tests/wpt/css-tests/css21_dev/xhtml1/table-height-algorithm-013.xht')
-rw-r--r--tests/wpt/css-tests/css21_dev/xhtml1/table-height-algorithm-013.xht49
1 files changed, 0 insertions, 49 deletions
diff --git a/tests/wpt/css-tests/css21_dev/xhtml1/table-height-algorithm-013.xht b/tests/wpt/css-tests/css21_dev/xhtml1/table-height-algorithm-013.xht
deleted file mode 100644
index dd76073980f..00000000000
--- a/tests/wpt/css-tests/css21_dev/xhtml1/table-height-algorithm-013.xht
+++ /dev/null
@@ -1,49 +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><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
- <title>CSS Test: Vertical-align set to 'top' aligns cell content to the top of the cell</title>
- <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
- <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#height-layout" />
- <meta name="flags" content="" />
- <meta name="assert" content="A cell with Vertical-align set to 'top' aligns a cell's content to the top of the cell." />
- <style type="text/css">
- table
- {
- height: 100px;
- }
- td
- {
- border: 1px solid black;
- vertical-align: top;
- }
- #small
- {
- font-size: 10pt;
- }
- #medium
- {
- font-size: 20pt;
- }
- #large
- {
- font-size: 30pt;
- }
- </style>
- </head>
- <body>
- <p>Test passes if the "Filler Text" below is vertically aligned to the top of their boxes.</p>
- <table>
- <tr>
- <td>
- <div id="small">Filler Text</div>
- </td>
- <td>
- <div id="medium">Filler Text</div>
- </td>
- <td>
- <div id="large">Filler Text</div>
- </td>
- </tr>
- </table>
- </body>
-</html> \ No newline at end of file