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

Unified Diff: LayoutTests/fast/events/drag-leak-document.html

Issue 302133002: Fix a document memory leak in drag-and-drop. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/core/clipboard/Clipboard.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/events/drag-leak-document.html
diff --git a/LayoutTests/fast/events/drag-leak-document.html b/LayoutTests/fast/events/drag-leak-document.html
new file mode 100644
index 0000000000000000000000000000000000000000..30ad96c0aeee3f8bd8873027d5944fb8761b53c8
--- /dev/null
+++ b/LayoutTests/fast/events/drag-leak-document.html
@@ -0,0 +1,27 @@
+<!DOCTYPE html>
+<html>
+<head>
+<script>
+function runTest() {
+ if (window.testRunner) {
+ testRunner.waitUntilDone();
+ testRunner.dumpAsText();
+ } else {
+ return;
+ }
+ var draggedElement = document.getElementById('draggedElement');
+ var x = draggedElement.offsetLeft + draggedElement.offsetWidth / 2;
+ var y = draggedElement.offsetTop + draggedElement.offsetHeight / 2;
+
+ eventSender.mouseMoveTo(x, y);
+ eventSender.mouseDown();
+ eventSender.mouseMoveTo(x + 100, y + 100);
+ eventSender.mouseUp();
+ testRunner.notifyDone();
+}
+</script>
+</head>
+<body onload="runTest()">
+<div id="draggedElement" draggable="true">Drag</div>
+</body>
kouhei (in TOK) 2014/05/30 13:27:50 <p>PASS if no leak is detected by the leak detecto
+</html>
« no previous file with comments | « no previous file | Source/core/clipboard/Clipboard.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698