summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/svg-integration/filter-html-dynamic-01.xhtml
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/svg/svg-integration/filter-html-dynamic-01.xhtml')
-rw-r--r--layout/reftests/svg/svg-integration/filter-html-dynamic-01.xhtml35
1 files changed, 35 insertions, 0 deletions
diff --git a/layout/reftests/svg/svg-integration/filter-html-dynamic-01.xhtml b/layout/reftests/svg/svg-integration/filter-html-dynamic-01.xhtml
new file mode 100644
index 0000000000..7a6a4ab07c
--- /dev/null
+++ b/layout/reftests/svg/svg-integration/filter-html-dynamic-01.xhtml
@@ -0,0 +1,35 @@
+<!--
+ Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/
+-->
+<html xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:svg="http://www.w3.org/2000/svg">
+<head>
+<style>
+ div{
+ left: 10px;
+ top: 10px;
+ position: absolute;
+ width : 100px;
+ height : 100px;
+ margin : 10px;
+ background : red;
+ filter:url(#flood);
+ }
+</style>
+</head>
+<body style="margin:0">
+<script>
+ window.addEventListener('load',function(e){
+ var div = document.createElement('div');
+ document.body.appendChild(div);
+ },false);
+</script>
+
+<svg:svg width="0" height="0">
+ <svg:filter id="flood" x="0" y="0" width="100%" height="100%" filterUnits="userSpaceOnUse">
+ <svg:feFlood flood-color="lime"/>
+ </svg:filter>
+</svg:svg>
+</body>
+</html> \ No newline at end of file