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

Side by Side Diff: LayoutTests/fast/regions/positioned-objects-inline-static-in-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 #first-box {
5 height: 100%;
6 width: 50%;
7 background-color: green;
8 float: right;
9 }
10
11
12 #region1, #region2, #region3 {
13 border: 1px solid black;
14 }
15
16 #region1 {
17 width: 200px;
18 height: 150px;
19
20 }
21
22 #region2 {
23 width: 300px;
24 height: 180px;
25 }
26
27 #region3 {
28 width: 120px;
29 height: 120px;
30 }
31 </style>
32
33 <body>
34 <p>The green positioned object should only be as tall as the first region it
35 is contained in. It should fill the right half of the first region, and no red
36 should be visible.</p>
37
38
39
40
41 <div id="region1">
42 <div id="first-box">
43 </div>
44 </div>
45 <div id="region2"></div>
46 <div id="region3"></div>
47
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698