diff options
author | Etienne Prud’homme <e.e.f.prudhomme@gmail.com> | 2016-05-20 14:10:46 -0400 |
---|---|---|
committer | Simen Heggestøyl <simenheg@gmail.com> | 2016-05-22 12:54:02 +0200 |
commit | 162bc021a1cb4d7f578d1635a55bb7c38084f044 (patch) | |
tree | 68c4c227dd33afa606e62a4450f3b167bdf60698 /test/lisp/textmodes | |
parent | f2d03334814cff85013135366a46a85f3124f7f0 (diff) | |
download | emacs-162bc021a1cb4d7f578d1635a55bb7c38084f044.tar.gz |
Add completion of colors in CSS mode
* lisp/textmodes/css-mode.el (css-value-class-alist): Add CSS colors
from "CSS Color Module Level 3".
* test/lisp/textmodes/css-mode-tests.el (css-test-property-values):
Update test.
Diffstat (limited to 'test/lisp/textmodes')
-rw-r--r-- | test/lisp/textmodes/css-mode-tests.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lisp/textmodes/css-mode-tests.el b/test/lisp/textmodes/css-mode-tests.el index 80d678a161f..fd86fd2d878 100644 --- a/test/lisp/textmodes/css-mode-tests.el +++ b/test/lisp/textmodes/css-mode-tests.el @@ -58,7 +58,7 @@ ;; Check that the `color' property doesn't cause infinite recursion ;; because it refers to the value class of the same name. - (should (= (length (css--property-values "color")) 18))) + (should (= (length (css--property-values "color")) 147))) (ert-deftest css-test-property-value-cache () "Test that `css--property-value-cache' is in use." |