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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/shadow/apply-deep-in-document-scope.html

Issue 1853713002: Fixed ::slotted performance in pure v1 shadow documents. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Missing Member<> in HeapVector template Created 4 years, 8 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 <script src="../../../resources/js-test.js"></script>
3 <style>div /deep/ #inner { color: green }</style>
4 <div>
5 <div id="inner">This text should be green</div>
6 </div>
7 <script>
8 description("/deep/ as a descendant selector in document without shadow tree s.");
9
10 shouldBeEqualToString("getComputedStyle(inner).color", "rgb(0, 128, 0)");
11 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698