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