summaryrefslogtreecommitdiffstats
path: root/layout/svg/crashtests/1836831.html
blob: 9513ff21589439076382eeb90ebac8c1923cc58e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<style>
* {
  offset: auto ray(farthest-side contain 1266019529.52turn) 5%;
  vector-effect: non-scaling-stroke;
  stroke: context-stroke ! important;
}
</style>
<script>
document.addEventListener("DOMContentLoaded", () => {
  let a = document.createElementNS("http://www.w3.org/2000/svg", "svg")
  let b = document.createElementNS("http://www.w3.org/2000/svg", "path")
  b.setAttribute("d", "m9 1")
  a.appendChild(b)
  document.documentElement.appendChild(a)
})
</script>