1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18

content / test / data / accessibility / css / display-to-none.html [blame]

<!--
@WAIT-FOR:done
@BLINK-ALLOW:display*
-->
<div>
  <div>Cats</div>
  <div id="none">
      <input type="checkbox" aria-label="checkbox" id="cbox1">
  </div>
  <div><code>pending</code></div>
</div>

<script>
  setTimeout(()=> {
    document.getElementById('none').style.display = 'none';
    document.querySelector('code').innerText = 'done';
  }, 100);
</script>