File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
src/main/scala/org/scalajs/dom Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -2577,7 +2577,7 @@ class Document extends Node with NodeSelector with DocumentEvent with ParentNode
2577
2577
*
2578
2578
* MDN
2579
2579
*/
2580
- def elementFromPoint (x : Int , y : Int ): Element = ???
2580
+ def elementFromPoint (x : Double , y : Double ): Element = ???
2581
2581
2582
2582
/**
2583
2583
* Adopts a node from an external document. The node and its subtree is removed from the
@@ -3213,21 +3213,21 @@ class Screen extends js.Object {
3213
3213
*
3214
3214
* MDN
3215
3215
*/
3216
- def width : Int = ???
3216
+ def width : Double = ???
3217
3217
3218
3218
/**
3219
3219
* Returns the amount of vertical space available to the window on the screen.
3220
3220
*
3221
3221
* MDN
3222
3222
*/
3223
- def availHeight : Int = ???
3223
+ def availHeight : Double = ???
3224
3224
3225
3225
/**
3226
3226
* Returns the height of the screen in pixels.
3227
3227
*
3228
3228
* MDN
3229
3229
*/
3230
- def height : Int = ???
3230
+ def height : Double = ???
3231
3231
3232
3232
/**
3233
3233
* Returns the color depth of the screen.
@@ -3241,7 +3241,7 @@ class Screen extends js.Object {
3241
3241
*
3242
3242
* MDN
3243
3243
*/
3244
- def availWidth : Int = ???
3244
+ def availWidth : Double = ???
3245
3245
3246
3246
/**
3247
3247
* Returns the bit depth of the screen.
You can’t perform that action at this time.
0 commit comments