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/fast/repaint/fixed.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.html
diff --git a/LayoutTests/fast/repaint/fixed.html b/LayoutTests/fast/repaint/fixed.html
index e389508a8f6341edf294d141739d5f56bc6bc52e..20c75415c3b22ed210c93950f37083ade54e3d58 100644
--- a/LayoutTests/fast/repaint/fixed.html
+++ b/LayoutTests/fast/repaint/fixed.html
@@ -10,7 +10,7 @@
function repaintTest()
{
- document.getElementById('t').style.background='green';
+ document.getElementById('t').style.background='rgba(0, 128, 0, 0.99)';
}
</script>
</head>
@@ -19,6 +19,6 @@
Repaint test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=11452">http://bugs.webkit.org/show_bug.cgi?id=11452</a>
REGRESSION (r16736-r16801): Incorrect repaint of fixed boxes</i>.
</p>
- <div id="t" style="position: fixed; width: 100px; height: 100px; background: red"></div>
+ <div id="t" style="position: fixed; width: 100px; height: 100px; background-color: rgba(255, 0, 0, 0.99);"></div>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698