diff options
Diffstat (limited to 'dom/bindings/crashtests/822340-2.html')
-rw-r--r-- | dom/bindings/crashtests/822340-2.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/dom/bindings/crashtests/822340-2.html b/dom/bindings/crashtests/822340-2.html new file mode 100644 index 000000000..e938c91aa --- /dev/null +++ b/dom/bindings/crashtests/822340-2.html @@ -0,0 +1,8 @@ +<!DOCTYPE html> +<script> + var l = document.getElementsByTagName("*"); + var count = 20000; + for (var i = 0; i < count; ++i) { + l.item(0); + } +</script> |