summaryrefslogtreecommitdiff
path: root/public/vendor/codemirror/mode/css/gss_test.js
diff options
context:
space:
mode:
Diffstat (limited to 'public/vendor/codemirror/mode/css/gss_test.js')
-rw-r--r--public/vendor/codemirror/mode/css/gss_test.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/public/vendor/codemirror/mode/css/gss_test.js b/public/vendor/codemirror/mode/css/gss_test.js
deleted file mode 100644
index d56e5928..00000000
--- a/public/vendor/codemirror/mode/css/gss_test.js
+++ /dev/null
@@ -1,17 +0,0 @@
-// CodeMirror, copyright (c) by Marijn Haverbeke and others
-// Distributed under an MIT license: http://codemirror.net/LICENSE
-
-(function() {
- "use strict";
-
- var mode = CodeMirror.getMode({indentUnit: 2}, "text/x-gss");
- function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1), "gss"); }
-
- MT("atComponent",
- "[def @component] {",
- "[tag foo] {",
- " [property color]: [keyword black];",
- "}",
- "}");
-
-})();