diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /layout/reftests/image/image-orientation-from-image.html | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'layout/reftests/image/image-orientation-from-image.html')
-rw-r--r-- | layout/reftests/image/image-orientation-from-image.html | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/layout/reftests/image/image-orientation-from-image.html b/layout/reftests/image/image-orientation-from-image.html new file mode 100644 index 000000000..ec4698656 --- /dev/null +++ b/layout/reftests/image/image-orientation-from-image.html @@ -0,0 +1,40 @@ +<!DOCTYPE> +<head> + <style> + body { + border: 0px; + margin: 0px; + padding: 0px; + } + img { + image-orientation: from-image; + border: 50px solid black; + margin: 50px; + padding: 50px; + } + </style> +</head> +<body> + <img id="image"> + + <script> + var orientationInfo = location.search.substring(1).split("&"); + var angle = orientationInfo[0]; + var flip = orientationInfo[1] == "flip" ? true : false; + + // Determine the final image file. 'none' is special-cased since its + // filename doesn't quite follow the same pattern as the others. + var imageFile; + if (angle == "none") { + imageFile = "image-exif-none.jpg"; + } else { + var imageFile = "image-exif-" + + angle + + "-deg" + + (flip ? "-flip" : "") + + ".jpg"; + } + + document.getElementById('image').src = imageFile; + </script> +</body> |