Issue metadata
Sign in to add a comment
|
ToT today: Can't login. Nothing shows up but the wallpaper |
||||||||||||||||||||||
Issue descriptionNothing shows up on reboot but the wallpaper. /var/log/ui/ui.LATEST shows the following JS errors: "Uncaught ReferenceError: login is not defined". "TypeError: Cannot read property 'classList' of undefined.
,
Jun 23 2017
,
Jun 23 2017
Saw similar errors when running ToT on dev box.
[12059:12059:0623/095524.531275:ERROR:CONSOLE(9356)] "TypeError: Cannot read property 'classList' of undefined
at chrome://oobe/login.js:7119:32", source: chrome://oobe/login.js (9356)
[12059:12059:0623/095524.531805:ERROR:CONSOLE(7119)] "Uncaught TypeError: Cannot read property 'classList' of undefined", source: chrome://oobe/login.js (7119)
And line 7119 is this:
setTimeout(function() {
$('pod-row').classList.remove('images-loading');
===> this.smallPodsContainer.classList.remove('images-loading');
this.topMask.classList.remove('images-loading');
this.bottomMask.classList.remove('images-loading');
}, POD_ROW_IMAGES_LOAD_TIMEOUT_MS);
Culprit CL is: https://codereview.chromium.org/2931063004
We added "this" to a setTimeout function but did not do .bind(this).
,
Jun 23 2017
I already prepared a CL on Wednesday but haven't landed it yet. |
|||||||||||||||||||||||
►
Sign in to add a comment |
|||||||||||||||||||||||
Comment 1 by alemate@chromium.org
, Jun 23 2017