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

Side by Side Diff: third_party/WebKit/LayoutTests/shadow-dom/scoped-events-by-ua-stopped.html

Issue 2012423004: Rename Event.scoped to Event.composed and invert its meaning (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@event-composed-path
Patch Set: rebased Created 4 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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <script src="../resources/testharness.js"></script> 2 <script src="../resources/testharness.js"></script>
3 <script src="../resources/testharnessreport.js"></script> 3 <script src="../resources/testharnessreport.js"></script>
4 <script src="resources/shadow-dom.js"></script> 4 <script src="resources/shadow-dom.js"></script>
5 5
6 <input id="input"></input> 6 <input id="input"></input>
7 <div id="sandbox"> 7 <div id="sandbox">
8 <div id = "host"> 8 <div id = "host">
9 <template> 9 <template>
10 <input id="target" value="test"></div> 10 <input id="target" value="test"></div>
11 </template> 11 </template>
12 </div> 12 </div>
13 </div> 13 </div>
14 14
15 <script> 15 <script>
16 var e; 16 var e;
17 test(function() { 17 test(function() {
18 e = new Event('test'); 18 e = new Event('test');
19 assert_equals(e.scoped, false); 19 assert_equals(e.composed, false);
20 }, 'A new events scoped value should be set to false by default.'); 20 }, 'A new events composed value should be set to false by default.');
21 21
22 test(function() { 22 test(function() {
23 e = new Event('test', { scoped: true }); 23 e = new Event('test', { composed: true });
24 assert_equals(e.scoped, true); 24 assert_equals(e.composed, true);
25 }, 'Users should be able to set a scoped value.'); 25 }, 'Users should be able to set a composed value.');
26 26
27 var input = document.getElementById('input'); 27 var input = document.getElementById('input');
28 async_test(function(t) { 28 async_test(function(t) {
29 input.onselect = function(e) { 29 input.onselect = function(e) {
30 t.step(function() { assert_true(e.scoped); t.done(); }); 30 t.step(function() { assert_false(e.composed); t.done(); });
31 }; 31 };
32 }, 'UA select events scoped should be set to true.'); 32 }, 'UA select events composed should be set to false.');
33 input.select(); 33 input.select();
34 34
35 var sandbox = document.getElementById('sandbox'); 35 var sandbox = document.getElementById('sandbox');
36 convertTemplatesToShadowRootsWithin(sandbox); 36 convertTemplatesToShadowRootsWithin(sandbox);
37 var target = getNodeInComposedTree('host/target'); 37 var target = getNodeInComposedTree('host/target');
38 var host = getNodeInComposedTree('host'); 38 var host = getNodeInComposedTree('host');
39 39
40 async_test(function(t) { 40 async_test(function(t) {
41 target.onselect = function(e) { 41 target.onselect = function(e) {
42 t.step(function() { 42 t.step(function() {
(...skipping 11 matching lines...) Expand all
54 assert_true(e.composedPath().includes(host)); 54 assert_true(e.composedPath().includes(host));
55 t.done(); 55 t.done();
56 }); 56 });
57 } 57 }
58 }, 'Only certain trusted events should stop in bubbling.'); 58 }, 'Only certain trusted events should stop in bubbling.');
59 59
60 target.select(); 60 target.select();
61 var userError = new Event('error'); 61 var userError = new Event('error');
62 target.dispatchEvent(userError); 62 target.dispatchEvent(userError);
63 </script> 63 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698