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

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

Issue 2390783006: [DevTools] Accessibility: Show siblings and children of selected node (Closed)
Patch Set: Rebase tests again and be consistent about backendDOMNodeId Created 4 years, 1 month 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="../../http/tests/inspector-protocol/dom-prot ocol-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/inspecto r-protocol-test.js"></script>
5 <script type="text/javascript" src="./accessibility-dumpAccessibilityNodes.js">< /script> 5 <script type="text/javascript" src="./accessibility-dumpAccessibilityNodes.js">< /script>
6 <script> 6 <script>
7 7
8 function test() 8 function test()
9 { 9 {
10 InspectorTest.sendCommand("DOM.getDocument", {}, InspectorTest.dumpAccessibi lityNodesBySelectorAndCompleteTest.bind(null, "summary")); 10 InspectorTest.sendCommand("DOM.getDocument", {}, (msg) => {
11 InspectorTest.dumpAccessibilityNodesBySelectorAndCompleteTest("summary", false, msg);
12 });
11 } 13 }
12 14
13 function done() { 15 function done() {
14 document.body.classList.add("done"); 16 document.body.classList.add("done");
15 } 17 }
16 18
17 </script> 19 </script>
18 <style> 20 <style>
19 body.done .tests { 21 body.done .tests {
20 display: none; 22 display: none;
(...skipping 25 matching lines...) Expand all
46 </details> 48 </details>
47 49
48 <details id="details5"> 50 <details id="details5">
49 <summary id="summary5" title="summary5-title" aria-label="summary5-aria-la bel" aria-labelledby="labelledby5">summary5-contents</summary> 51 <summary id="summary5" title="summary5-title" aria-label="summary5-aria-la bel" aria-labelledby="labelledby5">summary5-contents</summary>
50 <p>details5-content</p> 52 <p>details5-content</p>
51 </details> 53 </details>
52 <span hidden="true" id="labelledby5">summary5-aria-labelledby</span> 54 <span hidden="true" id="labelledby5">summary5-aria-labelledby</span>
53 </div> 55 </div>
54 </body> 56 </body>
55 </html> 57 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698