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

Unified Diff: third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/timeline-paint.html

Issue 2208963002: [DevTools] Removed InspectorTest.invokeFunctionInPageAsync (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove-promise-from-other-tests
Patch Set: a Created 4 years, 4 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: third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/timeline-paint.html
diff --git a/third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/timeline-paint.html b/third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/timeline-paint.html
index a49206ce66687a2738aaf206b83ff80f174f6a8b..855d02ee2ff4a1adffb99b74767e200f953e2cd3 100644
--- a/third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/timeline-paint.html
+++ b/third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/timeline-paint.html
@@ -4,22 +4,16 @@
<script src="../../../http/tests/inspector/timeline-test.js"></script>
<script>
-function display(callback)
+function display()
{
- requestAnimationFrame(function() {
- document.body.style.backgroundColor = "blue";
- if (window.testRunner)
- testRunner.layoutAndPaintAsyncThen(callback);
- });
+ document.body.style.backgroundColor = "blue";
+ return waitForFrame();
}
-function updateSubframeAndDisplay(callback)
+function updateSubframeAndDisplay()
{
- requestAnimationFrame(function() {
- frames[0].document.body.children[0].style.backgroundColor = "green";
- if (window.testRunner)
- testRunner.layoutAndPaintAsyncThen(callback);
- });
+ frames[0].document.body.children[0].style.backgroundColor = "green";
+ return waitForFrame();
}
function test()

Powered by Google App Engine
This is Rietveld 408576698