summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/crashtests/1441619.html
blob: 08343feeed3c6b256cfd29bf0647f7a175f2c1e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<html>
  <head>
    <script>
      try { o1 = window.getSelection() } catch (e) {}
      try { o2 = document.createRange() } catch (e) {}
      try { document.head.replaceWith('', document.documentElement) } catch (e) {}
      try { o1.addRange(o2) } catch (e) {}
      try { document.designMode = 'on' } catch (e) {}
      try { o1.focusNode.execCommand('justifyleft', false, null) } catch (e) {}
    </script>
  </head>
</html>