Closed GoogleCodeExporter closed 9 years ago
Anton has established that the error is caused by the space character in the
call to addClassName, in the StyleHoverishly() method (in eventTargetProxy.js).
Original comment by mark.bir...@gtempaccount.com
on 10 Sep 2010 at 1:33
Turns out that the space character is not the problem, since the
UX.addClassName() method is designed to take spaces into account. Instead the
problem is that the code is using a non-existent error code. Instead of this
(in UXUtils.js):
if (e.code != e.NS_ERROR_DOM_INVALID_CHARACTER_ERR) throw e;
we should have this:
if (e.code != e.INVALID_CHARACTER_ERR) throw e;
Thanks to Anton for the pointer, though.
Original comment by mark.bir...@gtempaccount.com
on 10 Sep 2010 at 3:19
Added regression test in ra343e3b9e21c5723a5b992b234529a043855654e.
Original comment by mark.bir...@gtempaccount.com
on 10 Sep 2010 at 3:42
This issue was closed by revision 8cc27d4002.
Original comment by mark.bir...@gtempaccount.com
on 10 Sep 2010 at 5:14
Original issue reported on code.google.com by
mark.bir...@gtempaccount.com
on 10 Sep 2010 at 1:32