Skip to content

Commit 2d34f3e

Browse files
author
Christoph Burgmer
committed
Fix Firefox 18.0.2 complaining about a missing parameter for a setter
1 parent 9446e7a commit 2d34f3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/CSSValue.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ CSSOM.CSSValue.prototype = {
1616
constructor: CSSOM.CSSValue,
1717

1818
// @see: http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSValue
19-
set cssText() {
19+
set cssText(text) {
2020
var name = this._getConstructorName();
2121

2222
throw new Exception('DOMException: property "cssText" of "' + name + '" is readonly!');

0 commit comments

Comments
 (0)