summaryrefslogtreecommitdiffstats
path: root/layout/style/crashtests/1552911.html
blob: 0e8fcb8db725ab794735809637bc92c4f5e888f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<html>
<head>
  <script>
    function start() {
      const o1 =
        document.createElementNS('http://www.w3.org/1999/xhtml', 'slot');
      const observer = new ResizeObserverEntry(o1);
      typeof observer.borderBoxSize;
      typeof observer.contentBoxSize;
    }

    window.addEventListener('load', start);
  </script>
</head>
</html>