@@ -1089,6 +1089,9 @@ CanvasRenderingContext2D[JC] def createRadialGradient(x0: Double, y0: Double, r0
1089
1089
CanvasRenderingContext2D[JC] def drawImage(image: HTMLElement, offsetX: Double, offsetY: Double, width: Double?, height: Double?, canvasOffsetX: Double?, canvasOffsetY: Double?, canvasImageWidth: Double?, canvasImageHeight: Double?): Unit
1090
1090
CanvasRenderingContext2D[JC] def ellipse(x: Double, y: Double, radiusX: Double, radiusY: Double, rotation: Double, startAngle: Double, endAngle: Double, anticlockwise: Boolean?): Unit
1091
1091
CanvasRenderingContext2D[JC] def fill(): Unit
1092
+ CanvasRenderingContext2D[JC] def fill(fillRule: String): Unit
1093
+ CanvasRenderingContext2D[JC] def fill(path: Path2D): Unit
1094
+ CanvasRenderingContext2D[JC] def fill(path: Path2D, fillRule: String): Unit
1092
1095
CanvasRenderingContext2D[JC] def fillRect(x: Double, y: Double, w: Double, h: Double): Unit
1093
1096
CanvasRenderingContext2D[JC] var fillStyle: js.Any
1094
1097
CanvasRenderingContext2D[JC] def fillText(text: String, x: Double, y: Double, maxWidth: Double?): Unit
@@ -1122,6 +1125,7 @@ CanvasRenderingContext2D[JC] var shadowColor: String
1122
1125
CanvasRenderingContext2D[JC] var shadowOffsetX: Double
1123
1126
CanvasRenderingContext2D[JC] var shadowOffsetY: Double
1124
1127
CanvasRenderingContext2D[JC] def stroke(): Unit
1128
+ CanvasRenderingContext2D[JC] def stroke(path: Path2D): Unit
1125
1129
CanvasRenderingContext2D[JC] def strokeRect(x: Double, y: Double, w: Double, h: Double): Unit
1126
1130
CanvasRenderingContext2D[JC] var strokeStyle: js.Any
1127
1131
CanvasRenderingContext2D[JC] def strokeText(text: String, x: Double, y: Double, maxWidth: Double?): Unit
@@ -16627,6 +16631,17 @@ ParentNode[JT] def children: HTMLCollection[Element]
16627
16631
ParentNode[JT] def firstElementChild: Element
16628
16632
ParentNode[JT] def lastElementChild: Element
16629
16633
ParentNode[JT] def replaceChildren(nodes: Node | String*): Unit
16634
+ Path2D[JC] def addPath(path: Path2D): Unit
16635
+ Path2D[JC] def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double): Unit
16636
+ Path2D[JC] def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double, anticlockwise: Boolean): Unit
16637
+ Path2D[JC] def arcTo(x1: Double, y1: Double, x2: Double, y2: Double, radius: Double): Unit
16638
+ Path2D[JC] def bezierCurveTo(cp1x: Double, cp1y: Double, cp2x: Double, cp2y: Double, x: Double, y: Double): Unit
16639
+ Path2D[JC] def closePath(): Unit
16640
+ Path2D[JC] def ellipse(x: Double, y: Double, radiusX: Double, radiusY: Double, rotation: Double, startAngle: Double, endAngle: Double, anticlockwise: Boolean?): Unit
16641
+ Path2D[JC] def lineTo(x: Double, y: Double): Unit
16642
+ Path2D[JC] def moveTo(x: Double, y: Double): Unit
16643
+ Path2D[JC] def quadraticCurveTo(cpx: Double, cpy: Double, x: Double, y: Double): Unit
16644
+ Path2D[JC] def rect(x: Double, y: Double, w: Double, h: Double): Unit
16630
16645
Pbkdf2Params[JT] val hash: HashAlgorithmIdentifier
16631
16646
Pbkdf2Params[JT] val iterations: Double
16632
16647
Pbkdf2Params[JT] val name: String
0 commit comments