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

Unified Diff: third_party/WebKit/LayoutTests/imported/wpt/html/editing/dnd/cross-document/002.html

Issue 2572333003: Import wpt@4970d7334aaf8977c5b617075aa48be1b6e482c7 (Closed)
Patch Set: Update TestExpectations Created 4 years 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/imported/wpt/html/editing/dnd/cross-document/002.html
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/html/editing/dnd/cross-document/002.html b/third_party/WebKit/LayoutTests/imported/wpt/html/editing/dnd/cross-document/002.html
deleted file mode 100644
index 7b48d3e16ecfd361a4649855e4025d36c02acca2..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/imported/wpt/html/editing/dnd/cross-document/002.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-<title>drag &amp; drop - cross-domain cross-document data drop</title>
-<script src="../resources/crossorigin.js"></script>
-<style>
- body > div {
- height: 200px;
- width: 200px;
- background-color: orange;
- }
-</style>
-
-<script>
-window.onload = function() {
- var orange = document.getElementsByTagName('div')[0];
- orange.ondragstart = function(e) {
- e.dataTransfer.effectAllowed = 'copy';
- e.dataTransfer.setData('text', 'dummy text');
- };
-};
-</script>
-
-<div draggable="true"></div>
-<p><iframe height="300" width="500"></iframe></p>
-<script>document.getElementsByTagName("iframe")[0].src = crossOriginUrl("www", "001-1.html");
-<noscript><p>Enable JavaScript and reload</p></noscript>

Powered by Google App Engine
This is Rietveld 408576698