mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
ce0d8981d9
This patch also removes the debug statements.
16 lines
333 B
HTML
16 lines
333 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
</body>
|
|
<script>
|
|
addEventListener('message', function(e) {
|
|
if (e.data == 'clear') {
|
|
navigator.mozApps.getSelf().onsuccess = function() {
|
|
this.result.clearBrowserData();
|
|
document.body.innerHTML = "<done></done>";
|
|
};
|
|
}
|
|
});
|
|
</script>
|
|
</html>
|