Chromium Code Reviews| Index: LayoutTests/fast/table/crash-col-in-anonymous-table.html |
| diff --git a/LayoutTests/fast/table/crash-col-in-anonymous-table.html b/LayoutTests/fast/table/crash-col-in-anonymous-table.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f083fda99ca54af8bdd52ea61cfe7890701fe3ca |
| --- /dev/null |
| +++ b/LayoutTests/fast/table/crash-col-in-anonymous-table.html |
| @@ -0,0 +1,21 @@ |
| +<!DOCTYPE html> |
| +<html> |
| +<head> |
| +<script> |
| + if (window.testRunner) |
| + testRunner.dumpAsText(); |
| + |
| + function crash() { |
| + var th = document.createElement("th"); |
| + var col = document.createElement("col"); |
| + |
| + document.body.appendChild(th); |
| + document.body.appendChild(col); |
| + } |
| +</script> |
| +</head> |
| +<body onload="crash();"> |
| +<div>Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=330651">330651</a>: infinite recursion when creating anonymous table structure</div> |
| +<div>This test passes if it does not CRASH.</div> |
|
Julien - ping for review
2014/01/15 17:30:21
Nit: You can say CRASH or HANG as you mentioned we
|
| +</body> |
| +</html> |