summaryrefslogtreecommitdiffstats
path: root/gfx/tests/crashtests/372094-1.xhtml
blob: 91b81ac58b5eda562286ba2be7eddc71b7306178 (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
36
37
38
39
40
41
42
43
44
45
<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
<head>
<script>
<![CDATA[

function init()
{
  setTimeout(function()
  {
    targetWindow = window.frames[0];
    targetDocument = targetWindow.document;
    targetDocument.body.appendChild(targetDocument.importNode(document.getElementById('rootish'), true));
    targetDocument.designMode = 'on';
    setTimeout(boom, 30);
  }, 30); 
}

function boom()
{
  var r = targetDocument.createRange();
  r.setStart(targetDocument.getElementById("bar"), 0);
  r.setEnd(targetDocument.getElementById("baz").firstChild, 0);
  targetWindow.getSelection().addRange(r);
  
  targetDocument.execCommand("indent", false, null);
  
  document.documentElement.removeAttribute("class");
}

]]>
</script>
</head>

<body onload="init()">

  <iframe srcdoc="<html></html>" style="width: 95%; height: 500px;"/>

<div id="rootish">
  <div>Foo</div>
  <div id="bar">Bar</div>
  <div><select><option id="baz">baz</option></select></div>
</div>

</body>
</html>