summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/accessibility/crashtests/delayed-ignored-change.html
blob: 226af19b5fe3357d7735f095d5be2b42de625741 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<html class="test-wait">
<style>
  body { font-size: x-large; }
  .hidden { visibility: hidden; }
</style>
<rb class="hidden">
  <textarea></textarea>
</rb>
<script>
document.addEventListener('load', () => {
  window.requestAnimationFrame(() => {
    window.requestAnimationFrame(() => {
      document.querySelector('style').remove();
      document.documentElement.className = '';
    });
  });
}, true);
</script>
</html>