summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/filters/css-filters/drop-shadow-negative-offset.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/svg/filters/css-filters/drop-shadow-negative-offset.html')
-rw-r--r--layout/reftests/svg/filters/css-filters/drop-shadow-negative-offset.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/layout/reftests/svg/filters/css-filters/drop-shadow-negative-offset.html b/layout/reftests/svg/filters/css-filters/drop-shadow-negative-offset.html
new file mode 100644
index 0000000000..79b301daba
--- /dev/null
+++ b/layout/reftests/svg/filters/css-filters/drop-shadow-negative-offset.html
@@ -0,0 +1,32 @@
+<!--
+ Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/
+-->
+<!DOCTYPE html>
+<html>
+<head>
+ <title>CSS Filters: Negative Drop Shadow Offset</title>
+ <link rel="author" title="Max Vujovic" href="mailto:mvujovic@adobe.com">
+ <link rel="help" href="http://www.w3.org/TR/filter-effects-1/#funcdef-drop-shadow">
+ <link rel="match" href="drop-shadow-negative-offset-ref.html">
+ <meta name="assert"
+ content="Given negative shadow offsets, the CSS drop-shadow filter
+ function should add a drop shadow extending from the top left
+ corner of an HTML element.">
+ <style type="text/css">
+ #target {
+ filter: drop-shadow(-10px -10px 3px #0f0);
+ background-color: #00f;
+ position: relative;
+ top: 20px;
+ left: 20px;
+ width: 100px;
+ height: 100px;
+ }
+ </style>
+</head>
+<body>
+ <p>You should see a blue square with a green drop shadow in its top left corner.</p>
+ <div id="target"></div>
+</body>
+</html>