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

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

Powered by Google App Engine
This is Rietveld 408576698