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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css/containment/style-contain-dialogue-element.html

Issue 1519123003: Implement Style Containment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add test Created 4 years, 11 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 { contain: style; }
4 .reset { counter-reset: c;}
5 .increment:before { content: counters(c, ""); }
6 .increment { counter-increment: c; }
7 </style>
8 <div class="increment"></div>
9 <div class="contain">
10 <dialog id="test">
11 <div class="increment"></div>
12 </dialog>
13 </div>
14 <div class="increment"></div>
15 <script>
16 document.getElementById("test").showModal();
17 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698