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

Side by Side Diff: LayoutTests/fast/dom/shadow/drop-event-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 createBox(name) { 7 function createBox(name) {
9 var div = document.createElement('div'); 8 var div = document.createElement('div');
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('dragover', function(e) { 12 div.addEventListener('dragover', function(e) {
14 e.preventDefault(); 13 e.preventDefault();
(...skipping 15 matching lines...) Expand all
30 eventSender.mouseUp(); 29 eventSender.mouseUp();
31 } 30 }
32 </script> 31 </script>
33 </head> 32 </head>
34 <body onload="runTest()"> 33 <body onload="runTest()">
35 34
36 <div id="host"></div> 35 <div id="host"></div>
37 <pre id="console"></pre> 36 <pre id="console"></pre>
38 </body> 37 </body>
39 </html> 38 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698