Is it possible to enable fullscreen mode for a video embedded in an iframe that is also part of another iframe?
As an example:
...
<body>
...
<iframe id="video1" src="..." allowfullscreen></iframe> <!-- Full screen mode works -->
<iframe id="comments" src="..." allow="fullscreen" allowfullscreen>
#document
...
<iframe id="video2" src="..." allowfullscreen></iframe> <!-- Full screen mode does not work -->
</iframe>
...
</body>
...