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

Side by Side Diff: LayoutTests/fast/events/event-trusted.html

Issue 1233233003: Add Event.isTrusted support (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master_event_trusted_main2
Patch Set: Fix nits 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
« no previous file with comments | « no previous file | LayoutTests/fast/events/event-trusted-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <input id="clitty-click" type="checkbox"/>
2 <div id="console"/>
3 <script src="../../resources/js-test.js"></script>
4 <script>
5 description("This tests that isTrusted returns the correct value under certain s ituations.")
6
7 var redispatched = false;
8
9 function createAndInitEvent() {
10 var e = document.createEvent('Event');
11 e.initEvent(false, false, false);
12 return e;
13 }
14
15 shouldBeFalse("document.createEvent('Event').isTrusted");
16 shouldBeFalse("createAndInitEvent().isTrusted");
17
18 function originalDispatch(e) {
19 originalEvent = e;
20 }
21
22 function redispatch(e) {
23 redispatched = true;
24 }
25
26 var element = document.getElementById("clitty-click");
27 if (window.eventSender) {
28 element.addEventListener('click', originalDispatch);
29 element.addEventListener('focus', function (e) {
30 event = e;
31 shouldBeTrue("event.isTrusted");
32 });
33 eventSender.mouseMoveTo(element.offsetLeft, element.offsetTop);
34 eventSender.mouseDown();
35 eventSender.mouseUp();
36
37 shouldBeTrue("originalEvent.isTrusted");
38 element.removeEventListener('click', originalDispatch);
39 element.addEventListener('click', redispatch);
40
41 element.dispatchEvent(originalEvent);
42 shouldBeTrue("redispatched");
43 shouldBeFalse("originalEvent.isTrusted");
44 }
45
46 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/events/event-trusted-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698