File: setsize-posinset-level-6.html

package info (click to toggle)
thunderbird 1%3A60.9.0-1~deb10u1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,339,424 kB
  • sloc: cpp: 5,457,040; ansic: 2,360,385; python: 596,167; asm: 340,963; java: 326,296; xml: 258,830; sh: 84,445; makefile: 23,701; perl: 17,317; objc: 3,768; yacc: 1,766; ada: 1,681; lex: 1,364; pascal: 1,264; cs: 879; exp: 527; php: 436; lisp: 258; ruby: 153; awk: 152; sed: 53; csh: 27
file content (75 lines) | stat: -rw-r--r-- 2,606 bytes parent folder | download | duplicates (37)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html> 
<html>
  <head>
    <title>ARIA 1.0 Test Case 768</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  </head>
  <body>
    <h1>ARIA 1.0 Test Case 768</h1>
    
    <div role="list">
      <div role="listitem" aria-level="2">Item 1</div>
      <div role="listitem" aria-level="2">Item 2</div>
      <div role="listitem" aria-level="2">Item 3</div>
      <div role="listitem" aria-level="2">Item 4</div>
    </div>
    
    <h2>Description</h2>
    <p>A div element with the role='list' with four child div elements with with the role='listitem' with a aria-level='2'.</p>

      <h2>Expected Results</h2>
      
      <h3>MSAA + UIA Express</h3>
      <ul>
        <li>role="list": ROLE_SYSTEM_LIST + STATE_SYSTEM_READONLY</li>
        <li>role="listitem": ROLE_SYSTEM_LISTITEM + STATE_SYSTEM_READONLY</li>
        <li>LegacyIAccessible.Description will be in the form X of Y, 
          where X is the position in list and Y = 4</li>
        <li>Expose level=1 in AriaProperites for list items</li> 
      </ul>
      
      <h3>MSAA + IAccessible2</h3>
      <ul>
        <li>role="list": ROLE_SYSTEM_LIST + STATE_SYSTEM_READONLY</li>
        <li>role="listitem": ROLE_SYSTEM_LISTITEM + STATE_SYSTEM_READONLY</li>
        <li>The structure should be reflected in the accessibility tree as directed by aria-posinset.</li>
        <li>function groupPosition() should be available and have the following results:
          <ul>
            <li>groupLevel: 2</li>
            <li>similarItemsInGroup: 4</li>
            <li>positionInGroup: position in list</li>
          </ul>
        </li>
      </ul>
      
      <h3>UIA</h3>
      <ul>
        <li>role="list": List</li>
        <li>role="listitem": Listitem</li>
        <li>LegacyIAccessible.Description will be in the form X of Y, 
            where X is the position in list and Y = 4</li>
        <li>Expose level=1 in AriaProperites for list items</li> 
      </ul>
    
      <h3>ATK/AT-SPI</h3>
      <ul>
        <li>role="list": ROLE_LIST and STATE_EDITABLE is not exposed</li>
        <li>role="listitem": ROLE_LISTITEM and STATE_EDITABLE is not exposed</li>
        <li>setsize: 4</li>
        <li>posinset: position in list</li>
        <li>level: 2 </li>
      </ul>
      
      <h3>AXAPI</h3>
      <ul>
        <li>role="list": AXList and AXContentList = 'content list'</li>
        <li>role="listitem": AXGroup = nil</li>
        <li>AXARIASetSize: 4</li>
        <li>AXARIAPosInSet: position in list</li>
        <li>AXDisclosureLevel: 2 </li>
      </ul>
          
  </body>
</html>