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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css/containment/style-containment-with-counter-nodes-expected.html

Issue 1519123003: Implement Style Containment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix for shadow DOM Created 4 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 <style>
3 .contain {
4 float: right;
5 clear: both;
6 }
7 .reset { counter-reset: c;}
8 .increment:before { content: counters(c, ""); }
9 .increment { counter-increment: c; }
10 </style>
11 <body>
12 <div>1</div>
13 <div class="contain">
14 <div>1</div>
15 <div>1</div>
16 </div>
17 <div>2</div>
18 <div class="contain">
19 <div>1</div>
20 <div>2</div>
21 </div>
22 <div>3</div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698