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

Unified Diff: LayoutTests/compositing/layer-creation/fixed-position-under-transform.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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/compositing/layer-creation/fixed-position-under-transform.html
diff --git a/LayoutTests/compositing/layer-creation/fixed-position-under-transform.html b/LayoutTests/compositing/layer-creation/fixed-position-under-transform.html
index 3e789f35421c1a9f5a68151f49a43e3eccf2bc59..07092c622687a5176e5e02989aaab05bc8dd56cb 100644
--- a/LayoutTests/compositing/layer-creation/fixed-position-under-transform.html
+++ b/LayoutTests/compositing/layer-creation/fixed-position-under-transform.html
@@ -16,7 +16,7 @@
#indicator {
width: 256px;
height: 256px;
- background-color: red;
+ background-color: rgba(255, 0, 0, 0.99);
position: fixed;
left: 100px;
top: 100px;
@@ -25,7 +25,7 @@
#overlap {
width: 500px;
height: 500px;
- background-color: green;
+ background-color: rgba(0, 128, 0, 0.99);
position: fixed;
left: 0px;
top: 0px;

Powered by Google App Engine
This is Rietveld 408576698