summaryrefslogtreecommitdiffstats
path: root/layout/tables/crashtests/388700-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/tables/crashtests/388700-1.html')
-rw-r--r--layout/tables/crashtests/388700-1.html34
1 files changed, 34 insertions, 0 deletions
diff --git a/layout/tables/crashtests/388700-1.html b/layout/tables/crashtests/388700-1.html
new file mode 100644
index 0000000000..f75336e15f
--- /dev/null
+++ b/layout/tables/crashtests/388700-1.html
@@ -0,0 +1,34 @@
+<html>
+
+<head>
+<script>
+
+function boom()
+{
+ document.body.style.direction = "rtl";
+ tbody = document.getElementById("tbody");
+ tbody.contentEditable = "true";
+ tbody.focus();
+}
+
+</script>
+</head>
+
+<body onload="boom();">
+
+<table border="1">
+ <tbody>
+ <tr>
+ <td>
+ <table border="1" style="border-collapse: collapse;"><tbody id="tbody"><tr></tr>
+ <tr>
+ <td></td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+ </tbody>
+</table>
+
+</body>
+</html>