summaryrefslogtreecommitdiffstats
path: root/layout/reftests/backgrounds/background-size-percent-percent-stretch-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/backgrounds/background-size-percent-percent-stretch-ref.html')
-rw-r--r--layout/reftests/backgrounds/background-size-percent-percent-stretch-ref.html39
1 files changed, 39 insertions, 0 deletions
diff --git a/layout/reftests/backgrounds/background-size-percent-percent-stretch-ref.html b/layout/reftests/backgrounds/background-size-percent-percent-stretch-ref.html
new file mode 100644
index 0000000000..65c999d6d9
--- /dev/null
+++ b/layout/reftests/backgrounds/background-size-percent-percent-stretch-ref.html
@@ -0,0 +1,39 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title>background-size: 100% 100%; stretch reference</title>
+ <style type="text/css">
+#outer
+{
+ border: 10px solid black;
+ width: 60px;
+ height: 120px;
+}
+#inner1
+{
+ background: blue;
+ width: 15px;
+ height: 120px;
+ display: inline-block;
+ background-image: url(blue-16x20.png);
+
+ /* obscure sampling artifacts at the color boundary */
+ border-right: 5px solid black;
+}
+#inner2
+{
+ background: lime;
+ width: 35px;
+ height: 120px;
+ display: inline-block;
+ background-image: url(green-16x20.png);
+
+ /* obscure sampling artifacts at the color boundary */
+ border-left: 5px solid black;
+}
+ </style>
+</head>
+<body>
+<div id="outer"><div id="inner1"></div><div id="inner2"></div></div>
+</body>
+</html>