diff options
Diffstat (limited to 'layout/generic/crashtests/382131-1.html')
-rw-r--r-- | layout/generic/crashtests/382131-1.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/layout/generic/crashtests/382131-1.html b/layout/generic/crashtests/382131-1.html new file mode 100644 index 000000000..82941f2cb --- /dev/null +++ b/layout/generic/crashtests/382131-1.html @@ -0,0 +1,25 @@ +<html class="reftest-wait">
+<head>
+<script>
+
+function crash()
+{
+ try {
+ window.getSelection().containsNode([], false);
+ } catch(e) { }
+
+ try {
+ window.getSelection().containsNode(null, false);
+ } catch(e) { }
+
+ document.documentElement.removeAttribute("class");
+}
+
+</script>
+</head>
+
+<body onload="setTimeout(crash, 10);">
+Foo
+</body>
+
+</html>
|