summaryrefslogtreecommitdiffstats
path: root/layout/reftests/image/image-orientation-border-image.html
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /layout/reftests/image/image-orientation-border-image.html
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-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-border-image.html')
-rw-r--r--layout/reftests/image/image-orientation-border-image.html46
1 files changed, 46 insertions, 0 deletions
diff --git a/layout/reftests/image/image-orientation-border-image.html b/layout/reftests/image/image-orientation-border-image.html
new file mode 100644
index 000000000..7d58b9af1
--- /dev/null
+++ b/layout/reftests/image/image-orientation-border-image.html
@@ -0,0 +1,46 @@
+<!DOCTYPE>
+<head>
+ <style>
+ body {
+ border: 0px;
+ margin: 0px;
+ padding: 0px;
+ }
+ div {
+ width: 100px;
+ height: 100px;
+ margin: 50px;
+
+ /* This is deliberately an image with a non-neutral inherent orientation to */
+ /* ensure that the inherent orientation is irrelevant. */
+ border-style: solid;
+ border-width: 20px;
+ border-image: url(image-exif-90-deg-flip.jpg) 27 repeat;
+ }
+ </style>
+</head>
+<body>
+ <div></div>
+
+ <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 = "div { image-orientation: from-image; }\n";
+ } else {
+ style = "div { 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>