<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><title>FS Element</title><style>body {background-color: white; color: black;}</style></head><body><img id="image" width=0 height=0></img><button onClick="goFS()">click me to go full screen</button><script>function goFS() { if (document.mozFullScreenEnabled) { let element = document.getElementById("image"); element.mozRequestFullScreen(); };}</script></body></html>