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

Unified Diff: LayoutTests/fast/repaint/fixed-tranformed.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/fast/repaint/fixed-tranformed.html
diff --git a/LayoutTests/fast/repaint/fixed-tranformed.html b/LayoutTests/fast/repaint/fixed-tranformed.html
index 42f6de9a26c368116ece651e7ad333069e7eec2c..47628132f8e4569975372de9d515be9c8df1309d 100644
--- a/LayoutTests/fast/repaint/fixed-tranformed.html
+++ b/LayoutTests/fast/repaint/fixed-tranformed.html
@@ -10,7 +10,7 @@
#test {
width: 100px;
height: 100px;
- background-color: red;
+ background-color: rgba(255, 0, 0, 0.99);
position: fixed;
top: 10px;
left: 10px;
@@ -25,7 +25,7 @@
<script type="text/javascript">
function repaintTest()
{
- document.getElementById('test').style.background='green';
+ document.getElementById('test').style.background='rgba(0, 128, 0, 0.99)';
}
function setupTest() {

Powered by Google App Engine
This is Rietveld 408576698