image-orientation-viewbox-and-size.html (370B)
1 <!DOCTYPE> 2 <head> 3 <style> 4 body { 5 border: 0px; 6 margin: 0px; 7 padding: 0px; 8 } 9 </style> 10 </head> 11 <body> 12 <img src="image-orientation-viewbox-and-size.svg"> 13 <script> 14 let fromImage = location.search == "from-image"; 15 if (fromImage) { 16 document.querySelector("img").style.imageOrientation = "from-image"; 17 } 18 </script> 19 </body>