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

Side by Side Diff: LayoutTests/fast/scrolling/fractional-scroll-offset-fixed-position-expected.html

Issue 889453002: Add a WebLayer:setScrollCompensationAdjustment between Blink and CC (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: add reftest Created 5 years, 10 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 <html>
3 <head>
4 <style>
5 #settings {
6 width: 100px;
7 height: 100px;
8 position: fixed;
9 top: 10px;
10 z-index:2;
11 background-color:red;
12 }
13
14 #header {
15 width:200px;
16 height:20px;
17 position:fixed;
18 right:100px;
19 top:100px;
20 z-index:3;
21 background-color:green;
22 }
23 </style>
24 </head>
25
26 <body style="width:1000px;height:2000px;">
27 <div id="settings" >
28 <div id="header">
29 </div>
30 </div>
31 </body>
32 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698