Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(766)

Unified Diff: third_party/WebKit/Source/devtools/front_end/sass/ASTService.js

Issue 1941283002: DevTools: [SASS] start parsing CSS with SCSS parser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@1-scss
Patch Set: rebaseline Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/sass/ASTService.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sass/ASTService.js b/third_party/WebKit/Source/devtools/front_end/sass/ASTService.js
index c780338050135ab967637209a341c6db53539a5e..b8f6724b13d623c8904e586c39a2a40ee53cd33d 100644
--- a/third_party/WebKit/Source/devtools/front_end/sass/ASTService.js
+++ b/third_party/WebKit/Source/devtools/front_end/sass/ASTService.js
@@ -17,7 +17,7 @@ WebInspector.ASTService.prototype = {
*/
parseCSS: function(url, text)
{
- return WebInspector.SASSSupport.parseCSS(url, text);
+ return WebInspector.SASSSupport.parseSCSS(url, text);
},
/**

Powered by Google App Engine
This is Rietveld 408576698