dom/tests/mochitest/ajax/offline/offlineChild.html

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

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>

mercurial