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 ab28db87e57390519d3f5251219ec6d8ac2b5501..ece3c7b2a0ec8dea6aa3b38ad7c0dd009e27ff20 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.mainTarget(), cssURL, 0, 1); |
+ var cssLocation = new WebInspector.CSSLocation(WebInspector.targetManager.mainTarget(), 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."); |