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

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

Issue 790943002: Add DumpAccessibilityEvents test framework. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dump_acc_events_1
Patch Set: Fix compile errors Created 6 years 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
(Empty)
1 <!--
2 @WIN-DENY:*
3 @WIN-ALLOW:EVENT_OBJECT_VALUECHANGE*
4 -->
5 <!DOCTYPE html>
6 <html>
7 <body>
8 <input id="c" type="text" value="Before">
9 <script>
10 function go() {
11 document.getElementById('c').value = "After";
12 }
13 </script>
14 </body>
15 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698