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

Side by Side Diff: LayoutTests/fast/dom/shadow/shadow-root-resetStyleInheritance-expected.html

Issue 201683003: Remove resetStyleInheritance. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Resolve conflicts Created 6 years, 9 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 div.resetTest {
6 background-color: #eef;
7 border: solid;
8 margin: 4px;
9 padding: 16px;
10 color: #fee;
11 font-family: Serif;
12 font-size: 24px;
13 font-style: italic;
14 font-variant: small-caps;
15 font-weight: bold;
16 letter-spacing: 2px;
17 line-height: 200%;
18 text-align: start;
19 text-indent: 50px;
20 text-transform: uppercase;
21 white-space: nowrap;
22 word-spacing: 30px;
23 }
24 div.initialValues {
25 color: initial;
26 font-family: initial;
27 font-size: initial;
28 font-style: initial;
29 font-variant: initial;
30 font-weight: initial;
31 letter-spacing: initial;
32 line-height: initial;
33 text-align: initial;
34 text-indent: initial;
35 text-transform: initial;
36 white-space: initial;
37 word-spacing: initial;
38 }
39 </style>
40 </head>
41 <body>
42 <div><div class="resetTest"><div class="initialValues">text</div></div></div>
43 <div><div class="resetTest"><div>text</div></div></div>
44 <div><div class="resetTest"><div>text</div></div></div>
45 <div><div class="resetTest"><div class="initialValues">text</div></div></div>
46 <div><div class="resetTest"><div class="initialValues">text</div></div></div>
47 <div><div class="resetTest"><div>text</div></div></div>
48 </body>
49 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698