Ignore border-spacing for tables with zero cells

This commit is contained in:
Matt Brubeck 2015-04-27 13:36:10 -07:00
parent 32b9c0962b
commit cad5d8b670
5 changed files with 50 additions and 8 deletions

View file

@ -86,6 +86,7 @@ flaky_cpu == append_style_a.html append_style_b.html
== border_radius_overlapping_a.html border_radius_overlapping_ref.html
== border_spacing_a.html border_spacing_ref.html
== border_spacing_auto_layout_a.html border_spacing_ref.html
== border_spacing_empty_table.html border_spacing_empty_table_ref.html
== border_spacing_fixed_layout_a.html border_spacing_ref.html
== border_style_none_a.html border_style_none_b.html
== borders_a.html borders_b.html

View file

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
body {
background: yellow;
}
table {
border-spacing: 100px;
background: darkblue;
}
</style>
</head>
<body>
<table></table>
</body>
</html>

View file

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
body {
background: yellow;
}
</style>
</head>
<body>
</body>
</html>