| <!DOCTYPE html> | |
| <script> | |
| if (window.testRunner) | |
| testRunner.dumpAsText(); | |
| </script> | |
| <style> | |
| .min { height: -webkit-min-content; } | |
| .max { height: -webkit-max-content; } | |
| .fit { height: -webkit-fit-content; } | |
| </style> | |
| <p>Test passes if it does not CRASH in debug.</p> | |
| <p>This test is verifying that setting a table rows height to [min|max|fit]-content does not ASSERT.</p> | |
| <table> | |
| <tr class="min"></tr> | |
| <tr class="max"></tr> | |
| <tr class="fit"></tr> | |
| </table> |