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

Side by Side Diff: LayoutTests/compositing/animation/hidden-animated-layer-should-not-have-scrollbars-expected.html

Issue 1311133005: Merge 200866 "Do not create scrollbars if the subtree is invisible." (Closed) Base URL: svn://svn.chromium.org/blink/branches/chromium/2454/
Patch Set: Created 5 years, 4 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <style> 2 <style>
3 #scroller { 3 #scroller {
4 width: 100px; 4 width: 100px;
5 height: 100px; 5 height: 100px;
6 overflow: scroll; 6 overflow: scroll;
7 visibility: hidden; 7 visibility: hidden;
8 } 8 }
9 #scrolled { 9 #scrolled {
10 width: 10px; 10 width: 10px;
11 height: 10px; 11 height: 10px;
12 position: relative; 12 position: relative;
13 background: blue; 13 background: blue;
14 visibility: hidden; 14 visibility: hidden;
15 top: 300px; 15 top: 300px;
16 } 16 }
17 </style> 17 </style>
18 <div id="scroller"> 18 <div id="scroller">
19 <div id="scrolled"></div> 19 <div id="scrolled"></div>
20 </div> 20 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698