tenfourfox/dom/tests/mochitest/localstorage/frame_clear_browser_data.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

17 lines
374 B
HTML

<!DOCTYPE html>
<html>
<body>
<div id="status"></div>
</body>
<script>
addEventListener('message', function(e) {
if (e.data == 'clear') {
navigator.mozApps.getSelf().onsuccess = function() {
this.result.clearBrowserData();
document.getElementById('status').textContent = 'done';
};
}
});
</script>
</html>