-
Notifications
You must be signed in to change notification settings - Fork 21
Description
It seems it doesn't match with this latest CR specification.
http://www.w3.org/TR/2012/CR-css3-images-20120417/
linear-gradient:
background-image:linear-gradient(left top,#9f9, white);
It should be
background-image:linear-gradient(to right bottom, #9f9, white);
repeating-linear-gradient:
it lacks 'background-image:' so it should be added.
radial-gradient:
background-image:radial-gradient(75% 50%, ellipse closest-side, #99ff99, #ffffff 50%);
It should be
background-image:radial-gradient(ellipse closest-side at 75% 50%, #99ff99, #ffffff 50%);
repeating-radial-gradient:
background-image:repeating-radial-gradient(75% 50%, ellipse closest-side, #99ff99, #ffffff 50%);
It should be
background-image:repeating-radial-gradient(ellipse closest-side at 75% 50%, #99ff99, #ffffff 50%);