| 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 1064c0aa362c8964922618e3bd73cc97a48a482e..f5233ed6ff33f4fe19f1c37d4a79c3150807fbb3 100644
|
| --- a/LayoutTests/inspector/elements/styles-1/edit-value-inside-property.html
|
| +++ b/LayoutTests/inspector/elements/styles-1/edit-value-inside-property.html
|
| @@ -34,14 +34,14 @@ function test()
|
| InspectorTest.cssModel.getInlineStylesAsync(node.id, onInlineStyle);
|
| }
|
|
|
| - function onInlineStyle(inlineStyle)
|
| + function onInlineStyle(inlineStyleResult)
|
| {
|
| - if (!inlineStyle) {
|
| + if (!inlineStyleResult || !inlineStyleResult.inlineStyle) {
|
| InspectorTest.addResult("Failed to get inline styles.").
|
| InspectorTest.completeTest();
|
| return;
|
| }
|
| - InspectorTest.addResult("font-size: " + inlineStyle.getPropertyValue("font-size"));
|
| + InspectorTest.addResult("font-size: " + inlineStyleResult.inlineStyle.getPropertyValue("font-size"));
|
| InspectorTest.completeTest();
|
| }
|
| }
|
|
|