aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/css-tests/css-transforms-1_dev/html/reference/background-attachment-fixed-inside-transform-1-ref.htm
diff options
context:
space:
mode:
authorMs2ger <Ms2ger@gmail.com>2017-02-06 11:06:12 +0100
committerMs2ger <Ms2ger@gmail.com>2017-02-06 22:38:29 +0100
commit296fa2512ba2fbc8f1d6b7e82e30ad3b5d2a9a20 (patch)
tree95ac50cd05fa8a22d1c0fa12016ee0d2012a165c /tests/wpt/css-tests/css-transforms-1_dev/html/reference/background-attachment-fixed-inside-transform-1-ref.htm
parentfb4f421c8b9cbf80a86c9c5eb88395d7008b27a1 (diff)
downloadservo-296fa2512ba2fbc8f1d6b7e82e30ad3b5d2a9a20.tar.gz
servo-296fa2512ba2fbc8f1d6b7e82e30ad3b5d2a9a20.zip
Update web-platform-tests and CSS tests.
- Update CSS tests to revision e05bfd5e30ed662c2f8a353577003f8eed230180. - Update web-platform-tests to revision a052787dd5c069a340031011196b73affbd68cd9.
Diffstat (limited to 'tests/wpt/css-tests/css-transforms-1_dev/html/reference/background-attachment-fixed-inside-transform-1-ref.htm')
-rw-r--r--tests/wpt/css-tests/css-transforms-1_dev/html/reference/background-attachment-fixed-inside-transform-1-ref.htm39
1 files changed, 39 insertions, 0 deletions
diff --git a/tests/wpt/css-tests/css-transforms-1_dev/html/reference/background-attachment-fixed-inside-transform-1-ref.htm b/tests/wpt/css-tests/css-transforms-1_dev/html/reference/background-attachment-fixed-inside-transform-1-ref.htm
new file mode 100644
index 00000000000..4142cebf332
--- /dev/null
+++ b/tests/wpt/css-tests/css-transforms-1_dev/html/reference/background-attachment-fixed-inside-transform-1-ref.htm
@@ -0,0 +1,39 @@
+<!DOCTYPE html>
+<html><head>
+ <meta charset="utf-8">
+ <title>CSS Background: background-attachment: background-attachment:fixed inside a transform</title>
+ <link href="mailto:botond@mozilla.com" rel="author" title="Botond Ballo">
+ <link href="https://www.mozilla.org" rel="author" title="Mozilla">
+ <style type="text/css">
+ body {
+ height: 4000px;
+ margin: 0;
+ }
+
+ #outer {
+ margin: 200px;
+ height: 700px;
+ width: 300px;
+ transform: rotate(45deg);
+ overflow: hidden;
+ }
+
+ #inner {
+ height: 700px;
+ background-image: radial-gradient(farthest-corner at center, blue, black);
+ background-size: 300px 300px;
+ background-position: 200px 200px;
+ background-color: lime;
+ background-repeat: no-repeat;
+ background-attachment: scroll;
+ }
+ </style>
+ </head>
+ <body>
+ <div id="outer">
+ <div id="inner">
+ </div>
+ </div>
+
+
+</body></html> \ No newline at end of file