summaryrefslogtreecommitdiffstats
path: root/layout/tables/crashtests/423514-1.xhtml
blob: b6e3876ded59c59639835f0cdbde7ff30f087bbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
<head>
<script type="text/javascript">

window.addEventListener("load", boom, false);

function boom()
{
  var d = document.getElementById("d");

  var c = document.createElement("td");
  c.setAttribute("rowspan", 2);
  d.parentNode.insertBefore(c, d);

  document.getElementById("d").focus();
  
  // Wait long enough for the caret to blink at least once.
  setTimeout(done, 1200);
}

function done()
{
  document.documentElement.removeAttribute("class");
}

</script>
</head>

<!-- no <body>, intentionally -->

<div dir="rtl"></div>

<table><tr contenteditable="true" id="d"><td></td></tr></table>

</html>