Index: LayoutTests/http/tests/inspector/elements/styles/update-locations-on-filesystem-scss-load.html |
diff --git a/LayoutTests/http/tests/inspector/elements/styles/update-locations-on-filesystem-scss-load.html b/LayoutTests/http/tests/inspector/elements/styles/update-locations-on-filesystem-scss-load.html |
index af30034bf3d2e2718bcb1b6b8adf694103b1bc1d..50150b7159857a7bc9010ef89e593ca589037272 100644 |
--- a/LayoutTests/http/tests/inspector/elements/styles/update-locations-on-filesystem-scss-load.html |
+++ b/LayoutTests/http/tests/inspector/elements/styles/update-locations-on-filesystem-scss-load.html |
@@ -69,7 +69,7 @@ function test() |
var namePrefix = "update-locations-on-filesystem-scss-load." |
var cssURL = resourcesURL + namePrefix + "css"; |
var scssURL = resourcesURL + namePrefix + "scss"; |
- var cssLocation = new WebInspector.CSSLocation(WebInspector.targetManager.activeTarget(), cssURL, 0, 1); |
+ var cssLocation = new WebInspector.CSSLocation(WebInspector.targetManager.activeTarget(), 1, cssURL, 0, 1); |
var scssContent = |
["a {", |
" foo: bar;", |
@@ -97,7 +97,7 @@ function test() |
addMockHeader(cssURL, cssURL + ".map"); |
InspectorTest.addResult("Adding network resource."); |
InspectorTest.addMockUISourceCodeToWorkspace(cssURL, WebInspector.resourceTypes.Stylesheet, cssContent); |
- liveLocation = cssLocation.createLiveLocation("1", updateDelegate); |
+ liveLocation = cssLocation.createLiveLocation(updateDelegate); |
dumpLiveLocation(); |
InspectorTest.addResult("Adding filesystem SCSS."); |