| Index: third_party/WebKit/LayoutTests/inspector/components/css-shadow-model.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/components/css-shadow-model.html b/third_party/WebKit/LayoutTests/inspector/components/css-shadow-model.html
|
| index a1f825e6d5442fa2ef0a8499925a44dd5cfa1c98..a3b00707ff33a52ece91917d06412d109e27ad47 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/components/css-shadow-model.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/components/css-shadow-model.html
|
| @@ -88,7 +88,7 @@ function test()
|
|
|
| function dumpCSSLength(lengthText)
|
| {
|
| - var length = WebInspector.CSSLength.parse(lengthText);
|
| + var length = Common.CSSLength.parse(lengthText);
|
| var statusText = length !== null ? "Succeeded: " + length.asCSSText() : "Failed";
|
| InspectorTest.addResult("\"" + lengthText + "\", Parsing " + statusText);
|
| }
|
| @@ -105,7 +105,7 @@ function test()
|
|
|
| function dumpShadow(shadowText, isBoxShadow)
|
| {
|
| - var shadows = isBoxShadow ? WebInspector.CSSShadowModel.parseBoxShadow(shadowText) : WebInspector.CSSShadowModel.parseTextShadow(shadowText);
|
| + var shadows = isBoxShadow ? Common.CSSShadowModel.parseBoxShadow(shadowText) : Common.CSSShadowModel.parseTextShadow(shadowText);
|
| var output = [];
|
| for (var i = 0; i < shadows.length; i++)
|
| output.push(shadows[i].asCSSText());
|
|
|