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

Side by Side Diff: LayoutTests/fast/regions/style-scoped/style-scoped-in-flow-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 body {
6 font-family: monospace;
7 }
8 h2 {
9 margin: 0;
10 font-size: 2em;
11 }
12 p {
13 margin: 0;
14 font-size: 1em;
15 }
16 #div-container {
17 width: 13em;
18 height: 10em;
19 background-color: lightgray;
20 }
21 #title-container {
22 width: 20em;
23 height: 10em;
24 background-color: silver;
25 }
26
27 .green-text {
28 color: green;
29 }
30 </style>
31 </head>
32 <body>
33 Scope-styled elements extracted in region along with the parent.
34 <div id='div-container'>
35 <p class='green-text'>Styled line of text Styled line of text St yled line of text</p>
36 <p>Normal line of text Normal line of text Normal line of text</ p>
37 </div>
38
39 Scope-styled elements extracted in region without the parent.
40 <div id='title-container'>
41 <h2>Title one</h2>
42 <h2 class='green-text'>Title two</h2>
43 <h2>Title three</h2>
44 </div>
45 </body>
46 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698