summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/accessibility/crashtests/delayed-ignored-change.html
blob: fce54add159f3a8415a93dc7472b6ae6adb08ddc (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>
window.addEventListener('load', () => {
  window.requestAnimationFrame(() => {
    window.requestAnimationFrame(() => {
      document.querySelector('style').remove();
      document.documentElement.className = '';
    });
  });
});
</script>
</html>