| Index: LayoutTests/fast/css/long-selector-list-assert.html
|
| diff --git a/LayoutTests/fast/css/long-selector-list-assert.html b/LayoutTests/fast/css/long-selector-list-assert.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3616cf9e2f305da79d1bf4dc371b258d28d5dedd
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/css/long-selector-list-assert.html
|
| @@ -0,0 +1,13 @@
|
| +<!DOCTYPE html>
|
| +<script>
|
| + if (window.testRunner)
|
| + testRunner.dumpAsText();
|
| +
|
| + var selector = "";
|
| + for (var i=0; i<4096; i++)
|
| + selector += "#id" + i + ", ";
|
| + selector += "#assert ";
|
| + var stylesheet = "<style>" + selector + "{ color: pink }</style>";
|
| + document.write(stylesheet);
|
| +</script>
|
| +<p>PASS if no crash or assert.</p>
|
|
|