diff options
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/bugs/634232-1-ref.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/layout/reftests/bugs/634232-1-ref.html b/layout/reftests/bugs/634232-1-ref.html new file mode 100644 index 0000000000..b3acc12cf4 --- /dev/null +++ b/layout/reftests/bugs/634232-1-ref.html @@ -0,0 +1,30 @@ +<!DOCTYPE HTML> +<html> +<head> +<style> + .wackeddiv { + position: absolute; + left: 20px; + top: 20px; + width: 50px; + height: 50px; + border: 2px solid highlight; + background-color: transparent; + } + + .posabssemitransparentblack { + position:absolute; + left: 0px; + top: 50px; + width: 100px; + height: 100px; + background: lime; + opacity: 0.1; + } +</style> +</head> +<body> + <div class="posabssemitransparentblack"></div> + <div class="wackeddiv"></div> +</body> +</html> |