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

Side by Side Diff: content/test/data/accessibility/event/menulist-popup.html

Issue 2897943003: Fix DumpAccessibilityEvents tests on Mac and improve test coverage (Closed)
Patch Set: Rebaseline one more windows test 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
« no previous file with comments | « content/test/data/accessibility/event/menulist-next.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
2 @WIN-DENY:EVENT_OBJECT_STATECHANGE*role=ROLE_SYSTEM_LIST* 2 @WIN-DENY:EVENT_OBJECT_STATECHANGE*role=ROLE_SYSTEM_LIST*
3 @WIN-DENY:EVENT_OBJECT_REORDER* 3 @WIN-DENY:EVENT_OBJECT_REORDER*
4 @MAC-DENY:AXLayoutComplete*
5 --> 4 -->
6 <!DOCTYPE html> 5 <!DOCTYPE html>
7 <html> 6 <html>
8 <body> 7 <body>
9 <select> 8 <select>
10 <option selected>Apple</option> 9 <option selected>Apple</option>
11 <option>Orange</option> 10 <option>Orange</option>
12 <option>Banana</option> 11 <option>Banana</option>
13 </select> 12 </select>
14 <script> 13 <script>
15 function go() { 14 function go() {
16 var select = document.querySelector('select'); 15 var select = document.querySelector('select');
17 var event = document.createEvent('MouseEvents'); 16 var event = document.createEvent('MouseEvents');
18 event.initMouseEvent('mousedown', true, true, window); 17 event.initMouseEvent('mousedown', true, true, window);
19 select.dispatchEvent(event); 18 select.dispatchEvent(event);
20 } 19 }
21 </script> 20 </script>
22 </body> 21 </body>
23 </html> 22 </html>
OLDNEW
« no previous file with comments | « content/test/data/accessibility/event/menulist-next.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698