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-inline.html [blame]

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

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