summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/filters/css-filters/hue-rotate-negative.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/svg/filters/css-filters/hue-rotate-negative.html')
-rw-r--r--layout/reftests/svg/filters/css-filters/hue-rotate-negative.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/layout/reftests/svg/filters/css-filters/hue-rotate-negative.html b/layout/reftests/svg/filters/css-filters/hue-rotate-negative.html
new file mode 100644
index 0000000000..97b84be5be
--- /dev/null
+++ b/layout/reftests/svg/filters/css-filters/hue-rotate-negative.html
@@ -0,0 +1,28 @@
+<!--
+ Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/
+-->
+<!DOCTYPE html>
+<html>
+<head>
+ <title>CSS Filters: Hue Rotate an HTML Element Using a Negative Angle</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-hue-rotate">
+ <link rel="match" href="hue-rotate-negative-ref.html">
+ <meta name="assert"
+ content="Given a negative angle, the CSS hue-rotate filter function
+ should change the color of an HTML element.">
+ <style type="text/css">
+ #target {
+ filter: hue-rotate(-270deg); /* Equivalent to 90deg. */
+ background-color: #f00;
+ width: 100px;
+ height: 100px;
+ }
+ </style>
+</head>
+<body>
+ <p>You should see a green square.</p>
+ <div id="target"></div>
+</body>
+</html>