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

Side by Side Diff: third_party/WebKit/LayoutTests/compositing/overflow/ancestor-overflow-layer-of-sticky-child-of-compositing-container-expected.html

Issue 2890583002: Fix incorrect use of coords conversion for sticky elements (Closed)
Patch Set: Add comments Created 3 years, 7 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 .fixed {
4 position: fixed;
5 }
flackr 2017/05/19 18:28:31 Remove unused class.
yigu 2017/05/23 19:16:40 Done.
6
7 .composited {
8 /* Force compositing without creating a stacking context */
9 backface-visibility: hidden;
10 }
11
12 .spacer {
13 height: 2000px;
14 }
15
16 .container {
17 width: 500px;
18 height: 500px;
19 overflow: scroll;
20 }
21 </style>
22
23 <div class="composited">
24 Ref text.
25 <div class="container">
26 <div>
27 This line should line up with the text above.
28 </div>
29 <div class="spacer"></div>
30 </div>
31 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698