1 // Invokes "fully exit fullscreen" for document.
2 function fully_exit_fullscreen(document)
4 // FIXME: window.open() invokes "fully exit fullscreen", but the HTML spec
5 // doesn't say so, and none of the spec'd behavior is implemented:
6 // https://www.w3.org/Bugs/Public/show_bug.cgi?id=26584
7 document.defaultView.open("data:text/html,<script>window.close()</script>");