This commit is contained in:
Dante
2026-05-21 23:40:20 -07:00
parent 3e2915dff7
commit 877a69d844
5737 changed files with 29796 additions and 1589684 deletions

View File

@ -391,7 +391,6 @@ extern class DOMElement extends Node {
Inserts a given element node at a given position relative to the element it is invoked upon.
@throws DOMError
**/
@:pure
function insertAdjacentElement( where : String, element : Element ) : Element;
/**
@ -504,8 +503,8 @@ extern class DOMElement extends Node {
Asynchronously asks the browser to make the element full-screen.
@throws DOMError
**/
function requestFullscreen() : Void;
function requestFullscreen(?options: FullscreenOptions) : js.lib.Promise<Void>;
/**
Allows to asynchronously ask for the pointer to be locked on the given element.
**/
@ -550,4 +549,4 @@ extern class DOMElement extends Node {
/** @throws DOMError */
@:overload( function( nodes : haxe.extern.Rest<String>) : Void {} )
function append( nodes : haxe.extern.Rest<Node> ) : Void;
}
}