Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(635)

Side by Side Diff: third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-ignoredNodes.html

Issue 2951643002: [DevTools] Prepare inspector-protocol tests to new test runner (Closed)
Patch Set: css3/fonts Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698