summaryrefslogtreecommitdiffstats
path: root/layout/generic/crashtests/847211-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/generic/crashtests/847211-1.html')
-rw-r--r--layout/generic/crashtests/847211-1.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/layout/generic/crashtests/847211-1.html b/layout/generic/crashtests/847211-1.html
new file mode 100644
index 0000000000..83e7da0eb5
--- /dev/null
+++ b/layout/generic/crashtests/847211-1.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<html>
+<head>
+<script>
+
+function boom()
+{
+ var f = document.createElementNS("http://www.w3.org/1999/xhtml", "input");
+ f.setAttributeNS(null, "type", "file");
+ document.body.appendChild(f);
+ f.style.whiteSpace = "pre-line";
+ f.style.display = "flex";
+ document.body.style.transitionTimingFunction = "linear";
+}
+
+</script>
+</head>
+<body onload="boom();"></body>
+</html>