mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-22 16:14:10 -08:00
Merge pull request #117 from shannah/added_jso_methods
Added CanvasGradient.addColorStop method.
This commit is contained in:
commit
d90ab9a71e
|
@ -22,4 +22,14 @@ import org.teavm.jso.JSObject;
|
|||
* @author Alexey Andreev
|
||||
*/
|
||||
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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user