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

Unified Diff: LayoutTests/compositing/iframes/iframe-size-to-zero.html

Issue 206243003: Simplify CompositingReasonFinder::requiresCompositingForFrame (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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
« no previous file with comments | « no previous file | LayoutTests/compositing/iframes/iframe-size-to-zero-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/compositing/iframes/iframe-size-to-zero.html
diff --git a/LayoutTests/compositing/iframes/iframe-size-to-zero.html b/LayoutTests/compositing/iframes/iframe-size-to-zero.html
index f1faf7ffaa03b86fd3771662cb4bda714a64b6f2..76fbe4383df86d66661e2e901867269c36e93946 100644
--- a/LayoutTests/compositing/iframes/iframe-size-to-zero.html
+++ b/LayoutTests/compositing/iframes/iframe-size-to-zero.html
@@ -46,10 +46,10 @@
if (window.testRunner) {
var haveLayers = window.internals.layerTreeAsText(document) != "";
var result;
- if (hadLayers && !haveLayers)
- result = "PASS: had layers, and now do not";
+ if (hadLayers && haveLayers)
+ result = "PASS: Had layers before and after";
else
- result = "FAIL: layers should have gone. hadLayers = " + hadLayers + ", haveLayers = " + haveLayers;
+ result = "FAIL: Layers should have stayed. hadLayers = " + hadLayers + ", haveLayers = " + haveLayers;
document.getElementById('result').innerHTML = result;
testRunner.notifyDone();
}
« no previous file with comments | « no previous file | LayoutTests/compositing/iframes/iframe-size-to-zero-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698