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

Side by Side Diff: chrome/test/data/drag_and_drop/page.html

Issue 2507223003: Tests for dragging between two frames (potentially cross-site from main frame). (Closed)
Patch Set: Added SuppressPassingStartDragFurther method + moved constant definitions. 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- Page to help with testing of drag-and-drop scenarios. 2 <!-- Page to help with testing of drag-and-drop scenarios.
3 3
4 Left frame is at (100,100) to (299,299) coordinates. 4 Left frame is at (100,100) to (299,299) coordinates.
5 Right frame is at (300,100) to (499,299) coordinates. 5 Right frame is at (300,100) to (499,299) coordinates.
6 --> 6 -->
7 <head> 7 <head>
8 <meta charset="utf-8"> 8 <meta charset="utf-8">
9 <style> 9 <style>
10 iframe { 10 iframe {
11 position: absolute; 11 position: absolute;
12 top: 100px; 12 top: 100px;
13 width: 200px; 13 width: 200px;
14 height: 200px; 14 height: 200px;
15 border: 0px; 15 border: 0px;
16 margin: 0px; 16 margin: 0px;
17 padding: 0px; 17 padding: 0px;
18 } 18 }
19 #left { left: 100px; background: green; } 19 #left { left: 100px; background: green; }
20 #right { left: 300px; background: cyan; } 20 #right { left: 300px; background: cyan; }
21 </style> 21 </style>
22 <script>
23 window.name = "main";
24 </script>
22 </head> 25 </head>
23 <body> 26 <body>
24 <iframe id="left" name="left" srcdoc="<body>blank left frame</body>"></iframe> 27 <iframe id="left" name="left" srcdoc="<body>blank left frame</body>"></iframe>
25 <iframe id="right" name="right" srcdoc="<body>blank right frame</body>"></ifra me> 28 <iframe id="right" name="right" srcdoc="<body>blank right frame</body>"></ifra me>
26 </body> 29 </body>
OLDNEW
« no previous file with comments | « chrome/test/data/drag_and_drop/image_source.html ('k') | content/public/test/browser_test_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698