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

Side by Side Diff: LayoutTests/fast/events/dispatch-synthetic-keyboardevent-no-action.html

Issue 1251043004: Revert of Only execute default actions on trusted events. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master_event_trusted_main3
Patch Set: Created 5 years, 5 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
(Empty)
1 <!DOCTYPE html>
2 <script src="../../resources/js-test.js"></script>
3 <p id="description"></p>
4 <form>
5 <input type="radio" id="radio1" name="foo" value="A" checked/>
6 <input type="radio" id="radio2" name="foo" value="B" />
7 </form>
8 <pre id="console"></pre>
9 <script>
10 description("Tests to ensure that default action does not occur for untrusted ev ents.");
11
12 var node = document.getElementById('radio1');
13 node.getBoundingClientRect();
14
15 var event = new KeyboardEvent('keydown', { keyIdentifier: 'Down' } );
16 node.dispatchEvent(event);
17 shouldBeTrue("document.getElementById('radio1').checked");
18 shouldBeFalse("document.getElementById('radio2').checked");
19 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698