| Index: third_party/WebKit/LayoutTests/inspector/elements/styles-4/styles-rerequest-sourcemap-on-watchdog.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/elements/styles-4/styles-rerequest-sourcemap-on-watchdog.html b/third_party/WebKit/LayoutTests/inspector/elements/styles-4/styles-rerequest-sourcemap-on-watchdog.html
|
| index 7b53be1801c20536dc951b0d0943df6114d39261..38f73e5f2de750ba3d87c5cd47d6adbdde8b713f 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/elements/styles-4/styles-rerequest-sourcemap-on-watchdog.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/elements/styles-4/styles-rerequest-sourcemap-on-watchdog.html
|
| @@ -13,19 +13,19 @@ function addStyleSheet()
|
|
|
| function test()
|
| {
|
| - InspectorTest.cssModel.addEventListener(WebInspector.CSSModel.Events.SourceMapAttached, onInitialSourceMap);
|
| + InspectorTest.cssModel.addEventListener(SDK.CSSModel.Events.SourceMapAttached, onInitialSourceMap);
|
|
|
| InspectorTest.evaluateInPagePromise("addStyleSheet()");
|
|
|
| function onInitialSourceMap()
|
| {
|
| - InspectorTest.cssModel.removeEventListener(WebInspector.CSSModel.Events.SourceMapAttached, onInitialSourceMap);
|
| + InspectorTest.cssModel.removeEventListener(SDK.CSSModel.Events.SourceMapAttached, onInitialSourceMap);
|
| InspectorTest.waitForScriptSource("styles-rerequest-sourcemap-on-watchdog.css", onCSSFile);
|
| }
|
|
|
| function onCSSFile(uiSourceCode)
|
| {
|
| - InspectorTest.addSniffer(WebInspector.CSSModel.prototype, "_sourceMapLoadedForTest", onSourceMapRerequested);
|
| + InspectorTest.addSniffer(SDK.CSSModel.prototype, "_sourceMapLoadedForTest", onSourceMapRerequested);
|
| uiSourceCode.addRevision("div { color: blue; } /*# sourceMappingURL=styles-rerequest-sourcemap-on-watchdog.css.map */");
|
| }
|
|
|
|
|