views:

169

answers:

0

I have a question regarding how Mobile WebKit browsers (ie Mobile Safari and Android browser) handle setTimeout function when the page becomes inactive and is reactivated again.

Let's assume the page becomes inactive (ie the phone screen goes to 'sleep' / we open another application / we open another webpage), and the setTimeout function should have been activated before the page becomes active again.

Now to me it seems that:

  1. Mobile Safari executes the function as soon as the page is activated
  2. Android browser:
    • might execute the function as usual (i.e. JavaScript continues running even if the page is inactive)
    • might execute as soon as the page is activated (a la Mobile Safari)
    • might not execute at all

I was wondering if someone knows the exact "rules"?