summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/accessibility/crashtests/included-descendant-layout-removal.html
blob: 5270a36351988474e45eb4515df0a0e3db16d631 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<html class="test-wait">
<head>
<script>
window.onload = function() {
  requestAnimationFrame(() => {
    requestAnimationFrame(() => {
      document.querySelector('svg').style.display = 'contents';
      document.documentElement.className = '';
    });
  });
};
</script>
</head>
<body>
<div role="group" class="group">
  <div class="ignored1">
    <div class="ignored2">
      <div class="ignored3">
        <svg role="none">   <!-- Ignored -->
          <g id="foo"></g>  <!-- Ignored but included in tree -->
          <circle cx="10" cy="10" r="5" />
        </svg>
      </div>
    </div>
  </div>
</div>
</body>
</html>