You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 7, 2019. It is now read-only.
For the warning: "Use of globalStorage is deprecated. Please use
localStorage instead": This is due to the fact that we are checking attr.defined. We are looping over the attributes of the <html> node to serialize it into a string. In older IEs, this would return all possible attributes (e.g. onchange, ...), because of which we are checking attr.defined.
However, in current FF, this gives us a warning.
From an email of Marek:
Hello,
errors are logged on standard FireFox Web Developer console
(Shift+Ctrl+K) on Ubuntu.
FF 19 pointed line 331 by message:
[08:24:17.883] Use of attributes' specified attribute is deprecated.
It always returns true. @
http://test.vinci.org.pl:9000/test/dist/uitest.js:331
FF 11 shown:
[08:20:17.920] Use of globalStorage is deprecated. Please use
localStorage instead. @
http://test.vinci.org.pl:9000/test/test/ui/fixtures/basic.html?1362640817720
[08:20:19.326] Use of globalStorage is deprecated. Please use
localStorage instead. @
http://test.vinci.org.pl:9000/test/test/ui/fixtures/basic.html?1362640819214#123
[08:20:19.628] Use of globalStorage is deprecated. Please use
localStorage instead. @
...
Best regards,
Marek
The text was updated successfully, but these errors were encountered: