Chromium Code Reviews| Index: LayoutTests/fast/table/split-anonymous-crash.html |
| diff --git a/LayoutTests/fast/table/split-anonymous-crash.html b/LayoutTests/fast/table/split-anonymous-crash.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..bc036707e4ad79d5302a51543c86c4112c424eaf |
| --- /dev/null |
| +++ b/LayoutTests/fast/table/split-anonymous-crash.html |
| @@ -0,0 +1,18 @@ |
| +<!DOCTYPE html> |
| +<style> |
| + #fl:first-letter { color:red; } |
| +</style> |
| +<script> |
| + if (window.testRunner) |
| + testRunner.dumpAsText(); |
| + window.onload = function() { |
| + document.body.offsetTop; |
| + elm2.style.display = 'table-row'; |
| + } |
| +</script> |
| +<p>This should not crash.</p> |
|
Julien - ping for review
2014/09/08 23:03:35
Nit: Let's add a description of what we test.
mstensho (USE GERRIT)
2014/09/09 07:20:02
Done.
|
| +<div id="fl" style="display:table-row-group; padding-top:1vw;"> |
| + <div id="elm1">elm1</div> |
| + <div id="elm2" style="display:none;">elm2</div> |
| + <div style="display:table-row-group;">nested row group</div> |
| +</div> |