Move border_spacing_auto_layout_a.html to wpt reftests.

This commit is contained in:
Ms2ger 2015-10-27 13:16:34 +01:00
parent 9fc3b6b6cc
commit b456b219f6
3 changed files with 25 additions and 1 deletions

View file

@ -11,7 +11,6 @@ fragment=top != ../html/acid2.html acid2_ref.html
== acid2_noscroll.html acid2_ref_broken.html
flaky_cpu == append_style_a.html append_style_b.html
== border_spacing_auto_layout_a.html border_spacing_ref.html
== border_spacing_fixed_layout_a.html border_spacing_ref.html
== borders_a.html borders_b.html
!= box_shadow_blur_a.html box_shadow_blur_ref.html

View file

@ -1,35 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<!--
Tests that `border-spacing` with automatic table layout works when not all the column sizes
are specified.
-->
<style>
body, html {
margin: 0;
}
table {
border: none;
border-spacing: 6px;
padding: 0;
width: 114px;
}
tr {
padding: 0;
}
td {
border: none;
padding: 0;
background: blue;
}
</style>
</head>
<body>
<table>
<tr><td style="width: 32px; height: 32px;"></td><td>&nbsp;</td></tr>
<tr><td style="width: 32px; height: 32px;"></td><td>&nbsp;</td></tr>
</table>
</body>
</html>