Added CanvasGradient.addColorStop method.

This commit is contained in:
Steve Hannah 2015-05-14 12:47:57 -07:00
parent e8df0a86de
commit 66d5c7269d

View File

@ -22,4 +22,14 @@ import org.teavm.jso.JSObject;
* @author Alexey Andreev * @author Alexey Andreev
*/ */
public interface CanvasGradient extends JSObject { public interface CanvasGradient extends JSObject {
/**
* The CanvasGradient.addColorStop() method adds a new stop, defined by an
* offset and a color, to the gradient. If the offset is not between 0 and 1,
* an INDEX_SIZE_ERR is raised, if the color can't be parsed as a CSS color,
* a SYNTAX_ERR is raised.
* @param offset Offset between 0 and 1
* @param color A CSS parseable color.
*/
void addColorStop(double offset, String color);
} }