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

Unified Diff: LayoutTests/http/tests/inspector/modify-cross-domain-rule.html

Issue 1204393002: DevTools: [CSS] promisify CSSStyleModel fetching methods (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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/http/tests/inspector/modify-cross-domain-rule.html
diff --git a/LayoutTests/http/tests/inspector/modify-cross-domain-rule.html b/LayoutTests/http/tests/inspector/modify-cross-domain-rule.html
index f38695bd81c9027ffebe1c3fc106f69805d05592..682875042f4b486f52618ca6734081b82d5f32ee 100644
--- a/LayoutTests/http/tests/inspector/modify-cross-domain-rule.html
+++ b/LayoutTests/http/tests/inspector/modify-cross-domain-rule.html
@@ -32,7 +32,7 @@ function test()
return;
}
- InspectorTest.cssModel.getMatchedStylesAsync(nodeId, false, false, callback);
+ InspectorTest.cssModel.matchedStylesPromise(nodeId, false, false).then(callback);
}
function callback(rules)

Powered by Google App Engine
This is Rietveld 408576698