| Index: third_party/WebKit/LayoutTests/http/tests/inspector/stylesheet-source-mapping.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/stylesheet-source-mapping.html b/third_party/WebKit/LayoutTests/http/tests/inspector/stylesheet-source-mapping.html
|
| index 384fc0fa9b20c4dafd10a01b7e475db60e8b9999..900197eb173cf21e9196d9dfac46329af39ab38c 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/inspector/stylesheet-source-mapping.html
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector/stylesheet-source-mapping.html
|
| @@ -25,10 +25,9 @@ function test()
|
| {
|
| var header = cssModel.styleSheetHeaderForId(styleSheetId);
|
| var uiLocation = InspectorTest.testCSSWorkspaceBinding.rawLocationToUILocation(new WebInspector.CSSLocation(header, 2, 3));
|
| - var networkURL = InspectorTest.testNetworkMapping.networkURL(uiLocation.uiSourceCode);
|
| - if (networkURL.indexOf(".scss") === -1)
|
| + if (uiLocation.uiSourceCode.url().indexOf(".scss") === -1)
|
| return;
|
| - finalMappedLocation = networkURL + ":" + uiLocation.lineNumber + ":" + uiLocation.columnNumber;
|
| + finalMappedLocation = uiLocation.uiSourceCode.url() + ":" + uiLocation.lineNumber + ":" + uiLocation.columnNumber;
|
| join();
|
| }
|
|
|
|
|