| Index: third_party/WebKit/LayoutTests/fast/table/colspan-empty-cells-2.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/table/colspan-empty-cells-2.html b/third_party/WebKit/LayoutTests/fast/table/colspan-empty-cells-2.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f72e868c6917a11dc664b7a5513ca1e6b11f8c09
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/fast/table/colspan-empty-cells-2.html
|
| @@ -0,0 +1,26 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| +td { padding: 0px; }
|
| +</style>
|
| +<table style="border-spacing: 0px;">
|
| + <tr>
|
| + <td bgcolor="red"></td>
|
| + <td bgcolor="white" style="width:100px;"></td>
|
| + <td bgcolor="green"></td>
|
| + </tr>
|
| + <tr>
|
| + <td bgcolor="red" colspan="4" style="width: 300px;"></td>
|
| + </tr>
|
| + <tr>
|
| + <td bgcolor="red" id="red" data-expected-width=100></td>
|
| + <td bgcolor="white">TEST</td>
|
| + <td bgcolor="green" id="green" data-expected-width=100></td>
|
| + </tr>
|
| +</table>
|
| +<div id="test-output"></div>
|
| +<p>crbug.com/529413: Available space from a colspan should get evenly distributed between cols with nothing but empty cells, even when the colspan spans non-existent cells. The red and green bars should be the same width.</p>
|
| +<script src="../../resources/check-layout.js"></script>
|
| +<script>
|
| + window.checkLayout("#red", document.getElementById("test-output"));
|
| + window.checkLayout("#green", document.getElementById("test-output"));
|
| +</script>
|
|
|