Join the Mozilla’s Test Days event from Dec 2–8 to test the new Firefox address bar on Firefox Beta 134 and get a chance to win Mozilla swag vouchers! 🎁

Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

En savoir plus

Page fails to render when navigated to while Windows is locked.

  • 3 réponses
  • 1 a ce problème
  • 1 vue
  • Dernière réponse par viperidae

more options

I have a single page webapp with an inactivity timer that calls window.location.replace when there is no activity for a period of time. If this happens while Windows is locked, the new url is called (it hits the server), the address bar is updated correctly but the page that is displayed is still the old one.

The app is built in GWT 2.5.1

I've tried window.location.assign as well.

I have a single page webapp with an inactivity timer that calls window.location.replace when there is no activity for a period of time. If this happens while Windows is locked, the new url is called (it hits the server), the address bar is updated correctly but the page that is displayed is still the old one. The app is built in GWT 2.5.1 I've tried window.location.assign as well.

Toutes les réponses (3)

more options

Have you tried just editing the window.location directly?

e.g: window.location = 'https://mozilla.org';

+ You're currently Firefox 17 as 'Question Details' says, what about Firefox 21? same?

more options

window.location = '....'; fails even worse. It doesn't work as expected even when the workstation is unlocked. I tried window.location.href as well. I'm using Firefox 17 as it is the ESR version.

more options

The problem with window.location is a GWT issue. Using the correct reference $wnd.location it works as my original post. Fine when workstation unlocked, page not rendered when locked.

Moving the mouse up over the address bar causes the page to render.

It's like firefox has gone "my window isn't visible so I won't update it" and when something triggers a re-paint, like moving the mouse over some chrome, it repaints everything correctly