summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/filters/css-filters/sepia.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/svg/filters/css-filters/sepia.html')
-rw-r--r--layout/reftests/svg/filters/css-filters/sepia.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/layout/reftests/svg/filters/css-filters/sepia.html b/layout/reftests/svg/filters/css-filters/sepia.html
new file mode 100644
index 0000000000..4af24919fa
--- /dev/null
+++ b/layout/reftests/svg/filters/css-filters/sepia.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: Apply sepia to an HTML Element</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-sepia">
+ <link rel="match" href="sepia-ref.html">
+ <meta name="assert"
+ content="The CSS sepia filter function should change the color of an
+ HTML element to a more brownish hue.">
+ <style type="text/css">
+ #target {
+ filter: sepia(0.85);
+ background-color: #0f0;
+ width: 100px;
+ height: 100px;
+ }
+ </style>
+</head>
+<body>
+ <p>You should see a brownish green square.</p>
+ <div id="target"></div>
+</body>
+</html>