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

Side by Side Diff: LayoutTests/http/tests/security/clipboard/clipboard-file-access.html

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 PUBLIC "-//IETF//DTD HTML//EN"> 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../js-test-resources/js-test-pre.js"></script> 4 <script src="../../js-test-resources/js-test.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <p id="description"></p> 7 <p id="description"></p>
8 <div id="console"></div> 8 <div id="console"></div>
9 <script> 9 <script>
10 description("Tests access to event.dataTransfer.files and .types"); 10 description("Tests access to event.dataTransfer.files and .types");
11 11
12 var dragTarget = document.createElement("div"); 12 var dragTarget = document.createElement("div");
13 dragTarget.innerHTML = "Drag here" 13 dragTarget.innerHTML = "Drag here"
14 dragTarget.style.backgroundColor = "blue"; 14 dragTarget.style.backgroundColor = "blue";
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 // Clean up after ourselves 178 // Clean up after ourselves
179 dragTarget.parentNode.removeChild(dragTarget); 179 dragTarget.parentNode.removeChild(dragTarget);
180 } else { 180 } else {
181 testFailed("This test is not interactive, please run using DumpRenderTree"); 181 testFailed("This test is not interactive, please run using DumpRenderTree");
182 } 182 }
183 183
184 var successfullyParsed = true; 184 var successfullyParsed = true;
185 </script> 185 </script>
186 </body> 186 </body>
187 </html> 187 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698