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
1 <!DOCTYPE html>
2 <html>
3 <body>
4 </body>
5 <script>
6 addEventListener('message', function(e) {
7 if (e.data == 'clear') {
8 navigator.mozApps.getSelf().onsuccess = function() {
9 this.result.clearBrowserData();
10 document.body.innerHTML = "<done></done>";
11 };
12 }
13 });
14 </script>
15 </html>