OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script type="text/javascript" src="../../http/tests/inspector-protocol/dom-prot
ocol-test.js"></script> | 3 <script type="text/javascript" src="../resources/dom-protocol-test.js"></script> |
4 <script type="text/javascript" src="../../http/tests/inspector-protocol/inspecto
r-protocol-test.js"></script> | 4 <script type="text/javascript" src="../../http/tests/inspector-protocol/resource
s/inspector-protocol-test.js"></script> |
5 <script type="text/javascript" src="accessibility-dumpAccessibilityNodes.js"></s
cript> | 5 <script type="text/javascript" src="../resources/accessibility-dumpAccessibility
Nodes.js"></script> |
6 <script> | 6 <script> |
7 | 7 |
8 function test() | 8 function test() |
9 { | 9 { |
10 InspectorTest.sendCommand("DOM.getDocument", | 10 InspectorTest.sendCommand("DOM.getDocument", |
11 {}, | 11 {}, |
12 (result) => { | 12 (result) => { |
13 InspectorTest.dumpAccessibilityNodesBySelectorAndCompleteTest('[data-dum
p]', true, result); | 13 InspectorTest.dumpAccessibilityNodesBySelectorAndCompleteTest('[data-dum
p]', true, result); |
14 }); | 14 }); |
15 } | 15 } |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 <option>sent down even though</option> | 55 <option>sent down even though</option> |
56 <option>they are grandchildren</option> | 56 <option>they are grandchildren</option> |
57 </select> | 57 </select> |
58 | 58 |
59 <button inert data-dump>inert button</button> | 59 <button inert data-dump>inert button</button> |
60 <div id="inert-root" inert> | 60 <div id="inert-root" inert> |
61 <button data-dump>button in inert subtree</button> | 61 <button data-dump>button in inert subtree</button> |
62 </div> | 62 </div> |
63 </body> | 63 </body> |
64 </html> | 64 </html> |
OLD | NEW |