Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 <html>
2 <head>
3 <title></title>
5 <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
6 <script type="text/javascript" src="/tests/dom/tests/mochitest/ajax/offline/offlineTests.js"></script>
9 <script type="text/javascript">
11 // This is called by the parent when the offline update is complete
12 // (since we don't get those events)
13 function doneLoading()
14 {
15 window.parent.childFinished();
16 }
18 if (OfflineTest.setupChild()) {
19 // Child frames shouldn't be receiving cache events.
20 applicationCache.onerror = OfflineTest.failEvent;
21 applicationCache.onnoupdate = OfflineTest.failEvent;
22 applicationCache.ondownloading = OfflineTest.failEvent;
23 applicationCache.onprogress = OfflineTest.failEvent;
24 applicationCache.onupdateready = OfflineTest.failEvent;
25 applicationCache.oncached = OfflineTest.failEvent;
26 }
27 </script>
29 </head>
31 <body>
33 </body> </html>