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

Side by Side Diff: LayoutTests/scrollbars/custom-scrollbarthumb-inactive-pseudo-expected.html

Issue 748513006: Trigger style recalc when the window's active state change (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Invalidatin all the CustomScrolllbars on window-inactive Created 6 years 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 ::-webkit-scrollbar {
4 width: 12px;
5 height: 12px;
6 }
7 ::-webkit-scrollbar-track {
8 -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
9 -webkit-border-radius: 10px;
10 border-radius: 10px;
11 }
12 ::-webkit-scrollbar-thumb {
13 -webkit-border-radius: 10px;
14 border-radius: 10px;
15 background: rgba(255,150,250,0.8);
16 -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
17 }
18 html {
19 overflow: scroll;
20 }
21 body {
22 width: 1000px;
23 height: 1000px;
24 }
25 div {
26 width: 100px;
27 height: 100px;
28 overflow: scroll;
29 }
30 </style>
31 <body>
32 <iframe src="resources/scrollable-iframe.html"></iframe>
pdr. 2014/12/06 04:17:53 Are we actually testing custom scrollbars in ifram
MuVen 2014/12/06 13:27:03 Done.
33 <iframe src="resources/scrollable-iframe.html"></iframe>
34 <div><p style="width:200px;height:200px"></p></div>
35 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698