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

Side by Side Diff: LayoutTests/fast/css/invalidation/scrollbar-pseudo-classes-expected.html

Issue 654683003: No subtree recalc for scrollbar pseudo classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git/+/master
Patch Set: Try to fix Mac rendering issues in ref-test. Created 6 years, 1 month 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 .scroller { width: 100px; height: 30px; overflow: scroll; }
4 .scroller::-webkit-scrollbar { width: 10px; height: 10px; }
5
6 .expbar-both::-webkit-scrollbar,
7 .expbar-horizontal::-webkit-scrollbar:horizontal,
8 .expbar-vertical::-webkit-scrollbar:vertical,
9 .expbutton-dec::-webkit-scrollbar-button:decrement,
10 .expbutton-inc::-webkit-scrollbar-button:increment,
11 .expbutton-start::-webkit-scrollbar-button:start,
12 .expbutton-end::-webkit-scrollbar-button:end,
13 .expbutton-both-hor::-webkit-scrollbar-button:single-button,
14 .expbutton-both-hor::-webkit-scrollbar-button:double-button {
15 background-color: green;
16 }
17 </style>
18 <div class="scroller expbar-both">PASS</div>
19 <div class="scroller expbutton-dec">PASS</div>
20 <div class="scroller expbutton-inc">PASS</div>
21 <div class="scroller expbar-horizontal">PASS</div>
22 <div class="scroller expbar-vertical">PASS</div>
23 <div class="scroller expbutton-start">PASS</div>
24 <div class="scroller expbutton-end">PASS</div>
25 <div class="scroller expbutton-both-hor">PASS</div>
OLDNEW
« no previous file with comments | « LayoutTests/fast/css/invalidation/scrollbar-pseudo-classes.html ('k') | Source/core/css/RuleFeature.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698