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

Side by Side Diff: Tools/TestWebKitAPI/Tests/mac/acceptsFirstMouse.html

Issue 13602008: Remove non-chromium code from TestWebKitAPI (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
(Empty)
1 <!DOCTYPE html>
2 <html style="height: 200%;">
3 <head>
4 <style>
5 img.selectable {
6 width: 100px;
7 height: 100px;
8 display: block;
9 background-color: gray;
10 }
11 </style>
12 </head>
13 <body style="margin: 0;">
14 <img class="selectable">
15 <img class="selectable" id="target">
16 <img class="selectable">
17 <script>
18 var target = document.getElementById("target");
19 getSelection().setBaseAndExtent(target, 0, target, 1);
20 scrollBy(0, 100);
21 </script>
22 </body>
23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698