Rearrange kotlin-stdlib-js library sources
Move kotlin.* api inside kotlin directory. Update copyright paths.
This commit is contained in:
committed by
Stanislav Erokhin
parent
57e47d1830
commit
00b23a0fe9
@@ -0,0 +1,22 @@
|
||||
namespace org.w3c.fullscreen;
|
||||
|
||||
|
||||
// Downloaded from https://raw.githubusercontent.com/whatwg/fullscreen/master/fullscreen.html
|
||||
partial interface Element {
|
||||
Promise<void> requestFullscreen();
|
||||
};
|
||||
|
||||
partial interface Document {
|
||||
[LenientSetter] readonly attribute boolean fullscreenEnabled;
|
||||
[LenientSetter] readonly attribute boolean fullscreen; // historical
|
||||
|
||||
Promise<void> exitFullscreen();
|
||||
|
||||
attribute EventHandler onfullscreenchange;
|
||||
attribute EventHandler onfullscreenerror;
|
||||
};
|
||||
|
||||
partial interface DocumentOrShadowRoot {
|
||||
[LenientSetter] readonly attribute Element? fullscreenElement;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user