summaryrefslogtreecommitdiffstats
path: root/layout/style/crashtests/1389645.html
blob: 85d3314478297bb125e9f495bc8bd328a5751322 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<meta charset="UTF-8">
<script>
window.onload = () => {
  a = document.createElement("x")
  document.documentElement.appendChild(a)
  b = document.createElement("span")
  document.documentElement.appendChild(b)
  document.documentElement.getBoundingClientRect()
  a.appendChild(document.createElement('div'))
  b.innerText = "\uFDDE\r\u0301\n"
}
</script>