blob: ad27453f1af3947f2ddc4b8e43c52e4868689077 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<html>
<head>
<title>user activated iframe</title>
</head>
<body>
<script>
onload = function() {
SpecialPowers.wrap(document).notifyUserGestureActivation();
SpecialPowers.wrap(document).consumeTransientUserGestureActivation();
parent.postMessage("done", "*");
}
</script>
</body>
</html>
|