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

Side by Side Diff: third_party/WebKit/Source/web/tests/data/fixed-position-losing-backing.html

Issue 2369603002: Turn on CompositeOpaqueFixedPosition for test and rebase tests. (Closed)
Patch Set: . Created 4 years, 2 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 | « third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in ('k') | no next file » | 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 #fixed { 3 #fixed {
4 position: fixed; 4 position: fixed;
5 width: 100px; 5 width: 100px;
6 height: 100px; 6 height: 100px;
7 background-color: yellow; 7 /* Using transparent background color so that fixed position element is not automatically promoted. */
8 background-color: rgba(255, 255, 0, 0.5);
8 transform: translateZ(0); 9 transform: translateZ(0);
9 } 10 }
10 11
11 #bloat { 12 #bloat {
12 height: 10000px; 13 height: 10000px;
13 } 14 }
14 </style> 15 </style>
15 <div id="fixed"></div> 16 <div id="fixed"></div>
16 <div id="bloat"></div> 17 <div id="bloat"></div>
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698