Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / tr-min-content-crash.html
blobe0f7cf59236c81c46fac8deb59fa1e3a769d49be
1 <!doctype html>
2 <script>
3 if (window.testRunner)
4 testRunner.dumpAsText();
5 </script>
7 <style>
8 .min { height: -webkit-min-content; }
9 .max { height: -webkit-max-content; }
10 .fit { height: -webkit-fit-content; }
11 </style>
13 <p>Test passes if it does not CRASH in debug.</p>
14 <p>This test is verifying that setting a table rows height to [min|max|fit]-content does not ASSERT. crbug.com/478265.</p>
16 <table>
17 <tr class="min"></tr>
18 <tr class="max"></tr>
19 <tr class="fit"></tr>
20 </table>