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

Side by Side Diff: LayoutTests/compositing/animation/hidden-animated-layer-should-not-have-scrollbars.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
« no previous file with comments | « no previous file | LayoutTests/compositing/animation/hidden-animated-layer-should-not-have-scrollbars-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
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <style> 2 <style>
3 @-webkit-keyframes boring { 3 @-webkit-keyframes boring {
4 0% { transform: translateZ(0px); } 4 0% { transform: translateZ(0px); }
5 100% { transform: translateZ(0px); } 5 100% { transform: translateZ(0px); }
6 } 6 }
7 #scroller { 7 #scroller {
8 width: 100px; 8 width: 100px;
9 height: 100px; 9 height: 100px;
10 overflow: scroll; 10 overflow: scroll;
11 animation: boring 5s infinite; 11 animation: boring 5s infinite;
12 visibility: hidden; 12 visibility: hidden;
13 } 13 }
14 #scrolled { 14 #scrolled {
15 width: 10px; 15 width: 10px;
16 height: 10px; 16 height: 10px;
17 position: relative; 17 position: relative;
18 background: blue; 18 background: blue;
19 visibility: hidden; 19 visibility: hidden;
20 top: 300px; 20 top: 300px;
21 } 21 }
22 </style> 22 </style>
23 <div id="scroller"> 23 <div id="scroller">
24 <div id="scrolled"></div> 24 <div id="scrolled"></div>
25 </div> 25 </div>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/compositing/animation/hidden-animated-layer-should-not-have-scrollbars-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698