summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/accessibility/crashtests/computed-node-checked.html
blob: 47e715b233884fad02d03a111fe03448b1faa92e (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html class="test-wait">
<body>
</body>
<script src="/resources/testharness.js"></script>
<script>
if (window.chrome && chrome.gpuBenchmarking) {
  chrome.gpuBenchmarking.pointerActionSequence(
    [
      {
        source: 'pen',
        actions: [
          { name: 'pointerMove', x: 50, y: 50 }
        ]
      }
    ]
  );
}
</script>
<script>step_timeout(gc, 50);</script>
<script>

// Bypass this abandoned syntax in all but the engines that implement it.
if (typeof getComputedAccessibleNode !== 'undefined') {

  const frameElem = document.createElement('iframe');

  frameElem.srcdoc = '<div></div>';
  frameElem.onload = function() {
    const frameDoc = frameElem.contentWindow.document;
    const divElem = frameDoc.querySelector('div');
    getComputedAccessibleNode(divElem).then(function(divAccessible) {
      frameElem.remove();
      requestAnimationFrame(() => {
        const isChecked = divAccessible.checked;
        document.documentElement.className = '';
      });
    });
  };
  document.body.appendChild(frameElem);

} else {
  // Pass in other engines that have not implemented the abandoned API
  document.documentElement.className = '';
}


</script>
</html>