diff options
Diffstat (limited to 'layout/reftests/image/image-orientation-generated-content.html')
-rw-r--r-- | layout/reftests/image/image-orientation-generated-content.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/layout/reftests/image/image-orientation-generated-content.html b/layout/reftests/image/image-orientation-generated-content.html new file mode 100644 index 000000000..2aa415df8 --- /dev/null +++ b/layout/reftests/image/image-orientation-generated-content.html @@ -0,0 +1,38 @@ +<!DOCTYPE> +<head> + <style> + body { + border: 0px; + margin: 0px; + padding: 0px; + } + p:before { + content: url(image-exif-270-deg-flip.jpg); + } + </style> +</head> +<body> + <p></p> + + <script> + var orientationInfo = location.search.substring(1).split("&"); + var angle = orientationInfo[0]; + var flip = orientationInfo[1] == "flip" ? true : false; + + // Construct a style. "from-image" is special-cased. + var style; + if (angle == "from-image") { + style = "p { image-orientation: from-image; }\n"; + } else { + style = "p { 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> |