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

Side by Side Diff: LayoutTests/scrollbars/custom-scrollbar-inactive-only-on-windowinactive-selector.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
« no previous file with comments | « no previous file | LayoutTests/scrollbars/custom-scrollbar-inactive-only-on-windowinactive-selector-expected.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 body {
9 width: 1000px;
10 height: 1000px;
11 }
12 div {
13 width: 100px;
14 height: 100px;
15 overflow: scroll;
16 }
17 </style>
18 <iframe src="resources/scrollable-iframe-customscrollbar-windowinactive.html"></ iframe>
19 <div><div></div></div>
20 <script>
21 window.onload = function() {
22 // setWindowIsKey shall set the focus of the window.
23 if (window.testRunner)
24 window.testRunner.setWindowIsKey(false);
25 }
26 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/scrollbars/custom-scrollbar-inactive-only-on-windowinactive-selector-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698