Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
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>