summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-images/image-orientation/image-orientation-background-properties.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-images/image-orientation/image-orientation-background-properties.html')
-rw-r--r--testing/web-platform/tests/css/css-images/image-orientation/image-orientation-background-properties.html54
1 files changed, 54 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-images/image-orientation/image-orientation-background-properties.html b/testing/web-platform/tests/css/css-images/image-orientation/image-orientation-background-properties.html
new file mode 100644
index 0000000000..431fba1330
--- /dev/null
+++ b/testing/web-platform/tests/css/css-images/image-orientation/image-orientation-background-properties.html
@@ -0,0 +1,54 @@
+<!DOCTYPE html>
+<html>
+<head>
+<meta charset="utf-8">
+<title>CSS Images Module Level 3: image-orientation with background properties</title>
+<link rel="author" title="Stephen Chenney" href="mailto:schenney@chromium.org">
+<link rel="help" href="https://drafts.csswg.org/css-images-3/#propdef-image-orientation">
+<link rel="match" href="reference/image-orientation-background-properties-ref.html">
+<meta name="fuzzy" content="maxDifference=0-100; totalPixels=0-313">
+<style>
+ div {
+ position: absolute;
+ width: 200px;
+ height: 200PX;
+ background-image: url(support/exif-orientation-5-lu.jpg);
+ background-repeat: no-repeat;
+ }
+
+ .repeat {
+ background-repeat: repeat;
+ top: 20px;
+ left: 20px;
+ }
+
+ .position {
+ background-position: bottom right;
+ top: 20px;
+ left: 240px;
+ }
+
+ .cover {
+ background-size: cover;
+ top: 240px;
+ left: 20px;
+ }
+
+ .contain {
+ background-size: contain;
+ top: 240px;
+ left: 240px;
+ }
+</style>
+</head>
+<body>
+ <div class="repeat">
+ </div>
+ <div class="position">
+ </div>
+ <div class="cover">
+ </div>
+ <div class="contain">
+ </div>
+</body>
+</html>