summaryrefslogtreecommitdiffstats
path: root/dom/base/crashtests/1400701.html
blob: fe1eef5d50f58c182bbfbabd00405494d2856ecc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<html>
<script>
window.onload=function(){
  document.getElementById('b').textContent='Or';
  document.getElementById('a').insertBefore(document.getElementById('c'), undefined);
  document.getElementById('b').dir='ltr';
  let o=document.getElementById('b');
  o.parentNode.replaceChild(document.createElement('code'), o);
}
</script>
<body dir='auto' id='a'>
<bdi id='b' dir='auto'>
</bdi>
<q id='c'>
</html>