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

Side by Side Diff: LayoutTests/fast/dom/shadow/drop-event-for-input-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 <head> 3 <head>
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 <script> 6 <script>
8 function createInput(name) { 7 function createInput(name) {
9 var div = document.createElement('input'); 8 var div = document.createElement('input');
10 div.style.width = '100px'; 9 div.style.width = '100px';
11 div.style.height = '100px'; 10 div.style.height = '100px';
12 11
13 div.addEventListener('drop', function(e) { 12 div.addEventListener('drop', function(e) {
14 debug('PASS: drop event is fired.'); 13 debug('PASS: drop event is fired.');
(...skipping 12 matching lines...) Expand all
27 eventSender.mouseUp(); 26 eventSender.mouseUp();
28 } 27 }
29 </script> 28 </script>
30 </head> 29 </head>
31 <body onload="runTest()"> 30 <body onload="runTest()">
32 31
33 <div id="host"></div> 32 <div id="host"></div>
34 <pre id="console"></pre> 33 <pre id="console"></pre>
35 </body> 34 </body>
36 </html> 35 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/shadow/drag-to-meter-in-shadow-crash.html ('k') | LayoutTests/fast/dom/shadow/drop-event-in-shadow.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698