Move floated_table_with_margin_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-22 09:16:45 -04:00
parent b687c1c7f9
commit 4f8a84109e
4 changed files with 25 additions and 1 deletions

View file

@ -899,6 +899,18 @@
"url": "/_mozilla/css/floated_list_item_a.html"
}
],
"css/floated_table_with_margin_a.html": [
{
"path": "css/floated_table_with_margin_a.html",
"references": [
[
"/_mozilla/css/floated_table_with_margin_ref.html",
"=="
]
],
"url": "/_mozilla/css/floated_table_with_margin_a.html"
}
],
"css/focus_selector.html": [
{
"path": "css/focus_selector.html",
@ -5040,6 +5052,18 @@
"url": "/_mozilla/css/floated_list_item_a.html"
}
],
"css/floated_table_with_margin_a.html": [
{
"path": "css/floated_table_with_margin_a.html",
"references": [
[
"/_mozilla/css/floated_table_with_margin_ref.html",
"=="
]
],
"url": "/_mozilla/css/floated_table_with_margin_a.html"
}
],
"css/focus_selector.html": [
{
"path": "css/focus_selector.html",

View file

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<link rel='match' href='floated_table_with_margin_ref.html'>
<title>Rust - Wikipedia, the free encyclopedia</title>
<style>
body {
margin: 0;
}
</style>
</head>
<body>
<table style="float: right; margin: 0px 0px 0em 1em; width: 100px; background: red;">
<tr><td>foo</td></tr>
<tr><td>foo</td></tr>
<tr><td>foo</td></tr>
<tr><td>foo</td></tr>
<tr><td>foo</td></tr>
</table>
</body>
</html>

View file

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<title>Rust - Wikipedia, the free encyclopedia</title>
<style>
body {
margin: 0;
}
</style>
</head>
<body>
<div style="float: right"><table style="margin: 0px 0px 0em 1em; width: 100px; background: red;">
<tr><td>foo</td></tr>
<tr><td>foo</td></tr>
<tr><td>foo</td></tr>
<tr><td>foo</td></tr>
<tr><td>foo</td></tr>
</table></div>
</body>
</html>