mirror of
https://github.com/servo/servo.git
synced 2025-08-05 21:50:18 +01:00
Ignore border-spacing for tables with zero cells
This commit is contained in:
parent
32b9c0962b
commit
cad5d8b670
5 changed files with 50 additions and 8 deletions
|
@ -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
|
||||
|
|
19
tests/ref/border_spacing_empty_table.html
Normal file
19
tests/ref/border_spacing_empty_table.html
Normal 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>
|
||||
|
15
tests/ref/border_spacing_empty_table_ref.html
Normal file
15
tests/ref/border_spacing_empty_table_ref.html
Normal file
|
@ -0,0 +1,15 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<style>
|
||||
body {
|
||||
background: yellow;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue