| 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"><
/script> | 5 <script type="text/javascript" src="./../resources/accessibility-dumpAccessibili
tyNodes.js"></script> |
| 6 <script> | 6 <script> |
| 7 | 7 |
| 8 function test() | 8 function test() |
| 9 { | 9 { |
| 10 InspectorTest.sendCommand("DOM.getDocument", {}, (msg) => { | 10 InspectorTest.sendCommand("DOM.getDocument", {}, (msg) => { |
| 11 InspectorTest.dumpAccessibilityNodesBySelectorAndCompleteTest("[data-dum
p]", false, msg); | 11 InspectorTest.dumpAccessibilityNodesBySelectorAndCompleteTest("[data-dum
p]", false, msg); |
| 12 }); | 12 }); |
| 13 } | 13 } |
| 14 | 14 |
| 15 function done() { | 15 function done() { |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 </label> | 53 </label> |
| 54 | 54 |
| 55 <input data-dump id="text11" type="text"> | 55 <input data-dump id="text11" type="text"> |
| 56 <label for="text11">first-label-for-text11</label> | 56 <label for="text11">first-label-for-text11</label> |
| 57 <label for="text11">second-label-for-text11</label> | 57 <label for="text11">second-label-for-text11</label> |
| 58 | 58 |
| 59 <input data-dump id="text12" type="text" title="text12-title" aria-placehold
er="text12-aria-placeholder"> | 59 <input data-dump id="text12" type="text" title="text12-title" aria-placehold
er="text12-aria-placeholder"> |
| 60 </div> | 60 </div> |
| 61 </body> | 61 </body> |
| 62 </html> | 62 </html> |
| OLD | NEW |