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

Side by Side Diff: LayoutTests/fast/regions/positioned-objects-spanning-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
3 <style>
4
5 #first-box, #second-box, #third-box {
6 background-color: green;
7 }
8
9 #first-box {
10 height:100%;
11 width:50%;
12 }
13
14 #second-box {
15 height:100%;
16 width:50%;
17 }
18
19 #third-box {
20 height:100%;
21 width:50%;
22 }
23
24 #region1, #region2, #region3 {
25 border: 1px solid black;
26 }
27
28 #region1 {
29 width: 200px;
30 height: 150px;
31 }
32
33 #region2 {
34 width: 300px;
35 height: 180px;
36 }
37
38 #region3 {
39 width: 120px;
40 height: 120px;
41 }
42 </style>
43
44 <body>
45 <p>The green positioned object should span all the regions. It should fill the l eft half of every region.</p>
46
47 <div id="region1">
48 <div id="first-box">
49 </div>
50 </div>
51 <div id="region2">
52 <div id="second-box">
53 </div>
54 </div>
55 <div id="region3">
56 <div id="third-box">
57 </div>
58 </div>
59
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698