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

Side by Side Diff: content/test/data/accessibility/event/input-type-text-value-changed.html

Issue 2897943003: Fix DumpAccessibilityEvents tests on Mac and improve test coverage (Closed)
Patch Set: Rebaseline one more windows test 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 <!-- 1 <!--
2 @WIN-DENY:* 2 @WIN-DENY:*
3 @WIN-ALLOW:EVENT_OBJECT_VALUECHANGE* 3 @WIN-ALLOW:EVENT_OBJECT_VALUECHANGE*
4 @MAC-DENY:AXLayoutComplete* 4 @MAC-DENY:*
5 @MAC-ALLOW:AXValueChanged*AXTextField*
5 --> 6 -->
6 <!DOCTYPE html> 7 <!DOCTYPE html>
7 <html> 8 <html>
8 <body> 9 <body>
9 <input id="c" type="text" value="Before"> 10 <input id="c" type="text" value="Before">
10 <script> 11 <script>
11 function go() { 12 function go() {
12 document.getElementById('c').value = "After"; 13 document.getElementById('c').value = "After";
13 } 14 }
14 </script> 15 </script>
15 </body> 16 </body>
16 </html> 17 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698