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

Side by Side Diff: LayoutTests/fast/regions/region-styling/region-style-block-background-color2-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 html { font: 16px/1.25 monospace; }
6 .regionBox { width: 420px; height: 50px; }
7 .regionBox1 { width: 420px; height: 30px; }
8 .regionBox2 { width: 420px; height: 100px; }
9 .regionBox3 { width: 420px; height: 10px; }
10 .regionParagraphFlowRemoved { width: 420px; height: 20px; }
11 .greenBackground { background-color: green; }
12 .limeBackground { background-color: lime; }
13 </style>
14 </head>
15 <body>
16 <div class="regionBox">
17 <div class="greenBackground">Green background text styled in region1 .</div>
18 </div>
19 <div>
20 <div class="limeBackground regionParagraphFlowRemoved">Lime backgrou nd text styled out region2.</div>
21 </div>
22 <div class="regionBox">
23 <br>
24 <div class="greenBackground">Green background text styled in region3 1.</div>
25 </div>
26 <div class="regionBox1">
27 <div class="limeBackground">Lime background text styled in region32. </div>
28 </div>
29 <div class="regionBox">
30 <div class="greenBackground">Green background text styled in region4 1.</div>
31 </div>
32 <div class="regionBox1">
33 <div class="limeBackground">Lime background text styled in region42. </div>
34 </div>
35 <div class="regionBox2">
36 <div class="greenBackground">Green background text styled in region5 1.</div>
37 <br>
38 <div class="greenBackground">Green background text styled in region5 1.</div>
39 </div>
40 <div class="regionBox3"></div>
41
42 <div class="regionBox">
43 <div class="greenBackground">Green background text styled in region6 1.</div>
44 </div>
45 <div class="regionBox1">
46 <div class="limeBackground">Lime background text styled in region62. </div>
47 </div>
48 <div class="regionBox">
49 <div class="greenBackground">Green background text styled in region7 1.</div>
50 </div>
51 <div class="regionBox1">
52 <div class="limeBackground">Lime background text styled in region72. </div>
53 </div>
54 </body>
55 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698