| Index: third_party/WebKit/LayoutTests/inspector/elements/styles-1/disable-property-workingcopy-update.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/elements/styles-1/disable-property-workingcopy-update.html b/third_party/WebKit/LayoutTests/inspector/elements/styles-1/disable-property-workingcopy-update.html
|
| index 609c650d0e0c82fdb583e7f83113a588110018ec..6d6e1312d2cc2344ed0ddbd30840bac9f8902006 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/elements/styles-1/disable-property-workingcopy-update.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/elements/styles-1/disable-property-workingcopy-update.html
|
| @@ -9,7 +9,7 @@
|
| function test()
|
| {
|
| var cssSourceFrame;
|
| - WebInspector.StylesSourceMapping.MinorChangeUpdateTimeoutMs = 10;
|
| + Bindings.StylesSourceMapping.MinorChangeUpdateTimeoutMs = 10;
|
|
|
| InspectorTest.runTestSuite([
|
| function selectContainer(next)
|
| @@ -22,8 +22,8 @@ function test()
|
| var headers = InspectorTest.cssModel.styleSheetHeaders();
|
| for (var i = 0; i < headers.length; ++i) {
|
| if (headers[i].sourceURL.endsWith(".css")) {
|
| - var cssLocation = new WebInspector.CSSLocation(headers[i], 0);
|
| - InspectorTest.showUISourceCode(WebInspector.cssWorkspaceBinding.rawLocationToUILocation(cssLocation).uiSourceCode, callback);
|
| + var cssLocation = new SDK.CSSLocation(headers[i], 0);
|
| + InspectorTest.showUISourceCode(Bindings.cssWorkspaceBinding.rawLocationToUILocation(cssLocation).uiSourceCode, callback);
|
| break;
|
| }
|
| }
|
| @@ -63,7 +63,7 @@ function test()
|
|
|
| function toggleProperty(value, next)
|
| {
|
| - InspectorTest.addSniffer(WebInspector.UISourceCode.prototype, "addRevision", callback);
|
| + InspectorTest.addSniffer(Workspace.UISourceCode.prototype, "addRevision", callback);
|
| InspectorTest.waitForStyles("inspected", callback);
|
| InspectorTest.toggleMatchedStyleProperty("font-weight", value);
|
|
|
|
|