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

Side by Side Diff: LayoutTests/fast/regions/region-styling/region-style-rule-position-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 p {
6 margin: 0;
7 }
8 .lime {
9 background-color: lime;
10 }
11 .content {
12 margin-top: 1em;
13 width: 10em;
14 height: 10em;
15 background-color: lightgray;
16 }
17 </style>
18 </head>
19 <body>
20 <p class='lime'>Text that is not flowed - should be green</p>
21 <div class='content'>
22 <p class='lime'>Paragraph that *is* flowed - should be g reen, too</p>
23 <p class='lime'>Paragraph that *is* flowed - should be g reen, too</p>
24 </div>
25 </body>
26 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698