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

Side by Side 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: addressed the comment Created 6 years, 6 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
« no previous file with comments | « no previous file | LayoutTests/fast/events/drag-leak-document-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <body onload="runTest()">
4 <script>
5 if (window.testRunner)
6 testRunner.dumpAsText();
7 function runTest() {
8 var draggedElement = document.getElementById('draggedElement');
9 var x = draggedElement.offsetLeft + draggedElement.offsetWidth / 2;
10 var y = draggedElement.offsetTop + draggedElement.offsetHeight / 2;
11
12 eventSender.mouseMoveTo(x, y);
13 eventSender.mouseDown();
14 eventSender.mouseMoveTo(x + 100, y + 100);
15 eventSender.mouseUp();
16 }
17 </script>
18 <div id="draggedElement" draggable="true">Drag</div>
19 <p>PASS if no leak is detected by the leak detector.</p>
20 </body>
21 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/events/drag-leak-document-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698