mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-21 15:57:31 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
40
layout/reftests/image/image-orientation-from-image.html
Normal file
40
layout/reftests/image/image-orientation-from-image.html
Normal file
|
|
@ -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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue