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

Side by Side Diff: third_party/WebKit/LayoutTests/compositing/overflow/fixed-element-escape-fixed-overflow-clip.html

Issue 1898393002: Fixed-position elements should not be clipped by ancestor fixed-position overflow clip (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 | third_party/WebKit/LayoutTests/compositing/overflow/fixed-element-escape-fixed-overflow-clip-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 #scroller {
4 position: fixed;
5 left: 0;
6 top: 0;
7 width: 100px;
8 height: 100px;
9 overflow: scroll;
10 }
11
12 #bloat {
13 height: 1000px;
14 }
15
16 #fixed {
17 position: fixed;
18 left: 200px;
19 top: 200px;
20 width: 100px;
21 height: 100px;
22 background: green;
23 }
24 </style>
25 <div id="scroller">
26 <div id="bloat"></div>
27 <div id="fixed"></div>
28 </div>
29 The test passes if a green box is visible on the screen. The purpose of this tes t is to verify fixed-position elements are not clipped by an ancestor fixed-posi tion overflow clip.
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/compositing/overflow/fixed-element-escape-fixed-overflow-clip-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698