| // Test that a subresource fetched after onload, following a reload, is still |
| // loaded from the cache. |
| if (!sessionStorage.lastRandom) { |
| testRunner.waitUntilDone(); |
| delete sessionStorage.lastRandom; |
| document.body.innerText = result; |
| if (!window.randomNumber) |
| done('FAIL: window.randomNumber not defined!'); |
| else if (sessionStorage.lastRandom) { |
| if ((sessionStorage.lastRandom - 0) == (randomNumber - 0)) |
| sessionStorage.lastRandom = randomNumber; |
| // After onload, add a script tag that should always load from the cache. |
| var s = document.createElement("script"); |
| s.src = "resources/random-cached.cgi"; |
| document.body.appendChild(s); |