From 2d34f3e21241165dbd1cfbcd6c5f56ec18548464 Mon Sep 17 00:00:00 2001 From: Christoph Burgmer Date: Mon, 18 Feb 2013 19:42:44 +0000 Subject: [PATCH] Fix Firefox 18.0.2 complaining about a missing parameter for a setter --- lib/CSSValue.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/CSSValue.js b/lib/CSSValue.js index f2facb1..2c45bb9 100644 --- a/lib/CSSValue.js +++ b/lib/CSSValue.js @@ -16,7 +16,7 @@ CSSOM.CSSValue.prototype = { constructor: CSSOM.CSSValue, // @see: http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSValue - set cssText() { + set cssText(text) { var name = this._getConstructorName(); throw new Exception('DOMException: property "cssText" of "' + name + '" is readonly!');