blob: f6457f92684fe06d65321dce33633fadd306c435 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
<!DOCTYPE>
<head>
<style>
body {
border: 0px;
margin: 0px;
padding: 0px;
}
img {
width: 100px;
height: 200px;
}
</style>
</head>
<body>
<img src="image-orientation-no-viewbox-no-size.svg">
<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 orientationStyle;
if (angle == "from-image") {
orientationStyle = "image-orientation: from-image;";
} else {
orientationStyle = "image-orientation: "
+ angle + "deg"
+ (flip ? " flip" : "")
+ ";";
}
// Since the SVG image has no intrinsic size, we need to apply an
// appropriate size to the <img> element to match the reference.
var boxStyle;
if (angle == "90" || angle == "270") {
boxStyle = "width: 200px; height: 100px;";
} else {
boxStyle = "width: 100px; height: 200px;";
}
var style = "img { "
+ orientationStyle
+ " "
+ boxStyle
+ " }\n";
// Apply the style to the document.
var sheet = document.createElement('style');
sheet.innerHTML = style;
document.body.appendChild(sheet);
</script>
</body>
|