Bug no iOS 8 - o OnUpdateReady nunca é chamado novamente quando o dispositivo volta do modo de suspensão

Quando um dispositivo iOS 8 que executa um aplicativo Web (ou seja, iniciado a partir de um atalho na tela inicial) retorna do estado de suspensão, todas as solicitações assíncronas da Web feitas falham ao acionar o retorno de chamada OnUpdateReady.

O problema é fácil de reproduzir - basta colocar os dois arquivos de código abaixo em qualquer servidor da web e experimentá-lo.

Alguém mais passou por esse problema? Em caso afirmativo, existem soluções alternativas?

Estou postando isso para tentar chamar a atenção para esse bug no iOS 8 que basicamente arruinou todos os meus aplicativos da web - tivemos que recomendar NÃO atualizar além do iOS 7. E sim, publiquei o problema na Apple Repórter de Bug, mas acho que ninguém está olhando para eles, pois faz muito tempo.

app.manifest

CACHE MANIFEST
# 2014-09-24 - Test

CACHE:
default.html

default.html

<!DOCTYPE html>
<html manifest="app.manifest">
<head>
  <title>Test Harness</title>
  <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
  <meta name="HandheldFriendly" content="true" />
  <meta name="apple-mobile-web-app-capable" content="yes" />
  <meta name="apple-mobile-web-app-status-bar-style" content="black" />
  <script language="javascript" type="text/javascript">
    var Test = new function () {
      var _GetEnd = function (oResult) {
        var sResult = ': ' +
          ((oResult.Value === true)
            ? 'Success'
            : 'Failure<br>' + oResult.Reason) +
          '<br>';

        var oLog = document.getElementById('idLog');
        oLog.innerHTML = (new Date()) + sResult + oLog.innerHTML

        setTimeout(_GetBegin, 1000);
      };

      var _GetBegin = function () {
        var sURL = 'app.manifest';
        var hAsyncCallback = _GetEnd;

        try {
          var oRequest = new XMLHttpRequest();
          oRequest.onreadystatechange =
            function () {
              if (oRequest.readyState != 4) return;
              if (oRequest.status != 200) {
                hAsyncCallback({ Value: false, Reason: oRequest.responseText });
              } else {
                hAsyncCallback({ Value: true, Reason: null });
              }
            };
          oRequest.open('GET', sURL, true);
          oRequest.send(null);
        } catch (e) {
          alert('Critical Error: ' + e.message );
        }
      };

      this.Start = function () { _GetBegin(); }
    };
  </script>
</head>
<body onload="Test.Start();">
  <ol>
    <li>Put both app.manifest and default.html on a web server.</li>
    <li>Make sure this page is being launched from the Home screen as a web application.</li>
    <li>Press the sleep button while it is running.</li>
    <li>Press the wake button and unlock the phone to get back to this screen.</li>
    <li>Under iOS7x the page continues, under iOS8 the onreadystatechange never gets called again.</li>
  </ol>
  <div id="idLog"></div>
</body>
</html>

questionAnswers(5)

yourAnswerToTheQuestion