summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/1153716.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/base/crashtests/1153716.html')
-rw-r--r--layout/base/crashtests/1153716.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/layout/base/crashtests/1153716.html b/layout/base/crashtests/1153716.html
new file mode 100644
index 0000000000..6a2cd591e4
--- /dev/null
+++ b/layout/base/crashtests/1153716.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<html>
+<head>
+<meta charset="UTF-8">
+<script>
+
+function boom()
+{
+ var td = document.createElement("td");
+ document.body.appendChild(td);
+ var audio = document.createElement("audio");
+ audio.controls = true;
+ td.appendChild(audio);
+}
+
+</script>
+</head>
+<body onload="boom();"></body>
+</html>