diff options
Diffstat (limited to 'layout/reftests/svg/mask-opacity-invalidation-1-ref.html')
-rw-r--r-- | layout/reftests/svg/mask-opacity-invalidation-1-ref.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/layout/reftests/svg/mask-opacity-invalidation-1-ref.html b/layout/reftests/svg/mask-opacity-invalidation-1-ref.html new file mode 100644 index 0000000000..b60ccca0a8 --- /dev/null +++ b/layout/reftests/svg/mask-opacity-invalidation-1-ref.html @@ -0,0 +1,27 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta http-equiv="content-type" content="text/html; charset=UTF-8"> + <title></title> + <style> + #mask { + clip-path: circle(50%); + width: 100px; + height: 100px; + opacity: 0.5; + } + + #content { + width: 100px; + height: 100px; + background-color: green; + } + </style> +</head> + +<body> + <div id="mask"> + <div id="content"></div> + </div> +</body> +</html> |