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

Side by Side Diff: LayoutTests/fast/dom/shadow/cppevent-in-shadow.html

Issue 14594006: Remove Internals::createShadowRoot(element) and polyfill.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <body> 3 <body>
4 <script src="resources/polyfill.js"></script>
5 <script src="../resources/event-sender-util.js"></script> 4 <script src="../resources/event-sender-util.js"></script>
6 <script src="../../js/resources/js-test-pre.js"></script> 5 <script src="../../js/resources/js-test-pre.js"></script>
7 6
8 <div id="host"></div> 7 <div id="host"></div>
9 <pre id="console"></pre> 8 <pre id="console"></pre>
10 9
11 <script> 10 <script>
12 function addListeners(element, name) { 11 function addListeners(element, name) {
13 var eventNames = ['copy', 'cut', 'paste']; 12 var eventNames = ['copy', 'cut', 'paste'];
14 for (var i = 0; i < eventNames.length; ++i) { 13 for (var i = 0; i < eventNames.length; ++i) {
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 document.execCommand('copy'); 51 document.execCommand('copy');
53 document.execCommand('cut'); 52 document.execCommand('cut');
54 document.execCommand('paste'); 53 document.execCommand('paste');
55 54
56 var successfullyParsed = true; 55 var successfullyParsed = true;
57 </script> 56 </script>
58 57
59 <script src="../../js/resources/js-test-post.js"></script> 58 <script src="../../js/resources/js-test-post.js"></script>
60 </body> 59 </body>
61 </html> 60 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698