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