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

Side by Side Diff: LayoutTests/scrollbars/resources/scrollable-iframe-customscrollbar-windowinactive.html

Issue 861553003: Invalidate CustomScrollbars on having window-inactive selector. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: addressed review comments Created 5 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 ::-webkit-scrollbar {
4 width: 12px;
5 height: 12px;
6 background: rgba(255,0,0,0.8);
7 }
8 ::-webkit-scrollbar:window-inactive {
9 background: rgba(255,150,250,0.8);
10 }
11 iframe {
12 width: 100px;
13 height: 130px;
14 }
15 </style>
16 <iframe src="scrollable-subiframe-nowindowinactive.html"></iframe>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698