Chromium Code Reviews| Index: LayoutTests/fast/css/calculated-length-as-percent-crash.html |
| diff --git a/LayoutTests/fast/css/calculated-length-as-percent-crash.html b/LayoutTests/fast/css/calculated-length-as-percent-crash.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..2eeb47a67db2469a93ac26ac96d439fcb2b03442 |
| --- /dev/null |
| +++ b/LayoutTests/fast/css/calculated-length-as-percent-crash.html |
| @@ -0,0 +1,18 @@ |
| +<!DOCTYPE html> |
| +<html> |
| +<head> |
| + <script> |
| + if (window.testRunner) |
| + testRunner.dumpAsText(); |
| + </script> |
| + </head> |
| +<body> |
| + <div>Test for ignoring math expressions involving percentages for width on table cells. |
| + </div> |
| + <table> |
| + <tr> |
| + <td colspan="5" style="width: calc(100% + 100px);"/> |
| + </tr> |
| + </table> |
| +</body> |
| +</html> |