<!DOCTYPE> <head> <style> body { border: 0px; margin: 0px; padding: 0px; } ul { list-style-position: inside; list-style-image: url(image-exif-270-deg-flip.jpg); } </style> </head> <body> <ul><li></li></ul> <script> var orientation = location.search.substring(1).split("&"); var angle = orientation[0]; var flip = orientation[1] == "flip" ? true : false; // Construct a style. "from-image" is special-cased. var style; if (angle == "from-image") { style = "ul { image-orientation: from-image; }\n"; } else { style = "ul { image-orientation: " + angle + "deg" + (flip ? " flip" : "") + "; }\n"; } // Apply the style to the document. var sheet = document.createElement('style'); sheet.innerHTML = style; document.body.appendChild(sheet); </script> </body>