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

Unified Diff: LayoutTests/compositing/background-color/background-color-change-to-text.html

Issue 63943006: Re-enable solid background color optimization for composited layers. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add window.internals.forceCompositingUpdate(document) to webgl test to avoid flaky Created 7 years, 1 month 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/background-color/background-color-change-to-text.html
diff --git a/LayoutTests/compositing/background-color/background-color-change-to-text.html b/LayoutTests/compositing/background-color/background-color-change-to-text.html
index 8cf21975d2e1d6173c961dd722a3df3e8e0a0410..e534d5ff1e968cd315456be4d0bf0d38019fbe85 100644
--- a/LayoutTests/compositing/background-color/background-color-change-to-text.html
+++ b/LayoutTests/compositing/background-color/background-color-change-to-text.html
@@ -8,6 +8,12 @@
display: block;
background-color: green;
}
+ .blue {
+ width: 50px;
+ height: 50px;
+ background-color: blue;
+ display: block;
+ }
.composited {
-webkit-transform: translateZ(0);
@@ -23,8 +29,9 @@
var bg = document.getElementById("background");
window.setTimeout(function() {
- // Change the layer to become background only.
- bg.innerHTML = "text";
+ // Change the layer not to be background color layer.
+ bg.innerHTML = "text" + bg.innerHTML;
+ bg.style.backgroundColor = "red";
if (window.testRunner) {
window.setTimeout(function() {
testRunner.notifyDone();
@@ -37,7 +44,9 @@
</script>
</head>
<body>
-<!-- When the test is done, there should only be a green square on the page -->
-<div id="background" class="composited"></div>
+<div id="background" class="composited">
+ <div class="blue composited">
+ </div>
+</div>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698