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

Side by Side Diff: LayoutTests/fast/events/touch/gesture/resources/drag-inside-iframe2.html

Issue 14089009: Change long press behavior when touch text selection is enabled: (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: patch Created 7 years, 8 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 <html> 1 <html>
2 <body onload="top.runTest()"> 2 <body onload="top.runTest()">
3 <div id='mydiv' draggable='true' ondragstart='drag(event)' onmousedown='mousedow n(event)' style='width:100px;height:100px;position:absolute;top:0px; left:0px; b ackground-color:blue;'> 3 <div id='mydiv' draggable='true' ondragstart='drag(event)' onmousedown='mousedow n(event)' style='width:100px;height:100px;position:absolute;top:0px; left:0px; b ackground-color:blue;'>
4 Drag me</div> 4 Drag me</div>
5 <div id='textdiv' ondragstart='textDivDrag(event)' style='position:absolute;top: 100px; left:0px; background-color:blue;'>Some text</div>
5 <script type='text/javascript'> 6 <script type='text/javascript'>
6 function drag(event) { 7 function drag(event) {
7 top.onDragStart(); 8 top.onDragStart();
8 } 9 }
9 function mousedown(event) { 10 function mousedown(event) {
10 top.onMouseDown(); 11 top.onMouseDown();
11 } 12 }
13 function textDivDrag(event) {
14 top.onTextDivDrag();
15 }
12 </script> 16 </script>
13 </body> 17 </body>
14 </html> 18 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698