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

content / test / data / accessibility / accname / name-file-label-inline-hidden-elements.html [blame]

<!--
@BLINK-DENY:descri*
-->
<!doctype html>
<html>
<body>
<style>
  .hidden { display: none; }
</style>
<input type="file" id="test" />
<label for="test">
  <span class="hidden">1</span><span>2</span>
  <span style="visibility: hidden;">3</span><span>4</span>
  <span hidden>5</span><span>6</span>
  <span aria-hidden="true">7</span><span>8</span>
  <span aria-hidden="false" class="hidden">9</span><span>10</span>
</label>
</body>
</html>