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

Side by Side Diff: third_party/WebKit/LayoutTests/shadow-dom/event-composed-ua.html

Issue 2074393002: Clean up shadow-dom layout tests so that they are well organized (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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>
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
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