Move clear_generated_content_table_a.html to wpt reftests.

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

View file

@ -827,6 +827,18 @@
"url": "/_mozilla/css/class-namespaces.html"
}
],
"css/clear_generated_content_table_a.html": [
{
"path": "css/clear_generated_content_table_a.html",
"references": [
[
"/_mozilla/css/clear_generated_content_table_ref.html",
"=="
]
],
"url": "/_mozilla/css/clear_generated_content_table_a.html"
}
],
"css/clip_a.html": [
{
"path": "css/clip_a.html",
@ -5160,6 +5172,18 @@
"url": "/_mozilla/css/class-namespaces.html"
}
],
"css/clear_generated_content_table_a.html": [
{
"path": "css/clear_generated_content_table_a.html",
"references": [
[
"/_mozilla/css/clear_generated_content_table_ref.html",
"=="
]
],
"url": "/_mozilla/css/clear_generated_content_table_a.html"
}
],
"css/clip_a.html": [
{
"path": "css/clip_a.html",

View file

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<link rel='match' href='clear_generated_content_table_ref.html'>
<style>
.clearit:after {
content: "";
clear: both;
display: table;
}
</style>
</head>
<body>
<div class=clearit>
<div style="float: left;">x</div>
</div>
<div style="float: left;">y</div>
</body>
</html>

View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<body>
<div class=clearit>
<div style="float: left;">x</div>
</div>
<div style="display: table; clear: both;"></div>
<div style="float: left;">y</div>
</body>
</html>