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

Unified Diff: third_party/WebKit/LayoutTests/compositing/change-compositing-settings.html

Issue 1826013002: Enable compositing for opaque scrolling content on low DPI screens (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Disable feature by default, not enabled in dev builds Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/compositing/change-compositing-settings.html
diff --git a/third_party/WebKit/LayoutTests/compositing/change-compositing-settings.html b/third_party/WebKit/LayoutTests/compositing/change-compositing-settings.html
index 48c0a63dbb2d411f841ff40056478a0b9022bf74..3bc4dfb43d57607ee9392dcecab78282c703d895 100644
--- a/third_party/WebKit/LayoutTests/compositing/change-compositing-settings.html
+++ b/third_party/WebKit/LayoutTests/compositing/change-compositing-settings.html
@@ -5,13 +5,13 @@
overflow: scroll;
height: 300px;
width: 300px;
- background-color: red;
+ background-color: rgba(255,0,0,0.5); /* Force non-promotion due to background opacity */;
}
#scrolled {
height: 1000px;
width: 250px;
- background-color: green;
+ background-color: rgba(0,128,0,0.5); /* Force non-promotion due to background opacity */;
}
</style>

Powered by Google App Engine
This is Rietveld 408576698