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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/inspector-test.js

Issue 1504923008: DevTools: [SASS] implement AST differ. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@sass-module-2
Patch Set: Created 5 years 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 | third_party/WebKit/LayoutTests/inspector/sass/sass-test.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/http/tests/inspector/inspector-test.js
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/inspector-test.js b/third_party/WebKit/LayoutTests/http/tests/inspector/inspector-test.js
index 99beb1850cd7ccc8cd01695bea896c4c9d759628..57839baa8d3d028282466f8549e2f4903ba4934a 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/inspector-test.js
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/inspector-test.js
@@ -49,6 +49,11 @@ InspectorTest.evaluateInPage = function(code, callback)
InspectorTest.RuntimeAgent.evaluate(code, "console", false, mycallback);
}
+InspectorTest.evaluateInPagePromise = function(code)
+{
+ return new Promise(succ => InspectorTest.evaluateInPage(code, succ));
+}
+
InspectorTest.evaluateInPageWithTimeout = function(code)
{
// FIXME: we need a better way of waiting for chromium events to happen
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector/sass/sass-test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698