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

Side by Side Diff: third_party/webdriver/test_data/rectangles.html

Issue 424363004: Update third_party/webdriver/pylib to r18456 and delete test_data (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: "python" -> "pylib" Created 6 years, 4 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
OLDNEW
(Empty)
1 <?xml version="1.0"?>
2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
3 <head>
4 <title>Rectangles</title>
5 <style type="text/css">
6 div {
7 position: absolute;
8 margin: 0;
9 border: 0;
10 padding: 0;
11 }
12 #r1 {
13 background-color: blue;
14 left: 10px;
15 top: 10px;
16 width: 100px;
17 height: 50px;
18 }
19 #r2 {
20 background-color: red;
21 left: 10.9px;
22 top: 10.1px;
23 width: 48.666666667px;
24 height: 49.333333333px;
25 }
26 #r3 {
27 background-color: yellow;
28 left: 60px;
29 top: 10px;
30 width: 50px;
31 height: 25px;
32 }
33 </style>
34 </head>
35 <body>
36 <div id="r1">r1</div>
37 <div id="r2">r2</div>
38 <div id="r3">r3</div>
39 </body>
40 </html>
OLDNEW
« no previous file with comments | « third_party/webdriver/test_data/readOnlyPage.html ('k') | third_party/webdriver/test_data/resultPage.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698