Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | <html> |
michael@0 | 2 | <head> |
michael@0 | 3 | <title></title> |
michael@0 | 4 | |
michael@0 | 5 | <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> |
michael@0 | 6 | <script type="text/javascript" src="/tests/dom/tests/mochitest/ajax/offline/offlineTests.js"></script> |
michael@0 | 7 | |
michael@0 | 8 | |
michael@0 | 9 | <script type="text/javascript"> |
michael@0 | 10 | |
michael@0 | 11 | // This is called by the parent when the offline update is complete |
michael@0 | 12 | // (since we don't get those events) |
michael@0 | 13 | function doneLoading() |
michael@0 | 14 | { |
michael@0 | 15 | window.parent.childFinished(); |
michael@0 | 16 | } |
michael@0 | 17 | |
michael@0 | 18 | if (OfflineTest.setupChild()) { |
michael@0 | 19 | // Child frames shouldn't be receiving cache events. |
michael@0 | 20 | applicationCache.onerror = OfflineTest.failEvent; |
michael@0 | 21 | applicationCache.onnoupdate = OfflineTest.failEvent; |
michael@0 | 22 | applicationCache.ondownloading = OfflineTest.failEvent; |
michael@0 | 23 | applicationCache.onprogress = OfflineTest.failEvent; |
michael@0 | 24 | applicationCache.onupdateready = OfflineTest.failEvent; |
michael@0 | 25 | applicationCache.oncached = OfflineTest.failEvent; |
michael@0 | 26 | } |
michael@0 | 27 | </script> |
michael@0 | 28 | |
michael@0 | 29 | </head> |
michael@0 | 30 | |
michael@0 | 31 | <body> |
michael@0 | 32 | |
michael@0 | 33 | </body> </html> |