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

@ -31,7 +31,6 @@ flaky_cpu == append_style_a.html append_style_b.html
== canvas_as_block_element_a.html canvas_as_block_element_ref.html
== canvas_radial_gradient_a.html canvas_radial_gradient_ref.html
== case-insensitive-font-family.html case-insensitive-font-family-ref.html
== clear_generated_content_table_a.html clear_generated_content_table_ref.html
== empty_cells_a.html empty_cells_ref.html
== filter_opacity_a.html filter_opacity_ref.html
== fixed_width_overrides_child_intrinsic_width_a.html fixed_width_overrides_child_intrinsic_width_ref.html

View file

@ -1,19 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<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

@ -1,12 +0,0 @@
<!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>