Chromium Code Reviews| Index: LayoutTests/fast/box-sizing/table-collapse.html |
| diff --git a/LayoutTests/fast/box-sizing/table-collapse.html b/LayoutTests/fast/box-sizing/table-collapse.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..b1339f1a0c1e97bf1a3a927096d1b78064dbb932 |
| --- /dev/null |
| +++ b/LayoutTests/fast/box-sizing/table-collapse.html |
| @@ -0,0 +1,49 @@ |
| +<!DOCTYPE html> |
| +<html> |
| +<head> |
| +</head> |
| +<body> |
| + <style> |
| + table { |
| + border-collapse: collapse; |
| + border: 25px solid green; |
| + border-top: 10px solid cyan; |
| + position: absolute; |
| + box-sizing: border-box; |
| + outline: 5px solid blue; |
| + } |
| + div { |
| + background-color: yellow; |
| + height: 50px; |
| + width: 50px; |
| + } |
| + </style> |
| + <table> |
| + <tbody> |
| + <tr> |
| + <td> |
| + <div></div> |
| + </td> |
| + </tr> |
| + </tbody> |
| + </table> |
| + <table style="top: 200px;"> |
|
Julien - ping for review
2013/10/03 18:04:01
Can we use a checkLayout test instead of a ref-tes
|
| + <tbody> |
| + <tr> |
| + <td> |
| + <div></div> |
| + </td> |
| + </tr> |
| + </tbody> |
| + </table> |
| + <table style="bottom: 100px;"> |
|
Julien - ping for review
2013/10/03 18:04:01
You should also test CSS table as they have a diff
|
| + <tbody> |
| + <tr> |
| + <td> |
| + <div></div> |
| + </td> |
| + </tr> |
| + </tbody> |
| + </table> |
| +</body> |
| +</html> |