summaryrefslogtreecommitdiffstats
path: root/layout/style/crashtests/1411008.html
blob: 9621a559ee7b677fe5596acc5deadb7664697d4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<script>
  try { o1 = document.createElement('c') } catch(e) { }
  try { o2 = document.createElement('p') } catch(e) { }
  try { o3 = document.createElement('progress') } catch(e) { }
  try { o4 = document.createElement('legend') } catch(e) { }
  try { o5 = document.createElement('m') } catch(e) { }
  try { o6 = new Range() } catch(e) { }
  try { o7 = window.getSelection() } catch(e) { }
  try { document.documentElement.appendChild(o1) } catch(e) { }
  try { document.documentElement.appendChild(o2) } catch(e) { }
  try { document.documentElement.appendChild(o3) } catch(e) { }
  try { o1.scrollTopMax } catch(e) { }
  try { o2.outerHTML = '<b contenteditable="">' } catch(e) { }
  try { o7.modify('move', 'right', 'line') } catch(e) { }
  try { o1.prepend(o4) } catch(e) { }
  try { document.documentElement.appendChild(o5) } catch(e) { }
  try { o5.scrollLeft = 8 } catch(e) { }
  try { document.designMode = 'on'; } catch(e) { }
  try { o7.addRange(o6); } catch(e) { }
  try { document.execCommand('inserttext') } catch(e) { }
</script>