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

Side by Side Diff: LayoutTests/fast/regions/position-writing-modes-in-variable-width-regions-expected.html

Issue 159933010: Remove everything region-specific from LayoutTests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 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 <!doctype html>
2 <html>
3 <head>
4 <style>
5 #first-box {
6 margin:50px 0 0 32px;
7 position:relative;
8 }
9
10 .square {
11 width:80px;
12 height:80px;
13 position:absolute;
14 }
15
16 #topleft {
17 top:0px;
18 background-color:#00ff00;
19 }
20
21 #topright {
22 top:0px;
23 left:176px;
24 background-color:#00dd00;
25 }
26
27 #bottomleft {
28 top: 320px;
29 left:0;
30 background-color:#00bb00;
31 }
32
33 #bottomright {
34 top: 320px;
35 left:176px;
36 background-color:#009900;
37 }
38 </style>
39 </head>
40
41 <body>
42 You should see four 80x80 green squares below and no red should be visible.
43 <div id="first-box">
44 <div class="square" id="topleft"></div>
45 <div class="square" id="topright"></div>
46 <div class="square" id="bottomleft"></div>
47 <div class="square" id="bottomright"></div>
48 </div>
49 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698