From 2610dbc728eee7105e710b66c1e4f23e152d21b6 Mon Sep 17 00:00:00 2001 From: Jeffrey Fisher Date: Sat, 20 Oct 2012 22:41:21 -0700 Subject: [PATCH] Added test back in that was commend out for issue #389. This test is now passing and the issue must have been fixed at some point without adding this test back in. --- test/spec/CSSUtils-test.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/spec/CSSUtils-test.js b/test/spec/CSSUtils-test.js index c49de23a0f4..99a45705d63 100644 --- a/test/spec/CSSUtils-test.js +++ b/test/spec/CSSUtils-test.js @@ -914,9 +914,8 @@ define(function (require, exports, module) { result = matchAgain({ clazz: "foo" }); expect(result.length).toBe(1); - // TODO (issue #389): false positive match from @keyframes animation identifier - // result = matchAgain({ tag: "slide" }); - // expect(result.length).toBe(0); + result = matchAgain({ tag: "slide" }); + expect(result.length).toBe(0); result = matchAgain({ tag: "from" }); expect(result.length).toBe(0);