1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24

content / test / data / accessibility / html / scrollable.html [blame]

<!-- 
  @UIA-WIN-ALLOW:Scroll.HorizontalScrollPercent=*
  @UIA-WIN-ALLOW:Scroll.HorizontalViewSize=*
  @UIA-WIN-ALLOW:Scroll.HorizontallyScrollable=*
  @UIA-WIN-ALLOW:Scroll.VerticalScrollPercent=*
  @UIA-WIN-ALLOW:Scroll.VerticalViewSize=*
  @UIA-WIN-ALLOW:Scroll.VerticallyScrollable=*
  @UIA-WIN-ALLOW:ClassName*
  @UIA-WIN-DENY:IsControlElement*
 -->
<!DOCTYPE html>
<html>
  <body>
    <div class='not'>
      not scrollable
    </div>
    <div style='width:100px; overflow:auto' class='x'>
        <div style='width:200px; height:100px'></div>
    </div>
    <div style='height:100px; overflow:auto' class='y'>
        <div style='width:100px; height:200px'></div>
    </div>
  </body>
</html>