зеркало из https://github.com/mozilla/gecko-dev.git
15 строки
337 B
HTML
15 строки
337 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<script src="orientationcommon.js"></script>
|
|
<script>
|
|
window.addEventListener("message", function(event) {
|
|
var p = specialPowersLock(event.data);
|
|
p.then(function() {
|
|
event.source.postMessage("success", "*");
|
|
}).catch(function(err) {
|
|
event.source.postMessage("error", "*");
|
|
});
|
|
});
|
|
</script>
|