| Index: third_party/WebKit/LayoutTests/inspector/sass/sass-test.js
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/sass/sass-test.js b/third_party/WebKit/LayoutTests/inspector/sass/sass-test.js
|
| index 952efae980d6139557fa8fde39a11190c3cefb1e..d14a227e977aae6e789bcee9b61632fad27f33bb 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/sass/sass-test.js
|
| +++ b/third_party/WebKit/LayoutTests/inspector/sass/sass-test.js
|
| @@ -2,15 +2,6 @@ var initialize_SassTest = function() {
|
|
|
| InspectorTest.preloadModule("sass");
|
|
|
| -var cssParserService = null;
|
| -
|
| -InspectorTest.cssParserService = function()
|
| -{
|
| - if (!cssParserService)
|
| - cssParserService = new WebInspector.CSSParserService();
|
| - return cssParserService;
|
| -}
|
| -
|
| var sassSourceMapFactory = null;
|
| InspectorTest.sassSourceMapFactory = function()
|
| {
|
| @@ -19,15 +10,11 @@ InspectorTest.sassSourceMapFactory = function()
|
| return sassSourceMapFactory;
|
| }
|
|
|
| -InspectorTest.parseCSS = function(url, text)
|
| -{
|
| - return WebInspector.SASSSupport.parseCSS(url, text);
|
| -}
|
| -
|
| InspectorTest.parseSCSS = function(url, text)
|
| {
|
| return WebInspector.SASSSupport.parseSCSS(url, text);
|
| }
|
| +InspectorTest.parseCSS = InspectorTest.parseSCSS;
|
|
|
| InspectorTest.loadASTMapping = function(header, callback)
|
| {
|
|
|