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

Unified Diff: LayoutTests/inspector/elements/styles-1/edit-value-inside-property.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/inspector/elements/styles-1/edit-value-inside-property.html
diff --git a/LayoutTests/inspector/elements/styles-1/edit-value-inside-property.html b/LayoutTests/inspector/elements/styles-1/edit-value-inside-property.html
index f5233ed6ff33f4fe19f1c37d4a79c3150807fbb3..380c51133fbb140ef0df5bbc693fe599052e48b4 100644
--- a/LayoutTests/inspector/elements/styles-1/edit-value-inside-property.html
+++ b/LayoutTests/inspector/elements/styles-1/edit-value-inside-property.html
@@ -31,7 +31,7 @@ function test()
function onNodeFound(node)
{
- InspectorTest.cssModel.getInlineStylesAsync(node.id, onInlineStyle);
+ InspectorTest.cssModel.inlineStylesPromise(node.id).then(onInlineStyle);
}
function onInlineStyle(inlineStyleResult)

Powered by Google App Engine
This is Rietveld 408576698