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

Side by Side Diff: Source/web/tests/data/fractional-scroll-fixed-position.html

Issue 1298493003: Currently we only composite fixed position elements if we are on High DPI devices. This fix allows … Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove similarity check Created 5 years, 3 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <style> 2 <style>
3 #settings { 3 #settings {
4 min-width: 100px; 4 min-width: 100px;
5 min-height: 100px; 5 min-height: 100px;
6 position: fixed; 6 position: fixed;
7 top: 0px; 7 top: 0px;
8 background-color:red; 8 background-color:red;
9 box-shadow: 1px 1px black;
9 } 10 }
10 </style> 11 </style>
11 <html> 12 <html>
12 <body style="width:1000px;height:2000px;"> 13 <body style="width:1000px;height:2000px;">
13 <div id="settings"> 14 <div id="settings">
14 </div> 15 </div>
15 </body> 16 </body>
16 </html> 17 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698