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

Unified Diff: LayoutTests/compositing/repaint/fixed-pos-inside-composited-intermediate-layer.html

Issue 181653006: Remove testRunner.display() from most compositing/ tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Revert change to plugin test Created 6 years, 10 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/repaint/fixed-pos-inside-composited-intermediate-layer.html
diff --git a/LayoutTests/compositing/repaint/fixed-pos-inside-composited-intermediate-layer.html b/LayoutTests/compositing/repaint/fixed-pos-inside-composited-intermediate-layer.html
index ecbc949ef492e3da7e07fb4c9fb2bba77eeb84d6..e7d4779488209afe3e99ad1685c1963914d92d5f 100644
--- a/LayoutTests/compositing/repaint/fixed-pos-inside-composited-intermediate-layer.html
+++ b/LayoutTests/compositing/repaint/fixed-pos-inside-composited-intermediate-layer.html
@@ -2,6 +2,7 @@
<html>
<head>
+<script src="../../resources/run-after-display.js"></script>
<style>
.compositedBehind {
@@ -33,8 +34,10 @@
</style>
<script>
- if (window.testRunner)
+ if (window.testRunner) {
testRunner.dumpAsText();
+ testRunner.waitUntilDone();
+ }
if (window.internals) {
/* Note carefully, compositing for fixed position is _disabled_ here */
@@ -44,15 +47,18 @@
function test()
{
- testRunner.display()
+ runAfterDisplay(function() {
+ if (window.internals)
+ window.internals.startTrackingRepaints(document);
- if (window.internals)
- window.internals.startTrackingRepaints(document);
+ window.scrollTo(0, 100);
- window.scrollTo(0, 100);
+ if (window.internals)
+ document.getElementById('layers').textContent = window.internals.layerTreeAsText(document, internals.LAYER_TREE_INCLUDES_REPAINT_RECTS);
- if (window.internals)
- document.getElementById('layers').textContent = window.internals.layerTreeAsText(document, internals.LAYER_TREE_INCLUDES_REPAINT_RECTS);
+ if (window.testRunner)
+ testRunner.notifyDone();
+ });
}
</script>

Powered by Google App Engine
This is Rietveld 408576698