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

Side by Side Diff: third_party/WebKit/LayoutTests/accessibility/listitem-presentation-inherited.html

Issue 2867073003: Name calculation should not include nameFrom:author descendants. (Closed)
Patch Set: Rebase Created 3 years, 7 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 <script src="../resources/js-test.js"></script> 1 <script src="../resources/js-test.js"></script>
2 <script src="../resources/accessibility-helper.js"></script> 2 <script src="../resources/accessibility-helper.js"></script>
3 <ul role="presentation"> 3 <ul role="presentation">
4 <li role="listitem">Item 1</li> 4 <li role="listitem">Item 1</li>
5 <li role="listitem">Item 2</li> 5 <li role="listitem">Item 2</li>
6 <li role="listitem">Item 3</li> 6 <li role="listitem">Item 3</li>
7 </ul> 7 </ul>
8 8
9 <ul role="presentation"> 9 <ul role="presentation">
10 <li>Plain Text 1</li> 10 <li>Plain Text 1</li>
11 <li>Plain Text 2</li> 11 <li>Plain Text 2</li>
12 <li>Plain Text 3</li> 12 <li>Plain Text 3</li>
13 </ul> 13 </ul>
14 <p>End of test</p> 14 <p>End of test</p>
15 <p id="description"></p> 15 <p id="description"></p>
16 <div id="console"></div> 16 <div id="console"></div>
17 <script> 17 <script>
18 description("This tests that the presentation role is inherited."); 18 description("This tests that the presentation role is not inherited.");
19 19
20 if (window.testRunner) 20 if (window.testRunner)
21 testRunner.dumpAsText(); 21 testRunner.dumpAsText();
22 if (window.accessibilityController) { 22 if (window.accessibilityController) {
23 buildAccessibilityTree(accessibilityController.focusedElement, 0, 1); 23 buildAccessibilityTree(accessibilityController.focusedElement, 0, 1);
24 } 24 }
25 </script> 25 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698