diff options
Diffstat (limited to 'layout/reftests/css-gradients/repeated-final-stop-1-ref.html')
-rw-r--r-- | layout/reftests/css-gradients/repeated-final-stop-1-ref.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/layout/reftests/css-gradients/repeated-final-stop-1-ref.html b/layout/reftests/css-gradients/repeated-final-stop-1-ref.html new file mode 100644 index 000000000..be4f97dd7 --- /dev/null +++ b/layout/reftests/css-gradients/repeated-final-stop-1-ref.html @@ -0,0 +1,19 @@ +<!DOCTYPE HTML> +<html> +<head> +<style> +html { + background: white; +} +div { + background: -moz-linear-gradient(left, 0 white, 100% orange); + background: linear-gradient(left, 0 white, 100% orange); + height: 100px; + width: 50%; +} +</style> +</head> +<body> +<div></div> +</body> +</html> |