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

Unified Diff: LayoutTests/inspector/elements/styles-4/styles-history.html

Issue 1350183004: DevTools: CSS.getMatchedStylesForNode protocol command to return inline styles (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix tests Created 5 years, 3 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-4/styles-history.html
diff --git a/LayoutTests/inspector/elements/styles-4/styles-history.html b/LayoutTests/inspector/elements/styles-4/styles-history.html
index 11b24ecd14d35b80cb74145b36b07830ca103903..fc38267369ec7caba2fc5256e3fef16e86e8ce82 100644
--- a/LayoutTests/inspector/elements/styles-4/styles-history.html
+++ b/LayoutTests/inspector/elements/styles-4/styles-history.html
@@ -92,7 +92,7 @@ function test()
InspectorTest.CSSAgent.getMatchedStylesForNode(node.id, onMatchedStylesForNode);
}
- function onMatchedStylesForNode(error, matchedStyles)
+ function onMatchedStylesForNode(error, inlineStyle, attributeStyle, matchedStyles)
{
if (error) {
InspectorTest.addResult("error: " + error);

Powered by Google App Engine
This is Rietveld 408576698