diff --git a/.gitignore b/.gitignore index 0e47102f4..d47cc1a72 100644 --- a/.gitignore +++ b/.gitignore @@ -278,15 +278,6 @@ __pycache__/ # tools/** # !tools/packages.config -# Telerik's JustMock configuration file -*.jmconfig - -# BizTalk build output -*.btp.cs -*.btm.cs -*.odx.cs -*.xsd.cs - -.paket/ -.fake/ -generated/ \ No newline at end of file +generated/ +lib/ +inputfiles/browser.webidl.json \ No newline at end of file diff --git a/.travis.yml b/.travis.yml index 1382edc22..f30f44d46 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,10 @@ -language: csharp -mono: - - latest +language: node_js -script: - - ./build.sh +node_js: + - 'stable' + +sudo: false + +install: + - npm uninstall typescript --no-save + - npm install \ No newline at end of file diff --git a/README.md b/README.md index 288cb43c1..678abaab7 100644 --- a/README.md +++ b/README.md @@ -4,14 +4,27 @@ AppVeyor Status: [![Build status](https://ci.appveyor.com/api/projects/status/8o Travis CI Status: [![Build Status](https://travis-ci.org/Microsoft/TSJS-lib-generator.svg?branch=master)](https://travis-ci.org/Microsoft/TSJS-lib-generator) This tool is used to generate `dom.generated.d.ts`, `webworker.generated.d.ts` and `dom.es6.generated.d.ts` for TypeScript. -The input file is the XML spec file generated by the Microsoft Edge browser. +The input file is the JSON webidl file generated by the Microsoft Edge browser. ## Build Instructions -To build the tool, simply clone this repo, and run `build.cmd` (Windows) or `build.sh` (OS X/Unix) on the command line. -If it runs successfully, the output files will be generated under the `generated` folder. +To get things setup: -Note: for OS X and Unix users, [Mono 4.2 or higher](http://www.mono-project.com/download/) is required. +```sh +npm install +``` + +To generate the .d.ts files + +```sh +npm run build +``` + +To test: + +```sh +npm run test +``` ## Contribution Guidelines @@ -22,7 +35,7 @@ In order to make the tests pass, please update the baseline as well in any pull For common changes, it is sufficient to change the json files. There are three json files that are typically used to alter the type generation: `addedTypes.json`, `overridingTypes.json`, and `removedTypes.json`. `comments.json` can used to add comments to the types. -Finally, `knownWorkerEnums` and `knownWorkerInterfaces` determine which types are available in a WebWorker environment. +Finally, `knownWorkerTypes.json` determine which types are available in a WebWorker environment. The format of each file can be inferred from their existing content. @@ -53,16 +66,15 @@ A "Living Standard" ([example](https://xhr.spec.whatwg.org/)) should be added he ## Code Structure -- `Build.fsx`: Runs `TS.fsx` for all targets, then does a snapshot test by comparing the `generated/` and `baseline/` contents. -- `TS.fsx`: handles the emitting of the `.d.ts` files. +- `src/index.ts`: handles the emitting of the `.d.ts` files. +- `src/test.ts`: verifies the otuput by comparing the `generated/` and `baseline/` contents. + ## Input Files -- `browser.webidl.xml`: an XML spec file generated by Microsoft Edge. **Do not edit this file**. +- `browser.webidl.preprocessed.json`: a JSON file generated by Microsoft Edge. **Do not edit this file**. - Due to the different update schedules between Edge and TypeScript, this may not be the most up-to-date version of the spec. -- `webworker.webidl.xml`: an XML spec file generated by Microsoft Edge that contains types for Web Workers. **Do not edit this file**. -- `addedTypes.json`: types that should exist in either browser or webworker but are missing from the Edge spec. The type can be `property`, `method`, `interface`, `constructor`, or `indexer`. +- `addedTypes.json`: types that should exist in either browser or webworker but are missing from the Edge spec. The format of the file mimics that of `browser.webidl.preprocessed.json`. - `overridingTypes.json`: types that are defined in the spec file but has a better or more up-to-date definitions in the json files. - `removedTypes.json`: types that are defined in the spec file but should be removed. - `comments.json`: comment strings to be embedded in the generated .js files. -- `sample.json`: sample json file used to tell F# json type provider that structure of the json files. The content of it is not used anywhere. **Do not edit this file**. diff --git a/TS.fsx b/TS.fsx deleted file mode 100644 index c441a894f..000000000 --- a/TS.fsx +++ /dev/null @@ -1,1650 +0,0 @@ -#r "packages/FSharp.Data/lib/net40/FSharp.Data.dll" -#r "System.Xml.Linq.dll" - -open System -open System.Collections.Generic -open System.IO -open System.Text -open System.Text.RegularExpressions -open Microsoft.FSharp.Reflection -open FSharp.Data - -module GlobalVars = - let inputFolder = Path.Combine(__SOURCE_DIRECTORY__, "inputfiles") - let outputFolder = Path.Combine(__SOURCE_DIRECTORY__, "generated") - - // Create output folder - if not (Directory.Exists(outputFolder)) then - Directory.CreateDirectory(outputFolder) |> ignore - - let makeTextWriter fileName = File.CreateText(Path.Combine(outputFolder, fileName)) :> TextWriter - let tsWebOutput = makeTextWriter "dom.generated.d.ts" - let tsWebES6Output = makeTextWriter "dom.es6.generated.d.ts" - let tsWorkerOutput = makeTextWriter "webworker.generated.d.ts" - let defaultEventType = "Event" - -module Helpers = - /// Quick checker for option type values - let OptionCheckValue value = function - | Some v when v = value -> true - | _ -> false - - let unionToString (x: 'a) = - match FSharpValue.GetUnionFields(x, typeof<'a>) with - | case, _ -> case.Name - - module Option = - let runIfSome f x = - match x with - | Some x' -> f x' - | _ -> () - - let toBool f x = - match x with - | Some x' -> f x' - | _ -> false - - type String with - member this.TrimStartString str = - if this.StartsWith(str) then this.Substring(str.Length) - else this - -module Types = - open Helpers - - type Flavor = Worker | Web | All with - override x.ToString() = unionToString x - - type Browser = XmlProvider<"sample.xml", Global=true> - - // Printer for print to string - type StringPrinter() = - let output = StringBuilder() - let stack = StringBuilder() - let mutable curTabCount = 0 - member __.GetCurIndent() = String.replicate curTabCount " " - - member __.Print content = Printf.kprintf (output.Append >> ignore) content - - member __.PrintToStack content = Printf.kprintf (stack.Append >> ignore) content - - member __.ClearStack () = stack.Clear() |> ignore - - member this.PrintStackContent () = this.Print "%s" (stack.ToString()) - - member this.Printl content = - Printf.kprintf (fun s -> output.Append("\r\n" + this.GetCurIndent() + s) |> ignore) content - - member this.PrintlToStack content = - Printf.kprintf (fun s -> stack.Append("\r\n" + this.GetCurIndent() + s) |> ignore) content - - member __.StackIsEmpty () = stack.Length = 0 - - member __.IncreaseIndent() = curTabCount <- curTabCount + 1 - - member __.SetIndent indentNum = curTabCount <- indentNum - - member __.DecreaseIndent() = curTabCount <- Math.Max(curTabCount - 1, 0) - - member __.ResetIndent() = curTabCount <- 0 - - member this.PrintWithAddedIndent content = - Printf.kprintf (fun s -> output.Append("\r\n" + this.GetCurIndent() + " " + s) |> ignore) content - - member __.GetResult() = output.ToString() - - member __.Clear() = output.Clear() |> ignore - - member this.Reset() = - this.Clear() - this.ResetIndent() - - type Event = { Name : string; Type : string } - - /// Method parameter - type Param = { - Type : string - Name : string - Optional : bool - Variadic : bool - Nullable : bool } - - /// Function overload - type Overload = { ParamCombinations : Param list; ReturnTypes : string list; Nullable : Boolean } with - member this.IsEmpty = this.ParamCombinations.IsEmpty && (this.ReturnTypes = [ "void" ] || this.ReturnTypes = [ "" ]) - - type Function = - | Method of Browser.Method - | Ctor of Browser.Constructor - | CallBackFun of Browser.CallbackFunction - - // Note: - // Eventhandler's name and the eventName are not just off by "on". - // For example, handlers named "onabort" may handle "SVGAbort" event in the XML file - type EventHandler = { Name : string; EventName : string; EventType : string } - - /// Decide which members of a function to emit - type EmitScope = - | StaticOnly - | InstanceOnly - | All - - type ExtendConflict = { BaseType: string; ExtendType: string list; MemberNames: string list } - -module InputJson = - open Helpers - open Types - - type InputJsonType = JsonProvider<"inputfiles/sample.json"> - - let overriddenItems = - File.ReadAllText(GlobalVars.inputFolder + @"/overridingTypes.json") |> InputJsonType.Parse - - let removedItems = - File.ReadAllText(GlobalVars.inputFolder + @"/removedTypes.json") |> InputJsonType.Parse - - let addedItems = - File.ReadAllText(GlobalVars.inputFolder + @"/addedTypes.json") |> InputJsonType.Parse - - // This is the kind of items in the external json files that are used as a - // correction for the spec. - type ItemKind = - | Property - | Method - | Constant - | Constructor - | Interface - | Callback - | Indexer - | SignatureOverload - | TypeDef - | Extends - override x.ToString() = - match x with - | Property _ -> "property" - | Method _ -> "method" - | Constant _ -> "constant" - | Constructor _ -> "constructor" - | Interface _ -> "interface" - | Callback _ -> "callback" - | Indexer _ -> "indexer" - | SignatureOverload _ -> "signatureoverload" - | TypeDef _ -> "typedef" - | Extends _ -> "extends" - - let getItemByName (allItems: InputJsonType.Root []) (itemName: string) (kind: ItemKind) otherFilter = - let filter (item: InputJsonType.Root) = - (OptionCheckValue itemName item.Name || OptionCheckValue (sprintf "%s?" itemName) item.Name) && - item.Kind.ToLower() = kind.ToString() && - otherFilter item - allItems |> Array.tryFind filter - - let matchInterface iName (item: InputJsonType.Root) = - item.Interface.IsNone || item.Interface.Value = iName - - let getOverriddenItemByName itemName (kind: ItemKind) iName = - getItemByName overriddenItems itemName kind (matchInterface iName) - - let getRemovedItemByName itemName (kind: ItemKind) iName = - getItemByName removedItems itemName kind (matchInterface iName) - - let getAddedItemByName itemName (kind: ItemKind) iName = - getItemByName addedItems itemName kind (matchInterface iName) - - let getItems (allItems: InputJsonType.Root []) (kind: ItemKind) (flavor: Flavor) = - allItems - |> Array.filter (fun t -> - t.Kind.ToLower() = kind.ToString() && - (t.Flavor.IsNone || t.Flavor.Value = flavor.ToString() || t.Flavor.Value = Flavor.All.ToString() || flavor = Flavor.All)) - - let getOverriddenItems = getItems overriddenItems - - let getAddedItems = getItems addedItems - - let getRemovedItems = getItems removedItems - - let getAddedItemsByInterfaceName kind flavor iName = - getAddedItems kind flavor |> Array.filter (matchInterface iName) - - let getOverriddenItemsByInterfaceName kind flavor iName = - getOverriddenItems kind flavor |> Array.filter (matchInterface iName) - - let getRemovedItemsByInterfaceName kind flavor iName = - getRemovedItems kind flavor |> Array.filter (matchInterface iName) - -module CommentJson = - type CommentJsonType = JsonProvider<"inputfiles/comments.json", InferTypesFromValues=false> - - let comments = File.ReadAllText(Path.Combine(GlobalVars.inputFolder, "comments.json")) |> CommentJsonType.Parse - - type InterfaceCommentItem = { Property: Map; Method: Map; Constructor: string option } - - let commentMap = - comments.Interfaces - |> Array.map (fun i -> - let propertyMap = i.Members.Property |> Array.map (fun p -> (p.Name, p.Comment)) |> Map.ofArray - let methodMap = i.Members.Method |> Array.map (fun m -> (m.Name, m.Comment)) |> Map.ofArray - (i.Name, { Property = propertyMap; Method = methodMap; Constructor = i.Members.Constructor })) - |> Map.ofArray - - let GetCommentForProperty iName pName = - match commentMap.TryFind iName with - | Some i -> i.Property.TryFind pName - | _ -> None - - let GetCommentForMethod iName mName = - match commentMap.TryFind iName with - | Some i -> i.Method.TryFind mName - | _ -> None - - let GetCommentForConstructor iName = - match commentMap.TryFind iName with - | Some i -> i.Constructor - | _ -> None - -module Data = - open Types - - // Used to decide if a member should be emitted given its static property and - // the intended scope level. - let inline matchScope scope (x: ^a when ^a: (member Static: Option<'b>)) = - if scope = EmitScope.All then true - else - let isStatic = (^a: (member Static: Option<'b>)x) - if isStatic.IsSome then scope = EmitScope.StaticOnly - else scope = EmitScope.InstanceOnly - - let matchInterface iName (x: InputJson.InputJsonType.Root) = - x.Interface.IsNone || x.Interface.Value = iName - - /// Parameter cannot be named "default" in JavaScript/Typescript so we need to rename it. - let AdjustParamName name = - match name with - | "default" -> "_default" - | "delete" -> "_delete" - | "continue" -> "_continue" - | _ -> name - - /// Parse the xml input file - let browser = - (new StreamReader(Path.Combine(GlobalVars.inputFolder, "browser.webidl.xml"))).ReadToEnd() |> Browser.Parse - - let worker = - (new StreamReader(Path.Combine(GlobalVars.inputFolder, "webworkers.specidl.xml"))).ReadToEnd() |> Browser.Parse - - /// Check if the given element should be disabled or not - /// reason is that ^a can be an interface, property or method, but they - /// all share a 'tag' property - let inline ShouldKeep flavor (i: ^a when ^a: (member Tags: string option)) = - let filterByTag = - match (^a: (member Tags: string option) i) with - | Some tags -> - match flavor with - | Flavor.All -> true - //| Flavor.Web -> tags <> "MSAppOnly" && tags <> "WinPhoneOnly" - | Flavor.Worker -> tags <> "IEOnly" - | _ -> true - | _ -> true - filterByTag - - // Global interfacename to interface object map - let allWebNonCallbackInterfaces = - Array.concat [| browser.Interfaces; browser.MixinInterfaces.Interfaces |] - - let allWebInterfaces = - Array.concat [| browser.Interfaces; browser.CallbackInterfaces.Interfaces; browser.MixinInterfaces.Interfaces |] - - let allWorkerAdditionalInterfaces = - Array.concat [| worker.Interfaces; worker.MixinInterfaces.Interfaces |] - - let allInterfaces = - Array.concat [| allWebInterfaces; allWorkerAdditionalInterfaces |] - - let inline toNameMap< ^a when ^a: (member Name: string) > (data: array< ^a > ) = - data - |> Array.map (fun x -> ((^a: (member Name: string) x), x)) - |> Map.ofArray - - let allInterfacesMap = - allInterfaces |> toNameMap - - let allDictionariesMap = - Array.concat [| browser.Dictionaries; worker.Dictionaries |] - |> toNameMap - - let allEnumsMap = - Array.concat [| browser.Enums; worker.Enums |] - |> toNameMap - - let allCallbackFuncs = - Array.concat [| browser.CallbackFunctions; worker.CallbackFunctions |] - |> toNameMap - - let GetInterfaceByName = allInterfacesMap.TryFind - - type KnownWorkerInterfaceType = JsonProvider<"inputfiles/knownWorkerInterfaces.json", InferTypesFromValues=false> - let knownWorkerInterfaces = - File.ReadAllText(Path.Combine(GlobalVars.inputFolder, "knownWorkerInterfaces.json")) - |> KnownWorkerInterfaceType.Parse - |> set - - let knownWorkerEnums = - File.ReadAllText(Path.Combine(GlobalVars.inputFolder, "knownWorkerEnums.json")) - |> KnownWorkerInterfaceType.Parse - |> set - - let GetAllInterfacesByFlavor flavor = - match flavor with - | Flavor.Web -> allWebInterfaces |> Array.filter (ShouldKeep Web) - | Flavor.All -> allWebInterfaces |> Array.filter (ShouldKeep Flavor.All) - | Flavor.Worker -> - let isFromBrowserXml = allWebInterfaces |> Array.filter (fun i -> knownWorkerInterfaces.Contains i.Name) - Array.append isFromBrowserXml allWorkerAdditionalInterfaces - - let GetNonCallbackInterfacesByFlavor flavor = - match flavor with - | Flavor.Web -> allWebNonCallbackInterfaces |> Array.filter (ShouldKeep Flavor.Web) - | Flavor.All -> allWebNonCallbackInterfaces |> Array.filter (ShouldKeep Flavor.All) - | Flavor.Worker -> - let isFromBrowserXml = allWebNonCallbackInterfaces |> Array.filter (fun i -> knownWorkerInterfaces.Contains i.Name) - Array.append isFromBrowserXml allWorkerAdditionalInterfaces - - let GetPublicInterfacesByFlavor flavor = - match flavor with - | Flavor.Web | Flavor.All -> browser.Interfaces |> Array.filter (ShouldKeep flavor) - | Flavor.Worker -> - let isFromBrowserXml = browser.Interfaces |> Array.filter (fun i -> knownWorkerInterfaces.Contains i.Name) - Array.append isFromBrowserXml worker.Interfaces - - let GetCallbackFuncsByFlavor flavor = - browser.CallbackFunctions - |> Array.filter (fun cb -> (flavor <> Flavor.Worker || knownWorkerInterfaces.Contains cb.Name) && ShouldKeep flavor cb) - - let GetEnumsByFlavor flavor = - match flavor with - | Flavor.Web | Flavor.All -> browser.Enums - | Flavor.Worker -> - let isFromBrowserXml = browser.Enums |> Array.filter (fun i -> knownWorkerEnums.Contains i.Name) - Array.append isFromBrowserXml worker.Enums - - /// Event name to event type map - let eNameToEType = - [ for i in allWebNonCallbackInterfaces do - if i.Events.IsSome then yield! i.Events.Value.Events ] - |> List.map (fun (e : Browser.Event) -> - let eType = - match e.Name with - | "abort" -> "UIEvent" - | "complete" -> "Event" - | "click" -> "MouseEvent" - | "error" -> "ErrorEvent" - | "load" -> "Event" - | "loadstart" -> "Event" - | "progress" -> "ProgressEvent" - | "readystatechange" -> "ProgressEvent" - | "resize" -> "UIEvent" - | "timeout" -> "ProgressEvent" - | _ -> e.Type - (e.Name, eType)) - |> Map.ofList - - let getEventTypeInInterface eName (i: Browser.Interface) = - match i.Name, eName with - | "IDBDatabase", "abort" - | "IDBTransaction", "abort" - | "MSBaseReader", "abort" - | "XMLHttpRequestEventTarget", "abort" - -> "Event" - | "XMLHttpRequest", "readystatechange" - -> "Event" - | "XMLHttpRequest", _ - -> "ProgressEvent" - | _ -> - let ownEventType = - if i.Events.IsSome then - match i.Events.Value.Events |> Array.tryFind (fun e -> e.Name = eName) with - | Some e -> e.Type - | _ -> "" - else - "" - if ownEventType = "" then - match eNameToEType.TryFind eName with - | Some eType' -> eType' - | _ -> "Event" - else - ownEventType - - /// Tag name to element name map - let tagNameToEleName = - let preferedElementMap = - function - | "script" -> "HTMLScriptElement" - | "a" -> "HTMLAnchorElement" - | "title" -> "HTMLTitleElement" - | "style" -> "HTMLStyleElement" - | _ -> "" - - let resolveElementConflict tagName (iNames : seq) = - match preferedElementMap tagName with - | name when Seq.contains name iNames -> name - | _ -> raise (Exception("Element conflict occured! Typename: " + tagName)) - - let nativeTagNamesToInterface = - [ for i in GetNonCallbackInterfacesByFlavor Flavor.All do - yield! [ for e in i.Elements do - yield (e.Name, i.Name) ] ] - - let addedTagNamesToInterface = - [ for i in InputJson.getAddedItems InputJson.ItemKind.Interface Flavor.All - |> Array.filter (fun i -> Seq.length i.TagNames > 0) do - yield! [ for e in i.TagNames do - match i.Name with - | Some name -> yield (e, name) - | _ -> () ] ] - - nativeTagNamesToInterface @ addedTagNamesToInterface - |> Seq.groupBy fst - |> Seq.map ((fun (key, group) -> (key, Seq.map snd group)) >> fun (key, group) -> - key, - match Seq.length group with - | 1 -> Seq.head group - | _ -> resolveElementConflict key group) - |> Map.ofSeq - - /// Interface name to all its implemented / inherited interfaces name list map - /// e.g. If i1 depends on i2, i2 should be in dependencyMap.[i1.Name] - let iNameToIDependList = - let rec getExtendList(iName : string) = - match GetInterfaceByName iName with - | Some i -> - match i.Extends with - | "Object" -> [] - | super -> super :: (getExtendList super) - | _ -> - match InputJson.getAddedItemByName iName InputJson.ItemKind.Interface iName with - | Some i -> - match i.Extends with - | Some extends -> - match extends with - | "Object" -> [] - | super -> super :: (getExtendList super) - | _ -> [] - | _ -> [] - - let getImplementList(iName : string) = - match GetInterfaceByName iName with - | Some i -> List.ofArray i.Implements - | _ -> [] - - let addedINameToIDependList = - InputJson.getAddedItems InputJson.ItemKind.Interface Flavor.All - |> Array.ofSeq - |> Array.filter (fun i -> i.Name.IsSome) - |> Array.map (fun i -> (Option.get i.Name, List.concat [ (getExtendList (Option.get i.Name)); (getImplementList (Option.get i.Name)) ])) - - let nativeINameToIDependList = - Array.concat [| allWebNonCallbackInterfaces; worker.Interfaces; worker.MixinInterfaces.Interfaces |] - |> Array.map (fun i -> (i.Name, List.concat [ (getExtendList i.Name); (getImplementList i.Name) ])) - - Array.concat [| addedINameToIDependList; nativeINameToIDependList |] - |> Map.ofArray - - /// Distinct event type list, used in the "createEvent" function - let distinctETypeList = - let usedEvents = - [ for i in GetNonCallbackInterfacesByFlavor Flavor.All do - match i.Events with - | Some es -> yield! es.Events - | _ -> () ] - |> List.map (fun e -> e.Type) - |> List.distinct - - let unUsedEvents = - GetNonCallbackInterfacesByFlavor Flavor.All - |> Array.choose (fun i -> - if i.Extends = "Event" && i.Name.EndsWith("Event") && not (List.contains i.Name usedEvents) then Some(i.Name) else None) - |> Array.distinct - |> List.ofArray - - List.concat [ usedEvents; unUsedEvents ] |> List.sort - - /// Determine if interface1 depends on interface2 - let IsDependsOn i1Name i2Name = - match (iNameToIDependList.ContainsKey i2Name) && (iNameToIDependList.ContainsKey i1Name) with - | true -> Seq.contains i2Name iNameToIDependList.[i1Name] - | false -> i2Name = "Object" - - /// Interface name to its related eventhandler name list map - /// Note: - /// In the xml file, each event handler has - /// 1. eventhanlder name: "onready", "onabort" etc. - /// 2. the event name that it handles: "ready", "SVGAbort" etc. - /// And they don't NOT just differ by an "on" prefix! - let iNameToEhList = - let getEventTypeFromHandler (p : Browser.Property) = - let eType = - // Check the "event-handler" attribute of the event handler property, - // which is the corresponding event name - match p.EventHandler with - | Some eName -> - // The list is partly obtained from the table at - // http://www.w3.org/TR/DOM-Level-3-Events/#dom-events-conformance #4.1 - match eNameToEType.TryFind eName with - | Some v -> v - | _ -> GlobalVars.defaultEventType - | _ -> GlobalVars.defaultEventType - match eType with - | "Event" -> "Event" - | name when (IsDependsOn name "Event") -> eType - | _ -> GlobalVars.defaultEventType - - // Get all the event handlers from an interface and also from its inherited / implemented interfaces - let rec getEventHandler(i : Browser.Interface) = - let ownEventHandler = - match i.Properties with - | Some ps -> - ps.Properties - |> Array.choose (fun p' -> - if p'.EventHandler.IsSome then - Some({ Name = p'.Name; EventName = p'.EventHandler.Value; EventType = getEventTypeFromHandler p' }) - else None) - |> List.ofArray - | None -> [] - if ownEventHandler.Length > 0 then ownEventHandler else [] - - allInterfaces - |> Array.map (fun i -> (i.Name, getEventHandler i)) - |> Map.ofArray - - // Map of interface.Name -> List of base interfaces with event handlers - let iNameToEhParents = - let hasHandler (i : Browser.Interface) = - iNameToEhList.ContainsKey i.Name && not iNameToEhList.[i.Name].IsEmpty - - // Get all the event handlers from an interface and also from its inherited / implemented interfaces - let rec getParentsWithEventHandler (i : Browser.Interface) = - let getParentEventHandler (i: Browser.Interface) = - if hasHandler i then [i] else getParentsWithEventHandler i - - let extendedParentWithEventHandler = - match GetInterfaceByName i.Extends with - | Some extended -> getParentEventHandler extended - | None -> [] - - let implementedParentsWithEventHandler = - i.Implements - |> Array.choose GetInterfaceByName - |> List.ofArray - |> List.collect getParentEventHandler - - List.concat [ extendedParentWithEventHandler; implementedParentsWithEventHandler ] - - allInterfaces - |> Array.map (fun i -> (i.Name, getParentsWithEventHandler i)) - |> Map.ofArray - - let GetGlobalPollutor flavor = - match flavor with - | Flavor.Web | Flavor.All -> browser.Interfaces |> Array.tryFind (fun i -> i.PrimaryGlobal.IsSome) - | Flavor.Worker -> worker.Interfaces |> Array.tryFind (fun i -> i.Global.IsSome) - - let GetGlobalPollutorName flavor = - match GetGlobalPollutor flavor with - | Some gp -> gp.Name - | _ -> "Window" - - /// Return a sequence of returntype * HashSet tuple - let GetOverloads (f : Function) (decomposeMultipleTypes : bool) = - let getParams (f : Function) = - match f with - | Method m -> - [ for p in m.Params do - yield { Type = p.Type - Name = p.Name - Optional = p.Optional.IsSome - Variadic = p.Variadic.IsSome - Nullable = p.Nullable.IsSome } ] - | Ctor c -> - [ for p in c.Params do - yield { Type = p.Type - Name = p.Name - Optional = p.Optional.IsSome - Variadic = p.Variadic.IsSome - Nullable = p.Nullable.IsSome } ] - | CallBackFun cb -> - [ for p in cb.Params do - yield { Type = p.Type - Name = p.Name - Optional = p.Optional.IsSome - Variadic = p.Variadic.IsSome - Nullable = p.Nullable.IsSome } ] - - let getReturnType (f : Function) = - match f with - | Method m -> m.Type - | Ctor _ -> "" - | CallBackFun cb -> cb.Type - - let isNullable = - match f with - | Method m -> m.Nullable.IsSome - | Ctor _ -> false - | CallBackFun _ -> true - - // Some params have the type of "(DOMString or DOMString [] or Number)" - // we need to transform it into [“DOMString", "DOMString []", "Number"] - let decomposeTypes (t : string) = t.Trim([| '('; ')' |]).Split([| " or " |], StringSplitOptions.None) - - let decomposeParam (p : Param) = - [ for t in (decomposeTypes p.Type) do - yield { Type = t - Name = p.Name - Optional = p.Optional - Variadic = p.Variadic - Nullable = p.Nullable } ] - - let pCombList = - let pCombs = List<_>() - - let rec enumParams (acc : Param list) (rest : Param list) = - match rest with - | p :: ps when p.Type.Contains("or") -> - let pOptions = decomposeParam p - for pOption in pOptions do - enumParams (pOption :: acc) ps - | p :: ps -> enumParams (p :: acc) ps - | [] -> - // Iteration is completed and time to print every param now - pCombs.Add(List.rev acc) |> ignore - enumParams [] (getParams f) - List.ofSeq pCombs - - let rTypes = - getReturnType f - |> decomposeTypes - |> List.ofArray - - if decomposeMultipleTypes then - [ for pComb in pCombList do - yield { ParamCombinations = pComb - ReturnTypes = rTypes - Nullable = isNullable } ] - else - [ { ParamCombinations = getParams f - ReturnTypes = rTypes - Nullable = isNullable } ] - - let typeDefSet = - browser.Typedefs |> Array.map (fun td -> td.NewType) |> Set.ofArray - - let extendConflicts = [ - { BaseType = "AudioContext"; ExtendType = ["OfflineContext"]; MemberNames = ["suspend"] }; - { BaseType = "HTMLCollection"; ExtendType = ["HTMLFormControlsCollection"]; MemberNames = ["namedItem"] }; - ] - - let extendConflictsBaseTypes = - extendConflicts |> List.map (fun ec -> (ec.BaseType, ec)) |> Map.ofList - -module Emit = - open Data - open Types - open Helpers - open InputJson - - // Global print target - let Pt = StringPrinter() - - // When emit webworker types the dom types are ignored - let mutable ignoreDOMTypes = false - - // Extended types used but not defined in the spec - let extendedTypes = - ["ArrayBuffer";"ArrayBufferView";"Int8Array";"Uint8Array";"Int16Array";"Uint16Array";"Int32Array";"Uint32Array";"Float32Array";"Float64Array"] - - let integerTypes = - ["byte";"octet";"short";"unsigned short";"long";"unsigned long";"long long";"unsigned long long"] - - /// Get typescript type using object dom type, object name, and it's associated interface name - let rec DomTypeToTsType (objDomType: string) = - match objDomType with - | "AbortMode" -> "String" - | "bool" | "boolean" | "Boolean" -> "boolean" - | "CanvasPixelArray" -> "number[]" - | "DOMHighResTimeStamp" -> "number" - | "DOMString" -> "string" - | "DOMTimeStamp" -> "number" - | "EndOfStreamError" -> "number" - | "EventListener" -> "EventListenerOrEventListenerObject" - | "double" | "float" -> "number" - | "object" -> "any" - | "ReadyState" -> "string" - | "sequence" -> "Array" - | "UnrestrictedDouble" | "unrestricted double" -> "number" - | "any" | "BufferSource" | "Date" | "Function" | "Promise" | "void" -> objDomType - | integerType when List.contains integerType integerTypes -> "number" - | extendedType when List.contains extendedType extendedTypes -> extendedType - | _ -> - if ignoreDOMTypes && Seq.contains objDomType ["Element"; "Window"; "Document"] then "any" - else - // Name of an interface / enum / dict. Just return itself - if allInterfacesMap.ContainsKey objDomType || - allCallbackFuncs.ContainsKey objDomType || - allDictionariesMap.ContainsKey objDomType || - allEnumsMap.ContainsKey objDomType then - objDomType - // Name of a type alias. Just return itself - elif typeDefSet.Contains objDomType then objDomType - // Union types - elif objDomType.Contains(" or ") then - let allTypes = objDomType.Trim('(', ')').Split([|" or "|], StringSplitOptions.None) - |> Array.map (fun t -> DomTypeToTsType (t.Trim('?', ' '))) - if Seq.contains "any" allTypes then "any" else String.concat " | " allTypes - else - // Check if is array type, which looks like "sequence" - let unescaped = System.Web.HttpUtility.HtmlDecode(objDomType) - let genericMatch = Regex.Match(unescaped, @"^(\w+)<([\w, <>]+)>$") - if genericMatch.Success then - let tName = DomTypeToTsType (genericMatch.Groups.[1].Value) - let paramName = DomTypeToTsType (genericMatch.Groups.[2].Value) - match tName with - | _ -> - if tName = "Array" then paramName + "[]" - else tName + "<" + paramName + ">" - elif objDomType.EndsWith("[]") then - let elementType = objDomType.Replace("[]", "").Trim() |> DomTypeToTsType - elementType + "[]" - else "any" - - - let makeNullable (originalType: string) = - match originalType with - | "any" -> "any" - | "void" -> "void" - | t when t.Contains "| null" -> t - | functionType when functionType.Contains "=>" -> "(" + functionType + ") | null" - | _ -> originalType + " | null" - - let DomTypeToNullableTsType (objDomType: string) (nullable: bool) = - let resolvedType = DomTypeToTsType objDomType - if nullable then makeNullable resolvedType else resolvedType - - let EmitConstants (i: Browser.Interface) = - let emitConstantFromJson (c: InputJsonType.Root) = Pt.Printl "readonly %s: %s;" c.Name.Value c.Type.Value - - let emitConstant (c: Browser.Constant) = - if Option.isNone (getRemovedItemByName c.Name ItemKind.Constant i.Name) then - match getOverriddenItemByName c.Name ItemKind.Constant i.Name with - | Some c' -> emitConstantFromJson c' - | None -> Pt.Printl "readonly %s: %s;" c.Name (DomTypeToTsType c.Type) - - let addedConstants = getAddedItems ItemKind.Constant Flavor.All |> Array.sortBy (fun t-> t.Name) - Array.iter emitConstantFromJson addedConstants - - if i.Constants.IsSome then - i.Constants.Value.Constants - |> Array.sortBy (fun c -> c.Name) - |> Array.iter emitConstant - - let matchSingleParamMethodSignature (m: Browser.Method) expectedMName expectedMType expectedParamType = - OptionCheckValue expectedMName m.Name && - (DomTypeToNullableTsType m.Type m.Nullable.IsSome) = expectedMType && - m.Params.Length = 1 && - (DomTypeToTsType m.Params.[0].Type) = expectedParamType - let processInterfaceType iName = - match getOverriddenItems ItemKind.Interface Flavor.All |> Array.tryFind (matchInterface iName) with - | Some it -> iName + "<" + (it.TypeParameters |> String.concat ", ") + ">" - | _ -> iName - - /// Emit overloads for the createElement method - let EmitCreateElementOverloads (m: Browser.Method) = - if matchSingleParamMethodSignature m "createElement" "Element" "string" then - Pt.Printl "createElement(tagName: K, options?: ElementCreationOptions): HTMLElementTagNameMap[K];" - Pt.Printl "createElement(tagName: string, options?: ElementCreationOptions): HTMLElement;" - - /// Emit overloads for the getElementsByTagName method - let EmitGetElementsByTagNameOverloads (m: Browser.Method) = - if matchSingleParamMethodSignature m "getElementsByTagName" "NodeList" "string" then - Pt.Printl "getElementsByTagName(%s: K): NodeListOf;" m.Params.[0].Name - Pt.Printl "getElementsByTagName(%s: K): NodeListOf;" m.Params.[0].Name - Pt.Printl "getElementsByTagName(%s: string): NodeListOf;" m.Params.[0].Name - - /// Emit overloads for the querySelector method - let EmitQuerySelectorOverloads (m: Browser.Method) = - if matchSingleParamMethodSignature m "querySelector" "Element" "string" then - Pt.Printl "querySelector(selectors: K): HTMLElementTagNameMap[K] | null;" - Pt.Printl "querySelector(selectors: K): SVGElementTagNameMap[K] | null;" - Pt.Printl "querySelector(selectors: string): E | null;" - - /// Emit overloads for the querySelectorAll method - let EmitQuerySelectorAllOverloads (m: Browser.Method) = - if matchSingleParamMethodSignature m "querySelectorAll" "NodeList" "string" then - Pt.Printl "querySelectorAll(selectors: K): NodeListOf;" - Pt.Printl "querySelectorAll(selectors: K): NodeListOf;" - Pt.Printl "querySelectorAll(selectors: string): NodeListOf;" - - let EmitHTMLElementTagNameMap () = - Pt.Printl "interface HTMLElementTagNameMap {" - Pt.IncreaseIndent() - for e in tagNameToEleName do - if iNameToIDependList.ContainsKey e.Value && not (Seq.contains "SVGElement" iNameToIDependList.[e.Value]) then - Pt.Printl "\"%s\": %s;" (e.Key.ToLower()) e.Value - Pt.DecreaseIndent() - Pt.Printl "}" - Pt.Printl "" - - let EmitSVGElementTagNameMap () = - Pt.Printl "interface SVGElementTagNameMap {" - Pt.IncreaseIndent() - for e in tagNameToEleName do - if iNameToIDependList.ContainsKey e.Value && Seq.contains "SVGElement" iNameToIDependList.[e.Value] then - Pt.Printl "\"%s\": %s;" (e.Key.ToLower()) e.Value - Pt.DecreaseIndent() - Pt.Printl "}" - Pt.Printl "" - - let EmitElementTagNameMap () = - Pt.Printl "/** @deprecated Directly use HTMLElementTagNameMap or SVGElementTagNameMap as appropriate, instead. */" - Pt.Printl "interface ElementTagNameMap extends HTMLElementTagNameMap, SVGElementTagNameMap { }" - Pt.Printl "" - - /// Emit overloads for the createEvent method - let EmitCreateEventOverloads (m: Browser.Method) = - if matchSingleParamMethodSignature m "createEvent" "Event" "string" then - // Emit plurals. For example, "Events", "MutationEvents" - let hasPlurals = ["Event"; "MutationEvent"; "MouseEvent"; "SVGZoomEvent"; "UIEvent"] - for x in distinctETypeList do - Pt.Printl "createEvent(eventInterface: \"%s\"): %s;" x x - if List.contains x hasPlurals then - Pt.Printl "createEvent(eventInterface: \"%ss\"): %s;" x x - Pt.Printl "createEvent(eventInterface: string): Event;" - - /// Generate the parameters string for function signatures - let ParamsToString (ps: Param list) = - let paramToString (p: Param) = - let isOptional = not p.Variadic && p.Optional - let pType = if isOptional then DomTypeToTsType p.Type else DomTypeToNullableTsType p.Type p.Nullable - (if p.Variadic then "..." else "") + - (AdjustParamName p.Name) + - (if isOptional then "?: " else ": ") + - pType + - (if p.Variadic then "[]" else "") - String.Join(", ", (List.map paramToString ps)) - - let EmitCallBackInterface flavor (i:Browser.Interface) = - if ShouldKeep flavor i then - if getRemovedItemsByInterfaceName ItemKind.Interface flavor i.Name |> Array.isEmpty then - if i.Name = "EventListener" then - Pt.Printl "interface %s {" i.Name - Pt.PrintWithAddedIndent "(evt: Event): void;" - Pt.Printl "}" - else - let m = i.Methods.Value.Methods.[0] - let overload = (GetOverloads (Function.Method m) false).[0] - let paramsString = ParamsToString overload.ParamCombinations - let returnType = DomTypeToTsType m.Type - Pt.Printl "type %s = ((%s) => %s) | { %s(%s): %s; };" i.Name paramsString returnType m.Name.Value paramsString returnType - Pt.Printl "" - - let EmitCallBackFunctions flavor = - let emitCallbackFunctionsFromJson (cb: InputJson.InputJsonType.Root) = - Pt.Printl "interface %s {" cb.Name.Value - cb.Signatures |> Array.iter (Pt.PrintWithAddedIndent "%s;") - Pt.Printl "}" - - let emitCallBackFunction (cb: Browser.CallbackFunction) = - if Option.isNone (getRemovedItemByName cb.Name ItemKind.Callback "")then - match getOverriddenItemByName cb.Name ItemKind.Callback "" with - | Some cb' -> emitCallbackFunctionsFromJson cb' - | _ -> - Pt.Printl "interface %s {" cb.Name - let overloads = GetOverloads (CallBackFun cb) false - for { ParamCombinations = pCombList } in overloads do - let paramsString = ParamsToString pCombList - Pt.PrintWithAddedIndent "(%s): %s;" paramsString (DomTypeToTsType cb.Type) - Pt.Printl "}" - - getAddedItems ItemKind.Callback flavor - |> Array.sortBy (fun cb -> cb.Name) - |> Array.iter emitCallbackFunctionsFromJson - - GetCallbackFuncsByFlavor flavor - |> Array.sortBy (fun cb -> cb.Name) - |> Array.iter emitCallBackFunction - - let EmitEnums flavor = - let emitEnum (e: Browser.Enum) = - Pt.Printl "type %s = %s;" e.Name (String.Join(" | ", e.Values |> Array.map (fun value -> "\"" + value + "\""))) - GetEnumsByFlavor flavor - |> Array.sortBy (fun e -> e.Name) - |> Array.iter emitEnum - - let EmitEventHandlerThis flavor (prefix: string) (i: Browser.Interface) = - if prefix = "" then "this: " + i.Name + ", " - else match GetGlobalPollutor flavor with - | Some pollutor -> "this: " + pollutor.Name + ", " - | _ -> "" - - let EmitProperties flavor prefix (emitScope: EmitScope) (i: Browser.Interface) (conflictedMembers: Set) = - let emitPropertyFromJson (p: InputJsonType.Root) = - let readOnlyModifier = - match p.Readonly with - | Some(true) -> "readonly " - | _ -> "" - Pt.Printl "%s%s%s: %s;" prefix readOnlyModifier p.Name.Value p.Type.Value - - let emitCommentForProperty (printLine: Printf.StringFormat<_, unit> -> _) pName = - match CommentJson.GetCommentForProperty i.Name pName with - | Some comment -> printLine "%s" comment - | _ -> () - - // A covariant EventHandler is one that is defined in a parent interface as then redefined in current interface with a more specific argument types - // These patterns are unsafe, and flagged as error under --strictFunctionTypes. - // Here we know the property is already defined on the interface, we elide its declaration if the parent has the same handler defined - let isCovariantEventHandler (p: Browser.Property) = - p.Type = "EventHandler" && - iNameToEhParents.ContainsKey i.Name && - not iNameToEhParents.[i.Name].IsEmpty && - iNameToEhParents.[i.Name] - |> List.exists (fun i -> iNameToEhList.ContainsKey i.Name && not iNameToEhList.[i.Name].IsEmpty && iNameToEhList.[i.Name] |> List.exists (fun e-> e.Name = p.Name)) - - let emitProperty (p: Browser.Property) = - let printLine content = - if conflictedMembers.Contains p.Name then Pt.PrintlToStack content else Pt.Printl content - emitCommentForProperty printLine p.Name - - // Treat window.name specially because of https://github.com/Microsoft/TypeScript/issues/9850 - if p.Name = "name" && i.Name = "Window" && emitScope = EmitScope.All then - printLine "declare const name: never;" - elif Option.isNone (getRemovedItemByName p.Name ItemKind.Property i.Name) then - match getOverriddenItemByName p.Name ItemKind.Property i.Name with - | Some p' -> emitPropertyFromJson p' - | None -> - let pType = - match p.Type with - | "EventHandler" -> - // Sometimes event handlers with the same name may actually handle different - // events in different interfaces. For example, "onerror" handles "ErrorEvent" - // normally, but in "SVGSVGElement" it handles "SVGError" event instead. - let eType = - if p.EventHandler.IsSome then - getEventTypeInInterface p.EventHandler.Value i - else - "Event" - String.Format("({0}ev: {1}) => any", EmitEventHandlerThis flavor prefix i, eType) - | _ -> DomTypeToTsType p.Type - let pTypeAndNull = if p.Nullable.IsSome then makeNullable pType else pType - let readOnlyModifier = if p.ReadOnly.IsSome && prefix = "" then "readonly " else "" - printLine "%s%s%s: %s;" prefix readOnlyModifier p.Name pTypeAndNull - - // Note: the schema file shows the property doesn't have "static" attribute, - // therefore all properties are emited for the instance type. - if emitScope <> StaticOnly then - match i.Properties with - | Some ps -> - ps.Properties - |> Array.filter (ShouldKeep flavor) - |> Array.filter (isCovariantEventHandler >> not) - |> Array.sortBy (fun ps -> ps.Name) - |> Array.iter emitProperty - | None -> () - - for addedItem in getAddedItems ItemKind.Property flavor do - if (matchInterface i.Name addedItem) && (prefix <> "declare var " || addedItem.ExposeGlobally.IsNone || addedItem.ExposeGlobally.Value) then - emitCommentForProperty Pt.Printl addedItem.Name.Value - emitPropertyFromJson addedItem - - let EmitMethods flavor prefix (emitScope: EmitScope) (i: Browser.Interface) (conflictedMembers: Set) = - // Note: two cases: - // 1. emit the members inside a interface -> no need to add prefix - // 2. emit the members outside to expose them (for "Window") -> need to add "declare" - let emitMethodFromJson (m: InputJsonType.Root) = - m.Signatures |> Array.iter (Pt.Printl "%s%s;" prefix) - - let emitCommentForMethod (printLine: Printf.StringFormat<_, unit> -> _) (mName: string option) = - if mName.IsSome then - match CommentJson.GetCommentForMethod i.Name mName.Value with - | Some comment -> printLine "%s" comment - | _ -> () - - // If prefix is not empty, then this is the global declare function addEventListener, we want to override this - // Otherwise, this is EventTarget.addEventListener, we want to keep that. - let mFilter (m:Browser.Method) = - matchScope emitScope m && - not ( - prefix <> "" && ( - (OptionCheckValue "addEventListener" m.Name) || - (OptionCheckValue "removeEventListener" m.Name) - ) - ) - - let emitMethod flavor prefix (i:Browser.Interface) (m:Browser.Method) = - let printLine content = - if m.Name.IsSome && conflictedMembers.Contains m.Name.Value then Pt.PrintlToStack content else Pt.Printl content - // print comment - emitCommentForMethod printLine m.Name - - // Find if there are overriding signatures in the external json file - // - overriddenType: meaning there is a better definition of this type in the json file - // - removedType: meaning the type is marked as removed in the json file - // if there is any conflicts between the two, the "removedType" has a higher priority over - // the "overridenType". - let removedType = Option.bind (fun name -> InputJson.getRemovedItemByName name InputJson.ItemKind.Method i.Name) m.Name - let overridenType = Option.bind (fun mName -> InputJson.getOverriddenItemByName mName InputJson.ItemKind.Method i.Name) m.Name - - if removedType.IsNone then - match overridenType with - | Some t -> - match flavor with - | Flavor.All | Flavor.Web -> t.WebOnlySignatures |> Array.iter (printLine "%s%s;" prefix) - | _ -> () - t.Signatures |> Array.iter (printLine "%s%s;" prefix) - | None -> - match i.Name, m.Name with - | _, Some "createElement" -> EmitCreateElementOverloads m - | _, Some "createEvent" -> EmitCreateEventOverloads m - | _, Some "getElementsByTagName" -> EmitGetElementsByTagNameOverloads m - | _, Some "querySelector" -> EmitQuerySelectorOverloads m - | _, Some "querySelectorAll" -> EmitQuerySelectorAllOverloads m - | _ -> - if m.Name.IsSome then - // If there are added overloads from the json files, print them first - match getAddedItemByName m.Name.Value ItemKind.SignatureOverload i.Name with - | Some ol -> ol.Signatures |> Array.iter (printLine "%s;") - | _ -> () - - let overloads = GetOverloads (Function.Method m) false - for { ParamCombinations = pCombList; ReturnTypes = rTypes; Nullable = isNullable } in overloads do - let paramsString = ParamsToString pCombList - let returnString = - let returnType = rTypes |> List.map DomTypeToTsType |> String.concat " | " - if isNullable then makeNullable returnType else returnType - printLine "%s%s(%s): %s;" prefix (if m.Name.IsSome then m.Name.Value else "") paramsString returnString - - if i.Methods.IsSome then - i.Methods.Value.Methods - |> Array.filter mFilter - |> Array.sortBy (fun m -> m.Name) - |> Array.iter (emitMethod flavor prefix i) - - for addedItem in getAddedItems ItemKind.Method flavor do - if (matchInterface i.Name addedItem && matchScope emitScope addedItem) then - emitCommentForMethod Pt.Printl addedItem.Name - emitMethodFromJson addedItem - - // The window interface inherited some methods from "Object", - // which need to explicitly exposed - if i.Name = "Window" && prefix = "declare function " then - Pt.Printl "declare function toString(): string;" - - /// Emit the properties and methods of a given interface - let EmitMembers flavor (prefix: string) (emitScope: EmitScope) (i:Browser.Interface) = - let conflictedMembers = - match Map.tryFind i.Name extendConflictsBaseTypes with - | Some conflict -> conflict.MemberNames - | _ -> [] - |> Set.ofList - EmitProperties flavor prefix emitScope i conflictedMembers - let methodPrefix = if prefix.StartsWith("declare var") then "declare function " else "" - EmitMethods flavor methodPrefix emitScope i conflictedMembers - - /// Emit all members of every interfaces at the root level. - /// Called only once on the global polluter object - let rec EmitAllMembers flavor (i:Browser.Interface) = - let prefix = "declare var " - EmitMembers flavor prefix EmitScope.All i - - for relatedIName in iNameToIDependList.[i.Name] do - match GetInterfaceByName relatedIName with - | Some i' -> EmitAllMembers flavor i' - | _ -> () - - let EmitEventHandlers (prefix: string) (i:Browser.Interface) = - let getOptionsType (addOrRemove: string) = - if addOrRemove = "add" then "AddEventListenerOptions" else "EventListenerOptions" - - let fPrefix = - if prefix.StartsWith "declare var" then "declare function " else "" - - let emitTypedEventHandler (prefix: string) (addOrRemove: string) (iParent:Browser.Interface) = - Pt.Printl - "%s%sEventListener(type: K, listener: (this: %s, ev: %sEventMap[K]) => any, options?: boolean | %s): void;" - prefix addOrRemove iParent.Name i.Name iParent.Name (getOptionsType addOrRemove) - - let emitStringEventHandler (addOrRemove: string) = - Pt.Printl - "%s%sEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | %s): void;" - fPrefix addOrRemove (getOptionsType addOrRemove) - - let tryEmitTypedEventHandlerForInterface (addOrRemove: string) = - if iNameToEhList.ContainsKey i.Name && not iNameToEhList.[i.Name].IsEmpty then - emitTypedEventHandler fPrefix addOrRemove i - true - elif iNameToEhParents.ContainsKey i.Name && not iNameToEhParents.[i.Name].IsEmpty then - iNameToEhParents.[i.Name] - |> List.sortBy (fun i -> i.Name) - |> List.iter (emitTypedEventHandler fPrefix addOrRemove) - true - else - false - - let emitEventHandler (addOrRemove: string) = - if tryEmitTypedEventHandlerForInterface addOrRemove then - // only emit the string event handler if we just emited a typed handler - emitStringEventHandler addOrRemove - - - emitEventHandler "add" - emitEventHandler "remove" - - - let EmitConstructorSignature flavor (i:Browser.Interface) = - let emitConstructorSigFromJson (c: InputJsonType.Root) = - c.Signatures |> Array.iter (Pt.Printl "%s;") - - let removedCtor = getRemovedItems ItemKind.Constructor flavor |> Array.tryFind (matchInterface i.Name) - if Option.isNone removedCtor then - let overriddenCtor = getOverriddenItems ItemKind.Constructor flavor |> Array.tryFind (matchInterface i.Name) - match overriddenCtor with - | Some c' -> emitConstructorSigFromJson c' - | _ -> - //Emit constructor signature - match i.Constructor with - | Some ctor -> - for { ParamCombinations = pCombList } in GetOverloads (Ctor ctor) false do - let paramsString = ParamsToString pCombList - Pt.Printl "new(%s): %s;" paramsString i.Name - | _ -> Pt.Printl "new(): %s;" i.Name - - getAddedItems ItemKind.Constructor flavor - |> Array.filter (matchInterface i.Name) - |> Array.iter emitConstructorSigFromJson - - let EmitConstructor flavor (i:Browser.Interface) = - Pt.Printl "declare var %s: {" i.Name - Pt.IncreaseIndent() - - Pt.Printl "prototype: %s;" i.Name - EmitConstructorSignature flavor i - EmitConstants i - let prefix = "" - EmitMembers flavor prefix EmitScope.StaticOnly i - - Pt.DecreaseIndent() - Pt.Printl "};" - Pt.Printl "" - - /// Emit all the named constructors at root level - let EmitNamedConstructors () = - browser.Interfaces - |> Array.filter (fun i -> i.NamedConstructor.IsSome) - |> Array.sortBy (fun i -> i.Name) - |> Array.iter - (fun i -> - let nc = i.NamedConstructor.Value - let ncParams = - [for p in nc.Params do - yield {Type = p.Type; Name = p.Name; Optional = p.Optional.IsSome; Variadic = p.Variadic.IsSome; Nullable = p.Nullable.IsSome}] - Pt.Printl "declare var %s: { new(%s): %s; };" nc.Name (ParamsToString ncParams) i.Name) - - let EmitInterfaceDeclaration (i:Browser.Interface) = - let processIName iName = - match Map.tryFind iName extendConflictsBaseTypes with - | Some _ -> iName + "Base" - | _ -> iName - - let processedIName = processIName i.Name - if processedIName <> i.Name then - Pt.PrintlToStack "interface %s extends %s {" (processInterfaceType i.Name) processedIName - - Pt.Printl "interface %s" (processInterfaceType processedIName) - let finalExtends = - let overridenExtendsFromJson = - InputJson.getOverriddenItemsByInterfaceName ItemKind.Extends Flavor.All i.Name - |> Array.map (fun e -> e.BaseInterface.Value) |> List.ofArray - - let combinedExtends = - if List.isEmpty overridenExtendsFromJson then - let extendsFromSpec = - match i.Extends::(List.ofArray i.Implements) with - | [""] | [] | ["Object"] -> [] - | specExtends -> specExtends - let extendsFromJson = - InputJson.getAddedItemsByInterfaceName ItemKind.Extends Flavor.All i.Name - |> Array.map (fun e -> e.BaseInterface.Value) |> List.ofArray - List.concat [extendsFromSpec; extendsFromJson] - else - overridenExtendsFromJson - - combinedExtends |> List.map processIName - - match finalExtends with - | [] -> () - | allExtends -> Pt.Print " extends %s" (String.Join(", ", allExtends)) - Pt.Print " {" - - /// To decide if a given method is an indexer and should be emited - let ShouldEmitIndexerSignature (i: Browser.Interface) (m: Browser.Method) = - if m.Getter.IsSome && m.Params.Length = 1 then - // TypeScript array indexer can only be number or string - // for string, it must return a more generic type then all - // the other properties, following the Dictionary pattern - match DomTypeToTsType m.Params.[0].Type with - | "number" -> true - | "string" -> - match DomTypeToTsType m.Type with - | "any" -> true - | _ -> - let mTypes = - match i.Methods with - | Some ms -> - ms.Methods |> Array.map (fun m' -> m'.Type) |> Array.filter (fun t -> t <> "void") |> Array.distinct - | _ -> [||] - let amTypes = - match i.AnonymousMethods with - | Some ms -> - ms.Methods |> Array.map (fun m' -> m'.Type) |> Array.filter (fun t -> t <> "void") |> Array.distinct - | _ -> [||] - let pTypes = - match i.Properties with - | Some ps -> - ps.Properties |> Array.map (fun m' -> m'.Type) |> Array.filter (fun t -> t <> "void") |> Array.distinct - | _ -> [||] - - match mTypes, amTypes, pTypes with - | [||], [|y|], [||] -> y = m.Type - | [|x|], [|y|], [||] -> x = y && y = m.Type - | [||], [|y|], [|z|] -> y = z && y = m.Type - | [|x|], [|y|], [|z|] -> x = y && y = z && y = m.Type - | _ -> false - - | _ -> false - else - false - - let EmitIndexers emitScope (i: Browser.Interface) = - let emitIndexerFromJson (id: InputJsonType.Root) = - id.Signatures |> Array.iter (Pt.Printl "%s;") - - let removedIndexer = getRemovedItems ItemKind.Indexer Flavor.All |> Array.tryFind (matchInterface i.Name) - if removedIndexer.IsNone then - let overriddenIndexer = getOverriddenItems ItemKind.Indexer Flavor.All |> Array.tryFind (matchInterface i.Name) - match overriddenIndexer with - | Some id -> emitIndexerFromJson id - | _ -> - // The indices could be within either Methods or Anonymous Methods - let ms = if i.Methods.IsSome then i.Methods.Value.Methods else [||] - let ams = if i.AnonymousMethods.IsSome then i.AnonymousMethods.Value.Methods else [||] - - Array.concat [|ms; ams|] - |> Array.filter (fun m -> ShouldEmitIndexerSignature i m && matchScope emitScope m) - |> Array.iter (fun m -> - let indexer = m.Params.[0] - Pt.Printl "[%s: %s]: %s;" - indexer.Name - (DomTypeToTsType indexer.Type) - (DomTypeToTsType m.Type)) - - getAddedItems ItemKind.Indexer Flavor.All - |> Array.filter (matchInterface i.Name) - |> Array.iter emitIndexerFromJson - - let EmitInterfaceEventMap (i:Browser.Interface) = - let emitInterfaceEventMapEntry (eHandler: EventHandler) = - let eventType = - getEventTypeInInterface eHandler.EventName i - Pt.Printl "\"%s\": %s;" eHandler.EventName eventType - - let emitJsonProperty (p: InputJsonType.Root) = - let readOnlyModifier = - match p.Readonly with - | Some(true) -> "readonly " - | _ -> "" - Pt.Printl "%s%s: %s;" readOnlyModifier p.Name.Value p.Type.Value - - let ownEventHandles = if iNameToEhList.ContainsKey i.Name && not iNameToEhList.[i.Name].IsEmpty then iNameToEhList.[i.Name] else [] - if ownEventHandles.Length > 0 then - Pt.Printl "interface %sEventMap" i.Name - if iNameToEhParents.ContainsKey i.Name && not iNameToEhParents.[i.Name].IsEmpty then - let extends = iNameToEhParents.[i.Name] |> List.map (fun i -> i.Name + "EventMap") - Pt.Print " extends %s" (String.Join(", ", extends)) - Pt.Print " {" - Pt.IncreaseIndent() - ownEventHandles - |> List.sortBy (fun e -> e.Name) - |> List.iter emitInterfaceEventMapEntry - - let addedProps = - getAddedItems ItemKind.Property Flavor.Web - |> Array.filter (fun m -> m.Interface.IsNone || m.Interface.Value = i.Name + "EventMap") - |> Array.sortBy (fun m -> m.Name) - - Array.iter emitJsonProperty addedProps - - Pt.DecreaseIndent() - Pt.Printl "}" - Pt.Printl "" - - let EmitInterface flavor (i:Browser.Interface) = - Pt.ClearStack() - EmitInterfaceEventMap i - - Pt.ResetIndent() - EmitInterfaceDeclaration i - Pt.IncreaseIndent() - - let prefix = "" - EmitMembers flavor prefix EmitScope.InstanceOnly i - EmitConstants i - EmitEventHandlers prefix i - EmitIndexers EmitScope.InstanceOnly i - - Pt.DecreaseIndent() - Pt.Printl "}" - Pt.Printl "" - - if not (Pt.StackIsEmpty()) then - Pt.PrintStackContent() - Pt.Printl "}" - Pt.Printl "" - - let EmitStaticInterface flavor (i:Browser.Interface) = - // Some types are static types with non-static members. For example, - // NodeFilter is a static method itself, however it has an "acceptNode" method - // that expects the user to implement. - let hasNonStaticMember = - let hasNonStaticMethod = - let hasOwnNonStaticMethod = - i.Methods.IsSome && - i.Methods.Value.Methods - |> Array.exists (fun m -> m.Static.IsNone && (m.Name.IsNone || (getRemovedItemByName m.Name.Value ItemKind.Method i.Name) |> Option.isNone)) - let hasAddedNonStaticMethod = - match InputJson.getAddedItemsByInterfaceName ItemKind.Method flavor i.Name with - | [||] -> false - | addedMs -> addedMs |> Array.exists (fun m -> m.Static.IsNone || not m.Static.Value) - hasOwnNonStaticMethod || hasAddedNonStaticMethod - let hasProperty = - let hasOwnNonStaticProperty = - i.Properties.IsSome && - i.Properties.Value.Properties - |> Array.exists (fun p -> getRemovedItemByName p.Name ItemKind.Method i.Name |> Option.isNone) - let hasAddedNonStaticMethod = - match InputJson.getAddedItemsByInterfaceName ItemKind.Property flavor i.Name with - | [||] -> false - | addedPs -> addedPs |> Array.exists (fun p -> p.Static.IsNone || not p.Static.Value) - hasOwnNonStaticProperty || hasAddedNonStaticMethod - hasNonStaticMethod || hasProperty - - let emitAddedConstructor () = - match InputJson.getAddedItemsByInterfaceName ItemKind.Constructor flavor i.Name with - | [||] -> () - | ctors -> - Pt.Printl "prototype: %s;" i.Name - ctors |> Array.iter (fun ctor -> ctor.Signatures |> Array.iter (Pt.Printl "%s;")) - - // For static types with non-static members, we put the non-static members into an - // interface, and put the static members into the object literal type of 'declare var' - // For static types with only static members, we put everything in the interface. - // Because in the two cases the interface contains different things, it might be easier to - // read to separate them into two functions. - let emitStaticInterfaceWithNonStaticMembers () = - Pt.ResetIndent() - EmitInterfaceDeclaration i - Pt.IncreaseIndent() - - let prefix = "" - EmitMembers flavor prefix EmitScope.InstanceOnly i - EmitEventHandlers prefix i - EmitIndexers EmitScope.InstanceOnly i - - Pt.DecreaseIndent() - Pt.Printl "}" - Pt.Printl "" - Pt.Printl "declare var %s: {" i.Name - Pt.IncreaseIndent() - EmitConstants i - EmitMembers flavor prefix EmitScope.StaticOnly i - emitAddedConstructor () - Pt.DecreaseIndent() - Pt.Printl "};" - Pt.Printl "" - - let emitPureStaticInterface () = - Pt.ResetIndent() - EmitInterfaceDeclaration i - Pt.IncreaseIndent() - - let prefix = "" - EmitMembers flavor prefix EmitScope.StaticOnly i - EmitConstants i - EmitEventHandlers prefix i - EmitIndexers EmitScope.StaticOnly i - emitAddedConstructor () - Pt.DecreaseIndent() - Pt.Printl "}" - Pt.Printl "declare var %s: %s;" i.Name i.Name - Pt.Printl "" - - if hasNonStaticMember then emitStaticInterfaceWithNonStaticMembers() else emitPureStaticInterface() - - let EmitNonCallbackInterfaces flavor = - for i in GetNonCallbackInterfacesByFlavor flavor |> Array.sortBy (fun i -> i.Name) do - // If the static attribute has a value, it means the type doesn't have a constructor - if i.Static.IsSome then - EmitStaticInterface flavor i - elif i.NoInterfaceObject.IsSome then - EmitInterface flavor i - else - EmitInterface flavor i - EmitConstructor flavor i - - let EmitDictionaries flavor = - - let emitDictionary (dict:Browser.Dictionary) = - match dict.Extends with - | "Object" -> Pt.Printl "interface %s {" (processInterfaceType dict.Name) - | _ -> Pt.Printl "interface %s extends %s {" (processInterfaceType dict.Name) dict.Extends - - let emitJsonProperty (p: InputJsonType.Root) = - let readOnlyModifier = - match p.Readonly with - | Some(true) -> "readonly " - | _ -> "" - Pt.Printl "%s%s: %s;" readOnlyModifier p.Name.Value p.Type.Value - - let removedPropNames = - getRemovedItems ItemKind.Property flavor - |> Array.choose (fun rp -> if matchInterface dict.Name rp then Some(rp.Name.Value) else None) - |> Set.ofArray - let addedProps = - getAddedItems ItemKind.Property flavor - |> Array.filter (matchInterface dict.Name) - |> Array.sortBy (fun d -> d.Name) - - Pt.IncreaseIndent() - Array.iter emitJsonProperty addedProps - if dict.Members.IsSome then - dict.Members.Value.Members - |> Array.filter (fun m -> not (Set.contains m.Name removedPropNames)) - |> Array.sortBy (fun m -> m.Name) - |> Array.iter (fun m -> - match (getOverriddenItemByName m.Name ItemKind.Property dict.Name) with - | Some om -> emitJsonProperty om - | None -> - let tsType = DomTypeToTsType m.Type - let tsTypeAndNull = if m.Nullable.IsSome then makeNullable tsType else tsType - let requiredModifier = if m.Required.IsSome then "" else "?" - Pt.Printl "%s%s: %s;" m.Name requiredModifier tsTypeAndNull) - Pt.DecreaseIndent() - Pt.Printl "}" - Pt.Printl "" - - browser.Dictionaries - |> Array.filter (fun dict -> flavor <> Worker || knownWorkerInterfaces.Contains dict.Name) - |> Array.sortBy (fun d -> d.Name) - |> Array.iter emitDictionary - - if flavor = Worker then - worker.Dictionaries - |> Array.sortBy (fun d -> d.Name) - |> Array.iter emitDictionary - - let EmitAddedInterface (ai: InputJsonType.Root) = - match ai.Extends with - | Some e -> Pt.Printl "interface %s extends %s {" ai.Name.Value e - | None -> Pt.Printl "interface %s {" ai.Name.Value - - let emitProperty (p: InputJsonType.Property) = - let readOnlyModifier = - match p.Readonly with - | Some(true) -> "readonly " - | _ -> "" - match CommentJson.GetCommentForProperty ai.Name.Value p.Name with - | Some comment -> Pt.PrintWithAddedIndent "%s" comment - | _ -> () - Pt.PrintWithAddedIndent "%s%s: %s;" readOnlyModifier p.Name p.Type - - let emitMethod (m: InputJsonType.Method) = - match CommentJson.GetCommentForMethod ai.Name.Value m.Name with - | Some comment -> Pt.PrintWithAddedIndent "%s" comment - | _ -> () - m.Signatures |> Array.iter (Pt.PrintWithAddedIndent "%s;") - - - ai.Properties - |> Array.sortBy (fun p -> p.Name) - |> Array.iter emitProperty - ai.Methods - |> Array.sortBy (fun m -> m.Name) - |> Array.iter emitMethod - ai.Indexer |> Array.collect (fun i -> i.Signatures) |> Array.iter (Pt.PrintWithAddedIndent "%s;") - Pt.Printl "}" - Pt.Printl "" - - if ai.ConstructorSignatures.Length > 0 then - Pt.Printl "declare var %s: {" ai.Name.Value - Pt.PrintWithAddedIndent "prototype: %s;" ai.Name.Value - match CommentJson.GetCommentForConstructor ai.Name.Value with - | Some comment -> Pt.PrintWithAddedIndent "%s" comment - | _ -> () - ai.ConstructorSignatures |> Array.iter (Pt.PrintWithAddedIndent "%s;") - Pt.Printl "};" - Pt.Printl "" - - let EmitTypeDefs flavor = - let emitTypeDef (typeDef: Browser.Typedef) = - Pt.Printl "type %s = %s;" typeDef.NewType (DomTypeToTsType typeDef.Type) - let emitTypeDefFromJson (typeDef: InputJsonType.Root) = - Pt.Printl "type %s = %s;" typeDef.Name.Value typeDef.Type.Value - - match flavor with - | Flavor.Worker -> - browser.Typedefs - |> Array.filter (fun typedef -> knownWorkerInterfaces.Contains typedef.NewType) - |> Array.sortBy (fun i -> i.NewType) - |> Array.iter emitTypeDef - | _ -> - browser.Typedefs - |> Array.filter (fun typedef -> getRemovedItemByName typedef.NewType ItemKind.TypeDef "" |> Option.isNone) - |> Array.sortBy (fun i -> i.NewType) - |> Array.iter emitTypeDef - - InputJson.getAddedItems ItemKind.TypeDef flavor - |> Array.sortBy (fun t -> t.Name) - |> Array.iter emitTypeDefFromJson - - let EmitTheWholeThing flavor (target:TextWriter) = - Pt.Reset() - Pt.Printl "/////////////////////////////" - match flavor with - | Worker -> Pt.Printl "/// Worker APIs" - | _ -> Pt.Printl "/// DOM APIs" - Pt.Printl "/////////////////////////////" - Pt.Printl "" - - EmitDictionaries flavor - browser.CallbackInterfaces.Interfaces - |> Array.sortBy (fun cb -> cb.Name) - |> Array.iter (EmitCallBackInterface flavor) - EmitNonCallbackInterfaces flavor - - // Add missed interface definition from the spec - InputJson.getAddedItems InputJson.Interface flavor - |> Array.iter EmitAddedInterface - - Pt.Printl "declare type EventListenerOrEventListenerObject = EventListener | EventListenerObject;" - Pt.Printl "" - - EmitCallBackFunctions flavor - - if flavor <> Worker then - EmitHTMLElementTagNameMap() - EmitSVGElementTagNameMap() - EmitElementTagNameMap() - EmitNamedConstructors() - - match GetGlobalPollutor flavor with - | Some gp -> - EmitAllMembers flavor gp - EmitEventHandlers "declare var " gp - | _ -> () - - EmitTypeDefs flavor - EmitEnums flavor - - fprintf target "%s" (Pt.GetResult()) - target.Flush() - target.Close() - - let EmitIterator (i: Browser.Interface) = - let isIntegerKeyParam (p: Browser.Param) = - List.contains p.Type integerTypes - - // check anonymous unsigned long getter and length property - let isIterableGetter (m: Browser.Method) = - m.Getter = Some 1 && m.Params.Length = 1 && isIntegerKeyParam m.Params.[0] - - let findIterableGetter() = - let anonymousGetter = - if (i.AnonymousMethods.IsSome) then Array.tryFind isIterableGetter i.AnonymousMethods.Value.Methods - else None - - if (anonymousGetter.IsSome) then anonymousGetter - else if (i.Methods.IsSome) then Array.tryFind isIterableGetter i.Methods.Value.Methods - else None - - let findLengthProperty (p: Browser.Property) = - p.Name = "length" && List.contains p.Type integerTypes - - if i.Name <> "Window" && i.Properties.IsSome then - let iterableGetter = findIterableGetter() - let lengthProperty = Array.tryFind findLengthProperty i.Properties.Value.Properties - if iterableGetter.IsSome && lengthProperty.IsSome then - Pt.Printl "interface %s {" i.Name - Pt.IncreaseIndent() - Pt.Printl "[Symbol.iterator](): IterableIterator<%s>" (DomTypeToTsType iterableGetter.Value.Type) - Pt.DecreaseIndent() - Pt.Printl "}" - Pt.Printl "" - - let EmitES6Thing (target: TextWriter) = - Pt.Reset() - Pt.Printl "/////////////////////////////" - Pt.Printl "/// DOM ES6 APIs" - Pt.Printl "/////////////////////////////" - Pt.Printl "" - - browser.Interfaces - |> Array.sortBy (fun i -> i.Name) - |> Array.iter EmitIterator - - fprintf target "%s" (Pt.GetResult()) - target.Flush() - target.Close() - - let EmitDomWeb () = - EmitTheWholeThing Flavor.Web GlobalVars.tsWebOutput - EmitES6Thing GlobalVars.tsWebES6Output - - let EmitDomWorker () = - ignoreDOMTypes <- true - EmitTheWholeThing Flavor.Worker GlobalVars.tsWorkerOutput diff --git a/baselines/dom.es6.generated.d.ts b/baselines/dom.es6.generated.d.ts index 486a47168..3f2c5ea9b 100644 --- a/baselines/dom.es6.generated.d.ts +++ b/baselines/dom.es6.generated.d.ts @@ -1,4 +1,3 @@ - ///////////////////////////// /// DOM ES6 APIs ///////////////////////////// @@ -43,10 +42,6 @@ interface HTMLCollection { [Symbol.iterator](): IterableIterator } -interface MSRangeCollection { - [Symbol.iterator](): IterableIterator -} - interface MediaList { [Symbol.iterator](): IterableIterator } @@ -75,18 +70,10 @@ interface SourceBufferList { [Symbol.iterator](): IterableIterator } -interface Storage { - [Symbol.iterator](): IterableIterator -} - interface StyleSheetList { [Symbol.iterator](): IterableIterator } -interface StyleSheetPageList { - [Symbol.iterator](): IterableIterator -} - interface TextTrackCueList { [Symbol.iterator](): IterableIterator } diff --git a/baselines/dom.generated.d.ts b/baselines/dom.generated.d.ts index cb6a4dc7f..ec0f8219f 100644 --- a/baselines/dom.generated.d.ts +++ b/baselines/dom.generated.d.ts @@ -1,4 +1,3 @@ - ///////////////////////////// /// DOM APIs ///////////////////////////// @@ -11,10 +10,49 @@ interface Account { rpDisplayName: string; } +interface AddEventListenerOptions extends EventListenerOptions { + once?: boolean; + passive?: boolean; +} + +interface AesCbcParams extends Algorithm { + iv: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | null; +} + +interface AesCtrParams extends Algorithm { + counter: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | null; + length: number; +} + +interface AesDerivedKeyParams extends Algorithm { + length: number; +} + +interface AesGcmParams extends Algorithm { + additionalData?: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | null; + iv: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | null; + tagLength?: number; +} + +interface AesKeyAlgorithm extends KeyAlgorithm { + length: number; +} + +interface AesKeyGenParams extends Algorithm { + length: number; +} + interface Algorithm { name: string; } +interface AnalyserOptions extends AudioNodeOptions { + fftSize?: number; + maxDecibels?: number; + minDecibels?: number; + smoothingTimeConstant?: number; +} + interface AnimationEventInit extends EventInit { animationName?: string; elapsedTime?: number; @@ -23,10 +61,71 @@ interface AnimationEventInit extends EventInit { interface AssertionOptions { allowList?: ScopedCredentialDescriptor[]; extensions?: WebAuthnExtensions; - rpId?: USVString; + rpId?: string; timeoutSeconds?: number; } +interface AudioBufferOptions { + length: number; + numberOfChannels?: number; + sampleRate: number; +} + +interface AudioBufferSourceOptions { + buffer?: AudioBuffer | null; + detune?: number; + loop?: boolean; + loopEnd?: number; + loopStart?: number; + playbackRate?: number; +} + +interface AudioContextInfo { + currentTime?: number; + sampleRate?: number; +} + +interface AudioContextOptions { + latencyHint?: AudioContextLatencyCategory | number; + sampleRate?: number; +} + +interface AudioNodeOptions { + channelCount?: number; + channelCountMode?: ChannelCountMode; + channelInterpretation?: ChannelInterpretation; +} + +interface AudioParamDescriptor { + defaultValue?: number; + maxValue?: number; + minValue?: number; + name?: string; +} + +interface AudioProcessingEventInit extends EventInit { + inputBuffer: AudioBuffer; + outputBuffer: AudioBuffer; + playbackTime: number; +} + +interface AudioTimestamp { + contextTime?: number; + performanceTime?: number; +} + +interface BiquadFilterOptions extends AudioNodeOptions { + Q?: number; + detune?: number; + frequency?: number; + gain?: number; + type?: BiquadFilterType; +} + +interface ByteLengthChunk { + byteLength?: number; +} + interface CacheQueryOptions { cacheName?: string; ignoreMethod?: boolean; @@ -34,6 +133,14 @@ interface CacheQueryOptions { ignoreVary?: boolean; } +interface ChannelMergerOptions extends AudioNodeOptions { + numberOfInputs?: number; +} + +interface ChannelSplitterOptions extends AudioNodeOptions { + numberOfOutputs?: number; +} + interface ClientData { challenge: string; extensions?: WebAuthnExtensions; @@ -43,6 +150,12 @@ interface ClientData { tokenBinding?: string; } +interface ClientQueryOptions { + includeReserved?: boolean; + includeUncontrolled?: boolean; + type?: ClientTypes; +} + interface CloseEventInit extends EventInit { code?: number; reason?: string; @@ -57,6 +170,10 @@ interface ConfirmSiteSpecificExceptionsInformation extends ExceptionInformation arrayOfDomainStrings?: string[]; } +interface ConstantSourceOptions { + offset?: number; +} + interface ConstrainBooleanParameters { exact?: boolean; ideal?: boolean; @@ -82,6 +199,11 @@ interface ConstrainVideoFacingModeParameters { ideal?: VideoFacingModeEnum | VideoFacingModeEnum[]; } +interface ConvolverOptions extends AudioNodeOptions { + buffer?: AudioBuffer | null; + disableNormalization?: boolean; +} + interface CustomEventInit extends EventInit { detail?: T; } @@ -93,6 +215,11 @@ interface DOMRectInit { y?: number; } +interface DelayOptions extends AudioNodeOptions { + delayTime?: number; + maxDelayTime?: number; +} + interface DeviceAccelerationDict { x?: number | null; y?: number | null; @@ -128,6 +255,34 @@ interface DoubleRange { min?: number; } +interface DynamicsCompressorOptions extends AudioNodeOptions { + attack?: number; + knee?: number; + ratio?: number; + release?: number; + threshold?: number; +} + +interface EcKeyAlgorithm extends KeyAlgorithm { + namedCurve: string; +} + +interface EcKeyGenParams extends Algorithm { + namedCurve: string; +} + +interface EcKeyImportParams extends Algorithm { + namedCurve: string; +} + +interface EcdhKeyDeriveParams extends Algorithm { + public: CryptoKey; +} + +interface EcdsaParams extends Algorithm { + hash: string | Algorithm; +} + interface ErrorEventInit extends EventInit { colno?: number; error?: any; @@ -137,9 +292,13 @@ interface ErrorEventInit extends EventInit { } interface EventInit { - scoped?: boolean; bubbles?: boolean; cancelable?: boolean; + scoped?: boolean; +} + +interface EventListenerOptions { + capture?: boolean; } interface EventModifierInit extends UIEventInit { @@ -164,6 +323,24 @@ interface ExceptionInformation { domain?: string | null; } +interface ExtendableEventInit extends EventInit { +} + +interface ExtendableMessageEventInit extends ExtendableEventInit { + data?: any; + lastEventId?: string; + origin?: string; + ports?: MessagePort[] | null; + source?: object | ServiceWorker | MessagePort | null; +} + +interface FetchEventInit extends ExtendableEventInit { + clientId?: string; + request: Request; + reservedClientId?: string; + targetClientId?: string; +} + interface FocusEventInit extends UIEventInit { relatedTarget?: EventTarget | null; } @@ -183,8 +360,12 @@ interface FocusNavigationOrigin { originWidth?: number; } +interface GainOptions extends AudioNodeOptions { + gain?: number; +} + interface GamepadEventInit extends EventInit { - gamepad?: Gamepad | null; + gamepad?: Gamepad; } interface GetNotificationOptions { @@ -192,8 +373,29 @@ interface GetNotificationOptions { } interface HashChangeEventInit extends EventInit { - newURL?: string | null; - oldURL?: string | null; + newURL?: string; + oldURL?: string; +} + +interface HkdfParams extends Algorithm { + hash: string | Algorithm; + info: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | null; + salt: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | null; +} + +interface HmacImportParams extends Algorithm { + hash: string | Algorithm; + length?: number; +} + +interface HmacKeyAlgorithm extends KeyAlgorithm { + hash: KeyAlgorithm; + length: number; +} + +interface HmacKeyGenParams extends Algorithm { + hash: string | Algorithm; + length?: number; } interface IDBIndexParameters { @@ -206,10 +408,15 @@ interface IDBObjectStoreParameters { keyPath?: string | string[]; } +interface IIRFilterOptions extends AudioNodeOptions { + feedback: number[]; + feedforward: number[]; +} + interface IntersectionObserverEntryInit { - isIntersecting: boolean; boundingClientRect: DOMRectInit; intersectionRect: DOMRectInit; + isIntersecting: boolean; rootBounds: DOMRectInit; target: Element; time: number; @@ -221,8 +428,29 @@ interface IntersectionObserverInit { threshold?: number | number[]; } +interface JsonWebKey { + alg?: string; + crv?: string; + d?: string; + dp?: string; + dq?: string; + e?: string; + ext?: boolean; + k?: string; + key_ops?: string[]; + kty?: string; + n?: string; + oth?: RsaOtherPrimesInfo[]; + p?: string; + q?: string; + qi?: string; + use?: string; + x?: string; + y?: string; +} + interface KeyAlgorithm { - name?: string; + name: string; } interface KeyboardEventInit extends EventModifierInit { @@ -327,6 +555,16 @@ interface MSCredentialSpec { type: MSCredentialType; } +interface MSDCCEventInit extends EventInit { + maxFr?: number; + maxFs?: number; +} + +interface MSDSHEventInit extends EventInit { + sources?: number[]; + timestamp?: number; +} + interface MSDelay { roundTrip?: number; roundTripMax?: number; @@ -344,7 +582,7 @@ interface MSDescription extends RTCStats { interface MSFIDOCredentialParameters extends MSCredentialParameters { algorithm?: string | Algorithm; - authenticators?: AAGUID[]; + authenticators?: string[]; } interface MSIPAddressInfo { @@ -529,6 +767,10 @@ interface MSVideoSendPayload extends MSVideoPayload { sendVideoStreamsMax?: number; } +interface MediaElementAudioSourceOptions { + mediaElement: HTMLMediaElement; +} + interface MediaEncryptedEventInit extends EventInit { initData?: ArrayBuffer | null; initDataType?: string; @@ -586,11 +828,13 @@ interface MediaTrackCapabilities { interface MediaTrackConstraintSet { aspectRatio?: number | ConstrainDoubleRange; deviceId?: string | string[] | ConstrainDOMStringParameters; + displaySurface?: string | string[] | ConstrainDOMStringParameters; echoCancelation?: boolean | ConstrainBooleanParameters; facingMode?: string | string[] | ConstrainDOMStringParameters; frameRate?: number | ConstrainDoubleRange; groupId?: string | string[] | ConstrainDOMStringParameters; height?: number | ConstrainLongRange; + logicalSurface?: boolean | ConstrainBooleanParameters; sampleRate?: number | ConstrainLongRange; sampleSize?: number | ConstrainLongRange; volume?: number | ConstrainDoubleRange; @@ -631,11 +875,11 @@ interface MediaTrackSupportedConstraints { interface MessageEventInit extends EventInit { channel?: string; - lastEventId?: string; data?: any; + lastEventId?: string; origin?: string; ports?: MessagePort[]; - source?: Window; + source?: Window | null; } interface MouseEventInit extends EventModifierInit { @@ -667,8 +911,14 @@ interface MutationObserverInit { subtree?: boolean; } +interface NotificationEventInit extends ExtendableEventInit { + action?: string; + notification: Notification; +} + interface NotificationOptions { body?: string; + data?: any; dir?: NotificationDirection; icon?: string; lang?: string; @@ -679,18 +929,49 @@ interface ObjectURLOptions { oneTimeOnly?: boolean; } +interface OfflineAudioCompletionEventInit extends EventInit { + renderedBuffer: AudioBuffer; +} + +interface OscillatorOptions extends AudioNodeOptions { + detune?: number; + frequency?: number; + periodicWave?: PeriodicWave; + type?: OscillatorType; +} + +interface PannerOptions extends AudioNodeOptions { + coneInnerAngle?: number; + coneOuterAngle?: number; + coneOuterGain?: number; + distanceModel?: DistanceModelType; + maxDistance?: number; + orientationX?: number; + orientationY?: number; + orientationZ?: number; + panningModel?: PanningModelType; + positionX?: number; + positionY?: number; + positionZ?: number; + refDistance?: number; + rolloffFactor?: number; +} + interface PaymentCurrencyAmount { currency: string; currencySystem?: string; value: string; } -interface PaymentDetails { +interface PaymentDetailsBase { displayItems?: PaymentItem[]; - error?: string; modifiers?: PaymentDetailsModifier[]; shippingOptions?: PaymentShippingOption[]; - total?: PaymentItem; +} + +interface PaymentDetailsInit extends PaymentDetailsBase { + id?: string; + total: PaymentItem; } interface PaymentDetailsModifier { @@ -700,6 +981,11 @@ interface PaymentDetailsModifier { total?: PaymentItem; } +interface PaymentDetailsUpdate extends PaymentDetailsBase { + error?: string; + total?: PaymentItem; +} + interface PaymentItem { amount: PaymentCurrencyAmount; label: string; @@ -729,10 +1015,21 @@ interface PaymentShippingOption { selected?: boolean; } +interface Pbkdf2Params extends Algorithm { + hash: string | Algorithm; + iterations: number; + salt: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | null; +} + interface PeriodicWaveConstraints { disableNormalization?: boolean; } +interface PeriodicWaveOptions extends PeriodicWaveConstraints { + imag?: number[]; + real?: number[]; +} + interface PointerEventInit extends MouseEventInit { height?: number; isPrimary?: boolean; @@ -760,11 +1057,25 @@ interface ProgressEventInit extends EventInit { total?: number; } +interface PushEventInit extends ExtendableEventInit { + data?: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | string | null; +} + +interface PushSubscriptionChangeInit extends ExtendableEventInit { + newSubscription?: PushSubscription; + oldSubscription?: PushSubscription; +} + interface PushSubscriptionOptionsInit { - applicationServerKey?: BufferSource | null; + applicationServerKey?: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | string | null; userVisibleOnly?: boolean; } +interface QueuingStrategy { + highWaterMark?: number; + size?: WritableStreamChunkCallback; +} + interface RTCConfiguration { bundlePolicy?: RTCBundlePolicy; iceServers?: RTCIceServer[]; @@ -905,6 +1216,7 @@ interface RTCRTPStreamStats extends RTCStats { firCount?: number; isRemote?: boolean; mediaTrackId?: string; + mediaType?: string; nackCount?: number; pliCount?: number; sliCount?: number; @@ -952,7 +1264,7 @@ interface RTCRtpCodecParameters { name?: string; numChannels?: number; parameters?: any; - payloadType?: any; + payloadType?: number; ptime?: number; rtcpFeedback?: RTCRtcpFeedback[]; } @@ -1067,8 +1379,7 @@ interface RegistrationOptions { } interface RequestInit { - signal?: AbortSignal; - body?: Blob | BufferSource | FormData | string | null; + body?: Blob | Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | FormData | string | null; cache?: RequestCache; credentials?: RequestCredentials; headers?: HeadersInit; @@ -1079,6 +1390,7 @@ interface RequestInit { redirect?: RequestRedirect; referrer?: string; referrerPolicy?: ReferrerPolicy; + signal?: AbortSignal; window?: any; } @@ -1088,8 +1400,44 @@ interface ResponseInit { statusText?: string; } +interface RsaHashedImportParams extends Algorithm { + hash: string | Algorithm; +} + +interface RsaHashedKeyAlgorithm extends RsaKeyAlgorithm { + hash: KeyAlgorithm; +} + +interface RsaHashedKeyGenParams extends RsaKeyGenParams { + hash: string | Algorithm; +} + +interface RsaKeyAlgorithm extends KeyAlgorithm { + modulusLength: number; + publicExponent: Uint8Array; +} + +interface RsaKeyGenParams extends Algorithm { + modulusLength: number; + publicExponent: Uint8Array; +} + +interface RsaOaepParams extends Algorithm { + label?: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | null; +} + +interface RsaOtherPrimesInfo { + d?: string; + r?: string; + t?: string; +} + +interface RsaPssParams extends Algorithm { + saltLength: number; +} + interface ScopedCredentialDescriptor { - id: BufferSource; + id: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | null; transports?: Transport[]; type: ScopedCredentialType; } @@ -1097,7 +1445,7 @@ interface ScopedCredentialDescriptor { interface ScopedCredentialOptions { excludeList?: ScopedCredentialDescriptor[]; extensions?: WebAuthnExtensions; - rpId?: USVString; + rpId?: string; timeoutSeconds?: number; } @@ -1106,6 +1454,19 @@ interface ScopedCredentialParameters { type: ScopedCredentialType; } +interface SecurityPolicyViolationEventInit extends EventInit { + blockedURI?: string; + columnNumber?: number; + documentURI?: string; + effectiveDirective?: string; + lineNumber?: number; + originalPolicy?: string; + referrer?: string; + sourceFile?: string; + statusCode?: number; + violatedDirective?: string; +} + interface ServiceWorkerMessageEventInit extends EventInit { data?: any; lastEventId?: string; @@ -1116,11 +1477,16 @@ interface ServiceWorkerMessageEventInit extends EventInit { interface SpeechSynthesisEventInit extends EventInit { charIndex?: number; + charLength?: number; elapsedTime?: number; name?: string; utterance?: SpeechSynthesisUtterance | null; } +interface StereoPannerOptions extends AudioNodeOptions { + pan?: number; +} + interface StoreExceptionsInformation extends ExceptionInformation { detailURI?: string | null; explanationString?: string | null; @@ -1131,6 +1497,20 @@ interface StoreSiteSpecificExceptionsInformation extends StoreExceptionsInformat arrayOfDomainStrings?: string[]; } +interface SyncEventInit extends ExtendableEventInit { + lastChance?: boolean; + tag: string; +} + +interface TextDecodeOptions { + stream?: boolean; +} + +interface TextDecoderOptions { + fatal?: boolean; + ignoreBOM?: boolean; +} + interface TrackEventInit extends EventInit { track?: VideoTrack | AudioTrack | TextTrack | null; } @@ -1145,14 +1525,43 @@ interface UIEventInit extends EventInit { view?: Window | null; } +interface UnderlyingSink { + abort?: WritableStreamErrorCallback; + close?: WritableStreamDefaultControllerCallback; + start: WritableStreamDefaultControllerCallback; + write?: WritableStreamChunkCallback; +} + +interface VRDisplayEventInit extends EventInit { + display: VRDisplay; + reason?: VRDisplayEventReason; +} + +interface VRLayer { + leftBounds?: number[] | null; + rightBounds?: number[] | null; + source?: HTMLCanvasElement | null; +} + +interface VRStageParameters { + sittingToStandingTransform?: Float32Array; + sizeX?: number; + sizeY?: number; +} + +interface WaveShaperOptions extends AudioNodeOptions { + curve?: number[]; + oversample?: OverSampleType; +} + interface WebAuthnExtensions { } interface WebGLContextAttributes { - failIfMajorPerformanceCaveat?: boolean; alpha?: boolean; antialias?: boolean; depth?: boolean; + failIfMajorPerformanceCaveat?: boolean; premultipliedAlpha?: boolean; preserveDrawingBuffer?: boolean; stencil?: boolean; @@ -1192,19 +1601,55 @@ declare var ANGLE_instanced_arrays: { readonly VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE: number; }; -interface AbstractWorkerEventMap { - "error": ErrorEvent; +interface AbortController { + readonly signal: AbortSignal; + abort(): void; } -interface AbstractWorker { - onerror: (this: AbstractWorker, ev: ErrorEvent) => any; - addEventListener(type: K, listener: (this: AbstractWorker, ev: AbstractWorkerEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; - addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; - removeEventListener(type: K, listener: (this: AbstractWorker, ev: AbstractWorkerEventMap[K]) => any, options?: boolean | EventListenerOptions): void; - removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; +declare var AbortController: { + prototype: AbortController; + new(): AbortController; +}; + +interface AbortSignalEventMap { + "abort": ProgressEvent; } -interface AnalyserNode extends AudioNode { +interface AbortSignal extends EventTarget { + readonly aborted: boolean; + onabort: ((this: AbortSignal, ev: ProgressEvent) => any) | null; + addEventListener(type: K, listener: (this: AbortSignal, ev: AbortSignalEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; + addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; + removeEventListener(type: K, listener: (this: AbortSignal, ev: AbortSignalEventMap[K]) => any, options?: boolean | EventListenerOptions): void; + removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; +} + +declare var AbortSignal: { + prototype: AbortSignal; + new(): AbortSignal; +}; + +interface AbstractWorkerEventMap { + "error": ErrorEvent; +} + +interface AbstractWorker { + onerror: ((this: AbstractWorker, ev: ErrorEvent) => any) | null; + addEventListener(type: K, listener: (this: AbstractWorker, ev: AbstractWorkerEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; + addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; + removeEventListener(type: K, listener: (this: AbstractWorker, ev: AbstractWorkerEventMap[K]) => any, options?: boolean | EventListenerOptions): void; + removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; +} + +interface AesCfbParams extends Algorithm { + iv: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer; +} + +interface AesCmacParams extends Algorithm { + length: number; +} + +interface AnalyserNode extends AudioNode { fftSize: number; readonly frequencyBinCount: number; maxDecibels: number; @@ -1221,10 +1666,39 @@ declare var AnalyserNode: { new(): AnalyserNode; }; +interface Animation { + currentTime: number | null; + effect: AnimationEffectReadOnly; + readonly finished: Promise; + id: string; + readonly pending: boolean; + readonly playState: "idle" | "running" | "paused" | "finished"; + playbackRate: number; + readonly ready: Promise; + startTime: number; + timeline: AnimationTimeline; + cancel(): void; + finish(): void; + oncancel: (this: Animation, ev: AnimationPlaybackEvent) => any; + onfinish: (this: Animation, ev: AnimationPlaybackEvent) => any; + pause(): void; + play(): void; + reverse(): void; +} + +declare var Animation: { + prototype: Animation; + new(effect?: AnimationEffectReadOnly, timeline?: AnimationTimeline): Animation; +}; + +interface AnimationEffectReadOnly { + readonly timing: number; + getComputedTiming(): ComputedTimingProperties; +} + interface AnimationEvent extends Event { readonly animationName: string; readonly elapsedTime: number; - initAnimationEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, animationNameArg: string, elapsedTimeArg: number): void; } declare var AnimationEvent: { @@ -1232,6 +1706,43 @@ declare var AnimationEvent: { new(typeArg: string, eventInitDict?: AnimationEventInit): AnimationEvent; }; +interface AnimationKeyFrame { + easing?: string | string[]; + offset?: number | null | (number | null)[]; + [index: string]: string | number | number[] | string[] | null | (number | null)[] | undefined; +} + +interface AnimationOptions { + delay?: number; + direction?: "normal" | "reverse" | "alternate" | "alternate-reverse"; + duration?: number; + easing?: string; + endDelay?: number; + fill?: "none" | "forwards" | "backwards" | "both"| "auto"; + id?: string; + iterationStart?: number; + iterations?: number; +} + +interface AnimationPlaybackEvent extends Event { + readonly currentTime: number | null; + readonly timelineTime: number | null; +} + +declare var AnimationPlaybackEvent: { + prototype: AnimationPlaybackEvent; + new(type: string, eventInitDict?: AnimationPlaybackEventInit): AnimationPlaybackEvent; +}; + +interface AnimationPlaybackEventInit extends EventInit { + currentTime?: number | null; + timelineTime?: number | null; +} + +interface AnimationTimeline { + readonly currentTime: number | null; +} + interface ApplicationCacheEventMap { "cached": Event; "checking": Event; @@ -1244,14 +1755,14 @@ interface ApplicationCacheEventMap { } interface ApplicationCache extends EventTarget { - oncached: (this: ApplicationCache, ev: Event) => any; - onchecking: (this: ApplicationCache, ev: Event) => any; - ondownloading: (this: ApplicationCache, ev: Event) => any; - onerror: (this: ApplicationCache, ev: Event) => any; - onnoupdate: (this: ApplicationCache, ev: Event) => any; - onobsolete: (this: ApplicationCache, ev: Event) => any; - onprogress: (this: ApplicationCache, ev: ProgressEvent) => any; - onupdateready: (this: ApplicationCache, ev: Event) => any; + oncached: ((this: ApplicationCache, ev: Event) => any) | null; + onchecking: ((this: ApplicationCache, ev: Event) => any) | null; + ondownloading: ((this: ApplicationCache, ev: Event) => any) | null; + onerror: ((this: ApplicationCache, ev: Event) => any) | null; + onnoupdate: ((this: ApplicationCache, ev: Event) => any) | null; + onobsolete: ((this: ApplicationCache, ev: Event) => any) | null; + onprogress: ((this: ApplicationCache, ev: ProgressEvent) => any) | null; + onupdateready: ((this: ApplicationCache, ev: Event) => any) | null; readonly status: number; abort(): void; swapCache(): void; @@ -1279,9 +1790,13 @@ declare var ApplicationCache: { readonly UPDATEREADY: number; }; +interface AssignedNodesOptions { + flatten?: boolean; +} + interface Attr extends Node { readonly name: string; - readonly ownerElement: Element; + readonly ownerElement: Element | null; readonly prefix: string | null; readonly specified: boolean; value: string; @@ -1308,7 +1823,7 @@ declare var AudioBuffer: { }; interface AudioBufferSourceNodeEventMap { - "ended": MediaStreamErrorEvent; + "ended": Event; } interface AudioBufferSourceNode extends AudioNode { @@ -1317,7 +1832,7 @@ interface AudioBufferSourceNode extends AudioNode { loop: boolean; loopEnd: number; loopStart: number; - onended: (this: AudioBufferSourceNode, ev: MediaStreamErrorEvent) => any; + onended: ((this: AudioBufferSourceNode, ev: Event) => any) | null; readonly playbackRate: AudioParam; start(when?: number, offset?: number, duration?: number): void; stop(when?: number): void; @@ -1340,7 +1855,7 @@ interface AudioContextBase extends EventTarget { readonly currentTime: number; readonly destination: AudioDestinationNode; readonly listener: AudioListener; - onstatechange: (this: AudioContext, ev: Event) => any; + onstatechange: ((this: AudioContext, ev: Event) => any) | null; readonly sampleRate: number; readonly state: AudioContextState; close(): Promise; @@ -1390,10 +1905,15 @@ declare var AudioDestinationNode: { }; interface AudioListener { + /** @deprecated */ dopplerFactor: number; + /** @deprecated */ speedOfSound: number; + /** @deprecated */ setOrientation(x: number, y: number, z: number, xUp: number, yUp: number, zUp: number): void; + /** @deprecated */ setPosition(x: number, y: number, z: number): void; + /** @deprecated */ setVelocity(x: number, y: number, z: number): void; } @@ -1411,9 +1931,13 @@ interface AudioNode extends EventTarget { readonly numberOfOutputs: number; connect(destination: AudioNode, output?: number, input?: number): AudioNode; connect(destination: AudioParam, output?: number): void; - disconnect(output?: number): void; - disconnect(destination: AudioNode, output?: number, input?: number): void; - disconnect(destination: AudioParam, output?: number): void; + disconnect(): void; + disconnect(output: number): void; + disconnect(destination: AudioNode): void; + disconnect(destination: AudioNode, output: number): void; + disconnect(destination: AudioNode, output: number, input: number): void; + disconnect(destination: AudioParam): void; + disconnect(destination: AudioParam, output: number): void; } declare var AudioNode: { @@ -1424,12 +1948,12 @@ declare var AudioNode: { interface AudioParam { readonly defaultValue: number; value: number; - cancelScheduledValues(startTime: number): AudioParam; + cancelScheduledValues(cancelTime: number): AudioParam; exponentialRampToValueAtTime(value: number, endTime: number): AudioParam; linearRampToValueAtTime(value: number, endTime: number): AudioParam; setTargetAtTime(target: number, startTime: number, timeConstant: number): AudioParam; setValueAtTime(value: number, startTime: number): AudioParam; - setValueCurveAtTime(values: Float32Array, startTime: number, duration: number): AudioParam; + setValueCurveAtTime(values: number[], startTime: number, duration: number): AudioParam; } declare var AudioParam: { @@ -1470,9 +1994,9 @@ interface AudioTrackListEventMap { interface AudioTrackList extends EventTarget { readonly length: number; - onaddtrack: (this: AudioTrackList, ev: TrackEvent) => any; - onchange: (this: AudioTrackList, ev: Event) => any; - onremovetrack: (this: AudioTrackList, ev: TrackEvent) => any; + onaddtrack: ((this: AudioTrackList, ev: TrackEvent) => any) | null; + onchange: ((this: AudioTrackList, ev: Event) => any) | null; + onremovetrack: ((this: AudioTrackList, ev: TrackEvent) => any) | null; getTrackById(id: string): AudioTrack | null; item(index: number): AudioTrack; addEventListener(type: K, listener: (this: AudioTrackList, ev: AudioTrackListEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; @@ -1505,6 +2029,28 @@ declare var BeforeUnloadEvent: { new(): BeforeUnloadEvent; }; +interface BhxBrowser { + readonly lastError: DOMException; + checkMatchesGlobExpression(pattern: string, value: string): boolean; + checkMatchesUriExpression(pattern: string, value: string): boolean; + clearLastError(): void; + currentWindowId(): number; + fireExtensionApiTelemetry(functionName: string, isSucceeded: boolean, isSupported: boolean, errorString: string): void; + genericFunction(functionId: number, destination: any, parameters?: string, callbackId?: number): void; + genericSynchronousFunction(functionId: number, parameters?: string): string; + getExtensionId(): string; + getThisAddress(): any; + registerGenericFunctionCallbackHandler(callbackHandler: Function): void; + registerGenericListenerHandler(eventHandler: Function): void; + setLastError(parameters: string): void; + webPlatformGenericFunction(destination: any, parameters?: string, callbackId?: number): void; +} + +declare var BhxBrowser: { + prototype: BhxBrowser; + new(): BhxBrowser; +}; + interface BiquadFilterNode extends AudioNode { readonly Q: AudioParam; readonly detune: AudioParam; @@ -1532,15 +2078,52 @@ declare var Blob: { new (blobParts?: any[], options?: BlobPropertyBag): Blob; }; +interface BlobPropertyBag { + endings?: string; + type?: string; +} + interface Body { readonly bodyUsed: boolean; arrayBuffer(): Promise; blob(): Promise; + formData(): Promise; json(): Promise; text(): Promise; - formData(): Promise; } +interface BroadcastChannel extends EventTarget { + readonly name: string; + onmessage: (ev: MessageEvent) => any; + onmessageerror: (ev: MessageEvent) => any; + addEventListener(type: K, listener: (this: BroadcastChannel, ev: BroadcastChannelEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; + addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; + close(): void; + postMessage(message: any): void; + removeEventListener(type: K, listener: (this: BroadcastChannel, ev: BroadcastChannelEventMap[K]) => any, options?: boolean | EventListenerOptions): void; + removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; +} + +declare var BroadcastChannel: { + prototype: BroadcastChannel; + new(name: string): BroadcastChannel; +}; + +interface BroadcastChannelEventMap { + message: MessageEvent; + messageerror: MessageEvent; +} + +interface ByteLengthQueuingStrategy { + highWaterMark: number; + size(chunk?: any): number; +} + +declare var ByteLengthQueuingStrategy: { + prototype: ByteLengthQueuingStrategy; + new(strategy: QueuingStrategy): ByteLengthQueuingStrategy; +}; + interface CDATASection extends Text { } @@ -1550,6 +2133,7 @@ declare var CDATASection: { }; interface CSS { + escape(value: string): string; supports(property: string, value?: string): boolean; } declare var CSS: CSS; @@ -1609,7 +2193,7 @@ interface CSSKeyframesRule extends CSSRule { name: string; appendRule(rule: string): void; deleteRule(rule: string): void; - findRule(rule: string): CSSKeyframeRule; + findRule(rule: string): CSSKeyframeRule | null; } declare var CSSKeyframesRule: { @@ -1650,8 +2234,8 @@ declare var CSSPageRule: { interface CSSRule { cssText: string; - readonly parentRule: CSSRule; - readonly parentStyleSheet: CSSStyleSheet; + readonly parentRule: CSSRule | null; + readonly parentStyleSheet: CSSStyleSheet | null; readonly type: number; readonly CHARSET_RULE: number; readonly FONT_FACE_RULE: number; @@ -1686,7 +2270,7 @@ declare var CSSRule: { interface CSSRuleList { readonly length: number; - item(index: number): CSSRule; + item(index: number): CSSRule | null; [index: number]: CSSRule; } @@ -1811,11 +2395,32 @@ interface CSSStyleDeclaration { fontStyle: string | null; fontVariant: string | null; fontWeight: string | null; + gap: string | null; glyphOrientationHorizontal: string | null; glyphOrientationVertical: string | null; + grid: string | null; + gridArea: string | null; + gridAutoColumns: string | null; + gridAutoFlow: string | null; + gridAutoRows: string | null; + gridColumn: string | null; + gridColumnEnd: string | null; + gridColumnGap: string | null; + gridColumnStart: string | null; + gridGap: string | null; + gridRow: string | null; + gridRowEnd: string | null; + gridRowGap: string | null; + gridRowStart: string | null; + gridTemplate: string | null; + gridTemplateAreas: string | null; + gridTemplateColumns: string | null; + gridTemplateRows: string | null; height: string | null; imeMode: string | null; justifyContent: string | null; + justifyItems: string | null; + justifySelf: string | null; kerning: string | null; layoutGrid: string | null; layoutGridChar: string | null; @@ -1842,6 +2447,7 @@ interface CSSStyleDeclaration { markerMid: string | null; markerStart: string | null; mask: string | null; + maskImage: string | null; maxHeight: string | null; maxWidth: string | null; minHeight: string | null; @@ -1893,6 +2499,8 @@ interface CSSStyleDeclaration { msWrapFlow: string; msWrapMargin: any; msWrapThrough: string; + objectFit: string | null; + objectPosition: string | null; opacity: string | null; order: string | null; orphans: string | null; @@ -1913,13 +2521,16 @@ interface CSSStyleDeclaration { pageBreakBefore: string | null; pageBreakInside: string | null; readonly parentRule: CSSRule; + penAction: string | null; perspective: string | null; perspectiveOrigin: string | null; pointerEvents: string | null; position: string | null; quotes: string | null; + resize: string | null; right: string | null; rotate: string | null; + rowGap: string | null; rubyAlign: string | null; rubyOverhang: string | null; rubyPosition: string | null; @@ -1938,6 +2549,7 @@ interface CSSStyleDeclaration { textAlign: string | null; textAlignLast: string | null; textAnchor: string | null; + textCombineUpright: string | null; textDecoration: string | null; textIndent: string | null; textJustify: string | null; @@ -1959,6 +2571,7 @@ interface CSSStyleDeclaration { transitionTimingFunction: string | null; translate: string | null; unicodeBidi: string | null; + userSelect: string | null; verticalAlign: string | null; visibility: string | null; webkitAlignContent: string | null; @@ -2041,13 +2654,11 @@ interface CSSStyleDeclaration { writingMode: string | null; zIndex: string | null; zoom: string | null; - resize: string | null; - userSelect: string | null; getPropertyPriority(propertyName: string): string; getPropertyValue(propertyName: string): string; item(index: number): string; removeProperty(propertyName: string): string; - setProperty(propertyName: string, value: string | null, priority?: string): void; + setProperty(propertyName: string, value: string | null, priority?: string | null): void; [index: number]: string; } @@ -2057,7 +2668,6 @@ declare var CSSStyleDeclaration: { }; interface CSSStyleRule extends CSSRule { - readonly readOnly: boolean; selectorText: string; readonly style: CSSStyleDeclaration; } @@ -2069,21 +2679,32 @@ declare var CSSStyleRule: { interface CSSStyleSheet extends StyleSheet { readonly cssRules: CSSRuleList; + /** @deprecated */ cssText: string; + /** @deprecated */ readonly id: string; + /** @deprecated */ readonly imports: StyleSheetList; + /** @deprecated */ readonly isAlternate: boolean; + /** @deprecated */ readonly isPrefAlternate: boolean; - readonly ownerRule: CSSRule; + readonly ownerRule: CSSRule | null; + /** @deprecated */ readonly owningElement: Element; - readonly pages: StyleSheetPageList; + /** @deprecated */ + readonly pages: any; + /** @deprecated */ readonly readOnly: boolean; readonly rules: CSSRuleList; + /** @deprecated */ addImport(bstrURL: string, lIndex?: number): number; + /** @deprecated */ addPageRule(bstrSelector: string, bstrStyle: string, lIndex?: number): number; addRule(bstrSelector: string, bstrStyle?: string, lIndex?: number): number; deleteRule(index?: number): void; insertRule(rule: string, index?: number): number; + /** @deprecated */ removeImport(lIndex: number): void; removeRule(lIndex: number): void; } @@ -2102,13 +2723,13 @@ declare var CSSSupportsRule: { }; interface Cache { - add(request: RequestInfo): Promise; - addAll(requests: RequestInfo[]): Promise; - delete(request: RequestInfo, options?: CacheQueryOptions): Promise; - keys(request?: RequestInfo, options?: CacheQueryOptions): Promise; - match(request: RequestInfo, options?: CacheQueryOptions): Promise; - matchAll(request?: RequestInfo, options?: CacheQueryOptions): Promise; - put(request: RequestInfo, response: Response): Promise; + add(request: Request | string): Promise; + addAll(requests: (Request | string)[]): Promise; + delete(request: Request | string, options?: CacheQueryOptions): Promise; + keys(request?: Request | string, options?: CacheQueryOptions): Promise; + match(request: Request | string, options?: CacheQueryOptions): Promise; + matchAll(request?: Request | string, options?: CacheQueryOptions): Promise; + put(request: Request | string, response: Response): Promise; } declare var Cache: { @@ -2120,7 +2741,7 @@ interface CacheStorage { delete(cacheName: string): Promise; has(cacheName: string): Promise; keys(): Promise; - match(request: RequestInfo, options?: CacheQueryOptions): Promise; + match(request: Request | string, options?: CacheQueryOptions): Promise; open(cacheName: string): Promise; } @@ -2129,6 +2750,13 @@ declare var CacheStorage: { new(): CacheStorage; }; +interface Canvas2DContextAttributes { + alpha?: boolean; + storage?: boolean; + willReadFrequently?: boolean; + [attribute: string]: boolean | string | undefined; +} + interface CanvasGradient { addColorStop(offset: number, color: string): void; } @@ -2141,6 +2769,7 @@ declare var CanvasGradient: { interface CanvasPathMethods { arc(x: number, y: number, radius: number, startAngle: number, endAngle: number, anticlockwise?: boolean): void; arcTo(x1: number, y1: number, x2: number, y2: number, radius: number): void; + arcTo(x1: number, y1: number, x2: number, y2: number, radiusX: number, radiusY: number, rotation: number): void; bezierCurveTo(cp1x: number, cp1y: number, cp2x: number, cp2y: number, x: number, y: number): void; closePath(): void; ellipse(x: number, y: number, radiusX: number, radiusY: number, rotation: number, startAngle: number, endAngle: number, anticlockwise?: boolean): void; @@ -2159,7 +2788,7 @@ declare var CanvasPattern: { new(): CanvasPattern; }; -interface CanvasRenderingContext2D extends Object, CanvasPathMethods { +interface CanvasRenderingContext2D extends CanvasPathMethods { readonly canvas: HTMLCanvasElement; fillStyle: string | CanvasGradient | CanvasPattern; font: string; @@ -2171,7 +2800,9 @@ interface CanvasRenderingContext2D extends Object, CanvasPathMethods { lineJoin: string; lineWidth: number; miterLimit: number; + mozImageSmoothingEnabled: boolean; msFillRule: CanvasFillRule; + oImageSmoothingEnabled: boolean; shadowBlur: number; shadowColor: string; shadowOffsetX: number; @@ -2179,9 +2810,7 @@ interface CanvasRenderingContext2D extends Object, CanvasPathMethods { strokeStyle: string | CanvasGradient | CanvasPattern; textAlign: string; textBaseline: string; - mozImageSmoothingEnabled: boolean; webkitImageSmoothingEnabled: boolean; - oImageSmoothingEnabled: boolean; beginPath(): void; clearRect(x: number, y: number, w: number, h: number): void; clip(fillRule?: CanvasFillRule): void; @@ -2191,6 +2820,7 @@ interface CanvasRenderingContext2D extends Object, CanvasPathMethods { createPattern(image: HTMLImageElement | HTMLCanvasElement | HTMLVideoElement, repetition: string): CanvasPattern; createRadialGradient(x0: number, y0: number, r0: number, x1: number, y1: number, r1: number): CanvasGradient; drawFocusIfNeeded(element: Element): void; + drawFocusIfNeeded(path: Path2D, element: Element): void; drawImage(image: HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | ImageBitmap, dstX: number, dstY: number): void; drawImage(image: HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | ImageBitmap, dstX: number, dstY: number, dstW: number, dstH: number): void; drawImage(image: HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | ImageBitmap, srcX: number, srcY: number, srcW: number, srcH: number, dstX: number, dstY: number, dstW: number, dstH: number): void; @@ -2202,6 +2832,8 @@ interface CanvasRenderingContext2D extends Object, CanvasPathMethods { getLineDash(): number[]; isPointInPath(x: number, y: number, fillRule?: CanvasFillRule): boolean; isPointInPath(path: Path2D, x: number, y: number, fillRule?: CanvasFillRule): boolean; + isPointInStroke(x: number, y: number, fillRule?: CanvasFillRule): boolean; + isPointInStroke(path: Path2D, x: number, y: number, fillRule?: CanvasFillRule): boolean; measureText(text: string): TextMetrics; putImageData(imagedata: ImageData, dx: number, dy: number, dirtyX?: number, dirtyY?: number, dirtyWidth?: number, dirtyHeight?: number): void; restore(): void; @@ -2291,16 +2923,22 @@ declare var ClipboardEvent: { new(type: string, eventInitDict?: ClipboardEventInit): ClipboardEvent; }; +interface ClipboardEventInit extends EventInit { + data?: string; + dataType?: string; +} + interface CloseEvent extends Event { readonly code: number; readonly reason: string; readonly wasClean: boolean; + /** @deprecated */ initCloseEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, wasCleanArg: boolean, codeArg: number, reasonArg: string): void; } declare var CloseEvent: { prototype: CloseEvent; - new(typeArg: string, eventInitDict?: CloseEventInit): CloseEvent; + new(type: string, eventInitDict?: CloseEventInit): CloseEvent; }; interface Comment extends CharacterData { @@ -2309,7 +2947,7 @@ interface Comment extends CharacterData { declare var Comment: { prototype: Comment; - new(): Comment; + new(data?: string): Comment; }; interface CompositionEvent extends UIEvent { @@ -2323,10 +2961,28 @@ declare var CompositionEvent: { new(typeArg: string, eventInitDict?: CompositionEventInit): CompositionEvent; }; +interface ComputedTimingProperties { + activeDuration: number; + currentIteration: number | null; + endTime: number; + localTime: number | null; + progress: number | null; +} + +interface ConcatParams extends Algorithm { + algorithmId: Uint8Array; + hash?: string | Algorithm; + partyUInfo: Uint8Array; + partyVInfo: Uint8Array; + privateInfo?: Uint8Array; + publicInfo?: Uint8Array; +} + interface Console { - assert(test?: boolean, message?: string, ...optionalParams: any[]): void; + memory: any; + assert(condition?: boolean, message?: string, ...data: any[]): void; clear(): void; - count(countTitle?: string): void; + count(label?: string): void; debug(message?: any, ...optionalParams: any[]): void; dir(value?: any, ...optionalParams: any[]): void; dirxml(value: any): void; @@ -2337,13 +2993,17 @@ interface Console { groupEnd(): void; info(message?: any, ...optionalParams: any[]): void; log(message?: any, ...optionalParams: any[]): void; + markTimeline(label?: string): void; msIsIndependentlyComposed(element: Element): boolean; profile(reportName?: string): void; profileEnd(): void; select(element: Element): void; - table(...data: any[]): void; - time(timerName?: string): void; - timeEnd(timerName?: string): void; + table(...tabularData: any[]): void; + time(label?: string): void; + timeEnd(label?: string): void; + timeStamp(label?: string): void; + timeline(label?: string): void; + timelineEnd(label?: string): void; trace(message?: any, ...optionalParams: any[]): void; warn(message?: any, ...optionalParams: any[]): void; } @@ -2353,6 +3013,16 @@ declare var Console: { new(): Console; }; +interface ContentScriptGlobalScope extends EventTarget { + readonly msContentScript: ExtensionScriptApis; + readonly window: Window; +} + +declare var ContentScriptGlobalScope: { + prototype: ContentScriptGlobalScope; + new(): ContentScriptGlobalScope; +}; + interface ConvolverNode extends AudioNode { buffer: AudioBuffer | null; normalize: boolean; @@ -2378,8 +3048,19 @@ declare var Coordinates: { new(): Coordinates; }; -interface Crypto extends Object, RandomSource { +interface CountQueuingStrategy { + highWaterMark: number; + size(): number; +} + +declare var CountQueuingStrategy: { + prototype: CountQueuingStrategy; + new(strategy: QueuingStrategy): CountQueuingStrategy; +}; + +interface Crypto { readonly subtle: SubtleCrypto; + getRandomValues(array: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | null): Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | null; } declare var Crypto: { @@ -2409,6 +3090,12 @@ declare var CryptoKeyPair: { new(): CryptoKeyPair; }; +interface CustomElementRegistry { + define(name: string, constructor: Function, options?: ElementDefinitionOptions): void; + get(name: string): any; + whenDefined(name: string): PromiseLike; +} + interface CustomEvent extends Event { readonly detail: T; initCustomEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, detailArg: T): void; @@ -2498,7 +3185,7 @@ declare var DOMException: { interface DOMImplementation { createDocument(namespaceURI: string | null, qualifiedName: string | null, doctype: DocumentType | null): Document; createDocumentType(qualifiedName: string, publicId: string, systemId: string): DocumentType; - createHTMLDocument(title: string): Document; + createHTMLDocument(title?: string): Document; hasFeature(feature: string | null, version: string | null): boolean; } @@ -2524,6 +3211,42 @@ declare var DOMParser: { new(): DOMParser; }; +interface DOMRect extends DOMRectReadOnly { + height: number; + width: number; + x: number; + y: number; +} + +declare var DOMRect: { + prototype: DOMRect; + new (x?: number, y?: number, width?: number, height?: number): DOMRect; + fromRect(rectangle?: DOMRectInit): DOMRect; +}; + +interface DOMRectList { + readonly length: number; + item(index: number): DOMRect | null; + [index: number]: DOMRect; +} + +interface DOMRectReadOnly { + readonly bottom: number; + readonly height: number; + readonly left: number; + readonly right: number; + readonly top: number; + readonly width: number; + readonly x: number; + readonly y: number; +} + +declare var DOMRectReadOnly: { + prototype: DOMRectReadOnly; + new (x?: number, y?: number, width?: number, height?: number): DOMRectReadOnly; + fromRect(rectangle?: DOMRectInit): DOMRectReadOnly; +}; + interface DOMSettableTokenList extends DOMTokenList { value: string; } @@ -2556,10 +3279,10 @@ declare var DOMStringMap: { interface DOMTokenList { readonly length: number; - add(...token: string[]): void; + add(...tokens: string[]): void; contains(token: string): boolean; - item(index: number): string; - remove(...token: string[]): void; + item(index: number): string | null; + remove(...tokens: string[]): void; toString(): string; toggle(token: string, force?: boolean): boolean; [index: number]: string; @@ -2616,10 +3339,11 @@ declare var DataTransferItem: { interface DataTransferItemList { readonly length: number; add(data: File): DataTransferItem | null; + add(data: string, type: string): DataTransferItem | null; clear(): void; item(index: number): DataTransferItem; remove(index: number): void; - [index: number]: DataTransferItem; + [name: number]: DataTransferItem; } declare var DataTransferItemList: { @@ -2706,11 +3430,30 @@ declare var DeviceRotationRate: { new(): DeviceRotationRate; }; +interface DhImportKeyParams extends Algorithm { + generator: Uint8Array; + prime: Uint8Array; +} + +interface DhKeyAlgorithm extends KeyAlgorithm { + generator: Uint8Array; + prime: Uint8Array; +} + +interface DhKeyDeriveParams extends Algorithm { + public: CryptoKey; +} + +interface DhKeyGenParams extends Algorithm { + generator: Uint8Array; + prime: Uint8Array; +} + interface DocumentEventMap extends GlobalEventHandlersEventMap { "abort": UIEvent; - "activate": UIEvent; - "beforeactivate": UIEvent; - "beforedeactivate": UIEvent; + "activate": Event; + "beforeactivate": Event; + "beforedeactivate": Event; "blur": FocusEvent; "canplay": Event; "canplaythrough": Event; @@ -2718,7 +3461,7 @@ interface DocumentEventMap extends GlobalEventHandlersEventMap { "click": MouseEvent; "contextmenu": PointerEvent; "dblclick": MouseEvent; - "deactivate": UIEvent; + "deactivate": Event; "drag": DragEvent; "dragend": DragEvent; "dragenter": DragEvent; @@ -2728,7 +3471,7 @@ interface DocumentEventMap extends GlobalEventHandlersEventMap { "drop": DragEvent; "durationchange": Event; "emptied": Event; - "ended": MediaStreamErrorEvent; + "ended": Event; "error": ErrorEvent; "focus": FocusEvent; "fullscreenchange": Event; @@ -2748,25 +3491,25 @@ interface DocumentEventMap extends GlobalEventHandlersEventMap { "mouseover": MouseEvent; "mouseup": MouseEvent; "mousewheel": WheelEvent; - "MSContentZoom": UIEvent; - "MSGestureChange": MSGestureEvent; - "MSGestureDoubleTap": MSGestureEvent; - "MSGestureEnd": MSGestureEvent; - "MSGestureHold": MSGestureEvent; - "MSGestureStart": MSGestureEvent; - "MSGestureTap": MSGestureEvent; - "MSInertiaStart": MSGestureEvent; - "MSManipulationStateChanged": MSManipulationEvent; - "MSPointerCancel": MSPointerEvent; - "MSPointerDown": MSPointerEvent; - "MSPointerEnter": MSPointerEvent; - "MSPointerLeave": MSPointerEvent; - "MSPointerMove": MSPointerEvent; - "MSPointerOut": MSPointerEvent; - "MSPointerOver": MSPointerEvent; - "MSPointerUp": MSPointerEvent; - "mssitemodejumplistitemremoved": MSSiteModeEvent; - "msthumbnailclick": MSSiteModeEvent; + "MSContentZoom": Event; + "MSGestureChange": Event; + "MSGestureDoubleTap": Event; + "MSGestureEnd": Event; + "MSGestureHold": Event; + "MSGestureStart": Event; + "MSGestureTap": Event; + "MSInertiaStart": Event; + "MSManipulationStateChanged": Event; + "MSPointerCancel": Event; + "MSPointerDown": Event; + "MSPointerEnter": Event; + "MSPointerLeave": Event; + "MSPointerMove": Event; + "MSPointerOut": Event; + "MSPointerOver": Event; + "MSPointerUp": Event; + "mssitemodejumplistitemremoved": Event; + "msthumbnailclick": Event; "pause": Event; "play": Event; "playing": Event; @@ -2787,19 +3530,17 @@ interface DocumentEventMap extends GlobalEventHandlersEventMap { "submit": Event; "suspend": Event; "timeupdate": Event; - "touchcancel": TouchEvent; - "touchend": TouchEvent; - "touchmove": TouchEvent; - "touchstart": TouchEvent; + "touchcancel": Event; + "touchend": Event; + "touchmove": Event; + "touchstart": Event; "volumechange": Event; "waiting": Event; "webkitfullscreenchange": Event; "webkitfullscreenerror": Event; - "focusin": FocusEvent; - "focusout": FocusEvent; } -interface Document extends Node, GlobalEventHandlers, NodeSelector, DocumentEvent, ParentNode, DocumentOrShadowRoot { +interface Document extends Node, GlobalEventHandlers, ParentNode, DocumentEvent { /** * Sets or gets the URL for the current document. */ @@ -2823,11 +3564,11 @@ interface Document extends Node, GlobalEventHandlers, NodeSelector, DocumentEven /** * Retrieves a collection of all a objects that have a name and/or id property. Objects in this collection are in HTML source order. */ - anchors: HTMLCollectionOf; + readonly anchors: HTMLCollectionOf; /** * Retrieves a collection of all applet objects in the document. */ - applets: HTMLCollectionOf; + readonly applets: HTMLCollectionOf; /** * Deprecated. Sets or retrieves a value that indicates the background color behind the object. */ @@ -2863,7 +3604,7 @@ interface Document extends Node, GlobalEventHandlers, NodeSelector, DocumentEven /** * Gets a reference to the root node of the document. */ - documentElement: HTMLElement; + readonly documentElement: HTMLElement; /** * Sets or gets the security domain of the document. */ @@ -2871,7 +3612,7 @@ interface Document extends Node, GlobalEventHandlers, NodeSelector, DocumentEven /** * Retrieves a collection of all embed objects in the document. */ - embeds: HTMLCollectionOf; + readonly embeds: HTMLCollectionOf; /** * Sets or gets the foreground (text) color of the document. */ @@ -2879,7 +3620,7 @@ interface Document extends Node, GlobalEventHandlers, NodeSelector, DocumentEven /** * Retrieves a collection, in source order, of all form objects in the document. */ - forms: HTMLCollectionOf; + readonly forms: HTMLCollectionOf; readonly fullscreenElement: Element | null; readonly fullscreenEnabled: boolean; readonly head: HTMLHeadElement; @@ -2887,7 +3628,7 @@ interface Document extends Node, GlobalEventHandlers, NodeSelector, DocumentEven /** * Retrieves a collection, in source order, of img objects in the document. */ - images: HTMLCollectionOf; + readonly images: HTMLCollectionOf; /** * Gets the implementation object of the current document. */ @@ -2907,7 +3648,7 @@ interface Document extends Node, GlobalEventHandlers, NodeSelector, DocumentEven /** * Retrieves a collection of all a objects that specify the href property and all area objects in the document. */ - links: HTMLCollectionOf; + readonly links: HTMLCollectionOf; /** * Contains information about the current URL. */ @@ -2918,311 +3659,312 @@ interface Document extends Node, GlobalEventHandlers, NodeSelector, DocumentEven * Fires when the user aborts the download. * @param ev The event. */ - onabort: (this: Document, ev: UIEvent) => any; + onabort: ((this: Document, ev: UIEvent) => any) | null; /** * Fires when the object is set as the active element. * @param ev The event. */ - onactivate: (this: Document, ev: UIEvent) => any; + onactivate: ((this: Document, ev: Event) => any) | null; /** * Fires immediately before the object is set as the active element. * @param ev The event. */ - onbeforeactivate: (this: Document, ev: UIEvent) => any; + onbeforeactivate: ((this: Document, ev: Event) => any) | null; /** * Fires immediately before the activeElement is changed from the current object to another object in the parent document. * @param ev The event. */ - onbeforedeactivate: (this: Document, ev: UIEvent) => any; + onbeforedeactivate: ((this: Document, ev: Event) => any) | null; /** * Fires when the object loses the input focus. * @param ev The focus event. */ - onblur: (this: Document, ev: FocusEvent) => any; + onblur: ((this: Document, ev: FocusEvent) => any) | null; /** * Occurs when playback is possible, but would require further buffering. * @param ev The event. */ - oncanplay: (this: Document, ev: Event) => any; - oncanplaythrough: (this: Document, ev: Event) => any; + oncanplay: ((this: Document, ev: Event) => any) | null; + oncanplaythrough: ((this: Document, ev: Event) => any) | null; /** * Fires when the contents of the object or selection have changed. * @param ev The event. */ - onchange: (this: Document, ev: Event) => any; + onchange: ((this: Document, ev: Event) => any) | null; /** * Fires when the user clicks the left mouse button on the object * @param ev The mouse event. */ - onclick: (this: Document, ev: MouseEvent) => any; + onclick: ((this: Document, ev: MouseEvent) => any) | null; /** * Fires when the user clicks the right mouse button in the client area, opening the context menu. * @param ev The mouse event. */ - oncontextmenu: (this: Document, ev: PointerEvent) => any; + oncontextmenu: ((this: Document, ev: PointerEvent) => any) | null; /** * Fires when the user double-clicks the object. * @param ev The mouse event. */ - ondblclick: (this: Document, ev: MouseEvent) => any; + ondblclick: ((this: Document, ev: MouseEvent) => any) | null; /** * Fires when the activeElement is changed from the current object to another object in the parent document. * @param ev The UI Event */ - ondeactivate: (this: Document, ev: UIEvent) => any; + ondeactivate: ((this: Document, ev: Event) => any) | null; /** * Fires on the source object continuously during a drag operation. * @param ev The event. */ - ondrag: (this: Document, ev: DragEvent) => any; + ondrag: ((this: Document, ev: DragEvent) => any) | null; /** * Fires on the source object when the user releases the mouse at the close of a drag operation. * @param ev The event. */ - ondragend: (this: Document, ev: DragEvent) => any; + ondragend: ((this: Document, ev: DragEvent) => any) | null; /** * Fires on the target element when the user drags the object to a valid drop target. * @param ev The drag event. */ - ondragenter: (this: Document, ev: DragEvent) => any; + ondragenter: ((this: Document, ev: DragEvent) => any) | null; /** * Fires on the target object when the user moves the mouse out of a valid drop target during a drag operation. * @param ev The drag event. */ - ondragleave: (this: Document, ev: DragEvent) => any; + ondragleave: ((this: Document, ev: DragEvent) => any) | null; /** * Fires on the target element continuously while the user drags the object over a valid drop target. * @param ev The event. */ - ondragover: (this: Document, ev: DragEvent) => any; + ondragover: ((this: Document, ev: DragEvent) => any) | null; /** * Fires on the source object when the user starts to drag a text selection or selected object. * @param ev The event. */ - ondragstart: (this: Document, ev: DragEvent) => any; - ondrop: (this: Document, ev: DragEvent) => any; + ondragstart: ((this: Document, ev: DragEvent) => any) | null; + ondrop: ((this: Document, ev: DragEvent) => any) | null; /** * Occurs when the duration attribute is updated. * @param ev The event. */ - ondurationchange: (this: Document, ev: Event) => any; + ondurationchange: ((this: Document, ev: Event) => any) | null; /** * Occurs when the media element is reset to its initial state. * @param ev The event. */ - onemptied: (this: Document, ev: Event) => any; + onemptied: ((this: Document, ev: Event) => any) | null; /** * Occurs when the end of playback is reached. * @param ev The event */ - onended: (this: Document, ev: MediaStreamErrorEvent) => any; + onended: ((this: Document, ev: Event) => any) | null; /** * Fires when an error occurs during object loading. * @param ev The event. */ - onerror: (this: Document, ev: ErrorEvent) => any; + onerror: ((this: Document, ev: ErrorEvent) => any) | null; /** * Fires when the object receives focus. * @param ev The event. */ - onfocus: (this: Document, ev: FocusEvent) => any; - onfullscreenchange: (this: Document, ev: Event) => any; - onfullscreenerror: (this: Document, ev: Event) => any; - oninput: (this: Document, ev: Event) => any; - oninvalid: (this: Document, ev: Event) => any; + onfocus: ((this: Document, ev: FocusEvent) => any) | null; + onfullscreenchange: ((this: Document, ev: Event) => any) | null; + onfullscreenerror: ((this: Document, ev: Event) => any) | null; + oninput: ((this: Document, ev: Event) => any) | null; + oninvalid: ((this: Document, ev: Event) => any) | null; /** * Fires when the user presses a key. * @param ev The keyboard event */ - onkeydown: (this: Document, ev: KeyboardEvent) => any; + onkeydown: ((this: Document, ev: KeyboardEvent) => any) | null; /** * Fires when the user presses an alphanumeric key. * @param ev The event. */ - onkeypress: (this: Document, ev: KeyboardEvent) => any; + onkeypress: ((this: Document, ev: KeyboardEvent) => any) | null; /** * Fires when the user releases a key. * @param ev The keyboard event */ - onkeyup: (this: Document, ev: KeyboardEvent) => any; + onkeyup: ((this: Document, ev: KeyboardEvent) => any) | null; /** * Fires immediately after the browser loads the object. * @param ev The event. */ - onload: (this: Document, ev: Event) => any; + onload: ((this: Document, ev: Event) => any) | null; /** * Occurs when media data is loaded at the current playback position. * @param ev The event. */ - onloadeddata: (this: Document, ev: Event) => any; + onloadeddata: ((this: Document, ev: Event) => any) | null; /** * Occurs when the duration and dimensions of the media have been determined. * @param ev The event. */ - onloadedmetadata: (this: Document, ev: Event) => any; + onloadedmetadata: ((this: Document, ev: Event) => any) | null; /** * Occurs when Internet Explorer begins looking for media data. * @param ev The event. */ - onloadstart: (this: Document, ev: Event) => any; + onloadstart: ((this: Document, ev: Event) => any) | null; /** * Fires when the user clicks the object with either mouse button. * @param ev The mouse event. */ - onmousedown: (this: Document, ev: MouseEvent) => any; + onmousedown: ((this: Document, ev: MouseEvent) => any) | null; /** * Fires when the user moves the mouse over the object. * @param ev The mouse event. */ - onmousemove: (this: Document, ev: MouseEvent) => any; + onmousemove: ((this: Document, ev: MouseEvent) => any) | null; /** * Fires when the user moves the mouse pointer outside the boundaries of the object. * @param ev The mouse event. */ - onmouseout: (this: Document, ev: MouseEvent) => any; + onmouseout: ((this: Document, ev: MouseEvent) => any) | null; /** * Fires when the user moves the mouse pointer into the object. * @param ev The mouse event. */ - onmouseover: (this: Document, ev: MouseEvent) => any; + onmouseover: ((this: Document, ev: MouseEvent) => any) | null; /** * Fires when the user releases a mouse button while the mouse is over the object. * @param ev The mouse event. */ - onmouseup: (this: Document, ev: MouseEvent) => any; + onmouseup: ((this: Document, ev: MouseEvent) => any) | null; /** * Fires when the wheel button is rotated. * @param ev The mouse event */ - onmousewheel: (this: Document, ev: WheelEvent) => any; - onmscontentzoom: (this: Document, ev: UIEvent) => any; - onmsgesturechange: (this: Document, ev: MSGestureEvent) => any; - onmsgesturedoubletap: (this: Document, ev: MSGestureEvent) => any; - onmsgestureend: (this: Document, ev: MSGestureEvent) => any; - onmsgesturehold: (this: Document, ev: MSGestureEvent) => any; - onmsgesturestart: (this: Document, ev: MSGestureEvent) => any; - onmsgesturetap: (this: Document, ev: MSGestureEvent) => any; - onmsinertiastart: (this: Document, ev: MSGestureEvent) => any; - onmsmanipulationstatechanged: (this: Document, ev: MSManipulationEvent) => any; - onmspointercancel: (this: Document, ev: MSPointerEvent) => any; - onmspointerdown: (this: Document, ev: MSPointerEvent) => any; - onmspointerenter: (this: Document, ev: MSPointerEvent) => any; - onmspointerleave: (this: Document, ev: MSPointerEvent) => any; - onmspointermove: (this: Document, ev: MSPointerEvent) => any; - onmspointerout: (this: Document, ev: MSPointerEvent) => any; - onmspointerover: (this: Document, ev: MSPointerEvent) => any; - onmspointerup: (this: Document, ev: MSPointerEvent) => any; + onmousewheel: ((this: Document, ev: WheelEvent) => any) | null; + onmscontentzoom: ((this: Document, ev: Event) => any) | null; + onmsgesturechange: ((this: Document, ev: Event) => any) | null; + onmsgesturedoubletap: ((this: Document, ev: Event) => any) | null; + onmsgestureend: ((this: Document, ev: Event) => any) | null; + onmsgesturehold: ((this: Document, ev: Event) => any) | null; + onmsgesturestart: ((this: Document, ev: Event) => any) | null; + onmsgesturetap: ((this: Document, ev: Event) => any) | null; + onmsinertiastart: ((this: Document, ev: Event) => any) | null; + onmsmanipulationstatechanged: ((this: Document, ev: Event) => any) | null; + onmspointercancel: ((this: Document, ev: Event) => any) | null; + onmspointerdown: ((this: Document, ev: Event) => any) | null; + onmspointerenter: ((this: Document, ev: Event) => any) | null; + onmspointerleave: ((this: Document, ev: Event) => any) | null; + onmspointermove: ((this: Document, ev: Event) => any) | null; + onmspointerout: ((this: Document, ev: Event) => any) | null; + onmspointerover: ((this: Document, ev: Event) => any) | null; + onmspointerup: ((this: Document, ev: Event) => any) | null; /** * Occurs when an item is removed from a Jump List of a webpage running in Site Mode. * @param ev The event. */ - onmssitemodejumplistitemremoved: (this: Document, ev: MSSiteModeEvent) => any; + onmssitemodejumplistitemremoved: ((this: Document, ev: Event) => any) | null; /** * Occurs when a user clicks a button in a Thumbnail Toolbar of a webpage running in Site Mode. * @param ev The event. */ - onmsthumbnailclick: (this: Document, ev: MSSiteModeEvent) => any; + onmsthumbnailclick: ((this: Document, ev: Event) => any) | null; /** * Occurs when playback is paused. * @param ev The event. */ - onpause: (this: Document, ev: Event) => any; + onpause: ((this: Document, ev: Event) => any) | null; /** * Occurs when the play method is requested. * @param ev The event. */ - onplay: (this: Document, ev: Event) => any; + onplay: ((this: Document, ev: Event) => any) | null; /** * Occurs when the audio or video has started playing. * @param ev The event. */ - onplaying: (this: Document, ev: Event) => any; - onpointerlockchange: (this: Document, ev: Event) => any; - onpointerlockerror: (this: Document, ev: Event) => any; + onplaying: ((this: Document, ev: Event) => any) | null; + onpointerlockchange: ((this: Document, ev: Event) => any) | null; + onpointerlockerror: ((this: Document, ev: Event) => any) | null; /** * Occurs to indicate progress while downloading media data. * @param ev The event. */ - onprogress: (this: Document, ev: ProgressEvent) => any; + onprogress: ((this: Document, ev: ProgressEvent) => any) | null; /** * Occurs when the playback rate is increased or decreased. * @param ev The event. */ - onratechange: (this: Document, ev: Event) => any; + onratechange: ((this: Document, ev: Event) => any) | null; /** * Fires when the state of the object has changed. * @param ev The event */ - onreadystatechange: (this: Document, ev: Event) => any; + onreadystatechange: ((this: Document, ev: Event) => any) | null; /** * Fires when the user resets a form. * @param ev The event. */ - onreset: (this: Document, ev: Event) => any; + onreset: ((this: Document, ev: Event) => any) | null; /** * Fires when the user repositions the scroll box in the scroll bar on the object. * @param ev The event. */ - onscroll: (this: Document, ev: UIEvent) => any; + onscroll: ((this: Document, ev: UIEvent) => any) | null; /** * Occurs when the seek operation ends. * @param ev The event. */ - onseeked: (this: Document, ev: Event) => any; + onseeked: ((this: Document, ev: Event) => any) | null; /** * Occurs when the current playback position is moved. * @param ev The event. */ - onseeking: (this: Document, ev: Event) => any; + onseeking: ((this: Document, ev: Event) => any) | null; /** * Fires when the current selection changes. * @param ev The event. */ - onselect: (this: Document, ev: UIEvent) => any; + onselect: ((this: Document, ev: UIEvent) => any) | null; /** * Fires when the selection state of a document changes. * @param ev The event. */ - onselectionchange: (this: Document, ev: Event) => any; - onselectstart: (this: Document, ev: Event) => any; + onselectionchange: ((this: Document, ev: Event) => any) | null; + onselectstart: ((this: Document, ev: Event) => any) | null; /** * Occurs when the download has stopped. * @param ev The event. */ - onstalled: (this: Document, ev: Event) => any; + onstalled: ((this: Document, ev: Event) => any) | null; /** * Fires when the user clicks the Stop button or leaves the Web page. * @param ev The event. */ - onstop: (this: Document, ev: Event) => any; - onsubmit: (this: Document, ev: Event) => any; + onstop: ((this: Document, ev: Event) => any) | null; + onsubmit: ((this: Document, ev: Event) => any) | null; /** * Occurs if the load operation has been intentionally halted. * @param ev The event. */ - onsuspend: (this: Document, ev: Event) => any; + onsuspend: ((this: Document, ev: Event) => any) | null; /** * Occurs to indicate the current playback position. * @param ev The event. */ - ontimeupdate: (this: Document, ev: Event) => any; - ontouchcancel: (ev: TouchEvent) => any; - ontouchend: (ev: TouchEvent) => any; - ontouchmove: (ev: TouchEvent) => any; - ontouchstart: (ev: TouchEvent) => any; + ontimeupdate: ((this: Document, ev: Event) => any) | null; + ontouchcancel: ((this: Document, ev: Event) => any) | null; + ontouchend: ((this: Document, ev: Event) => any) | null; + ontouchmove: ((this: Document, ev: Event) => any) | null; + ontouchstart: ((this: Document, ev: Event) => any) | null; + onvisibilitychange: (this: Document, ev: Event) => any; /** * Occurs when the volume is changed, or playback is muted or unmuted. * @param ev The event. */ - onvolumechange: (this: Document, ev: Event) => any; + onvolumechange: ((this: Document, ev: Event) => any) | null; /** * Occurs when playback stops because the next frame of a video resource is not available. * @param ev The event. */ - onwaiting: (this: Document, ev: Event) => any; - onwebkitfullscreenchange: (this: Document, ev: Event) => any; - onwebkitfullscreenerror: (this: Document, ev: Event) => any; - plugins: HTMLCollectionOf; + onwaiting: ((this: Document, ev: Event) => any) | null; + onwebkitfullscreenchange: ((this: Document, ev: Event) => any) | null; + onwebkitfullscreenerror: ((this: Document, ev: Event) => any) | null; + readonly plugins: HTMLCollectionOf; readonly pointerLockElement: Element; /** * Retrieves a value that indicates the current state of the object. @@ -3239,7 +3981,7 @@ interface Document extends Node, GlobalEventHandlers, NodeSelector, DocumentEven /** * Retrieves a collection of all script objects in the document. */ - scripts: HTMLCollectionOf; + readonly scripts: HTMLCollectionOf; readonly scrollingElement: Element | null; /** * Retrieves a collection of styleSheet objects representing the style sheets that correspond to each instance of a link or style object in the document. @@ -3264,7 +4006,6 @@ interface Document extends Node, GlobalEventHandlers, NodeSelector, DocumentEven * Gets or sets the version attribute specified in the declaration of an XML document. */ xmlVersion: string | null; - onvisibilitychange: (this: Document, ev: Event) => any; adoptNode(source: T): T; captureEvents(): void; caretRangeFromPoint(x: number, y: number): Range; @@ -3413,6 +4154,7 @@ interface Document extends Node, GlobalEventHandlers, NodeSelector, DocumentEven /** * Causes the element to receive the focus and executes the code specified by the onfocus event. */ + /** @deprecated */ focus(): void; /** * Returns a reference to the first object with the specified value of the ID or NAME attribute. @@ -3485,10 +4227,6 @@ interface Document extends Node, GlobalEventHandlers, NodeSelector, DocumentEven */ queryCommandValue(commandId: string): string; releaseEvents(): void; - /** - * Allows updating the print settings for the page. - */ - updateSettings(): void; webkitCancelFullScreen(): void; webkitExitFullscreen(): void; /** @@ -3514,6 +4252,7 @@ declare var Document: { interface DocumentEvent { createEvent(eventInterface: "AnimationEvent"): AnimationEvent; + createEvent(eventInterface: "AnimationPlaybackEvent"): AnimationPlaybackEvent; createEvent(eventInterface: "AudioProcessingEvent"): AudioProcessingEvent; createEvent(eventInterface: "BeforeUnloadEvent"): BeforeUnloadEvent; createEvent(eventInterface: "ClipboardEvent"): ClipboardEvent; @@ -3534,13 +4273,10 @@ interface DocumentEvent { createEvent(eventInterface: "IDBVersionChangeEvent"): IDBVersionChangeEvent; createEvent(eventInterface: "KeyboardEvent"): KeyboardEvent; createEvent(eventInterface: "ListeningStateChangedEvent"): ListeningStateChangedEvent; - createEvent(eventInterface: "LongRunningScriptDetectedEvent"): LongRunningScriptDetectedEvent; - createEvent(eventInterface: "MSGestureEvent"): MSGestureEvent; - createEvent(eventInterface: "MSManipulationEvent"): MSManipulationEvent; + createEvent(eventInterface: "MSDCCEvent"): MSDCCEvent; + createEvent(eventInterface: "MSDSHEvent"): MSDSHEvent; createEvent(eventInterface: "MSMediaKeyMessageEvent"): MSMediaKeyMessageEvent; createEvent(eventInterface: "MSMediaKeyNeededEvent"): MSMediaKeyNeededEvent; - createEvent(eventInterface: "MSPointerEvent"): MSPointerEvent; - createEvent(eventInterface: "MSSiteModeEvent"): MSSiteModeEvent; createEvent(eventInterface: "MediaEncryptedEvent"): MediaEncryptedEvent; createEvent(eventInterface: "MediaKeyMessageEvent"): MediaKeyMessageEvent; createEvent(eventInterface: "MediaStreamErrorEvent"): MediaStreamErrorEvent; @@ -3551,9 +4287,6 @@ interface DocumentEvent { createEvent(eventInterface: "MouseEvents"): MouseEvent; createEvent(eventInterface: "MutationEvent"): MutationEvent; createEvent(eventInterface: "MutationEvents"): MutationEvent; - createEvent(eventInterface: "NavigationCompletedEvent"): NavigationCompletedEvent; - createEvent(eventInterface: "NavigationEvent"): NavigationEvent; - createEvent(eventInterface: "NavigationEventWithReferrer"): NavigationEventWithReferrer; createEvent(eventInterface: "OfflineAudioCompletionEvent"): OfflineAudioCompletionEvent; createEvent(eventInterface: "OverflowEvent"): OverflowEvent; createEvent(eventInterface: "PageTransitionEvent"): PageTransitionEvent; @@ -3562,6 +4295,7 @@ interface DocumentEvent { createEvent(eventInterface: "PointerEvent"): PointerEvent; createEvent(eventInterface: "PopStateEvent"): PopStateEvent; createEvent(eventInterface: "ProgressEvent"): ProgressEvent; + createEvent(eventInterface: "PromiseRejectionEvent"): PromiseRejectionEvent; createEvent(eventInterface: "RTCDTMFToneChangeEvent"): RTCDTMFToneChangeEvent; createEvent(eventInterface: "RTCDtlsTransportStateChangedEvent"): RTCDtlsTransportStateChangedEvent; createEvent(eventInterface: "RTCIceCandidatePairChangedEvent"): RTCIceCandidatePairChangedEvent; @@ -3571,23 +4305,23 @@ interface DocumentEvent { createEvent(eventInterface: "RTCSsrcConflictEvent"): RTCSsrcConflictEvent; createEvent(eventInterface: "SVGZoomEvent"): SVGZoomEvent; createEvent(eventInterface: "SVGZoomEvents"): SVGZoomEvent; - createEvent(eventInterface: "ScriptNotifyEvent"): ScriptNotifyEvent; + createEvent(eventInterface: "SecurityPolicyViolationEvent"): SecurityPolicyViolationEvent; createEvent(eventInterface: "ServiceWorkerMessageEvent"): ServiceWorkerMessageEvent; createEvent(eventInterface: "SpeechSynthesisEvent"): SpeechSynthesisEvent; createEvent(eventInterface: "StorageEvent"): StorageEvent; createEvent(eventInterface: "TextEvent"): TextEvent; - createEvent(eventInterface: "TouchEvent"): TouchEvent; createEvent(eventInterface: "TrackEvent"): TrackEvent; createEvent(eventInterface: "TransitionEvent"): TransitionEvent; createEvent(eventInterface: "UIEvent"): UIEvent; createEvent(eventInterface: "UIEvents"): UIEvent; - createEvent(eventInterface: "UnviewableContentIdentifiedEvent"): UnviewableContentIdentifiedEvent; + createEvent(eventInterface: "VRDisplayEvent"): VRDisplayEvent; + createEvent(eventInterface: "VRDisplayEvent "): VRDisplayEvent ; createEvent(eventInterface: "WebGLContextEvent"): WebGLContextEvent; createEvent(eventInterface: "WheelEvent"): WheelEvent; createEvent(eventInterface: string): Event; } -interface DocumentFragment extends Node, NodeSelector, ParentNode { +interface DocumentFragment extends Node, ParentNode { getElementById(elementId: string): HTMLElement | null; } @@ -3596,6 +4330,14 @@ declare var DocumentFragment: { new(): DocumentFragment; }; +interface DocumentOrShadowRoot { + readonly activeElement: Element | null; + readonly styleSheets: StyleSheetList; + elementFromPoint(x: number, y: number): Element | null; + elementsFromPoint(x: number, y: number): Element[]; + getSelection(): Selection | null; +} + interface DocumentType extends Node, ChildNode { readonly entities: NamedNodeMap; readonly internalSubset: string | null; @@ -3635,13 +4377,23 @@ declare var DynamicsCompressorNode: { new(): DynamicsCompressorNode; }; +interface EXT_blend_minmax { + readonly MAX_EXT: number; + readonly MIN_EXT: number; +} + interface EXT_frag_depth { } -declare var EXT_frag_depth: { - prototype: EXT_frag_depth; - new(): EXT_frag_depth; -}; +interface EXT_sRGB { + readonly FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT: number; + readonly SRGB8_ALPHA8_EXT: number; + readonly SRGB_ALPHA_EXT: number; + readonly SRGB_EXT: number; +} + +interface EXT_shader_texture_lod { +} interface EXT_texture_filter_anisotropic { readonly MAX_TEXTURE_MAX_ANISOTROPY_EXT: number; @@ -3660,32 +4412,34 @@ interface ElementEventMap extends GlobalEventHandlersEventMap { "command": Event; "gotpointercapture": PointerEvent; "lostpointercapture": PointerEvent; - "MSGestureChange": MSGestureEvent; - "MSGestureDoubleTap": MSGestureEvent; - "MSGestureEnd": MSGestureEvent; - "MSGestureHold": MSGestureEvent; - "MSGestureStart": MSGestureEvent; - "MSGestureTap": MSGestureEvent; - "MSGotPointerCapture": MSPointerEvent; - "MSInertiaStart": MSGestureEvent; - "MSLostPointerCapture": MSPointerEvent; - "MSPointerCancel": MSPointerEvent; - "MSPointerDown": MSPointerEvent; - "MSPointerEnter": MSPointerEvent; - "MSPointerLeave": MSPointerEvent; - "MSPointerMove": MSPointerEvent; - "MSPointerOut": MSPointerEvent; - "MSPointerOver": MSPointerEvent; - "MSPointerUp": MSPointerEvent; - "touchcancel": TouchEvent; - "touchend": TouchEvent; - "touchmove": TouchEvent; - "touchstart": TouchEvent; + "MSGestureChange": Event; + "MSGestureDoubleTap": Event; + "MSGestureEnd": Event; + "MSGestureHold": Event; + "MSGestureStart": Event; + "MSGestureTap": Event; + "MSGotPointerCapture": Event; + "MSInertiaStart": Event; + "MSLostPointerCapture": Event; + "MSPointerCancel": Event; + "MSPointerDown": Event; + "MSPointerEnter": Event; + "MSPointerLeave": Event; + "MSPointerMove": Event; + "MSPointerOut": Event; + "MSPointerOver": Event; + "MSPointerUp": Event; + "touchcancel": Event; + "touchend": Event; + "touchmove": Event; + "touchstart": Event; "webkitfullscreenchange": Event; "webkitfullscreenerror": Event; } -interface Element extends Node, GlobalEventHandlers, ElementTraversal, NodeSelector, ChildNode, ParentNode { +interface Element extends Node, GlobalEventHandlers, ElementTraversal, ParentNode, ChildNode { + readonly assignedSlot: HTMLSlotElement | null; + readonly attributes: NamedNodeMap; readonly classList: DOMTokenList; className: string; readonly clientHeight: number; @@ -3696,49 +4450,53 @@ interface Element extends Node, GlobalEventHandlers, ElementTraversal, NodeSelec innerHTML: string; msContentZoomFactor: number; readonly msRegionOverflow: string; - onariarequest: (this: Element, ev: Event) => any; - oncommand: (this: Element, ev: Event) => any; - ongotpointercapture: (this: Element, ev: PointerEvent) => any; - onlostpointercapture: (this: Element, ev: PointerEvent) => any; - onmsgesturechange: (this: Element, ev: MSGestureEvent) => any; - onmsgesturedoubletap: (this: Element, ev: MSGestureEvent) => any; - onmsgestureend: (this: Element, ev: MSGestureEvent) => any; - onmsgesturehold: (this: Element, ev: MSGestureEvent) => any; - onmsgesturestart: (this: Element, ev: MSGestureEvent) => any; - onmsgesturetap: (this: Element, ev: MSGestureEvent) => any; - onmsgotpointercapture: (this: Element, ev: MSPointerEvent) => any; - onmsinertiastart: (this: Element, ev: MSGestureEvent) => any; - onmslostpointercapture: (this: Element, ev: MSPointerEvent) => any; - onmspointercancel: (this: Element, ev: MSPointerEvent) => any; - onmspointerdown: (this: Element, ev: MSPointerEvent) => any; - onmspointerenter: (this: Element, ev: MSPointerEvent) => any; - onmspointerleave: (this: Element, ev: MSPointerEvent) => any; - onmspointermove: (this: Element, ev: MSPointerEvent) => any; - onmspointerout: (this: Element, ev: MSPointerEvent) => any; - onmspointerover: (this: Element, ev: MSPointerEvent) => any; - onmspointerup: (this: Element, ev: MSPointerEvent) => any; - ontouchcancel: (ev: TouchEvent) => any; - ontouchend: (ev: TouchEvent) => any; - ontouchmove: (ev: TouchEvent) => any; - ontouchstart: (ev: TouchEvent) => any; - onwebkitfullscreenchange: (this: Element, ev: Event) => any; - onwebkitfullscreenerror: (this: Element, ev: Event) => any; + onariarequest: ((this: Element, ev: Event) => any) | null; + oncommand: ((this: Element, ev: Event) => any) | null; + ongotpointercapture: ((this: Element, ev: PointerEvent) => any) | null; + onlostpointercapture: ((this: Element, ev: PointerEvent) => any) | null; + onmsgesturechange: ((this: Element, ev: Event) => any) | null; + onmsgesturedoubletap: ((this: Element, ev: Event) => any) | null; + onmsgestureend: ((this: Element, ev: Event) => any) | null; + onmsgesturehold: ((this: Element, ev: Event) => any) | null; + onmsgesturestart: ((this: Element, ev: Event) => any) | null; + onmsgesturetap: ((this: Element, ev: Event) => any) | null; + onmsgotpointercapture: ((this: Element, ev: Event) => any) | null; + onmsinertiastart: ((this: Element, ev: Event) => any) | null; + onmslostpointercapture: ((this: Element, ev: Event) => any) | null; + onmspointercancel: ((this: Element, ev: Event) => any) | null; + onmspointerdown: ((this: Element, ev: Event) => any) | null; + onmspointerenter: ((this: Element, ev: Event) => any) | null; + onmspointerleave: ((this: Element, ev: Event) => any) | null; + onmspointermove: ((this: Element, ev: Event) => any) | null; + onmspointerout: ((this: Element, ev: Event) => any) | null; + onmspointerover: ((this: Element, ev: Event) => any) | null; + onmspointerup: ((this: Element, ev: Event) => any) | null; + ontouchcancel: ((this: Element, ev: Event) => any) | null; + ontouchend: ((this: Element, ev: Event) => any) | null; + ontouchmove: ((this: Element, ev: Event) => any) | null; + ontouchstart: ((this: Element, ev: Event) => any) | null; + onwebkitfullscreenchange: ((this: Element, ev: Event) => any) | null; + onwebkitfullscreenerror: ((this: Element, ev: Event) => any) | null; outerHTML: string; readonly prefix: string | null; readonly scrollHeight: number; scrollLeft: number; scrollTop: number; readonly scrollWidth: number; - readonly tagName: string; - readonly assignedSlot: HTMLSlotElement | null; - slot: string; readonly shadowRoot: ShadowRoot | null; - getAttribute(name: string): string | null; + slot: string; + readonly tagName: string; + attachShadow(shadowRootInitDict: ShadowRootInit): ShadowRoot; + closest(selector: K): HTMLElementTagNameMap[K] | null; + closest(selector: K): SVGElementTagNameMap[K] | null; + closest(selector: string): Element | null; + getAttribute(qualifiedName: string): string | null; getAttributeNS(namespaceURI: string, localName: string): string; getAttributeNode(name: string): Attr | null; getAttributeNodeNS(namespaceURI: string, localName: string): Attr | null; getBoundingClientRect(): ClientRect | DOMRect; getClientRects(): ClientRectList | DOMRectList; + getElementsByClassName(classNames: string): NodeListOf; getElementsByTagName(name: K): NodeListOf; getElementsByTagName(name: K): NodeListOf; getElementsByTagName(name: string): NodeListOf; @@ -3747,7 +4505,12 @@ interface Element extends Node, GlobalEventHandlers, ElementTraversal, NodeSelec getElementsByTagNameNS(namespaceURI: string, localName: string): HTMLCollectionOf; hasAttribute(name: string): boolean; hasAttributeNS(namespaceURI: string, localName: string): boolean; - msGetRegionContent(): MSRangeCollection; + hasAttributes(): boolean; + insertAdjacentElement(position: InsertPosition, insertedElement: Element): Element | null; + insertAdjacentHTML(where: InsertPosition, html: string): void; + insertAdjacentText(where: InsertPosition, text: string): void; + matches(selectors: string): boolean; + msGetRegionContent(): any; msGetUntransformedBounds(): ClientRect; msMatchesSelector(selectors: string): boolean; msReleasePointerCapture(pointerId: number): void; @@ -3759,7 +4522,14 @@ interface Element extends Node, GlobalEventHandlers, ElementTraversal, NodeSelec removeAttributeNode(oldAttr: Attr): Attr; requestFullscreen(): void; requestPointerLock(): void; - setAttribute(name: string, value: string): void; + scroll(options?: ScrollToOptions): void; + scroll(x: number, y: number): void; + scrollBy(options?: ScrollToOptions): void; + scrollBy(x: number, y: number): void; + scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void; + scrollTo(options?: ScrollToOptions): void; + scrollTo(x: number, y: number): void; + setAttribute(qualifiedName: string, value: string): void; setAttributeNS(namespaceURI: string, qualifiedName: string, value: string): void; setAttributeNode(newAttr: Attr): Attr; setAttributeNodeNS(newAttr: Attr): Attr; @@ -3767,22 +4537,6 @@ interface Element extends Node, GlobalEventHandlers, ElementTraversal, NodeSelec webkitMatchesSelector(selectors: string): boolean; webkitRequestFullScreen(): void; webkitRequestFullscreen(): void; - getElementsByClassName(classNames: string): NodeListOf; - matches(selector: string): boolean; - closest(selector: K): HTMLElementTagNameMap[K] | null; - closest(selector: K): SVGElementTagNameMap[K] | null; - closest(selector: string): Element | null; - scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void; - scroll(options?: ScrollToOptions): void; - scroll(x: number, y: number): void; - scrollTo(options?: ScrollToOptions): void; - scrollTo(x: number, y: number): void; - scrollBy(options?: ScrollToOptions): void; - scrollBy(x: number, y: number): void; - insertAdjacentElement(position: InsertPosition, insertedElement: Element): Element | null; - insertAdjacentHTML(where: InsertPosition, html: string): void; - insertAdjacentText(where: InsertPosition, text: string): void; - attachShadow(shadowRootInitDict: ShadowRootInit): ShadowRoot; addEventListener(type: K, listener: (this: Element, ev: ElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: Element, ev: ElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; @@ -3794,6 +4548,18 @@ declare var Element: { new(): Element; }; +interface ElementCSSInlineStyle { + readonly style: CSSStyleDeclaration; +} + +interface ElementCreationOptions { + is?: string; +} + +interface ElementDefinitionOptions { + extends: string; +} + interface ElementTraversal { readonly childElementCount: number; readonly firstElementChild: Element | null; @@ -3813,31 +4579,32 @@ interface ErrorEvent extends Event { declare var ErrorEvent: { prototype: ErrorEvent; - new(type: string, errorEventInitDict?: ErrorEventInit): ErrorEvent; + new(typeArg: string, eventInitDict?: ErrorEventInit): ErrorEvent; }; interface Event { readonly bubbles: boolean; cancelBubble: boolean; readonly cancelable: boolean; - readonly currentTarget: EventTarget; + readonly currentTarget: EventTarget | null; readonly defaultPrevented: boolean; readonly eventPhase: number; readonly isTrusted: boolean; returnValue: boolean; + readonly scoped: boolean; readonly srcElement: Element | null; - readonly target: EventTarget; + readonly target: EventTarget | null; readonly timeStamp: number; readonly type: string; - readonly scoped: boolean; - initEvent(eventTypeArg: string, canBubbleArg: boolean, cancelableArg: boolean): void; + deepPath(): EventTarget[]; + initEvent(type: string, bubbles?: boolean, cancelable?: boolean): void; preventDefault(): void; stopImmediatePropagation(): void; stopPropagation(): void; - deepPath(): EventTarget[]; readonly AT_TARGET: number; readonly BUBBLING_PHASE: number; readonly CAPTURING_PHASE: number; + readonly NONE: number; } declare var Event: { @@ -3846,12 +4613,39 @@ declare var Event: { readonly AT_TARGET: number; readonly BUBBLING_PHASE: number; readonly CAPTURING_PHASE: number; + readonly NONE: number; +}; + +interface EventListenerObject { + handleEvent(evt: Event): void; +} + +interface EventSource extends EventTarget { + readonly CLOSED: number; + readonly CONNECTING: number; + readonly OPEN: number; + onerror: (evt: MessageEvent) => any; + onmessage: (evt: MessageEvent) => any; + onopen: (evt: MessageEvent) => any; + readonly readyState: number; + readonly url: string; + readonly withCredentials: boolean; + close(): void; +} + +declare var EventSource: { + prototype: EventSource; + new(url: string, eventSourceInitDict?: EventSourceInit): EventSource; }; +interface EventSourceInit { + readonly withCredentials: boolean; +} + interface EventTarget { - addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; + addEventListener(type: string, listener: EventListenerOrEventListenerObject | null, options?: boolean | AddEventListenerOptions): void; dispatchEvent(evt: Event): boolean; - removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; + removeEventListener(type: string, listener?: EventListenerOrEventListenerObject | null, options?: EventListenerOptions | boolean): void; } declare var EventTarget: { @@ -3861,12 +4655,14 @@ declare var EventTarget: { interface ExtensionScriptApis { extensionIdToShortId(extensionId: string): number; - fireExtensionApiTelemetry(functionName: string, isSucceeded: boolean, isSupported: boolean): void; + fireExtensionApiTelemetry(functionName: string, isSucceeded: boolean, isSupported: boolean, errorString: string): void; genericFunction(routerAddress: any, parameters?: string, callbackId?: number): void; genericSynchronousFunction(functionId: number, parameters?: string): string; + genericWebRuntimeCallout(to: any, from: any, payload: string): void; getExtensionId(): string; - registerGenericFunctionCallbackHandler(callbackHandler: any): void; - registerGenericPersistentCallbackHandler(callbackHandler: any): void; + registerGenericFunctionCallbackHandler(callbackHandler: Function): void; + registerGenericPersistentCallbackHandler(callbackHandler: Function): void; + registerWebRuntimeCallbackHandler(handler: Function): any; } declare var ExtensionScriptApis: { @@ -3883,10 +4679,11 @@ declare var External: { }; interface File extends Blob { + readonly lastModified: number; + /** @deprecated */ readonly lastModifiedDate: Date; readonly name: string; readonly webkitRelativePath: string; - readonly lastModified: number; } declare var File: { @@ -3896,7 +4693,7 @@ declare var File: { interface FileList { readonly length: number; - item(index: number): File; + item(index: number): File | null; [index: number]: File; } @@ -3905,21 +4702,49 @@ declare var FileList: { new(): FileList; }; -interface FileReader extends EventTarget, MSBaseReader { - readonly error: DOMError; +interface FilePropertyBag extends BlobPropertyBag { + lastModified?: number; +} + +interface FileReaderEventMap { + "abort": ProgressEvent; + "error": ProgressEvent; + "load": ProgressEvent; + "loadend": ProgressEvent; + "loadstart": ProgressEvent; + "progress": ProgressEvent; +} + +interface FileReader extends EventTarget { + readonly error: DOMException | null; + onabort: ((this: FileReader, ev: ProgressEvent) => any) | null; + onerror: ((this: FileReader, ev: ProgressEvent) => any) | null; + onload: ((this: FileReader, ev: ProgressEvent) => any) | null; + onloadend: ((this: FileReader, ev: ProgressEvent) => any) | null; + onloadstart: ((this: FileReader, ev: ProgressEvent) => any) | null; + onprogress: ((this: FileReader, ev: ProgressEvent) => any) | null; + readonly readyState: number; + readonly result: any; + abort(): void; readAsArrayBuffer(blob: Blob): void; readAsBinaryString(blob: Blob): void; readAsDataURL(blob: Blob): void; - readAsText(blob: Blob, encoding?: string): void; - addEventListener(type: K, listener: (this: FileReader, ev: MSBaseReaderEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; + readAsText(blob: Blob, label?: string): void; + readonly DONE: number; + readonly EMPTY: number; + readonly LOADING: number; + addEventListener(type: K, listener: (this: FileReader, ev: FileReaderEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; - removeEventListener(type: K, listener: (this: FileReader, ev: MSBaseReaderEventMap[K]) => any, options?: boolean | EventListenerOptions): void; + removeEventListener(type: K, listener: (this: FileReader, ev: FileReaderEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } declare var FileReader: { prototype: FileReader; new(): FileReader; + readonly DONE: number; + readonly EMPTY: number; + readonly LOADING: number; }; interface FocusEvent extends UIEvent { @@ -3957,7 +4782,8 @@ interface FormData { declare var FormData: { prototype: FormData; - new (form?: HTMLFormElement): FormData; + new(): FormData; + new(form: HTMLFormElement): FormData; }; interface GainNode extends AudioNode { @@ -3973,9 +4799,13 @@ interface Gamepad { readonly axes: number[]; readonly buttons: GamepadButton[]; readonly connected: boolean; + readonly displayId: number; + readonly hand: GamepadHand; + readonly hapticActuators: GamepadHapticActuator[]; readonly id: string; readonly index: number; - readonly mapping: string; + readonly mapping: GamepadMappingType; + readonly pose: GamepadPose | null; readonly timestamp: number; } @@ -3986,6 +4816,7 @@ declare var Gamepad: { interface GamepadButton { readonly pressed: boolean; + readonly touched: boolean; readonly value: number; } @@ -4003,6 +4834,32 @@ declare var GamepadEvent: { new(typeArg: string, eventInitDict?: GamepadEventInit): GamepadEvent; }; +interface GamepadHapticActuator { + readonly type: GamepadHapticActuatorType; + pulse(value: number, duration: number): Promise; +} + +declare var GamepadHapticActuator: { + prototype: GamepadHapticActuator; + new(): GamepadHapticActuator; +}; + +interface GamepadPose { + readonly angularAcceleration: Float32Array | null; + readonly angularVelocity: Float32Array | null; + readonly hasOrientation: boolean; + readonly hasPosition: boolean; + readonly linearAcceleration: Float32Array | null; + readonly linearVelocity: Float32Array | null; + readonly orientation: Float32Array | null; + readonly position: Float32Array | null; +} + +declare var GamepadPose: { + prototype: GamepadPose; + new(): GamepadPose; +}; + interface Geolocation { clearWatch(watchId: number): void; getCurrentPosition(successCallback: PositionCallback, errorCallback?: PositionErrorCallback, options?: PositionOptions): void; @@ -4031,15 +4888,15 @@ interface GlobalEventHandlersEventMap { } interface GlobalEventHandlers { - onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any; - onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any; - onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any; - onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any; - onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any; - onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any; - onpointerover: (this: GlobalEventHandlers, ev: PointerEvent) => any; - onpointerup: (this: GlobalEventHandlers, ev: PointerEvent) => any; - onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any; + onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null; + onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null; + onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null; + onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null; + onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null; + onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null; + onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null; + onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null; + onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null; addEventListener(type: K, listener: (this: GlobalEventHandlers, ev: GlobalEventHandlersEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: GlobalEventHandlers, ev: GlobalEventHandlersEventMap[K]) => any, options?: boolean | EventListenerOptions): void; @@ -4047,7 +4904,7 @@ interface GlobalEventHandlers { } interface GlobalFetch { - fetch(input: RequestInfo, init?: RequestInit): Promise; + fetch(input?: Request | string, init?: RequestInit): Promise; } interface HTMLAllCollection { @@ -4062,33 +4919,19 @@ declare var HTMLAllCollection: { new(): HTMLAllCollection; }; -interface HTMLAnchorElement extends HTMLElement { +interface HTMLAnchorElement extends HTMLElement, HTMLHyperlinkElementUtils { Methods: string; /** * Sets or retrieves the character set used to encode the object. */ + /** @deprecated */ charset: string; /** * Sets or retrieves the coordinates of the object. */ + /** @deprecated */ coords: string; download: string; - /** - * Contains the anchor portion of the URL including the hash sign (#). - */ - hash: string; - /** - * Contains the hostname and port values of the URL. - */ - host: string; - /** - * Contains the hostname of a URL. - */ - hostname: string; - /** - * Sets or retrieves a destination URL or an anchor point. - */ - href: string; /** * Sets or retrieves the language code of the object. */ @@ -4097,20 +4940,9 @@ interface HTMLAnchorElement extends HTMLElement { /** * Sets or retrieves the shape of the object. */ + /** @deprecated */ name: string; readonly nameProp: string; - /** - * Contains the pathname of the URL. - */ - pathname: string; - /** - * Sets or retrieves the port number associated with a URL. - */ - port: string; - /** - * Contains the protocol of the URL. - */ - protocol: string; readonly protocolLong: string; /** * Sets or retrieves the relationship between the object and the destination of the link. @@ -4119,14 +4951,12 @@ interface HTMLAnchorElement extends HTMLElement { /** * Sets or retrieves the relationship between the object and the destination of the link. */ + /** @deprecated */ rev: string; - /** - * Sets or retrieves the substring of the href property that follows the question mark. - */ - search: string; /** * Sets or retrieves the shape of the object. */ + /** @deprecated */ shape: string; /** * Sets or retrieves the window or frame at which to target content. @@ -4138,14 +4968,6 @@ interface HTMLAnchorElement extends HTMLElement { text: string; type: string; urn: string; - /** - * Contains the Unicode serialization of the origin of the represented URL. - */ - readonly origin: string; - /** - * Returns a string representation of an object. - */ - toString(): string; addEventListener(type: K, listener: (this: HTMLAnchorElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLAnchorElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; @@ -4158,70 +4980,44 @@ declare var HTMLAnchorElement: { }; interface HTMLAppletElement extends HTMLElement { - /** - * Retrieves a string of the URL where the object tag can be found. This is often the href of the document that the object is in, or the value set by a base element. - */ - readonly BaseHref: string; + /** @deprecated */ align: string; /** * Sets or retrieves a text alternative to the graphic. */ + /** @deprecated */ alt: string; - /** - * Gets or sets the optional alternative HTML script to execute if the object fails to load. - */ - altHtml: string; /** * Sets or retrieves a character string that can be used to implement your own archive functionality for the object. */ + /** @deprecated */ archive: string; - border: string; + /** @deprecated */ code: string; /** * Sets or retrieves the URL of the component. */ + /** @deprecated */ codeBase: string; - /** - * Sets or retrieves the Internet media type for the code associated with the object. - */ - codeType: string; - /** - * Address of a pointer to the document this page or frame contains. If there is no document, then null will be returned. - */ - readonly contentDocument: Document; - /** - * Sets or retrieves the URL that references the data of the object. - */ - data: string; - /** - * Sets or retrieves a character string that can be used to implement your own declare functionality for the object. - */ - declare: boolean; readonly form: HTMLFormElement | null; /** * Sets or retrieves the height of the object. */ + /** @deprecated */ height: string; + /** @deprecated */ hspace: number; /** * Sets or retrieves the shape of the object. */ + /** @deprecated */ name: string; - object: string | null; - /** - * Sets or retrieves a message to be displayed while an object is loading. - */ - standby: string; - /** - * Returns the content type of the object. - */ - type: string; - /** - * Sets or retrieves the URL, often with a bookmark extension (#name), to use as a client-side image map. - */ - useMap: string; + /** @deprecated */ + object: string; + /** @deprecated */ vspace: number; - width: number; + /** @deprecated */ + width: string; addEventListener(type: K, listener: (this: HTMLAppletElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLAppletElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; @@ -4233,7 +5029,7 @@ declare var HTMLAppletElement: { new(): HTMLAppletElement; }; -interface HTMLAreaElement extends HTMLElement { +interface HTMLAreaElement extends HTMLElement, HTMLHyperlinkElementUtils { /** * Sets or retrieves a text alternative to the graphic. */ @@ -4243,43 +5039,12 @@ interface HTMLAreaElement extends HTMLElement { */ coords: string; download: string; - /** - * Sets or retrieves the subsection of the href property that follows the number sign (#). - */ - hash: string; - /** - * Sets or retrieves the hostname and port number of the location or URL. - */ - host: string; - /** - * Sets or retrieves the host name part of the location or URL. - */ - hostname: string; - /** - * Sets or retrieves a destination URL or an anchor point. - */ - href: string; /** * Sets or gets whether clicks in this region cause action. */ + /** @deprecated */ noHref: boolean; - /** - * Sets or retrieves the file name or path specified by the object. - */ - pathname: string; - /** - * Sets or retrieves the port number associated with a URL. - */ - port: string; - /** - * Sets or retrieves the protocol portion of a URL. - */ - protocol: string; rel: string; - /** - * Sets or retrieves the substring of the href property that follows the question mark. - */ - search: string; /** * Sets or retrieves the shape of the object. */ @@ -4288,10 +5053,6 @@ interface HTMLAreaElement extends HTMLElement { * Sets or retrieves the window or frame at which to target content. */ target: string; - /** - * Returns a string representation of an object. - */ - toString(): string; addEventListener(type: K, listener: (this: HTMLAreaElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLAreaElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; @@ -4327,6 +5088,7 @@ interface HTMLBRElement extends HTMLElement { /** * Sets or retrieves the side on which floating objects are not to be positioned when any IHTMLBlockElement is inserted into the document. */ + /** @deprecated */ clear: string; addEventListener(type: K, listener: (this: HTMLBRElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; @@ -4363,10 +5125,12 @@ interface HTMLBaseFontElement extends HTMLElement, DOML2DeprecatedColorProperty /** * Sets or retrieves the current typeface family. */ + /** @deprecated */ face: string; /** * Sets or retrieves the font size of the object. */ + /** @deprecated */ size: number; addEventListener(type: K, listener: (this: HTMLBaseFontElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; @@ -4379,51 +5143,34 @@ declare var HTMLBaseFontElement: { new(): HTMLBaseFontElement; }; -interface HTMLBodyElementEventMap extends HTMLElementEventMap { - "afterprint": Event; - "beforeprint": Event; - "beforeunload": BeforeUnloadEvent; +interface HTMLBodyElementEventMap extends HTMLElementEventMap, WindowEventHandlersEventMap { "blur": FocusEvent; "error": ErrorEvent; "focus": FocusEvent; - "hashchange": HashChangeEvent; "load": Event; - "message": MessageEvent; - "offline": Event; - "online": Event; "orientationchange": Event; - "pagehide": PageTransitionEvent; - "pageshow": PageTransitionEvent; - "popstate": PopStateEvent; "resize": UIEvent; "scroll": UIEvent; - "storage": StorageEvent; - "unload": Event; } -interface HTMLBodyElement extends HTMLElement { - aLink: any; +interface HTMLBodyElement extends HTMLElement, WindowEventHandlers { + /** @deprecated */ + aLink: string; + /** @deprecated */ background: string; - bgColor: any; + /** @deprecated */ + bgColor: string; bgProperties: string; - link: any; + /** @deprecated */ + link: string; + /** @deprecated */ noWrap: boolean; - onafterprint: (this: HTMLBodyElement, ev: Event) => any; - onbeforeprint: (this: HTMLBodyElement, ev: Event) => any; - onbeforeunload: (this: HTMLBodyElement, ev: BeforeUnloadEvent) => any; - onhashchange: (this: HTMLBodyElement, ev: HashChangeEvent) => any; - onmessage: (this: HTMLBodyElement, ev: MessageEvent) => any; - onoffline: (this: HTMLBodyElement, ev: Event) => any; - ononline: (this: HTMLBodyElement, ev: Event) => any; - onorientationchange: (this: HTMLBodyElement, ev: Event) => any; - onpagehide: (this: HTMLBodyElement, ev: PageTransitionEvent) => any; - onpageshow: (this: HTMLBodyElement, ev: PageTransitionEvent) => any; - onpopstate: (this: HTMLBodyElement, ev: PopStateEvent) => any; - onresize: (this: HTMLBodyElement, ev: UIEvent) => any; - onstorage: (this: HTMLBodyElement, ev: StorageEvent) => any; - onunload: (this: HTMLBodyElement, ev: Event) => any; - text: any; - vLink: any; + onorientationchange: ((this: HTMLBodyElement, ev: Event) => any) | null; + onresize: ((this: HTMLBodyElement, ev: UIEvent) => any) | null; + /** @deprecated */ + text: string; + /** @deprecated */ + vLink: string; addEventListener(type: K, listener: (this: HTMLBodyElement, ev: HTMLBodyElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLBodyElement, ev: HTMLBodyElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; @@ -4460,7 +5207,7 @@ interface HTMLButtonElement extends HTMLElement { /** * Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a "save draft"-type submit option. */ - formNoValidate: string; + formNoValidate: boolean; /** * Overrides the target attribute on a form element. */ @@ -4530,12 +5277,12 @@ interface HTMLCanvasElement extends HTMLElement { * Returns a blob object encoded as a Portable Network Graphics (PNG) format from a canvas image or drawing. */ msToBlob(): Blob; + toBlob(callback: (result: Blob | null) => void, type?: string, ...arguments: any[]): void; /** * Returns the content of the current canvas as an image that you can use as a source for another canvas or an HTML element. * @param type The standard MIME type for the image format to return. If you do not specify this parameter, the default value is a PNG format image. */ toDataURL(type?: string, ...args: any[]): string; - toBlob(callback: (result: Blob | null) => void, type?: string, ...arguments: any[]): void; addEventListener(type: K, listener: (this: HTMLCanvasElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLCanvasElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; @@ -4571,9 +5318,16 @@ declare var HTMLCollection: { new(): HTMLCollection; }; -interface HTMLDListElement extends HTMLElement { - compact: boolean; - addEventListener(type: K, listener: (this: HTMLDListElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; +interface HTMLCollectionOf extends HTMLCollectionBase { + item(index: number): T; + namedItem(name: string): T; + [index: number]: T; +} + +interface HTMLDListElement extends HTMLElement { + /** @deprecated */ + compact: boolean; + addEventListener(type: K, listener: (this: HTMLDListElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLDListElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; @@ -4598,7 +5352,7 @@ declare var HTMLDataElement: { }; interface HTMLDataListElement extends HTMLElement { - options: HTMLCollectionOf; + readonly options: HTMLCollectionOf; addEventListener(type: K, listener: (this: HTMLDataListElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLDataListElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; @@ -4610,6 +5364,36 @@ declare var HTMLDataListElement: { new(): HTMLDataListElement; }; +interface HTMLDetailsElement extends HTMLElement { + open: boolean; + addEventListener(type: K, listener: (this: HTMLDetailsElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; + addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; + removeEventListener(type: K, listener: (this: HTMLDetailsElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; + removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; +} + +declare var HTMLDetailsElement: { + prototype: HTMLDetailsElement; + new(): HTMLDetailsElement; +}; + +interface HTMLDialogElement extends HTMLElement { + open: boolean; + returnValue: string; + close(returnValue?: string): void; + show(): void; + showModal(): void; + addEventListener(type: K, listener: (this: HTMLDialogElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; + addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; + removeEventListener(type: K, listener: (this: HTMLDialogElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; + removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; +} + +declare var HTMLDialogElement: { + prototype: HTMLDialogElement; + new(): HTMLDialogElement; +}; + interface HTMLDirectoryElement extends HTMLElement { compact: boolean; addEventListener(type: K, listener: (this: HTMLDirectoryElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; @@ -4627,6 +5411,7 @@ interface HTMLDivElement extends HTMLElement { /** * Sets or retrieves how the object is aligned with adjacent text. */ + /** @deprecated */ align: string; /** * Sets or retrieves whether the browser automatically performs wordwrap. @@ -4657,12 +5442,12 @@ declare var HTMLDocument: { interface HTMLElementEventMap extends ElementEventMap { "abort": UIEvent; - "activate": UIEvent; - "beforeactivate": UIEvent; - "beforecopy": ClipboardEvent; - "beforecut": ClipboardEvent; - "beforedeactivate": UIEvent; - "beforepaste": ClipboardEvent; + "activate": Event; + "beforeactivate": Event; + "beforecopy": Event; + "beforecut": Event; + "beforedeactivate": Event; + "beforepaste": Event; "blur": FocusEvent; "canplay": Event; "canplaythrough": Event; @@ -4673,7 +5458,7 @@ interface HTMLElementEventMap extends ElementEventMap { "cuechange": Event; "cut": ClipboardEvent; "dblclick": MouseEvent; - "deactivate": UIEvent; + "deactivate": Event; "drag": DragEvent; "dragend": DragEvent; "dragenter": DragEvent; @@ -4683,7 +5468,7 @@ interface HTMLElementEventMap extends ElementEventMap { "drop": DragEvent; "durationchange": Event; "emptied": Event; - "ended": MediaStreamErrorEvent; + "ended": Event; "error": ErrorEvent; "focus": FocusEvent; "input": Event; @@ -4703,8 +5488,8 @@ interface HTMLElementEventMap extends ElementEventMap { "mouseover": MouseEvent; "mouseup": MouseEvent; "mousewheel": WheelEvent; - "MSContentZoom": UIEvent; - "MSManipulationStateChanged": MSManipulationEvent; + "MSContentZoom": Event; + "MSManipulationStateChanged": Event; "paste": ClipboardEvent; "pause": Event; "play": Event; @@ -4723,13 +5508,10 @@ interface HTMLElementEventMap extends ElementEventMap { "timeupdate": Event; "volumechange": Event; "waiting": Event; - "focusin": FocusEvent; - "focusout": FocusEvent; } -interface HTMLElement extends Element { +interface HTMLElement extends Element, ElementCSSInlineStyle { accessKey: string; - readonly children: HTMLCollection; contentEditable: string; readonly dataset: DOMStringMap; dir: string; @@ -4744,84 +5526,83 @@ interface HTMLElement extends Element { readonly offsetParent: Element; readonly offsetTop: number; readonly offsetWidth: number; - onabort: (this: HTMLElement, ev: UIEvent) => any; - onactivate: (this: HTMLElement, ev: UIEvent) => any; - onbeforeactivate: (this: HTMLElement, ev: UIEvent) => any; - onbeforecopy: (this: HTMLElement, ev: ClipboardEvent) => any; - onbeforecut: (this: HTMLElement, ev: ClipboardEvent) => any; - onbeforedeactivate: (this: HTMLElement, ev: UIEvent) => any; - onbeforepaste: (this: HTMLElement, ev: ClipboardEvent) => any; - onblur: (this: HTMLElement, ev: FocusEvent) => any; - oncanplay: (this: HTMLElement, ev: Event) => any; - oncanplaythrough: (this: HTMLElement, ev: Event) => any; - onchange: (this: HTMLElement, ev: Event) => any; - onclick: (this: HTMLElement, ev: MouseEvent) => any; - oncontextmenu: (this: HTMLElement, ev: PointerEvent) => any; - oncopy: (this: HTMLElement, ev: ClipboardEvent) => any; - oncuechange: (this: HTMLElement, ev: Event) => any; - oncut: (this: HTMLElement, ev: ClipboardEvent) => any; - ondblclick: (this: HTMLElement, ev: MouseEvent) => any; - ondeactivate: (this: HTMLElement, ev: UIEvent) => any; - ondrag: (this: HTMLElement, ev: DragEvent) => any; - ondragend: (this: HTMLElement, ev: DragEvent) => any; - ondragenter: (this: HTMLElement, ev: DragEvent) => any; - ondragleave: (this: HTMLElement, ev: DragEvent) => any; - ondragover: (this: HTMLElement, ev: DragEvent) => any; - ondragstart: (this: HTMLElement, ev: DragEvent) => any; - ondrop: (this: HTMLElement, ev: DragEvent) => any; - ondurationchange: (this: HTMLElement, ev: Event) => any; - onemptied: (this: HTMLElement, ev: Event) => any; - onended: (this: HTMLElement, ev: MediaStreamErrorEvent) => any; - onerror: (this: HTMLElement, ev: ErrorEvent) => any; - onfocus: (this: HTMLElement, ev: FocusEvent) => any; - oninput: (this: HTMLElement, ev: Event) => any; - oninvalid: (this: HTMLElement, ev: Event) => any; - onkeydown: (this: HTMLElement, ev: KeyboardEvent) => any; - onkeypress: (this: HTMLElement, ev: KeyboardEvent) => any; - onkeyup: (this: HTMLElement, ev: KeyboardEvent) => any; - onload: (this: HTMLElement, ev: Event) => any; - onloadeddata: (this: HTMLElement, ev: Event) => any; - onloadedmetadata: (this: HTMLElement, ev: Event) => any; - onloadstart: (this: HTMLElement, ev: Event) => any; - onmousedown: (this: HTMLElement, ev: MouseEvent) => any; - onmouseenter: (this: HTMLElement, ev: MouseEvent) => any; - onmouseleave: (this: HTMLElement, ev: MouseEvent) => any; - onmousemove: (this: HTMLElement, ev: MouseEvent) => any; - onmouseout: (this: HTMLElement, ev: MouseEvent) => any; - onmouseover: (this: HTMLElement, ev: MouseEvent) => any; - onmouseup: (this: HTMLElement, ev: MouseEvent) => any; - onmousewheel: (this: HTMLElement, ev: WheelEvent) => any; - onmscontentzoom: (this: HTMLElement, ev: UIEvent) => any; - onmsmanipulationstatechanged: (this: HTMLElement, ev: MSManipulationEvent) => any; - onpaste: (this: HTMLElement, ev: ClipboardEvent) => any; - onpause: (this: HTMLElement, ev: Event) => any; - onplay: (this: HTMLElement, ev: Event) => any; - onplaying: (this: HTMLElement, ev: Event) => any; - onprogress: (this: HTMLElement, ev: ProgressEvent) => any; - onratechange: (this: HTMLElement, ev: Event) => any; - onreset: (this: HTMLElement, ev: Event) => any; - onscroll: (this: HTMLElement, ev: UIEvent) => any; - onseeked: (this: HTMLElement, ev: Event) => any; - onseeking: (this: HTMLElement, ev: Event) => any; - onselect: (this: HTMLElement, ev: UIEvent) => any; - onselectstart: (this: HTMLElement, ev: Event) => any; - onstalled: (this: HTMLElement, ev: Event) => any; - onsubmit: (this: HTMLElement, ev: Event) => any; - onsuspend: (this: HTMLElement, ev: Event) => any; - ontimeupdate: (this: HTMLElement, ev: Event) => any; - onvolumechange: (this: HTMLElement, ev: Event) => any; - onwaiting: (this: HTMLElement, ev: Event) => any; + onabort: ((this: HTMLElement, ev: UIEvent) => any) | null; + onactivate: ((this: HTMLElement, ev: Event) => any) | null; + onbeforeactivate: ((this: HTMLElement, ev: Event) => any) | null; + onbeforecopy: ((this: HTMLElement, ev: Event) => any) | null; + onbeforecut: ((this: HTMLElement, ev: Event) => any) | null; + onbeforedeactivate: ((this: HTMLElement, ev: Event) => any) | null; + onbeforepaste: ((this: HTMLElement, ev: Event) => any) | null; + onblur: ((this: HTMLElement, ev: FocusEvent) => any) | null; + oncanplay: ((this: HTMLElement, ev: Event) => any) | null; + oncanplaythrough: ((this: HTMLElement, ev: Event) => any) | null; + onchange: ((this: HTMLElement, ev: Event) => any) | null; + onclick: ((this: HTMLElement, ev: MouseEvent) => any) | null; + oncontextmenu: ((this: HTMLElement, ev: PointerEvent) => any) | null; + oncopy: ((this: HTMLElement, ev: ClipboardEvent) => any) | null; + oncuechange: ((this: HTMLElement, ev: Event) => any) | null; + oncut: ((this: HTMLElement, ev: ClipboardEvent) => any) | null; + ondblclick: ((this: HTMLElement, ev: MouseEvent) => any) | null; + ondeactivate: ((this: HTMLElement, ev: Event) => any) | null; + ondrag: ((this: HTMLElement, ev: DragEvent) => any) | null; + ondragend: ((this: HTMLElement, ev: DragEvent) => any) | null; + ondragenter: ((this: HTMLElement, ev: DragEvent) => any) | null; + ondragleave: ((this: HTMLElement, ev: DragEvent) => any) | null; + ondragover: ((this: HTMLElement, ev: DragEvent) => any) | null; + ondragstart: ((this: HTMLElement, ev: DragEvent) => any) | null; + ondrop: ((this: HTMLElement, ev: DragEvent) => any) | null; + ondurationchange: ((this: HTMLElement, ev: Event) => any) | null; + onemptied: ((this: HTMLElement, ev: Event) => any) | null; + onended: ((this: HTMLElement, ev: Event) => any) | null; + onerror: ((this: HTMLElement, ev: ErrorEvent) => any) | null; + onfocus: ((this: HTMLElement, ev: FocusEvent) => any) | null; + oninput: ((this: HTMLElement, ev: Event) => any) | null; + oninvalid: ((this: HTMLElement, ev: Event) => any) | null; + onkeydown: ((this: HTMLElement, ev: KeyboardEvent) => any) | null; + onkeypress: ((this: HTMLElement, ev: KeyboardEvent) => any) | null; + onkeyup: ((this: HTMLElement, ev: KeyboardEvent) => any) | null; + onload: ((this: HTMLElement, ev: Event) => any) | null; + onloadeddata: ((this: HTMLElement, ev: Event) => any) | null; + onloadedmetadata: ((this: HTMLElement, ev: Event) => any) | null; + onloadstart: ((this: HTMLElement, ev: Event) => any) | null; + onmousedown: ((this: HTMLElement, ev: MouseEvent) => any) | null; + onmouseenter: ((this: HTMLElement, ev: MouseEvent) => any) | null; + onmouseleave: ((this: HTMLElement, ev: MouseEvent) => any) | null; + onmousemove: ((this: HTMLElement, ev: MouseEvent) => any) | null; + onmouseout: ((this: HTMLElement, ev: MouseEvent) => any) | null; + onmouseover: ((this: HTMLElement, ev: MouseEvent) => any) | null; + onmouseup: ((this: HTMLElement, ev: MouseEvent) => any) | null; + onmousewheel: ((this: HTMLElement, ev: WheelEvent) => any) | null; + onmscontentzoom: ((this: HTMLElement, ev: Event) => any) | null; + onmsmanipulationstatechanged: ((this: HTMLElement, ev: Event) => any) | null; + onpaste: ((this: HTMLElement, ev: ClipboardEvent) => any) | null; + onpause: ((this: HTMLElement, ev: Event) => any) | null; + onplay: ((this: HTMLElement, ev: Event) => any) | null; + onplaying: ((this: HTMLElement, ev: Event) => any) | null; + onprogress: ((this: HTMLElement, ev: ProgressEvent) => any) | null; + onratechange: ((this: HTMLElement, ev: Event) => any) | null; + onreset: ((this: HTMLElement, ev: Event) => any) | null; + onscroll: ((this: HTMLElement, ev: UIEvent) => any) | null; + onseeked: ((this: HTMLElement, ev: Event) => any) | null; + onseeking: ((this: HTMLElement, ev: Event) => any) | null; + onselect: ((this: HTMLElement, ev: UIEvent) => any) | null; + onselectstart: ((this: HTMLElement, ev: Event) => any) | null; + onstalled: ((this: HTMLElement, ev: Event) => any) | null; + onsubmit: ((this: HTMLElement, ev: Event) => any) | null; + onsuspend: ((this: HTMLElement, ev: Event) => any) | null; + ontimeupdate: ((this: HTMLElement, ev: Event) => any) | null; + onvolumechange: ((this: HTMLElement, ev: Event) => any) | null; + onwaiting: ((this: HTMLElement, ev: Event) => any) | null; outerText: string; spellcheck: boolean; - readonly style: CSSStyleDeclaration; tabIndex: number; title: string; + animate(keyframes: AnimationKeyFrame | AnimationKeyFrame[], options: number | AnimationOptions): Animation; blur(): void; click(): void; dragDrop(): boolean; focus(): void; msGetInputContext(): MSInputMethodContext; - animate(keyframes: AnimationKeyFrame | AnimationKeyFrame[], options: number | AnimationOptions): Animation; addEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; @@ -4858,6 +5639,7 @@ interface HTMLEmbedElement extends HTMLElement, GetSVGDocument { /** * Sets or retrieves the name of the object. */ + /** @deprecated */ name: string; /** * Retrieves the palette used for the embedded document. @@ -4938,6 +5720,7 @@ interface HTMLFontElement extends HTMLElement, DOML2DeprecatedColorProperty, DOM /** * Sets or retrieves the current typeface family. */ + /** @deprecated */ face: string; addEventListener(type: K, listener: (this: HTMLFontElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; @@ -5018,6 +5801,7 @@ interface HTMLFormElement extends HTMLElement { * Retrieves a form object or an object from an elements collection. */ namedItem(name: string): any; + reportValidity(): boolean; /** * Fires when the user resets a form. */ @@ -5026,8 +5810,6 @@ interface HTMLFormElement extends HTMLElement { * Fires when a FORM is about to be submitted. */ submit(): void; - reportValidity(): boolean; - reportValidity(): boolean; addEventListener(type: K, listener: (this: HTMLFormElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLFormElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; @@ -5056,14 +5838,17 @@ interface HTMLFrameElement extends HTMLElement, GetSVGDocument { /** * Retrieves the document object of the page or frame. */ - readonly contentDocument: Document; + /** @deprecated */ + readonly contentDocument: Document | null; /** * Retrieves the object of the specified. */ - readonly contentWindow: Window; + /** @deprecated */ + readonly contentWindow: Window | null; /** * Sets or retrieves whether to display a border for the frame. */ + /** @deprecated */ frameBorder: string; /** * Sets or retrieves the amount of additional space between the frames. @@ -5076,30 +5861,37 @@ interface HTMLFrameElement extends HTMLElement, GetSVGDocument { /** * Sets or retrieves a URI to a long description of the object. */ + /** @deprecated */ longDesc: string; /** * Sets or retrieves the top and bottom margin heights before displaying the text in a frame. */ + /** @deprecated */ marginHeight: string; /** * Sets or retrieves the left and right margin widths before displaying the text in a frame. */ + /** @deprecated */ marginWidth: string; /** * Sets or retrieves the frame name. */ + /** @deprecated */ name: string; /** * Sets or retrieves whether the user can resize the frame. */ + /** @deprecated */ noResize: boolean; /** * Sets or retrieves whether the frame can be scrolled. */ + /** @deprecated */ scrolling: string; /** * Sets or retrieves a URL to be loaded by the object. */ + /** @deprecated */ src: string; /** * Sets or retrieves the width of the object. @@ -5116,64 +5908,29 @@ declare var HTMLFrameElement: { new(): HTMLFrameElement; }; -interface HTMLFrameSetElementEventMap extends HTMLElementEventMap { - "afterprint": Event; - "beforeprint": Event; - "beforeunload": BeforeUnloadEvent; +interface HTMLFrameSetElementEventMap extends HTMLElementEventMap, WindowEventHandlersEventMap { "blur": FocusEvent; "error": ErrorEvent; "focus": FocusEvent; - "hashchange": HashChangeEvent; "load": Event; - "message": MessageEvent; - "offline": Event; - "online": Event; "orientationchange": Event; - "pagehide": PageTransitionEvent; - "pageshow": PageTransitionEvent; - "popstate": PopStateEvent; "resize": UIEvent; "scroll": UIEvent; - "storage": StorageEvent; - "unload": Event; } -interface HTMLFrameSetElement extends HTMLElement { - border: string; - /** - * Sets or retrieves the border color of the object. - */ - borderColor: any; +interface HTMLFrameSetElement extends HTMLElement, WindowEventHandlers { /** * Sets or retrieves the frame widths of the object. */ + /** @deprecated */ cols: string; - /** - * Sets or retrieves whether to display a border for the frame. - */ - frameBorder: string; - /** - * Sets or retrieves the amount of additional space between the frames. - */ - frameSpacing: any; name: string; - onafterprint: (this: HTMLFrameSetElement, ev: Event) => any; - onbeforeprint: (this: HTMLFrameSetElement, ev: Event) => any; - onbeforeunload: (this: HTMLFrameSetElement, ev: BeforeUnloadEvent) => any; - onhashchange: (this: HTMLFrameSetElement, ev: HashChangeEvent) => any; - onmessage: (this: HTMLFrameSetElement, ev: MessageEvent) => any; - onoffline: (this: HTMLFrameSetElement, ev: Event) => any; - ononline: (this: HTMLFrameSetElement, ev: Event) => any; - onorientationchange: (this: HTMLFrameSetElement, ev: Event) => any; - onpagehide: (this: HTMLFrameSetElement, ev: PageTransitionEvent) => any; - onpageshow: (this: HTMLFrameSetElement, ev: PageTransitionEvent) => any; - onpopstate: (this: HTMLFrameSetElement, ev: PopStateEvent) => any; - onresize: (this: HTMLFrameSetElement, ev: UIEvent) => any; - onstorage: (this: HTMLFrameSetElement, ev: StorageEvent) => any; - onunload: (this: HTMLFrameSetElement, ev: Event) => any; + onorientationchange: ((this: HTMLFrameSetElement, ev: Event) => any) | null; + onresize: ((this: HTMLFrameSetElement, ev: UIEvent) => any) | null; /** * Sets or retrieves the frame heights of the object. */ + /** @deprecated */ rows: string; addEventListener(type: K, listener: (this: HTMLFrameSetElement, ev: HTMLFrameSetElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; @@ -5190,15 +5947,18 @@ interface HTMLHRElement extends HTMLElement, DOML2DeprecatedColorProperty, DOML2 /** * Sets or retrieves how the object is aligned with adjacent text. */ + /** @deprecated */ align: string; /** * Sets or retrieves whether the horizontal rule is drawn with 3-D shading. */ + /** @deprecated */ noShade: boolean; /** * Sets or retrieves the width of the object. */ - width: number; + /** @deprecated */ + width: string; addEventListener(type: K, listener: (this: HTMLHRElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLHRElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; @@ -5211,6 +5971,7 @@ declare var HTMLHRElement: { }; interface HTMLHeadElement extends HTMLElement { + /** @deprecated */ profile: string; addEventListener(type: K, listener: (this: HTMLHeadElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; @@ -5227,6 +5988,7 @@ interface HTMLHeadingElement extends HTMLElement { /** * Sets or retrieves a value that indicates the table alignment. */ + /** @deprecated */ align: string; addEventListener(type: K, listener: (this: HTMLHeadingElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; @@ -5243,6 +6005,7 @@ interface HTMLHtmlElement extends HTMLElement { /** * Sets or retrieves the DTD version that governs the current document. */ + /** @deprecated */ version: string; addEventListener(type: K, listener: (this: HTMLHtmlElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; @@ -5255,6 +6018,19 @@ declare var HTMLHtmlElement: { new(): HTMLHtmlElement; }; +interface HTMLHyperlinkElementUtils { + hash: string; + host: string; + hostname: string; + href: string; + origin: string; + pathname: string; + port: string; + protocol: string; + search: string; + toString(): string; +} + interface HTMLIFrameElementEventMap extends HTMLElementEventMap { "load": Event; } @@ -5263,78 +6039,64 @@ interface HTMLIFrameElement extends HTMLElement, GetSVGDocument { /** * Sets or retrieves how the object is aligned with adjacent text. */ + /** @deprecated */ align: string; allowFullscreen: boolean; allowPaymentRequest: boolean; - /** - * Specifies the properties of a border drawn around an object. - */ - border: string; /** * Retrieves the document object of the page or frame. */ - readonly contentDocument: Document; + readonly contentDocument: Document | null; /** * Retrieves the object of the specified. */ - readonly contentWindow: Window; + readonly contentWindow: Window | null; /** * Sets or retrieves whether to display a border for the frame. */ + /** @deprecated */ frameBorder: string; - /** - * Sets or retrieves the amount of additional space between the frames. - */ - frameSpacing: any; /** * Sets or retrieves the height of the object. */ height: string; - /** - * Sets or retrieves the horizontal margin for the object. - */ - hspace: number; /** * Sets or retrieves a URI to a long description of the object. */ + /** @deprecated */ longDesc: string; /** * Sets or retrieves the top and bottom margin heights before displaying the text in a frame. */ + /** @deprecated */ marginHeight: string; /** * Sets or retrieves the left and right margin widths before displaying the text in a frame. */ + /** @deprecated */ marginWidth: string; /** * Sets or retrieves the frame name. */ name: string; - /** - * Sets or retrieves whether the user can resize the frame. - */ - noResize: boolean; - readonly sandbox: DOMSettableTokenList; + readonly sandbox: DOMTokenList; /** * Sets or retrieves whether the frame can be scrolled. */ + /** @deprecated */ scrolling: string; /** * Sets or retrieves a URL to be loaded by the object. */ src: string; /** - * Sets or retrieves the vertical margin for the object. + * Sets or retrives the content of the page that is to contain. */ - vspace: number; + srcdoc: string; /** * Sets or retrieves the width of the object. */ width: string; - /** - * Sets or retrives the content of the page that is to contain. - */ - srcdoc: string; addEventListener(type: K, listener: (this: HTMLIFrameElement, ev: HTMLIFrameElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLIFrameElement, ev: HTMLIFrameElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; @@ -5350,6 +6112,7 @@ interface HTMLImageElement extends HTMLElement { /** * Sets or retrieves how the object is aligned with adjacent text. */ + /** @deprecated */ align: string; /** * Sets or retrieves a text alternative to the graphic. @@ -5358,6 +6121,7 @@ interface HTMLImageElement extends HTMLElement { /** * Specifies the properties of a border drawn around an object. */ + /** @deprecated */ border: string; /** * Retrieves whether the object is fully loaded. @@ -5372,6 +6136,7 @@ interface HTMLImageElement extends HTMLElement { /** * Sets or retrieves the width of the border to draw around the object. */ + /** @deprecated */ hspace: number; /** * Sets or retrieves whether the image is a server-side image map. @@ -5381,6 +6146,7 @@ interface HTMLImageElement extends HTMLElement { * Sets or retrieves a Uniform Resource Identifier (URI) to a long description of the object. */ longDesc: string; + /** @deprecated */ lowsrc: string; /** * Gets or sets whether the DLNA PlayTo device is available. @@ -5398,6 +6164,7 @@ interface HTMLImageElement extends HTMLElement { /** * Sets or retrieves the name of the object. */ + /** @deprecated */ name: string; /** * The original height of the image resource before sizing. @@ -5420,6 +6187,7 @@ interface HTMLImageElement extends HTMLElement { /** * Sets or retrieves the vertical margin for the object. */ + /** @deprecated */ vspace: number; /** * Sets or retrieves the width of the object. @@ -5447,6 +6215,7 @@ interface HTMLInputElement extends HTMLElement { /** * Sets or retrieves how the object is aligned with adjacent text. */ + /** @deprecated */ align: string; /** * Sets or retrieves a text alternative to the graphic. @@ -5460,18 +6229,10 @@ interface HTMLInputElement extends HTMLElement { * Provides a way to direct a user to a specific field when a document loads. This can provide both direction and convenience for a user, reducing the need to click or tab to a field when a page opens. This attribute is true when present on an element, and false when missing. */ autofocus: boolean; - /** - * Sets or retrieves the width of the border to draw around the object. - */ - border: string; /** * Sets or retrieves the state of the check box or radio button. */ checked: boolean; - /** - * Retrieves whether the object is fully loaded. - */ - readonly complete: boolean; /** * Sets or retrieves the state of the check box or radio button. */ @@ -5504,7 +6265,7 @@ interface HTMLInputElement extends HTMLElement { /** * Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a "save draft"-type submit option. */ - formNoValidate: string; + formNoValidate: boolean; /** * Overrides the target attribute on a form element. */ @@ -5512,16 +6273,12 @@ interface HTMLInputElement extends HTMLElement { /** * Sets or retrieves the height of the object. */ - height: string; - /** - * Sets or retrieves the width of the border to draw around the object. - */ - hspace: number; + height: number; indeterminate: boolean; /** * Specifies the ID of a pre-defined datalist of options for an input element. */ - readonly list: HTMLElement; + readonly list: HTMLElement | null; /** * Defines the maximum acceptable value for an input element with type="number".When used with the min and step attributes, lets you control the range and increment (such as only even numbers) that the user can enter into an input field. */ @@ -5534,6 +6291,7 @@ interface HTMLInputElement extends HTMLElement { * Defines the minimum acceptable value for an input element with type="number". When used with the max and step attributes, lets you control the range and increment (such as even numbers only) that the user can enter into an input field. */ min: string; + minLength: number; /** * Sets or retrieves the Boolean value indicating whether multiple items can be selected from a list. */ @@ -5555,21 +6313,20 @@ interface HTMLInputElement extends HTMLElement { * When present, marks an element that can't be submitted without a value. */ required: boolean; - selectionDirection: string; + selectionDirection: string | null; /** * Gets or sets the end position or offset of a text selection. */ - selectionEnd: number; + selectionEnd: number | null; /** * Gets or sets the starting position or offset of a text selection. */ - selectionStart: number; + selectionStart: number | null; size: number; /** * The address or URL of the a media resource that is to be considered. */ src: string; - status: boolean; /** * Defines an increment or jump between values that you want to allow the user to enter. When used with the max and min attributes, lets you control the range and increment (for example, allow only even numbers) that the user can enter into an input field. */ @@ -5581,6 +6338,7 @@ interface HTMLInputElement extends HTMLElement { /** * Sets or retrieves the URL, often with a bookmark extension (#name), to use as a client-side image map. */ + /** @deprecated */ useMap: string; /** * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting. @@ -5594,25 +6352,20 @@ interface HTMLInputElement extends HTMLElement { * Returns the value of the data at the cursor's current position. */ value: string; - valueAsDate: Date; + valueAsDate: any; /** * Returns the input field value as a number. */ valueAsNumber: number; - /** - * Sets or retrieves the vertical margin for the object. - */ - vspace: number; webkitdirectory: boolean; /** * Sets or retrieves the width of the object. */ - width: string; + width: number; /** * Returns whether an element will successfully validate based on forms validation rules and constraints. */ readonly willValidate: boolean; - minLength: number; /** * Returns whether a form will validate when it is submitted, without having to submit it. */ @@ -5655,6 +6408,7 @@ declare var HTMLInputElement: { }; interface HTMLLIElement extends HTMLElement { + /** @deprecated */ type: string; /** * Sets or retrieves the value of a list item. @@ -5672,6 +6426,7 @@ declare var HTMLLIElement: { }; interface HTMLLabelElement extends HTMLElement { + readonly control: HTMLInputElement | null; /** * Retrieves a reference to the form that the object is embedded in. */ @@ -5680,7 +6435,6 @@ interface HTMLLabelElement extends HTMLElement { * Sets or retrieves the object to which the given label object is assigned. */ htmlFor: string; - readonly control: HTMLInputElement | null; addEventListener(type: K, listener: (this: HTMLLabelElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLLabelElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; @@ -5696,6 +6450,7 @@ interface HTMLLegendElement extends HTMLElement { /** * Retrieves a reference to the form that the object is embedded in. */ + /** @deprecated */ align: string; /** * Retrieves a reference to the form that the object is embedded in. @@ -5716,7 +6471,10 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle { /** * Sets or retrieves the character set used to encode the object. */ + /** @deprecated */ charset: string; + crossOrigin: string | null; + /** @deprecated */ disabled: boolean; /** * Sets or retrieves a destination URL or an anchor point. @@ -5726,6 +6484,8 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle { * Sets or retrieves the language code of the object. */ hreflang: string; + import?: Document; + integrity: string; /** * Sets or retrieves the media type. */ @@ -5737,17 +6497,17 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle { /** * Sets or retrieves the relationship between the object and the destination of the link. */ + /** @deprecated */ rev: string; /** * Sets or retrieves the window or frame at which to target content. */ + /** @deprecated */ target: string; /** * Sets or retrieves the MIME type of the object. */ type: string; - import?: Document; - integrity: string; addEventListener(type: K, listener: (this: HTMLLinkElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLLinkElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; @@ -5759,6 +6519,18 @@ declare var HTMLLinkElement: { new(): HTMLLinkElement; }; +interface HTMLMainElement extends HTMLElement { + addEventListener(type: K, listener: (this: HTMLMainElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; + addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; + removeEventListener(type: K, listener: (this: HTMLMainElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; + removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; +} + +declare var HTMLMainElement: { + prototype: HTMLMainElement; + new(): HTMLMainElement; +}; + interface HTMLMapElement extends HTMLElement { /** * Retrieves a collection of the area objects defined for the given map object. @@ -5786,21 +6558,37 @@ interface HTMLMarqueeElementEventMap extends HTMLElementEventMap { } interface HTMLMarqueeElement extends HTMLElement { + /** @deprecated */ behavior: string; - bgColor: any; + /** @deprecated */ + bgColor: string; + /** @deprecated */ direction: string; + /** @deprecated */ height: string; + /** @deprecated */ hspace: number; + /** @deprecated */ loop: number; - onbounce: (this: HTMLMarqueeElement, ev: Event) => any; - onfinish: (this: HTMLMarqueeElement, ev: Event) => any; - onstart: (this: HTMLMarqueeElement, ev: Event) => any; + /** @deprecated */ + onbounce: ((this: HTMLMarqueeElement, ev: Event) => any) | null; + /** @deprecated */ + onfinish: ((this: HTMLMarqueeElement, ev: Event) => any) | null; + /** @deprecated */ + onstart: ((this: HTMLMarqueeElement, ev: Event) => any) | null; + /** @deprecated */ scrollAmount: number; + /** @deprecated */ scrollDelay: number; + /** @deprecated */ trueSpeed: boolean; + /** @deprecated */ vspace: number; + /** @deprecated */ width: string; + /** @deprecated */ start(): void; + /** @deprecated */ stop(): void; addEventListener(type: K, listener: (this: HTMLMarqueeElement, ev: HTMLMarqueeElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; @@ -5815,7 +6603,7 @@ declare var HTMLMarqueeElement: { interface HTMLMediaElementEventMap extends HTMLElementEventMap { "encrypted": MediaEncryptedEvent; - "msneedkey": MSMediaKeyNeededEvent; + "msneedkey": Event; } interface HTMLMediaElement extends HTMLElement { @@ -5860,7 +6648,7 @@ interface HTMLMediaElement extends HTMLElement { /** * Returns an object representing the current error state of the audio or video element. */ - readonly error: MediaError; + readonly error: MediaError | null; /** * Gets or sets a flag to specify whether playback should restart after it completes. */ @@ -5878,6 +6666,7 @@ interface HTMLMediaElement extends HTMLElement { /** * Gets the MSMediaKeys object, which is used for decrypting media data, that is associated with this media element. */ + /** @deprecated */ readonly msKeys: MSMediaKeys; /** * Gets or sets whether the DLNA PlayTo device is available. @@ -5907,8 +6696,9 @@ interface HTMLMediaElement extends HTMLElement { * Gets the current network activity for the element. */ readonly networkState: number; - onencrypted: (this: HTMLMediaElement, ev: MediaEncryptedEvent) => any; - onmsneedkey: (this: HTMLMediaElement, ev: MSMediaKeyNeededEvent) => any; + onencrypted: ((this: HTMLMediaElement, ev: MediaEncryptedEvent) => any) | null; + /** @deprecated */ + onmsneedkey: ((this: HTMLMediaElement, ev: Event) => any) | null; /** * Gets a flag that specifies whether playback is paused. */ @@ -5925,7 +6715,7 @@ interface HTMLMediaElement extends HTMLElement { * Gets or sets the current playback position, in seconds. */ preload: string; - readyState: number; + readonly readyState: number; /** * Returns a TimeRanges object that represents the ranges of the current media resource that can be seeked. */ @@ -5938,18 +6728,18 @@ interface HTMLMediaElement extends HTMLElement { * The address or URL of the a media resource that is to be considered. */ src: string; - srcObject: MediaStream | null; + srcObject: MediaStream | MediaSource | Blob | null; readonly textTracks: TextTrackList; readonly videoTracks: VideoTrackList; /** * Gets or sets the volume level for audio portions of the media element. */ volume: number; - addTextTrack(kind: string, label?: string, language?: string): TextTrack; + addTextTrack(kind: TextTrackKind, label?: string, language?: string): TextTrack; /** * Returns a string that specifies whether the client can play a given media resource type. */ - canPlayType(type: string): string; + canPlayType(type: string): CanPlayTypeResult; /** * Resets the audio or video object and loads a new media resource. */ @@ -5963,6 +6753,7 @@ interface HTMLMediaElement extends HTMLElement { * Inserts the specified audio effect into media pipeline. */ msInsertAudioEffect(activatableClassId: string, effectRequired: boolean, config?: any): void; + /** @deprecated */ msSetMediaKeys(mediaKeys: MSMediaKeys): void; /** * Specifies the media protection manager for a given media pipeline. @@ -6007,6 +6798,7 @@ declare var HTMLMediaElement: { }; interface HTMLMenuElement extends HTMLElement { + /** @deprecated */ compact: boolean; type: string; addEventListener(type: K, listener: (this: HTMLMenuElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; @@ -6024,6 +6816,7 @@ interface HTMLMetaElement extends HTMLElement { /** * Sets or retrieves the character set used to encode the object. */ + /** @deprecated */ charset: string; /** * Gets or sets meta-information to associate with httpEquiv or name. @@ -6040,10 +6833,12 @@ interface HTMLMetaElement extends HTMLElement { /** * Sets or retrieves a scheme to be used in interpreting the value of a property specified for the object. */ + /** @deprecated */ scheme: string; /** * Sets or retrieves the URL property that will be loaded after the specified time has elapsed. */ + /** @deprecated */ url: string; addEventListener(type: K, listener: (this: HTMLMetaElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; @@ -6095,6 +6890,7 @@ declare var HTMLModElement: { }; interface HTMLOListElement extends HTMLElement { + /** @deprecated */ compact: boolean; /** * The starting number. @@ -6117,36 +6913,39 @@ interface HTMLObjectElement extends HTMLElement, GetSVGDocument { * Retrieves a string of the URL where the object tag can be found. This is often the href of the document that the object is in, or the value set by a base element. */ readonly BaseHref: string; + /** @deprecated */ align: string; - /** - * Gets or sets the optional alternative HTML script to execute if the object fails to load. - */ - altHtml: string; /** * Sets or retrieves a character string that can be used to implement your own archive functionality for the object. */ + /** @deprecated */ archive: string; + /** @deprecated */ border: string; /** * Sets or retrieves the URL of the file containing the compiled Java class. */ + /** @deprecated */ code: string; /** * Sets or retrieves the URL of the component. */ + /** @deprecated */ codeBase: string; /** * Sets or retrieves the Internet media type for the code associated with the object. */ + /** @deprecated */ codeType: string; /** * Retrieves the document object of the page or frame. */ - readonly contentDocument: Document; + readonly contentDocument: Document | null; /** * Sets or retrieves the URL that references the data of the object. */ data: string; + /** @deprecated */ declare: boolean; /** * Retrieves a reference to the form that the object is embedded in. @@ -6156,6 +6955,7 @@ interface HTMLObjectElement extends HTMLElement, GetSVGDocument { * Sets or retrieves the height of the object. */ height: string; + /** @deprecated */ hspace: number; /** * Gets or sets whether the DLNA PlayTo device is available. @@ -6181,11 +6981,13 @@ interface HTMLObjectElement extends HTMLElement, GetSVGDocument { /** * Sets or retrieves a message to be displayed while an object is loading. */ + /** @deprecated */ standby: string; /** * Sets or retrieves the MIME type of the object. */ type: string; + typemustmatch: boolean; /** * Sets or retrieves the URL, often with a bookmark extension (#name), to use as a client-side image map. */ @@ -6198,6 +7000,7 @@ interface HTMLObjectElement extends HTMLElement, GetSVGDocument { * Returns a ValidityState object that represents the validity states of an element. */ readonly validity: ValidityState; + /** @deprecated */ vspace: number; /** * Sets or retrieves the width of the object. @@ -6207,7 +7010,6 @@ interface HTMLObjectElement extends HTMLElement, GetSVGDocument { * Returns whether an element will successfully validate based on forms validation rules and constraints. */ readonly willValidate: boolean; - typemustmatch: boolean; /** * Returns whether a form will validate when it is submitted, without having to submit it. */ @@ -6229,35 +7031,15 @@ declare var HTMLObjectElement: { }; interface HTMLOptGroupElement extends HTMLElement { - /** - * Sets or retrieves the status of an option. - */ - defaultSelected: boolean; disabled: boolean; /** * Retrieves a reference to the form that the object is embedded in. */ readonly form: HTMLFormElement | null; - /** - * Sets or retrieves the ordinal position of an option in a list box. - */ - readonly index: number; /** * Sets or retrieves a value that you can use to implement your own label functionality for the object. */ label: string; - /** - * Sets or retrieves whether the option in the list box is the default item. - */ - selected: boolean; - /** - * Sets or retrieves the text string specified by the option tag. - */ - readonly text: string; - /** - * Sets or retrieves the value which is returned to the server when the form control is submitted. - */ - value: string; addEventListener(type: K, listener: (this: HTMLOptGroupElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLOptGroupElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; @@ -6310,10 +7092,10 @@ declare var HTMLOptionElement: { new(): HTMLOptionElement; }; -interface HTMLOptionsCollection extends HTMLCollectionOf { +interface HTMLOptionsCollection extends HTMLCollectionBase { length: number; selectedIndex: number; - add(element: HTMLOptionElement | HTMLOptGroupElement, before?: HTMLElement | number): void; + add(element: HTMLOptionElement | HTMLOptGroupElement, before?: HTMLElement | number | null): void; remove(index: number): void; } @@ -6325,7 +7107,7 @@ declare var HTMLOptionsCollection: { interface HTMLOutputElement extends HTMLElement { defaultValue: string; readonly form: HTMLFormElement | null; - readonly htmlFor: DOMSettableTokenList; + readonly htmlFor: DOMTokenList; name: string; readonly type: string; readonly validationMessage: string; @@ -6350,6 +7132,7 @@ interface HTMLParagraphElement extends HTMLElement { /** * Sets or retrieves how the object is aligned with adjacent text. */ + /** @deprecated */ align: string; clear: string; addEventListener(type: K, listener: (this: HTMLParagraphElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; @@ -6371,6 +7154,7 @@ interface HTMLParamElement extends HTMLElement { /** * Sets or retrieves the content type of the resource designated by the value attribute. */ + /** @deprecated */ type: string; /** * Sets or retrieves the value of an input parameter for an element. @@ -6379,6 +7163,7 @@ interface HTMLParamElement extends HTMLElement { /** * Sets or retrieves the data type of the value attribute. */ + /** @deprecated */ valueType: string; addEventListener(type: K, listener: (this: HTMLParamElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; @@ -6407,6 +7192,7 @@ interface HTMLPreElement extends HTMLElement { /** * Sets or gets a value that you can use to implement your own width functionality for the object. */ + /** @deprecated */ width: number; addEventListener(type: K, listener: (this: HTMLPreElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; @@ -6477,11 +7263,15 @@ interface HTMLScriptElement extends HTMLElement { /** * Sets or retrieves the event for which the script is written. */ + /** @deprecated */ event: string; /** * Sets or retrieves the object that is bound to the event script. */ + /** @deprecated */ htmlFor: string; + integrity: string; + noModule: boolean; /** * Retrieves the URL to an external file that contains the source code or data. */ @@ -6494,7 +7284,6 @@ interface HTMLScriptElement extends HTMLElement { * Sets or retrieves the MIME type for the associated scripting engine. */ type: string; - integrity: string; addEventListener(type: K, listener: (this: HTMLScriptElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLScriptElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; @@ -6537,7 +7326,7 @@ interface HTMLSelectElement extends HTMLElement { * Sets or retrieves the index of the selected option in a select object. */ selectedIndex: number; - selectedOptions: HTMLCollectionOf; + readonly selectedOptions: HTMLCollectionOf; /** * Sets or retrieves the number of rows in the list box. */ @@ -6567,7 +7356,7 @@ interface HTMLSelectElement extends HTMLElement { * @param element Variant of type Number that specifies the index position in the collection where the element is placed. If no value is given, the method places the element at the end of the collection. * @param before Variant of type Object that specifies an element to insert before, or null to append the object to the collection. */ - add(element: HTMLElement, before?: HTMLElement | number): void; + add(element: HTMLOptionElement | HTMLOptGroupElement, before?: HTMLElement | number | null): void; /** * Returns whether a form will validate when it is submitted, without having to submit it. */ @@ -6577,7 +7366,7 @@ interface HTMLSelectElement extends HTMLElement { * @param name Variant of type Number or String that specifies the object or collection to retrieve. If this parameter is an integer, it is the zero-based index of the object. If this parameter is a string, all objects with matching name or id properties are retrieved, and a collection is returned if more than one match is made. * @param index Variant of type Number that specifies the zero-based index of the object to retrieve when a collection is returned. */ - item(name?: any, index?: any): any; + item(name?: any, index?: any): Element | null; /** * Retrieves a select object or an object from an options collection. * @param namedItem A String that specifies the name or id property of the object to retrieve. A collection is returned if more than one match is made. @@ -6605,11 +7394,21 @@ declare var HTMLSelectElement: { new(): HTMLSelectElement; }; +interface HTMLSlotElement extends HTMLElement { + name: string; + assignedNodes(options?: AssignedNodesOptions): Node[]; + addEventListener(type: K, listener: (this: HTMLSlotElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; + addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; + removeEventListener(type: K, listener: (this: HTMLSlotElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; + removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; +} + interface HTMLSourceElement extends HTMLElement { /** * Gets or sets the intended media type of the media source. */ media: string; + /** @deprecated */ msKeySystem: string; sizes: string; /** @@ -6645,6 +7444,7 @@ declare var HTMLSpanElement: { }; interface HTMLStyleElement extends HTMLElement, LinkStyle { + /** @deprecated */ disabled: boolean; /** * Sets or retrieves the media type. @@ -6665,30 +7465,24 @@ declare var HTMLStyleElement: { new(): HTMLStyleElement; }; -interface HTMLTableAlignment { - /** - * Sets or retrieves a value that you can use to implement your own ch functionality for the object. - */ - ch: string; - /** - * Sets or retrieves a value that you can use to implement your own chOff functionality for the object. - */ - chOff: string; - /** - * Sets or retrieves how text and other content are vertically aligned within the object that contains them. - */ - vAlign: string; +interface HTMLSummaryElement extends HTMLElement { + addEventListener(type: K, listener: (this: HTMLSummaryElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; + addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; + removeEventListener(type: K, listener: (this: HTMLSummaryElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; + removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } +declare var HTMLSummaryElement: { + prototype: HTMLSummaryElement; + new(): HTMLSummaryElement; +}; + interface HTMLTableCaptionElement extends HTMLElement { /** * Sets or retrieves the alignment of the caption or legend. */ + /** @deprecated */ align: string; - /** - * Sets or retrieves whether the caption appears at the top or bottom of the table. - */ - vAlign: string; addEventListener(type: K, listener: (this: HTMLTableCaptionElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLTableCaptionElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; @@ -6700,7 +7494,7 @@ declare var HTMLTableCaptionElement: { new(): HTMLTableCaptionElement; }; -interface HTMLTableCellElement extends HTMLElement, HTMLTableAlignment { +interface HTMLTableCellElement extends HTMLElement { /** * Sets or retrieves abbreviated text for the object. */ @@ -6708,16 +7502,23 @@ interface HTMLTableCellElement extends HTMLElement, HTMLTableAlignment { /** * Sets or retrieves how the object is aligned with adjacent text. */ + /** @deprecated */ align: string; /** * Sets or retrieves a comma-delimited list of conceptual categories associated with the object. */ + /** @deprecated */ axis: string; - bgColor: any; + /** @deprecated */ + bgColor: string; /** * Retrieves the position of the object in the cells collection of a row. */ readonly cellIndex: number; + /** @deprecated */ + ch: string; + /** @deprecated */ + chOff: string; /** * Sets or retrieves the number columns in the table that the object should span. */ @@ -6729,10 +7530,12 @@ interface HTMLTableCellElement extends HTMLElement, HTMLTableAlignment { /** * Sets or retrieves the height of the object. */ - height: any; + /** @deprecated */ + height: string; /** * Sets or retrieves whether the browser automatically performs wordwrap. */ + /** @deprecated */ noWrap: boolean; /** * Sets or retrieves how many rows in a table the cell should span. @@ -6742,9 +7545,12 @@ interface HTMLTableCellElement extends HTMLElement, HTMLTableAlignment { * Sets or retrieves the group of cells in a table to which the object's information applies. */ scope: string; + /** @deprecated */ + vAlign: string; /** * Sets or retrieves the width of the object. */ + /** @deprecated */ width: string; addEventListener(type: K, listener: (this: HTMLTableCellElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; @@ -6757,19 +7563,27 @@ declare var HTMLTableCellElement: { new(): HTMLTableCellElement; }; -interface HTMLTableColElement extends HTMLElement, HTMLTableAlignment { +interface HTMLTableColElement extends HTMLElement { /** * Sets or retrieves the alignment of the object relative to the display or table. */ + /** @deprecated */ align: string; + /** @deprecated */ + ch: string; + /** @deprecated */ + chOff: string; /** * Sets or retrieves the number of columns in the group. */ span: number; + /** @deprecated */ + vAlign: string; /** * Sets or retrieves the width of the object. */ - width: any; + /** @deprecated */ + width: string; addEventListener(type: K, listener: (this: HTMLTableColElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLTableColElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; @@ -6797,67 +7611,64 @@ interface HTMLTableElement extends HTMLElement { /** * Sets or retrieves a value that indicates the table alignment. */ + /** @deprecated */ align: string; - bgColor: any; + /** @deprecated */ + bgColor: string; /** * Sets or retrieves the width of the border to draw around the object. */ + /** @deprecated */ border: string; - /** - * Sets or retrieves the border color of the object. - */ - borderColor: any; /** * Retrieves the caption object of a table. */ - caption: HTMLTableCaptionElement; + caption: HTMLTableCaptionElement | null; /** * Sets or retrieves the amount of space between the border of the cell and the content of the cell. */ + /** @deprecated */ cellPadding: string; /** * Sets or retrieves the amount of space between cells in a table. */ + /** @deprecated */ cellSpacing: string; - /** - * Sets or retrieves the number of columns in the table. - */ - cols: number; /** * Sets or retrieves the way the border frame around the table is displayed. */ + /** @deprecated */ frame: string; - /** - * Sets or retrieves the height of the object. - */ - height: any; /** * Sets or retrieves the number of horizontal rows contained in the object. */ - rows: HTMLCollectionOf; + readonly rows: HTMLCollectionOf; /** * Sets or retrieves which dividing lines (inner borders) are displayed. */ + /** @deprecated */ rules: string; /** * Sets or retrieves a description and/or structure of the object. */ + /** @deprecated */ summary: string; /** * Retrieves a collection of all tBody objects in the table. Objects in this collection are in source order. */ - tBodies: HTMLCollectionOf; + readonly tBodies: HTMLCollectionOf; /** * Retrieves the tFoot object of the table. */ - tFoot: HTMLTableSectionElement; + tFoot: HTMLTableSectionElement | null; /** * Retrieves the tHead object of the table. */ - tHead: HTMLTableSectionElement; + tHead: HTMLTableSectionElement | null; /** * Sets or retrieves the width of the object. */ + /** @deprecated */ width: string; /** * Creates an empty caption element in the table. @@ -6909,9 +7720,6 @@ declare var HTMLTableElement: { }; interface HTMLTableHeaderCellElement extends HTMLTableCellElement { - /** - * Sets or retrieves the group of cells in a table to which the object's information applies. - */ scope: string; addEventListener(type: K, listener: (this: HTMLTableHeaderCellElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; @@ -6924,20 +7732,22 @@ declare var HTMLTableHeaderCellElement: { new(): HTMLTableHeaderCellElement; }; -interface HTMLTableRowElement extends HTMLElement, HTMLTableAlignment { +interface HTMLTableRowElement extends HTMLElement { /** * Sets or retrieves how the object is aligned with adjacent text. */ + /** @deprecated */ align: string; - bgColor: any; + /** @deprecated */ + bgColor: string; /** * Retrieves a collection of all cells in the table row. */ - cells: HTMLCollectionOf; - /** - * Sets or retrieves the height of the object. - */ - height: any; + readonly cells: HTMLCollectionOf; + /** @deprecated */ + ch: string; + /** @deprecated */ + chOff: string; /** * Retrieves the position of the object in the rows collection for the table. */ @@ -6946,6 +7756,8 @@ interface HTMLTableRowElement extends HTMLElement, HTMLTableAlignment { * Retrieves the position of the object in the collection. */ readonly sectionRowIndex: number; + /** @deprecated */ + vAlign: string; /** * Removes the specified cell from the table row, as well as from the cells collection. * @param index Number that specifies the zero-based position of the cell to remove from the table row. If no value is provided, the last cell in the cells collection is deleted. @@ -6967,15 +7779,22 @@ declare var HTMLTableRowElement: { new(): HTMLTableRowElement; }; -interface HTMLTableSectionElement extends HTMLElement, HTMLTableAlignment { +interface HTMLTableSectionElement extends HTMLElement { /** * Sets or retrieves a value that indicates the table alignment. */ + /** @deprecated */ align: string; + /** @deprecated */ + ch: string; + /** @deprecated */ + chOff: string; /** * Sets or retrieves the number of horizontal rows contained in the object. */ - rows: HTMLCollectionOf; + readonly rows: HTMLCollectionOf; + /** @deprecated */ + vAlign: string; /** * Removes the specified row (tr) from the element and from the rows collection. * @param index Number that specifies the zero-based position in the rows collection of the row to remove. @@ -7032,6 +7851,7 @@ interface HTMLTextAreaElement extends HTMLElement { * Sets or retrieves the maximum number of characters that the user can enter in a text control. */ maxLength: number; + minLength: number; /** * Sets or retrieves the name of the object. */ @@ -7060,10 +7880,6 @@ interface HTMLTextAreaElement extends HTMLElement { * Gets or sets the starting position or offset of a text selection. */ selectionStart: number; - /** - * Sets or retrieves the value indicating whether the control is selected. - */ - status: any; /** * Retrieves the type of control. */ @@ -7088,7 +7904,6 @@ interface HTMLTextAreaElement extends HTMLElement { * Sets or retrieves how to handle wordwrapping in the object. */ wrap: string; - minLength: number; /** * Returns whether a form will validate when it is submitted, without having to submit it. */ @@ -7177,7 +7992,9 @@ declare var HTMLTrackElement: { }; interface HTMLUListElement extends HTMLElement { + /** @deprecated */ compact: boolean; + /** @deprecated */ type: string; addEventListener(type: K, listener: (this: HTMLUListElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; @@ -7219,9 +8036,9 @@ interface HTMLVideoElement extends HTMLMediaElement { msStereo3DPackingMode: string; msStereo3DRenderMode: string; msZoom: boolean; - onMSVideoFormatChanged: (this: HTMLVideoElement, ev: Event) => any; - onMSVideoFrameStepCompleted: (this: HTMLVideoElement, ev: Event) => any; - onMSVideoOptimalLayoutChanged: (this: HTMLVideoElement, ev: Event) => any; + onMSVideoFormatChanged: ((this: HTMLVideoElement, ev: Event) => any) | null; + onMSVideoFrameStepCompleted: ((this: HTMLVideoElement, ev: Event) => any) | null; + onMSVideoOptimalLayoutChanged: ((this: HTMLVideoElement, ev: Event) => any) | null; /** * Gets or sets a URL of an image to display, for example, like a movie poster. This can be a still frame from the video, or another image if no video data is available. */ @@ -7259,20 +8076,29 @@ declare var HTMLVideoElement: { new(): HTMLVideoElement; }; +interface HTMLegendElement { + readonly form: HTMLFormElement | null; +} + +declare var HTMLegendElement: { + prototype: HTMLegendElement; + new(): HTMLegendElement; +}; + interface HashChangeEvent extends Event { - readonly newURL: string | null; - readonly oldURL: string | null; + readonly newURL: string; + readonly oldURL: string; } declare var HashChangeEvent: { prototype: HashChangeEvent; - new(typeArg: string, eventInitDict?: HashChangeEventInit): HashChangeEvent; + new(type: string, eventInitDict?: HashChangeEventInit): HashChangeEvent; }; interface Headers { append(name: string, value: string): void; delete(name: string): void; - forEach(callback: ForEachCallback): void; + forEach(callback: Function, thisArg?: any): void; get(name: string): string | null; has(name: string): boolean; set(name: string, value: string): void; @@ -7285,13 +8111,13 @@ declare var Headers: { interface History { readonly length: number; - readonly state: any; scrollRestoration: ScrollRestoration; - back(): void; - forward(): void; - go(delta?: number): void; - pushState(data: any, title: string, url?: string | null): void; - replaceState(data: any, title: string, url?: string | null): void; + readonly state: any; + back(distance?: any): void; + forward(distance?: any): void; + go(delta?: any): void; + pushState(data: any, title?: string, url?: string | null): void; + replaceState(data: any, title?: string, url?: string | null): void; } declare var History: { @@ -7299,13 +8125,22 @@ declare var History: { new(): History; }; +interface HkdfCtrParams extends Algorithm { + context: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer; + hash: string | Algorithm; + label: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer; +} + +interface IDBArrayKey extends Array { +} + interface IDBCursor { readonly direction: IDBCursorDirection; - key: IDBKeyRange | IDBValidKey; + readonly key: IDBKeyRange | number | string | Date | IDBArrayKey; readonly primaryKey: any; - source: IDBObjectStore | IDBIndex; + readonly source: IDBObjectStore | IDBIndex; advance(count: number): void; - continue(key?: IDBKeyRange | IDBValidKey): void; + continue(key?: IDBKeyRange | number | string | Date | IDBArrayKey): void; delete(): IDBRequest; update(value: any): IDBRequest; readonly NEXT: string; @@ -7340,16 +8175,14 @@ interface IDBDatabaseEventMap { interface IDBDatabase extends EventTarget { readonly name: string; readonly objectStoreNames: DOMStringList; - onabort: (this: IDBDatabase, ev: Event) => any; - onerror: (this: IDBDatabase, ev: Event) => any; - version: number; - onversionchange: (ev: IDBVersionChangeEvent) => any; + onabort: ((this: IDBDatabase, ev: Event) => any) | null; + onerror: ((this: IDBDatabase, ev: Event) => any) | null; + onversionchange: ((this: IDBDatabase, ev: Event) => any) | null; + readonly version: number; close(): void; createObjectStore(name: string, optionalParameters?: IDBObjectStoreParameters): IDBObjectStore; deleteObjectStore(name: string): void; transaction(storeNames: string | string[], mode?: IDBTransactionMode): IDBTransaction; - addEventListener(type: "versionchange", listener: (this: IDBDatabase, ev: IDBVersionChangeEvent) => any, options?: boolean | AddEventListenerOptions): void; - removeEventListener(type: "versionchange", listener: (this: IDBDatabase, ev: IDBVersionChangeEvent) => any, options?: boolean | EventListenerOptions): void; addEventListener(type: K, listener: (this: IDBDatabase, ev: IDBDatabaseEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: IDBDatabase, ev: IDBDatabaseEventMap[K]) => any, options?: boolean | EventListenerOptions): void; @@ -7377,16 +8210,16 @@ declare var IDBFactory: { }; interface IDBIndex { - keyPath: string | string[]; + readonly keyPath: string | string[]; + multiEntry: boolean; readonly name: string; readonly objectStore: IDBObjectStore; readonly unique: boolean; - multiEntry: boolean; - count(key?: IDBKeyRange | IDBValidKey): IDBRequest; - get(key: IDBKeyRange | IDBValidKey): IDBRequest; - getKey(key: IDBKeyRange | IDBValidKey): IDBRequest; - openCursor(range?: IDBKeyRange | IDBValidKey, direction?: IDBCursorDirection): IDBRequest; - openKeyCursor(range?: IDBKeyRange | IDBValidKey, direction?: IDBCursorDirection): IDBRequest; + count(key?: IDBKeyRange | number | string | Date | IDBArrayKey): IDBRequest; + get(key: IDBKeyRange | number | string | Date | IDBArrayKey): IDBRequest; + getKey(key: IDBKeyRange | number | string | Date | IDBArrayKey): IDBRequest; + openCursor(range?: IDBKeyRange | number | string | Date | IDBArrayKey, direction?: IDBCursorDirection): IDBRequest; + openKeyCursor(range?: IDBKeyRange | number | string | Date | IDBArrayKey, direction?: IDBCursorDirection): IDBRequest; } declare var IDBIndex: { @@ -7411,21 +8244,21 @@ declare var IDBKeyRange: { }; interface IDBObjectStore { + autoIncrement: boolean; readonly indexNames: DOMStringList; - keyPath: string | string[]; + readonly keyPath: string | string[] | null; readonly name: string; readonly transaction: IDBTransaction; - autoIncrement: boolean; - add(value: any, key?: IDBKeyRange | IDBValidKey): IDBRequest; + add(value: any, key?: IDBKeyRange | number | string | Date | IDBArrayKey): IDBRequest; clear(): IDBRequest; - count(key?: IDBKeyRange | IDBValidKey): IDBRequest; + count(key?: IDBKeyRange | number | string | Date | IDBArrayKey): IDBRequest; createIndex(name: string, keyPath: string | string[], optionalParameters?: IDBIndexParameters): IDBIndex; - delete(key: IDBKeyRange | IDBValidKey): IDBRequest; + delete(key: IDBKeyRange | number | string | Date | IDBArrayKey): IDBRequest; deleteIndex(indexName: string): void; get(key: any): IDBRequest; index(name: string): IDBIndex; - openCursor(range?: IDBKeyRange | IDBValidKey, direction?: IDBCursorDirection): IDBRequest; - put(value: any, key?: IDBKeyRange | IDBValidKey): IDBRequest; + openCursor(range?: IDBKeyRange | number | string | Date | IDBArrayKey, direction?: IDBCursorDirection): IDBRequest; + put(value: any, key?: IDBKeyRange | number | string | Date | IDBArrayKey): IDBRequest; } declare var IDBObjectStore: { @@ -7439,8 +8272,8 @@ interface IDBOpenDBRequestEventMap extends IDBRequestEventMap { } interface IDBOpenDBRequest extends IDBRequest { - onblocked: (this: IDBOpenDBRequest, ev: Event) => any; - onupgradeneeded: (this: IDBOpenDBRequest, ev: IDBVersionChangeEvent) => any; + onblocked: ((this: IDBOpenDBRequest, ev: Event) => any) | null; + onupgradeneeded: ((this: IDBOpenDBRequest, ev: IDBVersionChangeEvent) => any) | null; addEventListener(type: K, listener: (this: IDBOpenDBRequest, ev: IDBOpenDBRequestEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: IDBOpenDBRequest, ev: IDBOpenDBRequestEventMap[K]) => any, options?: boolean | EventListenerOptions): void; @@ -7459,11 +8292,11 @@ interface IDBRequestEventMap { interface IDBRequest extends EventTarget { readonly error: DOMException; - onerror: (this: IDBRequest, ev: Event) => any; - onsuccess: (this: IDBRequest, ev: Event) => any; + onerror: ((this: IDBRequest, ev: Event) => any) | null; + onsuccess: ((this: IDBRequest, ev: Event) => any) | null; readonly readyState: IDBRequestReadyState; readonly result: any; - source: IDBObjectStore | IDBIndex | IDBCursor; + readonly source: IDBObjectStore | IDBIndex | IDBCursor; readonly transaction: IDBTransaction; addEventListener(type: K, listener: (this: IDBRequest, ev: IDBRequestEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; @@ -7486,9 +8319,9 @@ interface IDBTransaction extends EventTarget { readonly db: IDBDatabase; readonly error: DOMException; readonly mode: IDBTransactionMode; - onabort: (this: IDBTransaction, ev: Event) => any; - oncomplete: (this: IDBTransaction, ev: Event) => any; - onerror: (this: IDBTransaction, ev: Event) => any; + onabort: ((this: IDBTransaction, ev: Event) => any) | null; + oncomplete: ((this: IDBTransaction, ev: Event) => any) | null; + onerror: ((this: IDBTransaction, ev: Event) => any) | null; abort(): void; objectStore(name: string): IDBObjectStore; readonly READ_ONLY: string; @@ -7527,8 +8360,23 @@ declare var IIRFilterNode: { new(): IIRFilterNode; }; +interface ImageBitmap { + readonly height: number; + readonly width: number; + close(): void; +} + +interface ImageBitmapOptions { + colorSpaceConversion?: "none" | "default"; + imageOrientation?: "none" | "flipY"; + premultiplyAlpha?: "none" | "premultiply" | "default"; + resizeHeight?: number; + resizeQuality?: "pixelated" | "low" | "medium" | "high"; + resizeWidth?: number; +} + interface ImageData { - data: Uint8ClampedArray; + readonly data: Uint8ClampedArray; readonly height: number; readonly width: number; } @@ -7558,10 +8406,10 @@ interface IntersectionObserverEntry { readonly boundingClientRect: ClientRect | DOMRect; readonly intersectionRatio: number; readonly intersectionRect: ClientRect | DOMRect; + readonly isIntersecting: boolean; readonly rootBounds: ClientRect | DOMRect; readonly target: Element; readonly time: number; - readonly isIntersecting: boolean; } declare var IntersectionObserverEntry: { @@ -7571,19 +8419,23 @@ declare var IntersectionObserverEntry: { interface KeyboardEvent extends UIEvent { readonly altKey: boolean; - readonly char: string | null; + /** @deprecated */ + char: string; + /** @deprecated */ readonly charCode: number; + readonly code: string; readonly ctrlKey: boolean; readonly key: string; + /** @deprecated */ readonly keyCode: number; - readonly locale: string; readonly location: number; readonly metaKey: boolean; readonly repeat: boolean; readonly shiftKey: boolean; + /** @deprecated */ readonly which: number; - readonly code: string; getModifierState(keyArg: string): boolean; + /** @deprecated */ initKeyboardEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, viewArg: Window, keyArg: string, locationArg: number, modifiersListArg: string, repeat: boolean, locale: string): void; readonly DOM_KEY_LOCATION_JOYSTICK: number; readonly DOM_KEY_LOCATION_LEFT: number; @@ -7605,7 +8457,7 @@ declare var KeyboardEvent: { }; interface LinkStyle { - readonly sheet: StyleSheet; + readonly sheet: StyleSheet | null; } interface ListeningStateChangedEvent extends Event { @@ -7639,68 +8491,6 @@ declare var Location: { new(): Location; }; -interface LongRunningScriptDetectedEvent extends Event { - readonly executionTime: number; - stopPageScriptExecution: boolean; -} - -declare var LongRunningScriptDetectedEvent: { - prototype: LongRunningScriptDetectedEvent; - new(): LongRunningScriptDetectedEvent; -}; - -interface MSApp { - clearTemporaryWebDataAsync(): MSAppAsyncOperation; - createBlobFromRandomAccessStream(type: string, seeker: any): Blob; - createDataPackage(object: any): any; - createDataPackageFromSelection(): any; - createFileFromStorageFile(storageFile: any): File; - createStreamFromInputStream(type: string, inputStream: any): MSStream; - execAsyncAtPriority(asynchronousCallback: MSExecAtPriorityFunctionCallback, priority: string, ...args: any[]): void; - execAtPriority(synchronousCallback: MSExecAtPriorityFunctionCallback, priority: string, ...args: any[]): any; - getCurrentPriority(): string; - getHtmlPrintDocumentSourceAsync(htmlDoc: any): Promise; - getViewId(view: any): any; - isTaskScheduledAtPriorityOrHigher(priority: string): boolean; - pageHandlesAllApplicationActivations(enabled: boolean): void; - suppressSubdownloadCredentialPrompts(suppress: boolean): void; - terminateApp(exceptionObject: any): void; - readonly CURRENT: string; - readonly HIGH: string; - readonly IDLE: string; - readonly NORMAL: string; -} -declare var MSApp: MSApp; - -interface MSAppAsyncOperationEventMap { - "complete": Event; - "error": Event; -} - -interface MSAppAsyncOperation extends EventTarget { - readonly error: DOMError; - oncomplete: (this: MSAppAsyncOperation, ev: Event) => any; - onerror: (this: MSAppAsyncOperation, ev: Event) => any; - readonly readyState: number; - readonly result: any; - start(): void; - readonly COMPLETED: number; - readonly ERROR: number; - readonly STARTED: number; - addEventListener(type: K, listener: (this: MSAppAsyncOperation, ev: MSAppAsyncOperationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; - addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; - removeEventListener(type: K, listener: (this: MSAppAsyncOperation, ev: MSAppAsyncOperationEventMap[K]) => any, options?: boolean | EventListenerOptions): void; - removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; -} - -declare var MSAppAsyncOperation: { - prototype: MSAppAsyncOperation; - new(): MSAppAsyncOperation; - readonly COMPLETED: number; - readonly ERROR: number; - readonly STARTED: number; -}; - interface MSAssertion { readonly id: string; readonly type: MSCredentialType; @@ -7711,34 +8501,6 @@ declare var MSAssertion: { new(): MSAssertion; }; -interface MSBaseReaderEventMap { - "abort": Event; - "error": ErrorEvent; - "load": Event; - "loadend": ProgressEvent; - "loadstart": Event; - "progress": ProgressEvent; -} - -interface MSBaseReader { - onabort: (this: MSBaseReader, ev: Event) => any; - onerror: (this: MSBaseReader, ev: ErrorEvent) => any; - onload: (this: MSBaseReader, ev: Event) => any; - onloadend: (this: MSBaseReader, ev: ProgressEvent) => any; - onloadstart: (this: MSBaseReader, ev: Event) => any; - onprogress: (this: MSBaseReader, ev: ProgressEvent) => any; - readonly readyState: number; - readonly result: any; - abort(): void; - readonly DONE: number; - readonly EMPTY: number; - readonly LOADING: number; - addEventListener(type: K, listener: (this: MSBaseReader, ev: MSBaseReaderEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; - addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; - removeEventListener(type: K, listener: (this: MSBaseReader, ev: MSBaseReaderEventMap[K]) => any, options?: boolean | EventListenerOptions): void; - removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; -} - interface MSBlobBuilder { append(data: any, endings?: string): void; getBlob(contentType?: string): Blob; @@ -7759,6 +8521,26 @@ declare var MSCredentials: { new(): MSCredentials; }; +interface MSDCCEvent extends Event { + readonly maxFr: number; + readonly maxFs: number; +} + +declare var MSDCCEvent: { + prototype: MSDCCEvent; + new(type: string, eventInitDict: MSDCCEventInit): MSDCCEvent; +}; + +interface MSDSHEvent extends Event { + readonly sources: number[]; + readonly timestamp: number; +} + +declare var MSDSHEvent: { + prototype: MSDSHEvent; + new(type: string, eventInitDict: MSDSHEventInit): MSDSHEvent; +}; + interface MSFIDOCredentialAssertion extends MSAssertion { readonly algorithm: string | Algorithm; readonly attestation: any; @@ -7853,42 +8635,6 @@ declare var MSGraphicsTrust: { new(): MSGraphicsTrust; }; -interface MSHTMLWebViewElement extends HTMLElement { - readonly canGoBack: boolean; - readonly canGoForward: boolean; - readonly containsFullScreenElement: boolean; - readonly documentTitle: string; - height: number; - readonly settings: MSWebViewSettings; - src: string; - width: number; - addWebAllowedObject(name: string, applicationObject: any): void; - buildLocalStreamUri(contentIdentifier: string, relativePath: string): string; - capturePreviewToBlobAsync(): MSWebViewAsyncOperation; - captureSelectedContentToDataPackageAsync(): MSWebViewAsyncOperation; - getDeferredPermissionRequestById(id: number): DeferredPermissionRequest; - getDeferredPermissionRequests(): DeferredPermissionRequest[]; - goBack(): void; - goForward(): void; - invokeScriptAsync(scriptName: string, ...args: any[]): MSWebViewAsyncOperation; - navigate(uri: string): void; - navigateFocus(navigationReason: NavigationReason, origin: FocusNavigationOrigin): void; - navigateToLocalStreamUri(source: string, streamResolver: any): void; - navigateToString(contents: string): void; - navigateWithHttpRequestMessage(requestMessage: any): void; - refresh(): void; - stop(): void; - addEventListener(type: K, listener: (this: MSHTMLWebViewElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; - addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; - removeEventListener(type: K, listener: (this: MSHTMLWebViewElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; - removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; -} - -declare var MSHTMLWebViewElement: { - prototype: MSHTMLWebViewElement; - new(): MSHTMLWebViewElement; -}; - interface MSInputMethodContextEventMap { "MSCandidateWindowHide": Event; "MSCandidateWindowShow": Event; @@ -7898,9 +8644,9 @@ interface MSInputMethodContextEventMap { interface MSInputMethodContext extends EventTarget { readonly compositionEndOffset: number; readonly compositionStartOffset: number; - oncandidatewindowhide: (this: MSInputMethodContext, ev: Event) => any; - oncandidatewindowshow: (this: MSInputMethodContext, ev: Event) => any; - oncandidatewindowupdate: (this: MSInputMethodContext, ev: Event) => any; + oncandidatewindowhide: ((this: MSInputMethodContext, ev: Event) => any) | null; + oncandidatewindowshow: ((this: MSInputMethodContext, ev: Event) => any) | null; + oncandidatewindowupdate: ((this: MSInputMethodContext, ev: Event) => any) | null; readonly target: HTMLElement; getCandidateWindowClientRect(): ClientRect; getCompositionAlternatives(): string[]; @@ -7917,35 +8663,6 @@ declare var MSInputMethodContext: { new(): MSInputMethodContext; }; -interface MSManipulationEvent extends UIEvent { - readonly currentState: number; - readonly inertiaDestinationX: number; - readonly inertiaDestinationY: number; - readonly lastState: number; - initMSManipulationEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, viewArg: Window, detailArg: number, lastState: number, currentState: number): void; - readonly MS_MANIPULATION_STATE_ACTIVE: number; - readonly MS_MANIPULATION_STATE_CANCELLED: number; - readonly MS_MANIPULATION_STATE_COMMITTED: number; - readonly MS_MANIPULATION_STATE_DRAGGING: number; - readonly MS_MANIPULATION_STATE_INERTIA: number; - readonly MS_MANIPULATION_STATE_PRESELECT: number; - readonly MS_MANIPULATION_STATE_SELECTING: number; - readonly MS_MANIPULATION_STATE_STOPPED: number; -} - -declare var MSManipulationEvent: { - prototype: MSManipulationEvent; - new(): MSManipulationEvent; - readonly MS_MANIPULATION_STATE_ACTIVE: number; - readonly MS_MANIPULATION_STATE_CANCELLED: number; - readonly MS_MANIPULATION_STATE_COMMITTED: number; - readonly MS_MANIPULATION_STATE_DRAGGING: number; - readonly MS_MANIPULATION_STATE_INERTIA: number; - readonly MS_MANIPULATION_STATE_PRESELECT: number; - readonly MS_MANIPULATION_STATE_SELECTING: number; - readonly MS_MANIPULATION_STATE_STOPPED: number; -}; - interface MSMediaKeyError { readonly code: number; readonly systemCode: number; @@ -8002,14 +8719,14 @@ declare var MSMediaKeySession: { interface MSMediaKeys { readonly keySystem: string; - createSession(type: string, initData: Uint8Array, cdmData?: Uint8Array): MSMediaKeySession; + createSession(type: string, initData: Uint8Array, cdmData?: Uint8Array | null): MSMediaKeySession; } declare var MSMediaKeys: { prototype: MSMediaKeys; new(keySystem: string): MSMediaKeys; - isTypeSupported(keySystem: string, type?: string): boolean; - isTypeSupportedWithFeatures(keySystem: string, type?: string): string; + isTypeSupported(keySystem: string, type?: string | null): boolean; + isTypeSupportedWithFeatures(keySystem: string, type?: string | null): string; }; interface MSNavigatorDoNotTrack { @@ -8044,27 +8761,6 @@ declare var MSPointerEvent: { new(typeArg: string, eventInitDict?: PointerEventInit): MSPointerEvent; }; -interface MSRangeCollection { - readonly length: number; - item(index: number): Range; - [index: number]: Range; -} - -declare var MSRangeCollection: { - prototype: MSRangeCollection; - new(): MSRangeCollection; -}; - -interface MSSiteModeEvent extends Event { - readonly actionURL: string; - readonly buttonID: number; -} - -declare var MSSiteModeEvent: { - prototype: MSSiteModeEvent; - new(): MSSiteModeEvent; -}; - interface MSStream { readonly type: string; msClose(): void; @@ -8076,69 +8772,46 @@ declare var MSStream: { new(): MSStream; }; -interface MSStreamReader extends EventTarget, MSBaseReader { +interface MSStreamReaderEventMap { + "abort": UIEvent; + "error": ErrorEvent; + "load": Event; + "loadend": ProgressEvent; + "loadstart": Event; + "progress": ProgressEvent; +} + +interface MSStreamReader extends EventTarget { readonly error: DOMError; + onabort: ((this: MSStreamReader, ev: UIEvent) => any) | null; + onerror: ((this: MSStreamReader, ev: ErrorEvent) => any) | null; + onload: ((this: MSStreamReader, ev: Event) => any) | null; + onloadend: ((this: MSStreamReader, ev: ProgressEvent) => any) | null; + onloadstart: ((this: MSStreamReader, ev: Event) => any) | null; + onprogress: ((this: MSStreamReader, ev: ProgressEvent) => any) | null; + readonly readyState: number; + readonly result: any; + abort(): void; readAsArrayBuffer(stream: MSStream, size?: number): void; readAsBinaryString(stream: MSStream, size?: number): void; readAsBlob(stream: MSStream, size?: number): void; readAsDataURL(stream: MSStream, size?: number): void; readAsText(stream: MSStream, encoding?: string, size?: number): void; - addEventListener(type: K, listener: (this: MSStreamReader, ev: MSBaseReaderEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; + readonly DONE: number; + readonly EMPTY: number; + readonly LOADING: number; + addEventListener(type: K, listener: (this: MSStreamReader, ev: MSStreamReaderEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; - removeEventListener(type: K, listener: (this: MSStreamReader, ev: MSBaseReaderEventMap[K]) => any, options?: boolean | EventListenerOptions): void; + removeEventListener(type: K, listener: (this: MSStreamReader, ev: MSStreamReaderEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } declare var MSStreamReader: { prototype: MSStreamReader; new(): MSStreamReader; -}; - -interface MSWebViewAsyncOperationEventMap { - "complete": Event; - "error": Event; -} - -interface MSWebViewAsyncOperation extends EventTarget { - readonly error: DOMError; - oncomplete: (this: MSWebViewAsyncOperation, ev: Event) => any; - onerror: (this: MSWebViewAsyncOperation, ev: Event) => any; - readonly readyState: number; - readonly result: any; - readonly target: MSHTMLWebViewElement; - readonly type: number; - start(): void; - readonly COMPLETED: number; - readonly ERROR: number; - readonly STARTED: number; - readonly TYPE_CAPTURE_PREVIEW_TO_RANDOM_ACCESS_STREAM: number; - readonly TYPE_CREATE_DATA_PACKAGE_FROM_SELECTION: number; - readonly TYPE_INVOKE_SCRIPT: number; - addEventListener(type: K, listener: (this: MSWebViewAsyncOperation, ev: MSWebViewAsyncOperationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; - addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; - removeEventListener(type: K, listener: (this: MSWebViewAsyncOperation, ev: MSWebViewAsyncOperationEventMap[K]) => any, options?: boolean | EventListenerOptions): void; - removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; -} - -declare var MSWebViewAsyncOperation: { - prototype: MSWebViewAsyncOperation; - new(): MSWebViewAsyncOperation; - readonly COMPLETED: number; - readonly ERROR: number; - readonly STARTED: number; - readonly TYPE_CAPTURE_PREVIEW_TO_RANDOM_ACCESS_STREAM: number; - readonly TYPE_CREATE_DATA_PACKAGE_FROM_SELECTION: number; - readonly TYPE_INVOKE_SCRIPT: number; -}; - -interface MSWebViewSettings { - isIndexedDBEnabled: boolean; - isJavaScriptEnabled: boolean; -} - -declare var MSWebViewSettings: { - prototype: MSWebViewSettings; - new(): MSWebViewSettings; + readonly DONE: number; + readonly EMPTY: number; + readonly LOADING: number; }; interface MediaDeviceInfo { @@ -8158,7 +8831,7 @@ interface MediaDevicesEventMap { } interface MediaDevices extends EventTarget { - ondevicechange: (this: MediaDevices, ev: Event) => any; + ondevicechange: ((this: MediaDevices, ev: Event) => any) | null; enumerateDevices(): Promise; getSupportedConstraints(): MediaTrackSupportedConstraints; getUserMedia(constraints: MediaStreamConstraints): Promise; @@ -8227,10 +8900,10 @@ interface MediaKeySession extends EventTarget { readonly keyStatuses: MediaKeyStatusMap; readonly sessionId: string; close(): Promise; - generateRequest(initDataType: string, initData: BufferSource): Promise; + generateRequest(initDataType: string, initData: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | null): Promise; load(sessionId: string): Promise; remove(): Promise; - update(response: BufferSource): Promise; + update(response: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | null): Promise; } declare var MediaKeySession: { @@ -8240,9 +8913,9 @@ declare var MediaKeySession: { interface MediaKeyStatusMap { readonly size: number; - forEach(callback: ForEachCallback): void; - get(keyId: BufferSource): MediaKeyStatus; - has(keyId: BufferSource): boolean; + forEach(callback: Function, thisArg?: any): void; + get(keyId: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | null): MediaKeyStatus; + has(keyId: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | null): boolean; } declare var MediaKeyStatusMap: { @@ -8263,7 +8936,7 @@ declare var MediaKeySystemAccess: { interface MediaKeys { createSession(sessionType?: MediaKeySessionType): MediaKeySession; - setServerCertificate(serverCertificate: BufferSource): Promise; + setServerCertificate(serverCertificate: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | null): Promise; } declare var MediaKeys: { @@ -8274,10 +8947,10 @@ declare var MediaKeys: { interface MediaList { readonly length: number; mediaText: string; - appendMedium(newMedium: string): void; - deleteMedium(oldMedium: string): void; - item(index: number): string; - toString(): string; + appendMedium(medium: string): void; + deleteMedium(medium: string): void; + item(index: number): string | null; + toString(): number; [index: number]: string; } @@ -8324,10 +8997,10 @@ interface MediaStreamEventMap { interface MediaStream extends EventTarget { readonly active: boolean; readonly id: string; - onactive: (this: MediaStream, ev: Event) => any; - onaddtrack: (this: MediaStream, ev: MediaStreamTrackEvent) => any; - oninactive: (this: MediaStream, ev: Event) => any; - onremovetrack: (this: MediaStream, ev: MediaStreamTrackEvent) => any; + onactive: ((this: MediaStream, ev: Event) => any) | null; + onaddtrack: ((this: MediaStream, ev: MediaStreamTrackEvent) => any) | null; + oninactive: ((this: MediaStream, ev: Event) => any) | null; + onremovetrack: ((this: MediaStream, ev: MediaStreamTrackEvent) => any) | null; addTrack(track: MediaStreamTrack): void; clone(): MediaStream; getAudioTracks(): MediaStreamTrack[]; @@ -8344,7 +9017,9 @@ interface MediaStream extends EventTarget { declare var MediaStream: { prototype: MediaStream; - new(streamOrTracks?: MediaStream | MediaStreamTrack[]): MediaStream; + new(): MediaStream; + new(stream: MediaStream): MediaStream; + new(tracks: MediaStreamTrack[]): MediaStream; }; interface MediaStreamAudioSourceNode extends AudioNode { @@ -8397,10 +9072,10 @@ interface MediaStreamTrack extends EventTarget { readonly kind: string; readonly label: string; readonly muted: boolean; - onended: (this: MediaStreamTrack, ev: MediaStreamErrorEvent) => any; - onmute: (this: MediaStreamTrack, ev: Event) => any; - onoverconstrained: (this: MediaStreamTrack, ev: MediaStreamErrorEvent) => any; - onunmute: (this: MediaStreamTrack, ev: Event) => any; + onended: ((this: MediaStreamTrack, ev: MediaStreamErrorEvent) => any) | null; + onmute: ((this: MediaStreamTrack, ev: Event) => any) | null; + onoverconstrained: ((this: MediaStreamTrack, ev: MediaStreamErrorEvent) => any) | null; + onunmute: ((this: MediaStreamTrack, ev: Event) => any) | null; readonly readonly: boolean; readonly readyState: MediaStreamTrackState; readonly remote: boolean; @@ -8443,9 +9118,9 @@ declare var MessageChannel: { interface MessageEvent extends Event { readonly data: any; readonly origin: string; - readonly ports: any; - readonly source: Window; - initMessageEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, dataArg: any, originArg: string, lastEventIdArg: string, sourceArg: Window): void; + readonly ports: ReadonlyArray; + readonly source: Window | null; + initMessageEvent(type: string, bubbles: boolean, cancelable: boolean, data: any, origin: string, lastEventId: string, source: Window): void; } declare var MessageEvent: { @@ -8458,7 +9133,7 @@ interface MessagePortEventMap { } interface MessagePort extends EventTarget { - onmessage: (this: MessagePort, ev: MessageEvent) => any; + onmessage: ((this: MessagePort, ev: MessageEvent) => any) | null; close(): void; postMessage(message?: any, transfer?: any[]): void; start(): void; @@ -8504,6 +9179,7 @@ interface MouseEvent extends UIEvent { readonly clientX: number; readonly clientY: number; readonly ctrlKey: boolean; + /** @deprecated */ readonly fromElement: Element; readonly layerX: number; readonly layerY: number; @@ -8518,7 +9194,9 @@ interface MouseEvent extends UIEvent { readonly screenX: number; readonly screenY: number; readonly shiftKey: boolean; + /** @deprecated */ readonly toElement: Element; + /** @deprecated */ readonly which: number; readonly x: number; readonly y: number; @@ -8581,13 +9259,13 @@ declare var MutationRecord: { interface NamedNodeMap { readonly length: number; - getNamedItem(name: string): Attr; - getNamedItemNS(namespaceURI: string | null, localName: string | null): Attr; - item(index: number): Attr; - removeNamedItem(name: string): Attr; - removeNamedItemNS(namespaceURI: string | null, localName: string | null): Attr; - setNamedItem(arg: Attr): Attr; - setNamedItemNS(arg: Attr): Attr; + getNamedItem(qualifiedName: string): Attr | null; + getNamedItemNS(namespace: string | null, localName: string): Attr | null; + item(index: number): Attr | null; + removeNamedItem(qualifiedName: string): Attr; + removeNamedItemNS(namespace: string | null, localName: string): Attr; + setNamedItem(attr: Attr): Attr | null; + setNamedItemNS(attr: Attr): Attr | null; [index: number]: Attr; } @@ -8596,39 +9274,13 @@ declare var NamedNodeMap: { new(): NamedNodeMap; }; -interface NavigationCompletedEvent extends NavigationEvent { - readonly isSuccess: boolean; - readonly webErrorStatus: number; -} - -declare var NavigationCompletedEvent: { - prototype: NavigationCompletedEvent; - new(): NavigationCompletedEvent; -}; - -interface NavigationEvent extends Event { - readonly uri: string; -} - -declare var NavigationEvent: { - prototype: NavigationEvent; - new(): NavigationEvent; -}; - -interface NavigationEventWithReferrer extends NavigationEvent { - readonly referer: string; -} - -declare var NavigationEventWithReferrer: { - prototype: NavigationEventWithReferrer; - new(): NavigationEventWithReferrer; -}; - -interface Navigator extends Object, NavigatorID, NavigatorOnLine, NavigatorContentUtils, NavigatorStorageUtils, NavigatorGeolocation, MSNavigatorDoNotTrack, MSFileSaver, NavigatorBeacon, NavigatorConcurrentHardware, NavigatorUserMedia { +interface Navigator extends NavigatorID, NavigatorOnLine, NavigatorContentUtils, NavigatorStorageUtils, MSNavigatorDoNotTrack, MSFileSaver, NavigatorBeacon, NavigatorConcurrentHardware, NavigatorUserMedia, NavigatorLanguage { + readonly activeVRDisplays: ReadonlyArray; readonly authentication: WebAuthentication; readonly cookieEnabled: boolean; + readonly doNotTrack: string | null; gamepadInputEmulation: GamepadInputEmulationType; - readonly language: string; + readonly geolocation: Geolocation; readonly maxTouchPoints: number; readonly mimeTypes: MimeTypeArray; readonly msManipulationViewsEnabled: boolean; @@ -8638,10 +9290,8 @@ interface Navigator extends Object, NavigatorID, NavigatorOnLine, NavigatorConte readonly pointerEnabled: boolean; readonly serviceWorker: ServiceWorkerContainer; readonly webdriver: boolean; - readonly doNotTrack: string | null; - readonly hardwareConcurrency: number; - readonly languages: string[]; - getGamepads(): Gamepad[]; + getGamepads(): (Gamepad | null)[]; + getVRDisplays(): Promise; javaEnabled(): boolean; msLaunchUri(uri: string, successCallback?: MSLaunchUriCallback, noHandlerCallback?: MSLaunchUriCallback): void; requestMediaKeySystemAccess(keySystem: string, supportedConfigurations: MediaKeySystemConfiguration[]): Promise; @@ -8654,7 +9304,7 @@ declare var Navigator: { }; interface NavigatorBeacon { - sendBeacon(url: USVString, data?: BodyInit): boolean; + sendBeacon(url: string, data?: Blob | Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | FormData | string | null): boolean; } interface NavigatorConcurrentHardware { @@ -8664,10 +9314,6 @@ interface NavigatorConcurrentHardware { interface NavigatorContentUtils { } -interface NavigatorGeolocation { - readonly geolocation: Geolocation; -} - interface NavigatorID { readonly appCodeName: string; readonly appName: string; @@ -8680,6 +9326,11 @@ interface NavigatorID { readonly vendorSub: string; } +interface NavigatorLanguage { + readonly language: string; + readonly languages: ReadonlyArray; +} + interface NavigatorOnLine { readonly onLine: boolean; } @@ -8689,11 +9340,11 @@ interface NavigatorStorageUtils { interface NavigatorUserMedia { readonly mediaDevices: MediaDevices; + getDisplayMedia(constraints: MediaStreamConstraints): Promise; getUserMedia(constraints: MediaStreamConstraints, successCallback: NavigatorUserMediaSuccessCallback, errorCallback: NavigatorUserMediaErrorCallback): void; } interface Node extends EventTarget { - readonly attributes: NamedNodeMap; readonly baseURI: string | null; readonly childNodes: NodeList; readonly firstChild: Node | null; @@ -8713,7 +9364,6 @@ interface Node extends EventTarget { cloneNode(deep?: boolean): Node; compareDocumentPosition(other: Node): number; contains(child: Node): boolean; - hasAttributes(): boolean; hasChildNodes(): boolean; insertBefore(newChild: T, refChild: Node | null): T; isDefaultNamespace(namespaceURI: string | null): boolean; @@ -8768,7 +9418,7 @@ declare var Node: { }; interface NodeFilter { - acceptNode(n: Node): number; + acceptNode(node: Node): number; } declare var NodeFilter: { @@ -8791,13 +9441,14 @@ declare var NodeFilter: { }; interface NodeIterator { + /** @deprecated */ readonly expandEntityReferences: boolean; - readonly filter: NodeFilter; + readonly filter: NodeFilter | null; readonly root: Node; readonly whatToShow: number; detach(): void; - nextNode(): Node; - previousNode(): Node; + nextNode(): Node | null; + previousNode(): Node | null; } declare var NodeIterator: { @@ -8816,6 +9467,12 @@ declare var NodeList: { new(): NodeList; }; +interface NodeListOf extends NodeList { + length: number; + item(index: number): TNode; + [index: number]: TNode; +} + interface NodeSelector { querySelector(selectors: K): HTMLElementTagNameMap[K] | null; querySelector(selectors: K): SVGElementTagNameMap[K] | null; @@ -8833,16 +9490,17 @@ interface NotificationEventMap { } interface Notification extends EventTarget { - readonly body: string; + readonly body: string | null; + readonly data: any; readonly dir: NotificationDirection; - readonly icon: string; - readonly lang: string; - onclick: (this: Notification, ev: Event) => any; - onclose: (this: Notification, ev: Event) => any; - onerror: (this: Notification, ev: Event) => any; - onshow: (this: Notification, ev: Event) => any; + readonly icon: string | null; + readonly lang: string | null; + onclick: ((this: Notification, ev: Event) => any) | null; + onclose: ((this: Notification, ev: Event) => any) | null; + onerror: ((this: Notification, ev: Event) => any) | null; + onshow: ((this: Notification, ev: Event) => any) | null; readonly permission: NotificationPermission; - readonly tag: string; + readonly tag: string | null; readonly title: string; close(): void; addEventListener(type: K, listener: (this: Notification, ev: NotificationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; @@ -8909,6 +9567,14 @@ declare var OES_texture_half_float_linear: { new(): OES_texture_half_float_linear; }; +interface OES_vertex_array_object { + readonly VERTEX_ARRAY_BINDING_OES: number; + bindVertexArrayOES(arrayObject: WebGLVertexArrayObjectOES): void; + createVertexArrayOES(): WebGLVertexArrayObjectOES; + deleteVertexArrayOES(arrayObject: WebGLVertexArrayObjectOES): void; + isVertexArrayOES(value: any): value is WebGLVertexArrayObjectOES; +} + interface OfflineAudioCompletionEvent extends Event { readonly renderedBuffer: AudioBuffer; } @@ -8924,7 +9590,7 @@ interface OfflineAudioContextEventMap extends AudioContextEventMap { interface OfflineAudioContext extends AudioContextBase { readonly length: number; - oncomplete: (this: OfflineAudioContext, ev: OfflineAudioCompletionEvent) => any; + oncomplete: ((this: OfflineAudioContext, ev: OfflineAudioCompletionEvent) => any) | null; startRendering(): Promise; suspend(suspendTime: number): Promise; addEventListener(type: K, listener: (this: OfflineAudioContext, ev: OfflineAudioContextEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; @@ -8939,13 +9605,13 @@ declare var OfflineAudioContext: { }; interface OscillatorNodeEventMap { - "ended": MediaStreamErrorEvent; + "ended": Event; } interface OscillatorNode extends AudioNode { readonly detune: AudioParam; readonly frequency: AudioParam; - onended: (this: OscillatorNode, ev: MediaStreamErrorEvent) => any; + onended: ((this: OscillatorNode, ev: Event) => any) | null; type: OscillatorType; setPeriodicWave(periodicWave: PeriodicWave): void; start(when?: number): void; @@ -8996,8 +9662,11 @@ interface PannerNode extends AudioNode { panningModel: PanningModelType; refDistance: number; rolloffFactor: number; + /** @deprecated */ setOrientation(x: number, y: number, z: number): void; + /** @deprecated */ setPosition(x: number, y: number, z: number): void; + /** @deprecated */ setVelocity(x: number, y: number, z: number): void; } @@ -9006,7 +9675,23 @@ declare var PannerNode: { new(): PannerNode; }; -interface Path2D extends Object, CanvasPathMethods { +interface ParentNode { + readonly children: HTMLCollection; + querySelector(selectors: K): HTMLElementTagNameMap[K] | null; + querySelector(selectors: K): SVGElementTagNameMap[K] | null; + querySelector(selectors: string): E | null; + querySelectorAll(selectors: K): NodeListOf; + querySelectorAll(selectors: K): NodeListOf; + querySelectorAll(selectors: string): NodeListOf; +} + +interface ParentNode { + readonly childElementCount: number; + readonly firstElementChild: Element | null; + readonly lastElementChild: Element | null; +} + +interface Path2D extends CanvasPathMethods { } declare var Path2D: { @@ -9040,12 +9725,14 @@ interface PaymentRequestEventMap { } interface PaymentRequest extends EventTarget { - onshippingaddresschange: (this: PaymentRequest, ev: Event) => any; - onshippingoptionchange: (this: PaymentRequest, ev: Event) => any; + readonly id: string; + onshippingaddresschange: ((this: PaymentRequest, ev: Event) => any) | null; + onshippingoptionchange: ((this: PaymentRequest, ev: Event) => any) | null; readonly shippingAddress: PaymentAddress | null; readonly shippingOption: string | null; readonly shippingType: PaymentShippingType | null; abort(): Promise; + canMakePayment(): Promise; show(): Promise; addEventListener(type: K, listener: (this: PaymentRequest, ev: PaymentRequestEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; @@ -9055,11 +9742,11 @@ interface PaymentRequest extends EventTarget { declare var PaymentRequest: { prototype: PaymentRequest; - new(methodData: PaymentMethodData[], details: PaymentDetails, options?: PaymentOptions): PaymentRequest; + new(methodData: PaymentMethodData[], details: PaymentDetailsInit, options?: PaymentOptions): PaymentRequest; }; interface PaymentRequestUpdateEvent extends Event { - updateWith(d: Promise): void; + updateWith(detailsPromise: Promise): void; } declare var PaymentRequestUpdateEvent: { @@ -9073,6 +9760,7 @@ interface PaymentResponse { readonly payerEmail: string | null; readonly payerName: string | null; readonly payerPhone: string | null; + readonly requestId: string; readonly shippingAddress: PaymentAddress | null; readonly shippingOption: string | null; complete(result?: PaymentComplete): Promise; @@ -9114,15 +9802,20 @@ declare var PerfWidgetExternal: { }; interface Performance { + /** @deprecated */ readonly navigation: PerformanceNavigation; + readonly timeOrigin: number; + /** @deprecated */ readonly timing: PerformanceTiming; clearMarks(markName?: string): void; clearMeasures(measureName?: string): void; clearResourceTimings(): void; getEntries(): any; - getEntriesByName(name: string, entryType?: string): any; - getEntriesByType(entryType: string): any; + getEntriesByName(name: string, type?: string): any; + getEntriesByType(type: string): any; + /** @deprecated */ getMarks(markName?: string): any; + /** @deprecated */ getMeasures(measureName?: string): any; mark(markName: string): void; measure(measureName: string, startMarkName?: string, endMarkName?: string): void; @@ -9141,6 +9834,7 @@ interface PerformanceEntry { readonly entryType: string; readonly name: string; readonly startTime: number; + toJSON(): any; } declare var PerformanceEntry: { @@ -9184,28 +9878,41 @@ declare var PerformanceNavigation: { }; interface PerformanceNavigationTiming extends PerformanceEntry { + /** @deprecated */ readonly connectEnd: number; + /** @deprecated */ readonly connectStart: number; readonly domComplete: number; readonly domContentLoadedEventEnd: number; readonly domContentLoadedEventStart: number; readonly domInteractive: number; + /** @deprecated */ readonly domLoading: number; + /** @deprecated */ readonly domainLookupEnd: number; + /** @deprecated */ readonly domainLookupStart: number; + /** @deprecated */ readonly fetchStart: number; readonly loadEventEnd: number; readonly loadEventStart: number; + /** @deprecated */ readonly navigationStart: number; readonly redirectCount: number; + /** @deprecated */ readonly redirectEnd: number; + /** @deprecated */ readonly redirectStart: number; + /** @deprecated */ readonly requestStart: number; + /** @deprecated */ readonly responseEnd: number; + /** @deprecated */ readonly responseStart: number; readonly type: NavigationType; readonly unloadEventEnd: number; readonly unloadEventStart: number; + readonly workerStart: number; } declare var PerformanceNavigationTiming: { @@ -9225,6 +9932,7 @@ interface PerformanceResourceTiming extends PerformanceEntry { readonly requestStart: number; readonly responseEnd: number; readonly responseStart: number; + readonly workerStart: number; } declare var PerformanceResourceTiming: { @@ -9252,9 +9960,9 @@ interface PerformanceTiming { readonly requestStart: number; readonly responseEnd: number; readonly responseStart: number; + readonly secureConnectionStart: number; readonly unloadEventEnd: number; readonly unloadEventStart: number; - readonly secureConnectionStart: number; toJSON(): any; } @@ -9344,12 +10052,11 @@ declare var PointerEvent: { interface PopStateEvent extends Event { readonly state: any; - initPopStateEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, stateArg: any): void; } declare var PopStateEvent: { prototype: PopStateEvent; - new(typeArg: string, eventInitDict?: PopStateEventInit): PopStateEvent; + new(type: string, eventInitDict?: PopStateEventInit): PopStateEvent; }; interface Position { @@ -9397,10 +10104,21 @@ interface ProgressEvent extends Event { declare var ProgressEvent: { prototype: ProgressEvent; - new(type: string, eventInitDict?: ProgressEventInit): ProgressEvent; + new(typeArg: string, eventInitDict?: ProgressEventInit): ProgressEvent; }; +interface PromiseRejectionEvent extends Event { + readonly promise: PromiseLike; + readonly reason: any; +} + +interface PromiseRejectionEventInit extends EventInit { + promise: PromiseLike; + reason?: any; +} + interface PushManager { + readonly supportedContentEncodings: ReadonlyArray; getSubscription(): Promise; permissionState(options?: PushSubscriptionOptionsInit): Promise; subscribe(options?: PushSubscriptionOptionsInit): Promise; @@ -9412,7 +10130,8 @@ declare var PushManager: { }; interface PushSubscription { - readonly endpoint: USVString; + readonly endpoint: string; + readonly expirationTime: number | null; readonly options: PushSubscriptionOptions; getKey(name: PushEncryptionKeyName): ArrayBuffer | null; toJSON(): any; @@ -9486,7 +10205,7 @@ interface RTCDtmfSender extends EventTarget { readonly canInsertDTMF: boolean; readonly duration: number; readonly interToneGap: number; - ontonechange: (this: RTCDtmfSender, ev: RTCDTMFToneChangeEvent) => any; + ontonechange: ((this: RTCDtmfSender, ev: RTCDTMFToneChangeEvent) => any) | null; readonly sender: RTCRtpSender; readonly toneBuffer: string; insertDTMF(tones: string, duration?: number, interToneGap?: number): void; @@ -9609,13 +10328,13 @@ interface RTCPeerConnection extends EventTarget { readonly iceConnectionState: RTCIceConnectionState; readonly iceGatheringState: RTCIceGatheringState; readonly localDescription: RTCSessionDescription | null; - onaddstream: (this: RTCPeerConnection, ev: MediaStreamEvent) => any; - onicecandidate: (this: RTCPeerConnection, ev: RTCPeerConnectionIceEvent) => any; - oniceconnectionstatechange: (this: RTCPeerConnection, ev: Event) => any; - onicegatheringstatechange: (this: RTCPeerConnection, ev: Event) => any; - onnegotiationneeded: (this: RTCPeerConnection, ev: Event) => any; - onremovestream: (this: RTCPeerConnection, ev: MediaStreamEvent) => any; - onsignalingstatechange: (this: RTCPeerConnection, ev: Event) => any; + onaddstream: ((this: RTCPeerConnection, ev: MediaStreamEvent) => any) | null; + onicecandidate: ((this: RTCPeerConnection, ev: RTCPeerConnectionIceEvent) => any) | null; + oniceconnectionstatechange: ((this: RTCPeerConnection, ev: Event) => any) | null; + onicegatheringstatechange: ((this: RTCPeerConnection, ev: Event) => any) | null; + onnegotiationneeded: ((this: RTCPeerConnection, ev: Event) => any) | null; + onremovestream: ((this: RTCPeerConnection, ev: MediaStreamEvent) => any) | null; + onsignalingstatechange: ((this: RTCPeerConnection, ev: Event) => any) | null; readonly remoteDescription: RTCSessionDescription | null; readonly signalingState: RTCSignalingState; addIceCandidate(candidate: RTCIceCandidate, successCallback?: VoidFunction, failureCallback?: RTCPeerConnectionErrorCallback): Promise; @@ -9653,10 +10372,14 @@ declare var RTCPeerConnectionIceEvent: { interface RTCRtpReceiverEventMap { "error": Event; + "msdecodercapacitychange": Event; + "msdsh": Event; } interface RTCRtpReceiver extends RTCStatsProvider { onerror: ((this: RTCRtpReceiver, ev: Event) => any) | null; + onmsdecodercapacitychange: ((this: RTCRtpReceiver, ev: Event) => any) | null; + onmsdsh: ((this: RTCRtpReceiver, ev: Event) => any) | null; readonly rtcpTransport: RTCDtlsTransport; readonly track: MediaStreamTrack | null; readonly transport: RTCDtlsTransport | RTCSrtpSdesTransport; @@ -9757,6 +10480,11 @@ interface RandomSource { getRandomValues(array: T): T; } +declare var RandomSource: { + prototype: RandomSource; + new(): RandomSource; +}; + interface Range { readonly collapsed: boolean; readonly commonAncestorContainer: Node; @@ -9766,7 +10494,7 @@ interface Range { readonly startOffset: number; cloneContents(): DocumentFragment; cloneRange(): Range; - collapse(toStart: boolean): void; + collapse(toStart?: boolean): void; compareBoundaryPoints(how: number, sourceRange: Range): number; createContextualFragment(fragment: string): DocumentFragment; deleteContents(): void; @@ -9775,15 +10503,16 @@ interface Range { extractContents(): DocumentFragment; getBoundingClientRect(): ClientRect | DOMRect; getClientRects(): ClientRectList | DOMRectList; - insertNode(newNode: Node): void; - selectNode(refNode: Node): void; - selectNodeContents(refNode: Node): void; - setEnd(refNode: Node, offset: number): void; - setEndAfter(refNode: Node): void; - setEndBefore(refNode: Node): void; - setStart(refNode: Node, offset: number): void; - setStartAfter(refNode: Node): void; - setStartBefore(refNode: Node): void; + insertNode(node: Node): void; + isPointInRange(node: Node, offset: number): boolean; + selectNode(node: Node): void; + selectNodeContents(node: Node): void; + setEnd(node: Node, offset: number): void; + setEndAfter(node: Node): void; + setEndBefore(node: Node): void; + setStart(node: Node, offset: number): void; + setStartAfter(node: Node): void; + setStartBefore(node: Node): void; surroundContents(newParent: Node): void; toString(): string; readonly END_TO_END: number; @@ -9823,7 +10552,7 @@ declare var ReadableStreamReader: { new(): ReadableStreamReader; }; -interface Request extends Object, Body { +interface Request extends Body { readonly cache: RequestCache; readonly credentials: RequestCredentials; readonly destination: RequestDestination; @@ -9835,9 +10564,9 @@ interface Request extends Object, Body { readonly redirect: RequestRedirect; readonly referrer: string; readonly referrerPolicy: ReferrerPolicy; + readonly signal: AbortSignal | null; readonly type: RequestType; readonly url: string; - readonly signal: AbortSignal; clone(): Request; } @@ -9846,23 +10575,23 @@ declare var Request: { new(input: Request | string, init?: RequestInit): Request; }; -interface Response extends Object, Body { +interface Response extends Body { readonly body: ReadableStream | null; readonly headers: Headers; readonly ok: boolean; + readonly redirected: boolean; readonly status: number; readonly statusText: string; readonly type: ResponseType; readonly url: string; - readonly redirected: boolean; clone(): Response; } declare var Response: { prototype: Response; - new(body?: any, init?: ResponseInit): Response; - error: () => Response; - redirect: (url: string, status?: number) => Response; + new(body?: Blob | Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | FormData | string | null, init?: ResponseInit): Response; + error(): Response; + redirect(url: string, status?: number): Response; }; interface SVGAElement extends SVGGraphicsElement, SVGURIReference { @@ -10123,21 +10852,21 @@ interface SVGElementEventMap extends ElementEventMap { "mouseup": MouseEvent; } -interface SVGElement extends Element { - className: any; - onclick: (this: SVGElement, ev: MouseEvent) => any; - ondblclick: (this: SVGElement, ev: MouseEvent) => any; - onfocusin: (this: SVGElement, ev: FocusEvent) => any; - onfocusout: (this: SVGElement, ev: FocusEvent) => any; - onload: (this: SVGElement, ev: Event) => any; - onmousedown: (this: SVGElement, ev: MouseEvent) => any; - onmousemove: (this: SVGElement, ev: MouseEvent) => any; - onmouseout: (this: SVGElement, ev: MouseEvent) => any; - onmouseover: (this: SVGElement, ev: MouseEvent) => any; - onmouseup: (this: SVGElement, ev: MouseEvent) => any; - readonly ownerSVGElement: SVGSVGElement; - readonly style: CSSStyleDeclaration; - readonly viewportElement: SVGElement; +interface SVGElement extends Element, ElementCSSInlineStyle { + readonly className: any; + onclick: ((this: SVGElement, ev: MouseEvent) => any) | null; + ondblclick: ((this: SVGElement, ev: MouseEvent) => any) | null; + onfocusin: ((this: SVGElement, ev: FocusEvent) => any) | null; + onfocusout: ((this: SVGElement, ev: FocusEvent) => any) | null; + onload: ((this: SVGElement, ev: Event) => any) | null; + onmousedown: ((this: SVGElement, ev: MouseEvent) => any) | null; + onmousemove: ((this: SVGElement, ev: MouseEvent) => any) | null; + onmouseout: ((this: SVGElement, ev: MouseEvent) => any) | null; + onmouseover: ((this: SVGElement, ev: MouseEvent) => any) | null; + onmouseup: ((this: SVGElement, ev: MouseEvent) => any) | null; + readonly ownerSVGElement: SVGSVGElement | null; + readonly viewportElement: SVGElement | null; + /** @deprecated */ xmlbase: string; addEventListener(type: K, listener: (this: SVGElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; @@ -10167,7 +10896,9 @@ declare var SVGElementInstance: { }; interface SVGElementInstanceList { + /** @deprecated */ readonly length: number; + /** @deprecated */ item(index: number): SVGElementInstance; } @@ -10650,7 +11381,9 @@ declare var SVGFETurbulenceElement: { }; interface SVGFilterElement extends SVGElement, SVGUnitTypes, SVGURIReference { + /** @deprecated */ readonly filterResX: SVGAnimatedInteger; + /** @deprecated */ readonly filterResY: SVGAnimatedInteger; readonly filterUnits: SVGAnimatedEnumeration; readonly height: SVGAnimatedLength; @@ -10658,6 +11391,7 @@ interface SVGFilterElement extends SVGElement, SVGUnitTypes, SVGURIReference { readonly width: SVGAnimatedLength; readonly x: SVGAnimatedLength; readonly y: SVGAnimatedLength; + /** @deprecated */ setFilterRes(filterResX: number, filterResY: number): void; addEventListener(type: K, listener: (this: SVGFilterElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; @@ -10735,12 +11469,15 @@ declare var SVGGradientElement: { }; interface SVGGraphicsElement extends SVGElement, SVGTests { - readonly farthestViewportElement: SVGElement; - readonly nearestViewportElement: SVGElement; + /** @deprecated */ + readonly farthestViewportElement: SVGElement | null; + /** @deprecated */ + readonly nearestViewportElement: SVGElement | null; readonly transform: SVGAnimatedTransformList; getBBox(): SVGRect; - getCTM(): SVGMatrix; - getScreenCTM(): SVGMatrix; + getCTM(): SVGMatrix | null; + getScreenCTM(): SVGMatrix | null; + /** @deprecated */ getTransformToElement(element: SVGElement): SVGMatrix; addEventListener(type: K, listener: (this: SVGGraphicsElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; @@ -10968,26 +11705,47 @@ declare var SVGNumberList: { }; interface SVGPathElement extends SVGGraphicsElement { + /** @deprecated */ readonly pathSegList: SVGPathSegList; + /** @deprecated */ createSVGPathSegArcAbs(x: number, y: number, r1: number, r2: number, angle: number, largeArcFlag: boolean, sweepFlag: boolean): SVGPathSegArcAbs; + /** @deprecated */ createSVGPathSegArcRel(x: number, y: number, r1: number, r2: number, angle: number, largeArcFlag: boolean, sweepFlag: boolean): SVGPathSegArcRel; + /** @deprecated */ createSVGPathSegClosePath(): SVGPathSegClosePath; + /** @deprecated */ createSVGPathSegCurvetoCubicAbs(x: number, y: number, x1: number, y1: number, x2: number, y2: number): SVGPathSegCurvetoCubicAbs; + /** @deprecated */ createSVGPathSegCurvetoCubicRel(x: number, y: number, x1: number, y1: number, x2: number, y2: number): SVGPathSegCurvetoCubicRel; + /** @deprecated */ createSVGPathSegCurvetoCubicSmoothAbs(x: number, y: number, x2: number, y2: number): SVGPathSegCurvetoCubicSmoothAbs; + /** @deprecated */ createSVGPathSegCurvetoCubicSmoothRel(x: number, y: number, x2: number, y2: number): SVGPathSegCurvetoCubicSmoothRel; + /** @deprecated */ createSVGPathSegCurvetoQuadraticAbs(x: number, y: number, x1: number, y1: number): SVGPathSegCurvetoQuadraticAbs; + /** @deprecated */ createSVGPathSegCurvetoQuadraticRel(x: number, y: number, x1: number, y1: number): SVGPathSegCurvetoQuadraticRel; + /** @deprecated */ createSVGPathSegCurvetoQuadraticSmoothAbs(x: number, y: number): SVGPathSegCurvetoQuadraticSmoothAbs; + /** @deprecated */ createSVGPathSegCurvetoQuadraticSmoothRel(x: number, y: number): SVGPathSegCurvetoQuadraticSmoothRel; + /** @deprecated */ createSVGPathSegLinetoAbs(x: number, y: number): SVGPathSegLinetoAbs; + /** @deprecated */ createSVGPathSegLinetoHorizontalAbs(x: number): SVGPathSegLinetoHorizontalAbs; + /** @deprecated */ createSVGPathSegLinetoHorizontalRel(x: number): SVGPathSegLinetoHorizontalRel; + /** @deprecated */ createSVGPathSegLinetoRel(x: number, y: number): SVGPathSegLinetoRel; + /** @deprecated */ createSVGPathSegLinetoVerticalAbs(y: number): SVGPathSegLinetoVerticalAbs; + /** @deprecated */ createSVGPathSegLinetoVerticalRel(y: number): SVGPathSegLinetoVerticalRel; + /** @deprecated */ createSVGPathSegMovetoAbs(x: number, y: number): SVGPathSegMovetoAbs; + /** @deprecated */ createSVGPathSegMovetoRel(x: number, y: number): SVGPathSegMovetoRel; + /** @deprecated */ getPathSegAtLength(distance: number): number; getPointAtLength(distance: number): SVGPoint; getTotalLength(): number; @@ -11443,21 +12201,28 @@ interface SVGSVGElementEventMap extends SVGElementEventMap { } interface SVGSVGElement extends SVGGraphicsElement, DocumentEvent, SVGFitToViewBox, SVGZoomAndPan { + /** @deprecated */ contentScriptType: string; + /** @deprecated */ contentStyleType: string; currentScale: number; readonly currentTranslate: SVGPoint; readonly height: SVGAnimatedLength; - onabort: (this: SVGSVGElement, ev: Event) => any; - onerror: (this: SVGSVGElement, ev: Event) => any; - onresize: (this: SVGSVGElement, ev: UIEvent) => any; - onscroll: (this: SVGSVGElement, ev: UIEvent) => any; - onunload: (this: SVGSVGElement, ev: Event) => any; - onzoom: (this: SVGSVGElement, ev: SVGZoomEvent) => any; + onabort: ((this: SVGSVGElement, ev: Event) => any) | null; + onerror: ((this: SVGSVGElement, ev: Event) => any) | null; + onresize: ((this: SVGSVGElement, ev: UIEvent) => any) | null; + onscroll: ((this: SVGSVGElement, ev: UIEvent) => any) | null; + onunload: ((this: SVGSVGElement, ev: Event) => any) | null; + onzoom: ((this: SVGSVGElement, ev: SVGZoomEvent) => any) | null; + /** @deprecated */ readonly pixelUnitToMillimeterX: number; + /** @deprecated */ readonly pixelUnitToMillimeterY: number; + /** @deprecated */ readonly screenPixelToMillimeterX: number; + /** @deprecated */ readonly screenPixelToMillimeterY: number; + /** @deprecated */ readonly viewport: SVGRect; readonly width: SVGAnimatedLength; readonly x: SVGAnimatedLength; @@ -11473,17 +12238,25 @@ interface SVGSVGElement extends SVGGraphicsElement, DocumentEvent, SVGFitToViewB createSVGTransform(): SVGTransform; createSVGTransformFromMatrix(matrix: SVGMatrix): SVGTransform; deselectAll(): void; + /** @deprecated */ forceRedraw(): void; - getComputedStyle(elt: Element, pseudoElt?: string): CSSStyleDeclaration; + getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleDeclaration; + /** @deprecated */ getCurrentTime(): number; getElementById(elementId: string): Element; getEnclosureList(rect: SVGRect, referenceElement: SVGElement): NodeListOf; getIntersectionList(rect: SVGRect, referenceElement: SVGElement): NodeListOf; + /** @deprecated */ pauseAnimations(): void; + /** @deprecated */ setCurrentTime(seconds: number): void; + /** @deprecated */ suspendRedraw(maxWaitMilliseconds: number): number; + /** @deprecated */ unpauseAnimations(): void; + /** @deprecated */ unsuspendRedraw(suspendHandleID: number): void; + /** @deprecated */ unsuspendRedrawAll(): void; addEventListener(type: K, listener: (this: SVGSVGElement, ev: SVGSVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; @@ -11538,6 +12311,15 @@ declare var SVGStringList: { new(): SVGStringList; }; +interface SVGStylable { + className: any; +} + +declare var SVGStylable: { + prototype: SVGStylable; + new(): SVGStylable; +}; + interface SVGStyleElement extends SVGElement { disabled: boolean; media: string; @@ -11592,8 +12374,10 @@ declare var SVGTSpanElement: { interface SVGTests { readonly requiredExtensions: SVGStringList; + /** @deprecated */ readonly requiredFeatures: SVGStringList; readonly systemLanguage: SVGStringList; + /** @deprecated */ hasExtension(extension: string): boolean; } @@ -11755,9 +12539,9 @@ interface SVGUnitTypes { declare var SVGUnitTypes: SVGUnitTypes; interface SVGUseElement extends SVGGraphicsElement, SVGURIReference { - readonly animatedInstanceRoot: SVGElementInstance; + readonly animatedInstanceRoot: SVGElementInstance | null; readonly height: SVGAnimatedLength; - readonly instanceRoot: SVGElementInstance; + readonly instanceRoot: SVGElementInstance | null; readonly width: SVGAnimatedLength; readonly x: SVGAnimatedLength; readonly y: SVGAnimatedLength; @@ -11772,7 +12556,8 @@ declare var SVGUseElement: { new(): SVGUseElement; }; -interface SVGViewElement extends SVGElement, SVGZoomAndPan, SVGFitToViewBox { +interface SVGViewElement extends SVGElement, SVGFitToViewBox, SVGZoomAndPan { + /** @deprecated */ readonly viewTarget: SVGStringList; addEventListener(type: K, listener: (this: SVGViewElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; @@ -11835,6 +12620,7 @@ interface ScreenEventMap { interface Screen extends EventTarget { readonly availHeight: number; readonly availWidth: number; + /** @deprecated */ bufferDepth: number; readonly colorDepth: number; readonly deviceXDPI: number; @@ -11844,14 +12630,14 @@ interface Screen extends EventTarget { readonly logicalXDPI: number; readonly logicalYDPI: number; readonly msOrientation: string; - onmsorientationchange: (this: Screen, ev: Event) => any; + onmsorientationchange: ((this: Screen, ev: Event) => any) | null; readonly pixelDepth: number; readonly systemXDPI: number; readonly systemYDPI: number; readonly width: number; + lockOrientation(orientations: OrientationLockType | OrientationLockType[]): boolean; msLockOrientation(orientations: string | string[]): boolean; msUnlockOrientation(): void; - lockOrientation(orientations: OrientationLockType | OrientationLockType[]): boolean; unlockOrientation(): void; addEventListener(type: K, listener: (this: Screen, ev: ScreenEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; @@ -11864,23 +12650,15 @@ declare var Screen: { new(): Screen; }; -interface ScriptNotifyEvent extends Event { - readonly callingUri: string; - readonly value: string; -} - -declare var ScriptNotifyEvent: { - prototype: ScriptNotifyEvent; - new(): ScriptNotifyEvent; -}; - interface ScriptProcessorNodeEventMap { "audioprocess": AudioProcessingEvent; } interface ScriptProcessorNode extends AudioNode { + /** @deprecated */ readonly bufferSize: number; - onaudioprocess: (this: ScriptProcessorNode, ev: AudioProcessingEvent) => any; + /** @deprecated */ + onaudioprocess: ((this: ScriptProcessorNode, ev: AudioProcessingEvent) => any) | null; addEventListener(type: K, listener: (this: ScriptProcessorNode, ev: ScriptProcessorNodeEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: ScriptProcessorNode, ev: ScriptProcessorNodeEventMap[K]) => any, options?: boolean | EventListenerOptions): void; @@ -11892,6 +12670,38 @@ declare var ScriptProcessorNode: { new(): ScriptProcessorNode; }; +interface ScrollIntoViewOptions extends ScrollOptions { + block?: ScrollLogicalPosition; + inline?: ScrollLogicalPosition; +} + +interface ScrollOptions { + behavior?: ScrollBehavior; +} + +interface ScrollToOptions extends ScrollOptions { + left?: number; + top?: number; +} + +interface SecurityPolicyViolationEvent extends Event { + readonly blockedURI: string; + readonly columnNumber: number; + readonly documentURI: string; + readonly effectiveDirective: string; + readonly lineNumber: number; + readonly originalPolicy: string; + readonly referrer: string; + readonly sourceFile: string; + readonly statusCode: number; + readonly violatedDirective: string; +} + +declare var SecurityPolicyViolationEvent: { + prototype: SecurityPolicyViolationEvent; + new(type: string, eventInitDict?: SecurityPolicyViolationEventInit): SecurityPolicyViolationEvent; +}; + interface Selection { readonly anchorNode: Node; readonly anchorOffset: number; @@ -11926,13 +12736,19 @@ declare var Selection: { new(): Selection; }; +interface ServiceUIFrameContext { + getCachedFrameMessage(key: string): string; + postFrameMessage(key: string, data: string): void; +} +declare var ServiceUIFrameContext: ServiceUIFrameContext; + interface ServiceWorkerEventMap extends AbstractWorkerEventMap { "statechange": Event; } interface ServiceWorker extends EventTarget, AbstractWorker { - onstatechange: (this: ServiceWorker, ev: Event) => any; - readonly scriptURL: USVString; + onstatechange: ((this: ServiceWorker, ev: Event) => any) | null; + readonly scriptURL: string; readonly state: ServiceWorkerState; postMessage(message: any, transfer?: any[]): void; addEventListener(type: K, listener: (this: ServiceWorker, ev: ServiceWorkerEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; @@ -11949,16 +12765,19 @@ declare var ServiceWorker: { interface ServiceWorkerContainerEventMap { "controllerchange": Event; "message": ServiceWorkerMessageEvent; + "messageerror": MessageEvent; } interface ServiceWorkerContainer extends EventTarget { readonly controller: ServiceWorker | null; - oncontrollerchange: (this: ServiceWorkerContainer, ev: Event) => any; - onmessage: (this: ServiceWorkerContainer, ev: ServiceWorkerMessageEvent) => any; + oncontrollerchange: ((this: ServiceWorkerContainer, ev: Event) => any) | null; + onmessage: ((this: ServiceWorkerContainer, ev: ServiceWorkerMessageEvent) => any) | null; + onmessageerror: ((this: ServiceWorkerContainer, ev: MessageEvent) => any) | null; readonly ready: Promise; - getRegistration(clientURL?: USVString): Promise; + getRegistration(clientURL?: string): Promise; getRegistrations(): Promise; - register(scriptURL: USVString, options?: RegistrationOptions): Promise; + register(scriptURL: string, options?: RegistrationOptions): Promise; + startMessages(): void; addEventListener(type: K, listener: (this: ServiceWorkerContainer, ev: ServiceWorkerContainerEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: ServiceWorkerContainer, ev: ServiceWorkerContainerEventMap[K]) => any, options?: boolean | EventListenerOptions): void; @@ -11974,7 +12793,7 @@ interface ServiceWorkerMessageEvent extends Event { readonly data: any; readonly lastEventId: string; readonly origin: string; - readonly ports: MessagePort[] | null; + readonly ports: ReadonlyArray | null; readonly source: ServiceWorker | MessagePort | null; } @@ -11990,9 +12809,9 @@ interface ServiceWorkerRegistrationEventMap { interface ServiceWorkerRegistration extends EventTarget { readonly active: ServiceWorker | null; readonly installing: ServiceWorker | null; - onupdatefound: (this: ServiceWorkerRegistration, ev: Event) => any; + onupdatefound: ((this: ServiceWorkerRegistration, ev: Event) => any) | null; readonly pushManager: PushManager; - readonly scope: USVString; + readonly scope: string; readonly sync: SyncManager; readonly waiting: ServiceWorker | null; getNotifications(filter?: GetNotificationOptions): Promise; @@ -12010,6 +12829,16 @@ declare var ServiceWorkerRegistration: { new(): ServiceWorkerRegistration; }; +interface ShadowRoot extends DocumentOrShadowRoot, DocumentFragment { + readonly host: Element; + innerHTML: string; +} + +interface ShadowRootInit { + delegatesFocus?: boolean; + mode: "open" | "closed"; +} + interface SourceBuffer extends EventTarget { appendWindowEnd: number; appendWindowStart: number; @@ -12020,7 +12849,7 @@ interface SourceBuffer extends EventTarget { readonly updating: boolean; readonly videoTracks: VideoTrackList; abort(): void; - appendBuffer(data: ArrayBuffer | ArrayBufferView): void; + appendBuffer(data: ArrayBuffer | Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | null): void; appendStream(stream: MSStream, maxSize?: number): void; remove(start: number, end: number): void; } @@ -12046,7 +12875,7 @@ interface SpeechSynthesisEventMap { } interface SpeechSynthesis extends EventTarget { - onvoiceschanged: (this: SpeechSynthesis, ev: Event) => any; + onvoiceschanged: ((this: SpeechSynthesis, ev: Event) => any) | null; readonly paused: boolean; readonly pending: boolean; readonly speaking: boolean; @@ -12068,9 +12897,10 @@ declare var SpeechSynthesis: { interface SpeechSynthesisEvent extends Event { readonly charIndex: number; + readonly charLength: number; readonly elapsedTime: number; readonly name: string; - readonly utterance: SpeechSynthesisUtterance | null; + readonly utterance: SpeechSynthesisUtterance; } declare var SpeechSynthesisEvent: { @@ -12090,13 +12920,13 @@ interface SpeechSynthesisUtteranceEventMap { interface SpeechSynthesisUtterance extends EventTarget { lang: string; - onboundary: (this: SpeechSynthesisUtterance, ev: Event) => any; - onend: (this: SpeechSynthesisUtterance, ev: Event) => any; - onerror: (this: SpeechSynthesisUtterance, ev: Event) => any; - onmark: (this: SpeechSynthesisUtterance, ev: Event) => any; - onpause: (this: SpeechSynthesisUtterance, ev: Event) => any; - onresume: (this: SpeechSynthesisUtterance, ev: Event) => any; - onstart: (this: SpeechSynthesisUtterance, ev: Event) => any; + onboundary: ((this: SpeechSynthesisUtterance, ev: Event) => any) | null; + onend: ((this: SpeechSynthesisUtterance, ev: Event) => any) | null; + onerror: ((this: SpeechSynthesisUtterance, ev: Event) => any) | null; + onmark: ((this: SpeechSynthesisUtterance, ev: Event) => any) | null; + onpause: ((this: SpeechSynthesisUtterance, ev: Event) => any) | null; + onresume: ((this: SpeechSynthesisUtterance, ev: Event) => any) | null; + onstart: ((this: SpeechSynthesisUtterance, ev: Event) => any) | null; pitch: number; rate: number; text: string; @@ -12110,7 +12940,8 @@ interface SpeechSynthesisUtterance extends EventTarget { declare var SpeechSynthesisUtterance: { prototype: SpeechSynthesisUtterance; - new(text?: string): SpeechSynthesisUtterance; + new(): SpeechSynthesisUtterance; + new(text: string): SpeechSynthesisUtterance; }; interface SpeechSynthesisVoice { @@ -12141,9 +12972,8 @@ interface Storage { getItem(key: string): string | null; key(index: number): string | null; removeItem(key: string): void; - setItem(key: string, data: string): void; + setItem(key: string, value: string): void; [key: string]: any; - [index: number]: string; } declare var Storage: { @@ -12152,11 +12982,11 @@ declare var Storage: { }; interface StorageEvent extends Event { + readonly key: string | null; + readonly newValue: string | null; + readonly oldValue: string | null; + readonly storageArea: Storage | null; readonly url: string; - key?: string; - oldValue?: string; - newValue?: string; - storageArea?: Storage; } declare var StorageEvent: { @@ -12164,9 +12994,17 @@ declare var StorageEvent: { new (type: string, eventInitDict?: StorageEventInit): StorageEvent; }; -interface StyleMedia { - readonly type: string; - matchMedium(mediaquery: string): boolean; +interface StorageEventInit extends EventInit { + key?: string; + newValue?: string; + oldValue?: string; + storageArea?: Storage; + url: string; +} + +interface StyleMedia { + readonly type: string; + matchMedium(mediaquery: string): boolean; } declare var StyleMedia: { @@ -12176,11 +13014,11 @@ declare var StyleMedia: { interface StyleSheet { disabled: boolean; - readonly href: string; + readonly href: string | null; readonly media: MediaList; readonly ownerNode: Node; - readonly parentStyleSheet: StyleSheet; - readonly title: string; + readonly parentStyleSheet: StyleSheet | null; + readonly title: string | null; readonly type: string; } @@ -12191,7 +13029,7 @@ declare var StyleSheet: { interface StyleSheetList { readonly length: number; - item(index?: number): StyleSheet; + item(index: number): StyleSheet | null; [index: number]: StyleSheet; } @@ -12200,23 +13038,12 @@ declare var StyleSheetList: { new(): StyleSheetList; }; -interface StyleSheetPageList { - readonly length: number; - item(index: number): CSSPageRule; - [index: number]: CSSPageRule; -} - -declare var StyleSheetPageList: { - prototype: StyleSheetPageList; - new(): StyleSheetPageList; -}; - interface SubtleCrypto { - decrypt(algorithm: string | RsaOaepParams | AesCtrParams | AesCbcParams | AesCmacParams | AesGcmParams | AesCfbParams, key: CryptoKey, data: BufferSource): PromiseLike; + decrypt(algorithm: string | RsaOaepParams | AesCtrParams | AesCbcParams | AesCmacParams | AesGcmParams | AesCfbParams, key: CryptoKey, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer): PromiseLike; deriveBits(algorithm: string | EcdhKeyDeriveParams | DhKeyDeriveParams | ConcatParams | HkdfCtrParams | Pbkdf2Params, baseKey: CryptoKey, length: number): PromiseLike; deriveKey(algorithm: string | EcdhKeyDeriveParams | DhKeyDeriveParams | ConcatParams | HkdfCtrParams | Pbkdf2Params, baseKey: CryptoKey, derivedKeyType: string | AesDerivedKeyParams | HmacImportParams | ConcatParams | HkdfCtrParams | Pbkdf2Params, extractable: boolean, keyUsages: string[]): PromiseLike; - digest(algorithm: AlgorithmIdentifier, data: BufferSource): PromiseLike; - encrypt(algorithm: string | RsaOaepParams | AesCtrParams | AesCbcParams | AesCmacParams | AesGcmParams | AesCfbParams, key: CryptoKey, data: BufferSource): PromiseLike; + digest(algorithm: string | Algorithm, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer): PromiseLike; + encrypt(algorithm: string | RsaOaepParams | AesCtrParams | AesCbcParams | AesCmacParams | AesGcmParams | AesCfbParams, key: CryptoKey, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer): PromiseLike; exportKey(format: "jwk", key: CryptoKey): PromiseLike; exportKey(format: "raw" | "pkcs8" | "spki", key: CryptoKey): PromiseLike; exportKey(format: string, key: CryptoKey): PromiseLike; @@ -12224,12 +13051,12 @@ interface SubtleCrypto { generateKey(algorithm: RsaHashedKeyGenParams | EcKeyGenParams | DhKeyGenParams, extractable: boolean, keyUsages: string[]): PromiseLike; generateKey(algorithm: AesKeyGenParams | HmacKeyGenParams | Pbkdf2Params, extractable: boolean, keyUsages: string[]): PromiseLike; importKey(format: "jwk", keyData: JsonWebKey, algorithm: string | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | DhImportKeyParams, extractable: boolean, keyUsages: string[]): PromiseLike; - importKey(format: "raw" | "pkcs8" | "spki", keyData: BufferSource, algorithm: string | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | DhImportKeyParams, extractable: boolean, keyUsages: string[]): PromiseLike; - importKey(format: string, keyData: JsonWebKey | BufferSource, algorithm: string | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | DhImportKeyParams, extractable: boolean, keyUsages: string[]): PromiseLike; - sign(algorithm: string | RsaPssParams | EcdsaParams | AesCmacParams, key: CryptoKey, data: BufferSource): PromiseLike; - unwrapKey(format: string, wrappedKey: BufferSource, unwrappingKey: CryptoKey, unwrapAlgorithm: AlgorithmIdentifier, unwrappedKeyAlgorithm: AlgorithmIdentifier, extractable: boolean, keyUsages: string[]): PromiseLike; - verify(algorithm: string | RsaPssParams | EcdsaParams | AesCmacParams, key: CryptoKey, signature: BufferSource, data: BufferSource): PromiseLike; - wrapKey(format: string, key: CryptoKey, wrappingKey: CryptoKey, wrapAlgorithm: AlgorithmIdentifier): PromiseLike; + importKey(format: "raw" | "pkcs8" | "spki", keyData: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer, algorithm: string | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | DhImportKeyParams, extractable: boolean, keyUsages: string[]): PromiseLike; + importKey(format: string, keyData: JsonWebKey | Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer, algorithm: string | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | DhImportKeyParams, extractable: boolean, keyUsages: string[]): PromiseLike; + sign(algorithm: string | RsaPssParams | EcdsaParams | AesCmacParams, key: CryptoKey, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer): PromiseLike; + unwrapKey(format: string, wrappedKey: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer, unwrappingKey: CryptoKey, unwrapAlgorithm: string | Algorithm, unwrappedKeyAlgorithm: string | Algorithm, extractable: boolean, keyUsages: string[]): PromiseLike; + verify(algorithm: string | RsaPssParams | EcdsaParams | AesCmacParams, key: CryptoKey, signature: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer): PromiseLike; + wrapKey(format: string, key: CryptoKey, wrappingKey: CryptoKey, wrapAlgorithm: string | Algorithm): PromiseLike; } declare var SubtleCrypto: { @@ -12248,8 +13075,8 @@ declare var SyncManager: { }; interface Text extends CharacterData { - readonly wholeText: string; readonly assignedSlot: HTMLSlotElement | null; + readonly wholeText: string; splitText(offset: number): Text; } @@ -12258,10 +13085,30 @@ declare var Text: { new(data?: string): Text; }; +interface TextDecoder { + readonly encoding: string; + readonly fatal: boolean; + readonly ignoreBOM: boolean; + decode(input?: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | null, options?: TextDecodeOptions): string; +} + +declare var TextDecoder: { + prototype: TextDecoder; + new(label?: string, options?: TextDecoderOptions): TextDecoder; +}; + +interface TextEncoder { + readonly encoding: string; + encode(input?: string): Uint8Array; +} + +declare var TextEncoder: { + prototype: TextEncoder; + new(): TextEncoder; +}; + interface TextEvent extends UIEvent { readonly data: string; - readonly inputMethod: number; - readonly locale: string; initTextEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, viewArg: Window, dataArg: string, inputMethod: number, locale: string): void; readonly DOM_INPUT_METHOD_DROP: number; readonly DOM_INPUT_METHOD_HANDWRITING: number; @@ -12312,10 +13159,10 @@ interface TextTrack extends EventTarget { readonly kind: string; readonly label: string; readonly language: string; - mode: any; - oncuechange: (this: TextTrack, ev: Event) => any; - onerror: (this: TextTrack, ev: Event) => any; - onload: (this: TextTrack, ev: Event) => any; + mode: TextTrackMode | number; + oncuechange: ((this: TextTrack, ev: Event) => any) | null; + onerror: ((this: TextTrack, ev: Event) => any) | null; + onload: ((this: TextTrack, ev: Event) => any) | null; readonly readyState: number; addCue(cue: TextTrackCue): void; removeCue(cue: TextTrackCue): void; @@ -12352,8 +13199,8 @@ interface TextTrackCueEventMap { interface TextTrackCue extends EventTarget { endTime: number; id: string; - onenter: (this: TextTrackCue, ev: Event) => any; - onexit: (this: TextTrackCue, ev: Event) => any; + onenter: ((this: TextTrackCue, ev: Event) => any) | null; + onexit: ((this: TextTrackCue, ev: Event) => any) | null; pauseOnExit: boolean; startTime: number; text: string; @@ -12439,6 +13286,7 @@ interface TouchEvent extends UIEvent { readonly shiftKey: boolean; readonly targetTouches: TouchList; readonly touches: TouchList; + /** @deprecated */ readonly which: number; } @@ -12447,6 +13295,12 @@ declare var TouchEvent: { new(type: string, touchEventInit?: TouchEventInit): TouchEvent; }; +interface TouchEventInit extends EventModifierInit { + changedTouches?: Touch[]; + targetTouches?: Touch[]; + touches?: Touch[]; +} + interface TouchList { readonly length: number; item(index: number): Touch | null; @@ -12480,17 +13334,18 @@ declare var TransitionEvent: { interface TreeWalker { currentNode: Node; + /** @deprecated */ readonly expandEntityReferences: boolean; - readonly filter: NodeFilter; + readonly filter: NodeFilter | null; readonly root: Node; readonly whatToShow: number; - firstChild(): Node; - lastChild(): Node; - nextNode(): Node; - nextSibling(): Node; - parentNode(): Node; - previousNode(): Node; - previousSibling(): Node; + firstChild(): Node | null; + lastChild(): Node | null; + nextNode(): Node | null; + nextSibling(): Node | null; + parentNode(): Node | null; + previousNode(): Node | null; + previousSibling(): Node | null; } declare var TreeWalker: { @@ -12520,8 +13375,8 @@ interface URL { port: string; protocol: string; search: string; - username: string; readonly searchParams: URLSearchParams; + username: string; toString(): string; } @@ -12532,13 +13387,140 @@ declare var URL: { revokeObjectURL(url: string): void; }; -interface UnviewableContentIdentifiedEvent extends NavigationEventWithReferrer { - readonly mediaType: string; +interface URLSearchParams { + /** + * Appends a specified key/value pair as a new search parameter. + */ + append(name: string, value: string): void; + /** + * Deletes the given search parameter, and its associated value, from the list of all search parameters. + */ + delete(name: string): void; + /** + * Returns the first value associated to the given search parameter. + */ + get(name: string): string | null; + /** + * Returns all the values association with a given search parameter. + */ + getAll(name: string): string[]; + /** + * Returns a Boolean indicating if such a search parameter exists. + */ + has(name: string): boolean; + /** + * Sets the value associated to a given search parameter to the given value. If there were several values, delete the others. + */ + set(name: string, value: string): void; +} + +declare var URLSearchParams: { + prototype: URLSearchParams; + new (init?: string | URLSearchParams): URLSearchParams; +}; + +interface VRDisplay extends EventTarget { + readonly capabilities: VRDisplayCapabilities; + depthFar: number; + depthNear: number; + readonly displayId: number; + readonly displayName: string; + readonly isConnected: boolean; + readonly isPresenting: boolean; + readonly stageParameters: VRStageParameters | null; + cancelAnimationFrame(handle: number): void; + exitPresent(): Promise; + getEyeParameters(whichEye: string): VREyeParameters; + getFrameData(frameData: VRFrameData): boolean; + getLayers(): VRLayer[]; + /** @deprecated */ + getPose(): VRPose; + requestAnimationFrame(callback: FrameRequestCallback): number; + requestPresent(layers: VRLayer[]): Promise; + resetPose(): void; + submitFrame(pose?: VRPose): void; +} + +declare var VRDisplay: { + prototype: VRDisplay; + new(): VRDisplay; +}; + +interface VRDisplayCapabilities { + readonly canPresent: boolean; + readonly hasExternalDisplay: boolean; + readonly hasOrientation: boolean; + readonly hasPosition: boolean; + readonly maxLayers: number; +} + +declare var VRDisplayCapabilities: { + prototype: VRDisplayCapabilities; + new(): VRDisplayCapabilities; +}; + +interface VRDisplayEvent extends Event { + readonly display: VRDisplay; + readonly reason: VRDisplayEventReason | null; +} + +declare var VRDisplayEvent: { + prototype: VRDisplayEvent; + new(type: string, eventInitDict: VRDisplayEventInit): VRDisplayEvent; +}; + +interface VREyeParameters { + /** @deprecated */ + readonly fieldOfView: VRFieldOfView; + readonly offset: Float32Array; + readonly renderHeight: number; + readonly renderWidth: number; +} + +declare var VREyeParameters: { + prototype: VREyeParameters; + new(): VREyeParameters; +}; + +interface VRFieldOfView { + readonly downDegrees: number; + readonly leftDegrees: number; + readonly rightDegrees: number; + readonly upDegrees: number; +} + +declare var VRFieldOfView: { + prototype: VRFieldOfView; + new(): VRFieldOfView; +}; + +interface VRFrameData { + readonly leftProjectionMatrix: Float32Array; + readonly leftViewMatrix: Float32Array; + readonly pose: VRPose; + readonly rightProjectionMatrix: Float32Array; + readonly rightViewMatrix: Float32Array; + readonly timestamp: number; +} + +declare var VRFrameData: { + prototype: VRFrameData; + new(): VRFrameData; +}; + +interface VRPose { + readonly angularAcceleration: Float32Array | null; + readonly angularVelocity: Float32Array | null; + readonly linearAcceleration: Float32Array | null; + readonly linearVelocity: Float32Array | null; + readonly orientation: Float32Array | null; + readonly position: Float32Array | null; + readonly timestamp: number; } -declare var UnviewableContentIdentifiedEvent: { - prototype: UnviewableContentIdentifiedEvent; - new(): UnviewableContentIdentifiedEvent; +declare var VRPose: { + prototype: VRPose; + new(): VRPose; }; interface ValidityState { @@ -12549,10 +13531,10 @@ interface ValidityState { readonly rangeUnderflow: boolean; readonly stepMismatch: boolean; readonly tooLong: boolean; + readonly tooShort: boolean; readonly typeMismatch: boolean; readonly valid: boolean; readonly valueMissing: boolean; - readonly tooShort: boolean; } declare var ValidityState: { @@ -12595,9 +13577,9 @@ interface VideoTrackListEventMap { interface VideoTrackList extends EventTarget { readonly length: number; - onaddtrack: (this: VideoTrackList, ev: TrackEvent) => any; - onchange: (this: VideoTrackList, ev: Event) => any; - onremovetrack: (this: VideoTrackList, ev: TrackEvent) => any; + onaddtrack: ((this: VideoTrackList, ev: TrackEvent) => any) | null; + onchange: ((this: VideoTrackList, ev: Event) => any) | null; + onremovetrack: ((this: VideoTrackList, ev: TrackEvent) => any) | null; readonly selectedIndex: number; getTrackById(id: string): VideoTrack | null; item(index: number): VideoTrack; @@ -12613,6 +13595,45 @@ declare var VideoTrackList: { new(): VideoTrackList; }; +interface WEBGL_color_buffer_float { + readonly FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT: number; + readonly RGB32F_EXT: number; + readonly RGBA32F_EXT: number; + readonly UNSIGNED_NORMALIZED_EXT: number; +} + +interface WEBGL_compressed_texture_astc { + readonly COMPRESSED_RGBA_ASTC_10x10_KHR: number; + readonly COMPRESSED_RGBA_ASTC_10x5_KHR: number; + readonly COMPRESSED_RGBA_ASTC_10x6_KHR: number; + readonly COMPRESSED_RGBA_ASTC_10x8_KHR: number; + readonly COMPRESSED_RGBA_ASTC_12x10_KHR: number; + readonly COMPRESSED_RGBA_ASTC_12x12_KHR: number; + readonly COMPRESSED_RGBA_ASTC_4x4_KHR: number; + readonly COMPRESSED_RGBA_ASTC_5x4_KHR: number; + readonly COMPRESSED_RGBA_ASTC_5x5_KHR: number; + readonly COMPRESSED_RGBA_ASTC_6x5_KHR: number; + readonly COMPRESSED_RGBA_ASTC_6x6_KHR: number; + readonly COMPRESSED_RGBA_ASTC_8x5_KHR: number; + readonly COMPRESSED_RGBA_ASTC_8x6_KHR: number; + readonly COMPRESSED_RGBA_ASTC_8x8_KHR: number; + readonly COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR: number; + readonly COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR: number; + readonly COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR: number; + readonly COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR: number; + readonly COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR: number; + readonly COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR: number; + readonly COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR: number; + readonly COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR: number; + readonly COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR: number; + readonly COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR: number; + readonly COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR: number; + readonly COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR: number; + readonly COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR: number; + readonly COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR: number; + getSupportedProfiles(): string[]; +} + interface WEBGL_compressed_texture_s3tc { readonly COMPRESSED_RGBA_S3TC_DXT1_EXT: number; readonly COMPRESSED_RGBA_S3TC_DXT3_EXT: number; @@ -12629,6 +13650,13 @@ declare var WEBGL_compressed_texture_s3tc: { readonly COMPRESSED_RGB_S3TC_DXT1_EXT: number; }; +interface WEBGL_compressed_texture_s3tc_srgb { + readonly COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT: number; + readonly COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT: number; + readonly COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT: number; + readonly COMPRESSED_SRGB_S3TC_DXT1_EXT: number; +} + interface WEBGL_debug_renderer_info { readonly UNMASKED_RENDERER_WEBGL: number; readonly UNMASKED_VENDOR_WEBGL: number; @@ -12641,6 +13669,10 @@ declare var WEBGL_debug_renderer_info: { readonly UNMASKED_VENDOR_WEBGL: number; }; +interface WEBGL_debug_shaders { + getTranslatedShaderSource(shader: WebGLShader): string; +} + interface WEBGL_depth_texture { readonly UNSIGNED_INT_24_8_WEBGL: number; } @@ -12651,6 +13683,49 @@ declare var WEBGL_depth_texture: { readonly UNSIGNED_INT_24_8_WEBGL: number; }; +interface WEBGL_draw_buffers { + readonly COLOR_ATTACHMENT0_WEBGL: number; + readonly COLOR_ATTACHMENT10_WEBGL: number; + readonly COLOR_ATTACHMENT11_WEBGL: number; + readonly COLOR_ATTACHMENT12_WEBGL: number; + readonly COLOR_ATTACHMENT13_WEBGL: number; + readonly COLOR_ATTACHMENT14_WEBGL: number; + readonly COLOR_ATTACHMENT15_WEBGL: number; + readonly COLOR_ATTACHMENT1_WEBGL: number; + readonly COLOR_ATTACHMENT2_WEBGL: number; + readonly COLOR_ATTACHMENT3_WEBGL: number; + readonly COLOR_ATTACHMENT4_WEBGL: number; + readonly COLOR_ATTACHMENT5_WEBGL: number; + readonly COLOR_ATTACHMENT6_WEBGL: number; + readonly COLOR_ATTACHMENT7_WEBGL: number; + readonly COLOR_ATTACHMENT8_WEBGL: number; + readonly COLOR_ATTACHMENT9_WEBGL: number; + readonly DRAW_BUFFER0_WEBGL: number; + readonly DRAW_BUFFER10_WEBGL: number; + readonly DRAW_BUFFER11_WEBGL: number; + readonly DRAW_BUFFER12_WEBGL: number; + readonly DRAW_BUFFER13_WEBGL: number; + readonly DRAW_BUFFER14_WEBGL: number; + readonly DRAW_BUFFER15_WEBGL: number; + readonly DRAW_BUFFER1_WEBGL: number; + readonly DRAW_BUFFER2_WEBGL: number; + readonly DRAW_BUFFER3_WEBGL: number; + readonly DRAW_BUFFER4_WEBGL: number; + readonly DRAW_BUFFER5_WEBGL: number; + readonly DRAW_BUFFER6_WEBGL: number; + readonly DRAW_BUFFER7_WEBGL: number; + readonly DRAW_BUFFER8_WEBGL: number; + readonly DRAW_BUFFER9_WEBGL: number; + readonly MAX_COLOR_ATTACHMENTS_WEBGL: number; + readonly MAX_DRAW_BUFFERS_WEBGL: number; + drawBuffersWEBGL(buffers: number[]): void; +} + +interface WEBGL_lose_context { + loseContext(): void; + restoreContext(): void; +} + interface WaveShaperNode extends AudioNode { curve: Float32Array | null; oversample: OverSampleType; @@ -12662,8 +13737,8 @@ declare var WaveShaperNode: { }; interface WebAuthentication { - getAssertion(assertionChallenge: BufferSource, options?: AssertionOptions): Promise; - makeCredential(accountInformation: Account, cryptoParameters: ScopedCredentialParameters[], attestationChallenge: BufferSource, options?: ScopedCredentialOptions): Promise; + getAssertion(assertionChallenge: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | null, options?: AssertionOptions): Promise; + makeCredential(accountInformation: Account, cryptoParameters: ScopedCredentialParameters[], attestationChallenge: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | null, options?: ScopedCredentialOptions): Promise; } declare var WebAuthentication: { @@ -12759,8 +13834,8 @@ interface WebGLRenderingContext { blendEquationSeparate(modeRGB: number, modeAlpha: number): void; blendFunc(sfactor: number, dfactor: number): void; blendFuncSeparate(srcRGB: number, dstRGB: number, srcAlpha: number, dstAlpha: number): void; - bufferData(target: number, size: number | ArrayBufferView | ArrayBuffer, usage: number): void; - bufferSubData(target: number, offset: number, data: ArrayBufferView | ArrayBuffer): void; + bufferData(target: number, size: number | Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | null, usage: number): void; + bufferSubData(target: number, offset: number, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | null): void; checkFramebufferStatus(target: number): number; clear(mask: number): void; clearColor(red: number, green: number, blue: number, alpha: number): void; @@ -12768,8 +13843,8 @@ interface WebGLRenderingContext { clearStencil(s: number): void; colorMask(red: boolean, green: boolean, blue: boolean, alpha: boolean): void; compileShader(shader: WebGLShader | null): void; - compressedTexImage2D(target: number, level: number, internalformat: number, width: number, height: number, border: number, data: ArrayBufferView): void; - compressedTexSubImage2D(target: number, level: number, xoffset: number, yoffset: number, width: number, height: number, format: number, data: ArrayBufferView): void; + compressedTexImage2D(target: number, level: number, internalformat: number, width: number, height: number, border: number, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | null): void; + compressedTexSubImage2D(target: number, level: number, xoffset: number, yoffset: number, width: number, height: number, format: number, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | null): void; copyTexImage2D(target: number, level: number, internalformat: number, x: number, y: number, width: number, height: number, border: number): void; copyTexSubImage2D(target: number, level: number, xoffset: number, yoffset: number, x: number, y: number, width: number, height: number): void; createBuffer(): WebGLBuffer | null; @@ -12859,7 +13934,7 @@ interface WebGLRenderingContext { linkProgram(program: WebGLProgram | null): void; pixelStorei(pname: number, param: number | boolean): void; polygonOffset(factor: number, units: number): void; - readPixels(x: number, y: number, width: number, height: number, format: number, type: number, pixels: ArrayBufferView | null): void; + readPixels(x: number, y: number, width: number, height: number, format: number, type: number, pixels: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | null): void; renderbufferStorage(target: number, internalformat: number, width: number, height: number): void; sampleCoverage(value: number, invert: boolean): void; scissor(x: number, y: number, width: number, height: number): void; @@ -13543,6 +14618,9 @@ declare var WebGLUniformLocation: { new(): WebGLUniformLocation; }; +interface WebGLVertexArrayObjectOES { +} + interface WebKitCSSMatrix { a: number; b: number; @@ -13651,18 +14729,18 @@ interface WebSocketEventMap { } interface WebSocket extends EventTarget { - binaryType: string; + binaryType: BinaryType; readonly bufferedAmount: number; readonly extensions: string; - onclose: (this: WebSocket, ev: CloseEvent) => any; - onerror: (this: WebSocket, ev: Event) => any; - onmessage: (this: WebSocket, ev: MessageEvent) => any; - onopen: (this: WebSocket, ev: Event) => any; + onclose: ((this: WebSocket, ev: CloseEvent) => any) | null; + onerror: ((this: WebSocket, ev: Event) => any) | null; + onmessage: ((this: WebSocket, ev: MessageEvent) => any) | null; + onopen: ((this: WebSocket, ev: Event) => any) | null; readonly protocol: string; readonly readyState: number; readonly url: string; close(code?: number, reason?: string): void; - send(data: USVString | ArrayBuffer | Blob | ArrayBufferView): void; + send(data: string | ArrayBuffer | Blob | ArrayBufferView): void; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; @@ -13707,8 +14785,6 @@ declare var WheelEvent: { interface WindowEventMap extends GlobalEventHandlersEventMap { "abort": UIEvent; - "afterprint": Event; - "beforeprint": Event; "beforeunload": BeforeUnloadEvent; "blur": FocusEvent; "canplay": Event; @@ -13730,7 +14806,7 @@ interface WindowEventMap extends GlobalEventHandlersEventMap { "drop": DragEvent; "durationchange": Event; "emptied": Event; - "ended": MediaStreamErrorEvent; + "ended": Event; "error": ErrorEvent; "focus": FocusEvent; "hashchange": HashChangeEvent; @@ -13752,21 +14828,21 @@ interface WindowEventMap extends GlobalEventHandlersEventMap { "mouseover": MouseEvent; "mouseup": MouseEvent; "mousewheel": WheelEvent; - "MSGestureChange": MSGestureEvent; - "MSGestureDoubleTap": MSGestureEvent; - "MSGestureEnd": MSGestureEvent; - "MSGestureHold": MSGestureEvent; - "MSGestureStart": MSGestureEvent; - "MSGestureTap": MSGestureEvent; - "MSInertiaStart": MSGestureEvent; - "MSPointerCancel": MSPointerEvent; - "MSPointerDown": MSPointerEvent; - "MSPointerEnter": MSPointerEvent; - "MSPointerLeave": MSPointerEvent; - "MSPointerMove": MSPointerEvent; - "MSPointerOut": MSPointerEvent; - "MSPointerOver": MSPointerEvent; - "MSPointerUp": MSPointerEvent; + "MSGestureChange": Event; + "MSGestureDoubleTap": Event; + "MSGestureEnd": Event; + "MSGestureHold": Event; + "MSGestureStart": Event; + "MSGestureTap": Event; + "MSInertiaStart": Event; + "MSPointerCancel": Event; + "MSPointerDown": Event; + "MSPointerEnter": Event; + "MSPointerLeave": Event; + "MSPointerMove": Event; + "MSPointerOut": Event; + "MSPointerOver": Event; + "MSPointerUp": Event; "offline": Event; "online": Event; "orientationchange": Event; @@ -13790,21 +14866,34 @@ interface WindowEventMap extends GlobalEventHandlersEventMap { "submit": Event; "suspend": Event; "timeupdate": Event; - "touchcancel": TouchEvent; - "touchend": TouchEvent; - "touchmove": TouchEvent; - "touchstart": TouchEvent; + "touchcancel": Event; + "touchend": Event; + "touchmove": Event; + "touchstart": Event; "unload": Event; "volumechange": Event; + "vrdisplayactivate": Event; + "vrdisplayblur": Event; + "vrdisplayconnect": Event; + "vrdisplaydeactivate": Event; + "vrdisplaydisconnect": Event; + "vrdisplayfocus": Event; + "vrdisplaypointerrestricted": Event; + "vrdisplaypointerunrestricted": Event; + "vrdisplaypresentchange": Event; "waiting": Event; } interface Window extends EventTarget, WindowTimers, WindowSessionStorage, WindowLocalStorage, WindowConsole, GlobalEventHandlers, IDBEnvironment, WindowBase64, GlobalFetch { + Blob: typeof Blob; + URL: typeof URL; + URLSearchParams: typeof URLSearchParams; readonly applicationCache: ApplicationCache; readonly caches: CacheStorage; readonly clientInformation: Navigator; readonly closed: boolean; readonly crypto: Crypto; + customElements: CustomElementRegistry; defaultStatus: string; readonly devicePixelRatio: number; readonly doNotTrack: string; @@ -13826,99 +14915,106 @@ interface Window extends EventTarget, WindowTimers, WindowSessionStorage, Window name: string; readonly navigator: Navigator; offscreenBuffering: string | boolean; - onabort: (this: Window, ev: UIEvent) => any; - onafterprint: (this: Window, ev: Event) => any; - onbeforeprint: (this: Window, ev: Event) => any; - onbeforeunload: (this: Window, ev: BeforeUnloadEvent) => any; - onblur: (this: Window, ev: FocusEvent) => any; - oncanplay: (this: Window, ev: Event) => any; - oncanplaythrough: (this: Window, ev: Event) => any; - onchange: (this: Window, ev: Event) => any; - onclick: (this: Window, ev: MouseEvent) => any; - oncompassneedscalibration: (this: Window, ev: Event) => any; - oncontextmenu: (this: Window, ev: PointerEvent) => any; - ondblclick: (this: Window, ev: MouseEvent) => any; - ondevicelight: (this: Window, ev: DeviceLightEvent) => any; - ondevicemotion: (this: Window, ev: DeviceMotionEvent) => any; - ondeviceorientation: (this: Window, ev: DeviceOrientationEvent) => any; - ondrag: (this: Window, ev: DragEvent) => any; - ondragend: (this: Window, ev: DragEvent) => any; - ondragenter: (this: Window, ev: DragEvent) => any; - ondragleave: (this: Window, ev: DragEvent) => any; - ondragover: (this: Window, ev: DragEvent) => any; - ondragstart: (this: Window, ev: DragEvent) => any; - ondrop: (this: Window, ev: DragEvent) => any; - ondurationchange: (this: Window, ev: Event) => any; - onemptied: (this: Window, ev: Event) => any; - onended: (this: Window, ev: MediaStreamErrorEvent) => any; + onabort: ((this: Window, ev: UIEvent) => any) | null; + onbeforeunload: ((this: Window, ev: BeforeUnloadEvent) => any) | null; + onblur: ((this: Window, ev: FocusEvent) => any) | null; + oncanplay: ((this: Window, ev: Event) => any) | null; + oncanplaythrough: ((this: Window, ev: Event) => any) | null; + onchange: ((this: Window, ev: Event) => any) | null; + onclick: ((this: Window, ev: MouseEvent) => any) | null; + oncompassneedscalibration: ((this: Window, ev: Event) => any) | null; + oncontextmenu: ((this: Window, ev: PointerEvent) => any) | null; + ondblclick: ((this: Window, ev: MouseEvent) => any) | null; + ondevicelight: ((this: Window, ev: DeviceLightEvent) => any) | null; + ondevicemotion: ((this: Window, ev: DeviceMotionEvent) => any) | null; + ondeviceorientation: ((this: Window, ev: DeviceOrientationEvent) => any) | null; + ondrag: ((this: Window, ev: DragEvent) => any) | null; + ondragend: ((this: Window, ev: DragEvent) => any) | null; + ondragenter: ((this: Window, ev: DragEvent) => any) | null; + ondragleave: ((this: Window, ev: DragEvent) => any) | null; + ondragover: ((this: Window, ev: DragEvent) => any) | null; + ondragstart: ((this: Window, ev: DragEvent) => any) | null; + ondrop: ((this: Window, ev: DragEvent) => any) | null; + ondurationchange: ((this: Window, ev: Event) => any) | null; + onemptied: ((this: Window, ev: Event) => any) | null; + onended: ((this: Window, ev: Event) => any) | null; onerror: ErrorEventHandler; - onfocus: (this: Window, ev: FocusEvent) => any; - onhashchange: (this: Window, ev: HashChangeEvent) => any; - oninput: (this: Window, ev: Event) => any; - oninvalid: (this: Window, ev: Event) => any; - onkeydown: (this: Window, ev: KeyboardEvent) => any; - onkeypress: (this: Window, ev: KeyboardEvent) => any; - onkeyup: (this: Window, ev: KeyboardEvent) => any; - onload: (this: Window, ev: Event) => any; - onloadeddata: (this: Window, ev: Event) => any; - onloadedmetadata: (this: Window, ev: Event) => any; - onloadstart: (this: Window, ev: Event) => any; - onmessage: (this: Window, ev: MessageEvent) => any; - onmousedown: (this: Window, ev: MouseEvent) => any; - onmouseenter: (this: Window, ev: MouseEvent) => any; - onmouseleave: (this: Window, ev: MouseEvent) => any; - onmousemove: (this: Window, ev: MouseEvent) => any; - onmouseout: (this: Window, ev: MouseEvent) => any; - onmouseover: (this: Window, ev: MouseEvent) => any; - onmouseup: (this: Window, ev: MouseEvent) => any; - onmousewheel: (this: Window, ev: WheelEvent) => any; - onmsgesturechange: (this: Window, ev: MSGestureEvent) => any; - onmsgesturedoubletap: (this: Window, ev: MSGestureEvent) => any; - onmsgestureend: (this: Window, ev: MSGestureEvent) => any; - onmsgesturehold: (this: Window, ev: MSGestureEvent) => any; - onmsgesturestart: (this: Window, ev: MSGestureEvent) => any; - onmsgesturetap: (this: Window, ev: MSGestureEvent) => any; - onmsinertiastart: (this: Window, ev: MSGestureEvent) => any; - onmspointercancel: (this: Window, ev: MSPointerEvent) => any; - onmspointerdown: (this: Window, ev: MSPointerEvent) => any; - onmspointerenter: (this: Window, ev: MSPointerEvent) => any; - onmspointerleave: (this: Window, ev: MSPointerEvent) => any; - onmspointermove: (this: Window, ev: MSPointerEvent) => any; - onmspointerout: (this: Window, ev: MSPointerEvent) => any; - onmspointerover: (this: Window, ev: MSPointerEvent) => any; - onmspointerup: (this: Window, ev: MSPointerEvent) => any; - onoffline: (this: Window, ev: Event) => any; - ononline: (this: Window, ev: Event) => any; - onorientationchange: (this: Window, ev: Event) => any; - onpagehide: (this: Window, ev: PageTransitionEvent) => any; - onpageshow: (this: Window, ev: PageTransitionEvent) => any; - onpause: (this: Window, ev: Event) => any; - onplay: (this: Window, ev: Event) => any; - onplaying: (this: Window, ev: Event) => any; - onpopstate: (this: Window, ev: PopStateEvent) => any; - onprogress: (this: Window, ev: ProgressEvent) => any; - onratechange: (this: Window, ev: Event) => any; - onreadystatechange: (this: Window, ev: ProgressEvent) => any; - onreset: (this: Window, ev: Event) => any; - onresize: (this: Window, ev: UIEvent) => any; - onscroll: (this: Window, ev: UIEvent) => any; - onseeked: (this: Window, ev: Event) => any; - onseeking: (this: Window, ev: Event) => any; - onselect: (this: Window, ev: UIEvent) => any; - onstalled: (this: Window, ev: Event) => any; - onstorage: (this: Window, ev: StorageEvent) => any; - onsubmit: (this: Window, ev: Event) => any; - onsuspend: (this: Window, ev: Event) => any; - ontimeupdate: (this: Window, ev: Event) => any; + onfocus: ((this: Window, ev: FocusEvent) => any) | null; + onhashchange: ((this: Window, ev: HashChangeEvent) => any) | null; + oninput: ((this: Window, ev: Event) => any) | null; + oninvalid: ((this: Window, ev: Event) => any) | null; + onkeydown: ((this: Window, ev: KeyboardEvent) => any) | null; + onkeypress: ((this: Window, ev: KeyboardEvent) => any) | null; + onkeyup: ((this: Window, ev: KeyboardEvent) => any) | null; + onload: ((this: Window, ev: Event) => any) | null; + onloadeddata: ((this: Window, ev: Event) => any) | null; + onloadedmetadata: ((this: Window, ev: Event) => any) | null; + onloadstart: ((this: Window, ev: Event) => any) | null; + onmessage: ((this: Window, ev: MessageEvent) => any) | null; + onmousedown: ((this: Window, ev: MouseEvent) => any) | null; + onmouseenter: ((this: Window, ev: MouseEvent) => any) | null; + onmouseleave: ((this: Window, ev: MouseEvent) => any) | null; + onmousemove: ((this: Window, ev: MouseEvent) => any) | null; + onmouseout: ((this: Window, ev: MouseEvent) => any) | null; + onmouseover: ((this: Window, ev: MouseEvent) => any) | null; + onmouseup: ((this: Window, ev: MouseEvent) => any) | null; + onmousewheel: ((this: Window, ev: WheelEvent) => any) | null; + onmsgesturechange: ((this: Window, ev: Event) => any) | null; + onmsgesturedoubletap: ((this: Window, ev: Event) => any) | null; + onmsgestureend: ((this: Window, ev: Event) => any) | null; + onmsgesturehold: ((this: Window, ev: Event) => any) | null; + onmsgesturestart: ((this: Window, ev: Event) => any) | null; + onmsgesturetap: ((this: Window, ev: Event) => any) | null; + onmsinertiastart: ((this: Window, ev: Event) => any) | null; + onmspointercancel: ((this: Window, ev: Event) => any) | null; + onmspointerdown: ((this: Window, ev: Event) => any) | null; + onmspointerenter: ((this: Window, ev: Event) => any) | null; + onmspointerleave: ((this: Window, ev: Event) => any) | null; + onmspointermove: ((this: Window, ev: Event) => any) | null; + onmspointerout: ((this: Window, ev: Event) => any) | null; + onmspointerover: ((this: Window, ev: Event) => any) | null; + onmspointerup: ((this: Window, ev: Event) => any) | null; + onoffline: ((this: Window, ev: Event) => any) | null; + ononline: ((this: Window, ev: Event) => any) | null; + onorientationchange: ((this: Window, ev: Event) => any) | null; + onpagehide: ((this: Window, ev: PageTransitionEvent) => any) | null; + onpageshow: ((this: Window, ev: PageTransitionEvent) => any) | null; + onpause: ((this: Window, ev: Event) => any) | null; + onplay: ((this: Window, ev: Event) => any) | null; + onplaying: ((this: Window, ev: Event) => any) | null; + onpopstate: ((this: Window, ev: PopStateEvent) => any) | null; + onprogress: ((this: Window, ev: ProgressEvent) => any) | null; + onratechange: ((this: Window, ev: Event) => any) | null; + onreadystatechange: ((this: Window, ev: ProgressEvent) => any) | null; + onreset: ((this: Window, ev: Event) => any) | null; + onresize: ((this: Window, ev: UIEvent) => any) | null; + onscroll: ((this: Window, ev: UIEvent) => any) | null; + onseeked: ((this: Window, ev: Event) => any) | null; + onseeking: ((this: Window, ev: Event) => any) | null; + onselect: ((this: Window, ev: UIEvent) => any) | null; + onstalled: ((this: Window, ev: Event) => any) | null; + onstorage: ((this: Window, ev: StorageEvent) => any) | null; + onsubmit: ((this: Window, ev: Event) => any) | null; + onsuspend: ((this: Window, ev: Event) => any) | null; + ontimeupdate: ((this: Window, ev: Event) => any) | null; ontouchcancel: (ev: TouchEvent) => any; ontouchend: (ev: TouchEvent) => any; ontouchmove: (ev: TouchEvent) => any; ontouchstart: (ev: TouchEvent) => any; - onunload: (this: Window, ev: Event) => any; - onvolumechange: (this: Window, ev: Event) => any; - onwaiting: (this: Window, ev: Event) => any; - opener: any; - orientation: string | number; + onunload: ((this: Window, ev: Event) => any) | null; + onvolumechange: ((this: Window, ev: Event) => any) | null; + onvrdisplayactivate: ((this: Window, ev: Event) => any) | null; + onvrdisplayblur: ((this: Window, ev: Event) => any) | null; + onvrdisplayconnect: ((this: Window, ev: Event) => any) | null; + onvrdisplaydeactivate: ((this: Window, ev: Event) => any) | null; + onvrdisplaydisconnect: ((this: Window, ev: Event) => any) | null; + onvrdisplayfocus: ((this: Window, ev: Event) => any) | null; + onvrdisplaypointerrestricted: ((this: Window, ev: Event) => any) | null; + onvrdisplaypointerunrestricted: ((this: Window, ev: Event) => any) | null; + onvrdisplaypresentchange: ((this: Window, ev: Event) => any) | null; + onwaiting: ((this: Window, ev: Event) => any) | null; + readonly opener: any; + readonly orientation: string | number; readonly outerHeight: number; readonly outerWidth: number; readonly pageXOffset: number; @@ -13942,20 +15038,18 @@ interface Window extends EventTarget, WindowTimers, WindowSessionStorage, Window readonly toolbar: BarProp; readonly top: Window; readonly window: Window; - URL: typeof URL; - URLSearchParams: typeof URLSearchParams; - Blob: typeof Blob; - customElements: CustomElementRegistry; alert(message?: any): void; blur(): void; cancelAnimationFrame(handle: number): void; captureEvents(): void; close(): void; confirm(message?: string): boolean; + createImageBitmap(image: HTMLImageElement | SVGImageElement | HTMLVideoElement | HTMLCanvasElement | ImageBitmap | ImageData | Blob, options?: ImageBitmapOptions): Promise; + createImageBitmap(image: HTMLImageElement | SVGImageElement | HTMLVideoElement | HTMLCanvasElement | ImageBitmap | ImageData | Blob, sx: number, sy: number, sw: number, sh: number, options?: ImageBitmapOptions): Promise; departFocus(navigationReason: NavigationReason, origin: FocusNavigationOrigin): void; focus(): void; - getComputedStyle(elt: Element, pseudoElt?: string): CSSStyleDeclaration; - getMatchedCSSRules(elt: Element, pseudoElt?: string): CSSRuleList; + getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleDeclaration; + getMatchedCSSRules(elt: Element, pseudoElt?: string | null): CSSRuleList; getSelection(): Selection; matchMedia(mediaQuery: string): MediaQueryList; moveBy(x?: number, y?: number): void; @@ -13963,25 +15057,22 @@ interface Window extends EventTarget, WindowTimers, WindowSessionStorage, Window msWriteProfilerMark(profilerMarkName: string): void; open(url?: string, target?: string, features?: string, replace?: boolean): Window | null; postMessage(message: any, targetOrigin: string, transfer?: any[]): void; - print(): void; prompt(message?: string, _default?: string): string | null; releaseEvents(): void; requestAnimationFrame(callback: FrameRequestCallback): number; resizeBy(x?: number, y?: number): void; resizeTo(x?: number, y?: number): void; + scroll(options?: ScrollToOptions): void; scroll(x?: number, y?: number): void; + scrollBy(options?: ScrollToOptions): void; scrollBy(x?: number, y?: number): void; + scrollTo(options?: ScrollToOptions): void; scrollTo(x?: number, y?: number): void; stop(): void; webkitCancelAnimationFrame(handle: number): void; webkitConvertPointFromNodeToPage(node: Node, pt: WebKitPoint): WebKitPoint; webkitConvertPointFromPageToNode(node: Node, pt: WebKitPoint): WebKitPoint; webkitRequestAnimationFrame(callback: FrameRequestCallback): number; - createImageBitmap(image: HTMLImageElement | SVGImageElement | HTMLVideoElement | HTMLCanvasElement | ImageBitmap | ImageData | Blob, options?: ImageBitmapOptions): Promise; - createImageBitmap(image: HTMLImageElement | SVGImageElement | HTMLVideoElement | HTMLCanvasElement | ImageBitmap | ImageData | Blob, sx: number, sy: number, sw: number, sh: number, options?: ImageBitmapOptions): Promise; - scroll(options?: ScrollToOptions): void; - scrollTo(options?: ScrollToOptions): void; - scrollBy(options?: ScrollToOptions): void; addEventListener(type: K, listener: (this: Window, ev: WindowEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: Window, ev: WindowEventMap[K]) => any, options?: boolean | EventListenerOptions): void; @@ -14002,6 +15093,40 @@ interface WindowConsole { readonly console: Console; } +interface WindowEventHandlersEventMap { + "afterprint": Event; + "beforeprint": Event; + "beforeunload": BeforeUnloadEvent; + "hashchange": HashChangeEvent; + "message": MessageEvent; + "offline": Event; + "online": Event; + "pagehide": PageTransitionEvent; + "pageshow": PageTransitionEvent; + "popstate": PopStateEvent; + "storage": StorageEvent; + "unload": Event; +} + +interface WindowEventHandlers { + onafterprint: ((this: WindowEventHandlers, ev: Event) => any) | null; + onbeforeprint: ((this: WindowEventHandlers, ev: Event) => any) | null; + onbeforeunload: ((this: WindowEventHandlers, ev: BeforeUnloadEvent) => any) | null; + onhashchange: ((this: WindowEventHandlers, ev: HashChangeEvent) => any) | null; + onmessage: ((this: WindowEventHandlers, ev: MessageEvent) => any) | null; + onoffline: ((this: WindowEventHandlers, ev: Event) => any) | null; + ononline: ((this: WindowEventHandlers, ev: Event) => any) | null; + onpagehide: ((this: WindowEventHandlers, ev: PageTransitionEvent) => any) | null; + onpageshow: ((this: WindowEventHandlers, ev: PageTransitionEvent) => any) | null; + onpopstate: ((this: WindowEventHandlers, ev: PopStateEvent) => any) | null; + onstorage: ((this: WindowEventHandlers, ev: StorageEvent) => any) | null; + onunload: ((this: WindowEventHandlers, ev: Event) => any) | null; + addEventListener(type: K, listener: (this: WindowEventHandlers, ev: WindowEventHandlersEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; + addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; + removeEventListener(type: K, listener: (this: WindowEventHandlers, ev: WindowEventHandlersEventMap[K]) => any, options?: boolean | EventListenerOptions): void; + removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; +} + interface WindowLocalStorage { readonly localStorage: Storage; } @@ -14010,9 +15135,9 @@ interface WindowSessionStorage { readonly sessionStorage: Storage; } -interface WindowTimers extends Object, WindowTimersExtension { - clearInterval(handle: number): void; - clearTimeout(handle: number): void; +interface WindowTimers extends WindowTimersExtension { + clearInterval(handle?: number): void; + clearTimeout(handle?: number): void; setInterval(handler: (...args: any[]) => void, timeout: number): number; setInterval(handler: any, timeout?: any, ...args: any[]): number; setTimeout(handler: (...args: any[]) => void, timeout: number): number; @@ -14030,7 +15155,8 @@ interface WorkerEventMap extends AbstractWorkerEventMap { } interface Worker extends EventTarget, AbstractWorker { - onmessage: (this: Worker, ev: MessageEvent) => any; + onmessage: ((this: Worker, ev: MessageEvent) => any) | null; + /** @deprecated */ postMessage(message: any, transfer?: any[]): void; terminate(): void; addEventListener(type: K, listener: (this: Worker, ev: WorkerEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; @@ -14044,6 +15170,41 @@ declare var Worker: { new(stringUrl: string): Worker; }; +interface WritableStream { + readonly locked: boolean; + abort(reason?: any): Promise; + getWriter(): WritableStreamDefaultWriter; +} + +declare var WritableStream: { + prototype: WritableStream; + new(underlyingSink?: UnderlyingSink, strategy?: QueuingStrategy): WritableStream; +}; + +interface WritableStreamDefaultController { + error(error?: any): void; +} + +declare var WritableStreamDefaultController: { + prototype: WritableStreamDefaultController; + new(): WritableStreamDefaultController; +}; + +interface WritableStreamDefaultWriter { + readonly closed: Promise; + readonly desiredSize: number; + readonly ready: Promise; + abort(reason?: any): Promise; + close(): Promise; + releaseLock(): void; + write(chunk?: any): Promise; +} + +declare var WritableStreamDefaultWriter: { + prototype: WritableStreamDefaultWriter; + new(): WritableStreamDefaultWriter; +}; + interface XMLDocument extends Document { addEventListener(type: K, listener: (this: XMLDocument, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; @@ -14061,7 +15222,8 @@ interface XMLHttpRequestEventMap extends XMLHttpRequestEventTargetEventMap { } interface XMLHttpRequest extends EventTarget, XMLHttpRequestEventTarget { - onreadystatechange: (this: XMLHttpRequest, ev: Event) => any; + msCaching: string; + onreadystatechange: ((this: XMLHttpRequest, ev: Event) => any) | null; readonly readyState: number; readonly response: any; readonly responseText: string; @@ -14073,15 +15235,12 @@ interface XMLHttpRequest extends EventTarget, XMLHttpRequestEventTarget { timeout: number; readonly upload: XMLHttpRequestUpload; withCredentials: boolean; - msCaching?: string; abort(): void; getAllResponseHeaders(): string; getResponseHeader(header: string): string | null; msCachingEnabled(): boolean; - open(method: string, url: string, async?: boolean, user?: string, password?: string): void; + open(method: string, url: string, async?: boolean, user?: string | null, password?: string | null): void; overrideMimeType(mime: string): void; - send(data?: Document): void; - send(data?: string): void; send(data?: any): void; setRequestHeader(header: string, value: string): void; readonly DONE: number; @@ -14116,13 +15275,13 @@ interface XMLHttpRequestEventTargetEventMap { } interface XMLHttpRequestEventTarget { - onabort: (this: XMLHttpRequest, ev: Event) => any; - onerror: (this: XMLHttpRequest, ev: ErrorEvent) => any; - onload: (this: XMLHttpRequest, ev: Event) => any; - onloadend: (this: XMLHttpRequest, ev: ProgressEvent) => any; - onloadstart: (this: XMLHttpRequest, ev: Event) => any; - onprogress: (this: XMLHttpRequest, ev: ProgressEvent) => any; - ontimeout: (this: XMLHttpRequest, ev: ProgressEvent) => any; + onabort: ((this: XMLHttpRequest, ev: Event) => any) | null; + onerror: ((this: XMLHttpRequest, ev: ErrorEvent) => any) | null; + onload: ((this: XMLHttpRequest, ev: Event) => any) | null; + onloadend: ((this: XMLHttpRequest, ev: ProgressEvent) => any) | null; + onloadstart: ((this: XMLHttpRequest, ev: Event) => any) | null; + onprogress: ((this: XMLHttpRequest, ev: ProgressEvent) => any) | null; + ontimeout: ((this: XMLHttpRequest, ev: ProgressEvent) => any) | null; addEventListener(type: K, listener: (this: XMLHttpRequestEventTarget, ev: XMLHttpRequestEventTargetEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: XMLHttpRequestEventTarget, ev: XMLHttpRequestEventTargetEventMap[K]) => any, options?: boolean | EventListenerOptions): void; @@ -14244,771 +15403,100 @@ declare var webkitRTCPeerConnection: { new(configuration: RTCConfiguration): webkitRTCPeerConnection; }; -interface BroadcastChannel extends EventTarget { - readonly name: string; - onmessage: (ev: MessageEvent) => any; - onmessageerror: (ev: MessageEvent) => any; - addEventListener(type: K, listener: (this: BroadcastChannel, ev: BroadcastChannelEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; - addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; - close(): void; - postMessage(message: any): void; - removeEventListener(type: K, listener: (this: BroadcastChannel, ev: BroadcastChannelEventMap[K]) => any, options?: boolean | EventListenerOptions): void; - removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; -} - -declare var BroadcastChannel: { - prototype: BroadcastChannel; - new(name: string): BroadcastChannel; -}; - -interface BroadcastChannelEventMap { - message: MessageEvent; - messageerror: MessageEvent; -} - -interface ErrorEventInit { - conlno?: number; - error?: any; - filename?: string; - lineno?: number; - message?: string; -} - -interface StorageEventInit extends EventInit { - key?: string; - newValue?: string; - oldValue?: string; - storageArea?: Storage; - url: string; -} - -interface Canvas2DContextAttributes { - [attribute: string]: boolean | string | undefined; - alpha?: boolean; - storage?: boolean; - willReadFrequently?: boolean; -} - -interface ImageBitmapOptions { - colorSpaceConversion?: "none" | "default"; - imageOrientation?: "none" | "flipY"; - premultiplyAlpha?: "none" | "premultiply" | "default"; - resizeHeight?: number; - resizeQuality?: "pixelated" | "low" | "medium" | "high"; - resizeWidth?: number; -} - -interface ImageBitmap { - readonly height: number; - readonly width: number; - close(): void; -} - -interface URLSearchParams { - /** - * Appends a specified key/value pair as a new search parameter. - */ - append(name: string, value: string): void; - /** - * Deletes the given search parameter, and its associated value, from the list of all search parameters. - */ - delete(name: string): void; - /** - * Returns the first value associated to the given search parameter. - */ - get(name: string): string | null; - /** - * Returns all the values association with a given search parameter. - */ - getAll(name: string): string[]; - /** - * Returns a Boolean indicating if such a search parameter exists. - */ - has(name: string): boolean; - /** - * Sets the value associated to a given search parameter to the given value. If there were several values, delete the others. - */ - set(name: string, value: string): void; -} - -declare var URLSearchParams: { - prototype: URLSearchParams; - /** - * Constructor returning a URLSearchParams object. - */ - new (init?: string | URLSearchParams): URLSearchParams; -}; - -interface NodeListOf extends NodeList { - length: number; - item(index: number): TNode; - [index: number]: TNode; -} - -interface HTMLCollectionOf extends HTMLCollection { - item(index: number): T; - namedItem(name: string): T; - [index: number]: T; -} - -interface BlobPropertyBag { - endings?: string; - type?: string; -} - -interface FilePropertyBag extends BlobPropertyBag { - lastModified?: number; -} - -interface EventListenerObject { - handleEvent(evt: Event): void; -} - -interface ProgressEventInit extends EventInit { - lengthComputable?: boolean; - loaded?: number; - total?: number; -} - -interface ScrollOptions { - behavior?: ScrollBehavior; -} - -interface ScrollToOptions extends ScrollOptions { - left?: number; - top?: number; -} - -interface ScrollIntoViewOptions extends ScrollOptions { - block?: ScrollLogicalPosition; - inline?: ScrollLogicalPosition; -} - -interface ClipboardEventInit extends EventInit { - data?: string; - dataType?: string; -} - -interface IDBArrayKey extends Array { -} - -interface RsaKeyGenParams extends Algorithm { - modulusLength: number; - publicExponent: Uint8Array; -} - -interface RsaHashedKeyGenParams extends RsaKeyGenParams { - hash: AlgorithmIdentifier; -} - -interface RsaKeyAlgorithm extends KeyAlgorithm { - modulusLength: number; - publicExponent: Uint8Array; -} - -interface RsaHashedKeyAlgorithm extends RsaKeyAlgorithm { - hash: AlgorithmIdentifier; -} - -interface RsaHashedImportParams { - hash: AlgorithmIdentifier; -} - -interface RsaPssParams { - saltLength: number; -} - -interface RsaOaepParams extends Algorithm { - label?: BufferSource; -} - -interface EcdsaParams extends Algorithm { - hash: AlgorithmIdentifier; -} - -interface EcKeyGenParams extends Algorithm { - namedCurve: string; -} - -interface EcKeyAlgorithm extends KeyAlgorithm { - typedCurve: string; -} - -interface EcKeyImportParams extends Algorithm { - namedCurve: string; -} - -interface EcdhKeyDeriveParams extends Algorithm { - public: CryptoKey; -} - -interface AesCtrParams extends Algorithm { - counter: BufferSource; - length: number; -} - -interface AesKeyAlgorithm extends KeyAlgorithm { - length: number; -} - -interface AesKeyGenParams extends Algorithm { - length: number; -} - -interface AesDerivedKeyParams extends Algorithm { - length: number; -} - -interface AesCbcParams extends Algorithm { - iv: BufferSource; -} - -interface AesCmacParams extends Algorithm { - length: number; -} - -interface AesGcmParams extends Algorithm { - additionalData?: BufferSource; - iv: BufferSource; - tagLength?: number; -} - -interface AesCfbParams extends Algorithm { - iv: BufferSource; -} - -interface HmacImportParams extends Algorithm { - hash?: AlgorithmIdentifier; - length?: number; -} - -interface HmacKeyAlgorithm extends KeyAlgorithm { - hash: AlgorithmIdentifier; - length: number; -} - -interface HmacKeyGenParams extends Algorithm { - hash: AlgorithmIdentifier; - length?: number; -} - -interface DhKeyGenParams extends Algorithm { - generator: Uint8Array; - prime: Uint8Array; -} - -interface DhKeyAlgorithm extends KeyAlgorithm { - generator: Uint8Array; - prime: Uint8Array; -} - -interface DhKeyDeriveParams extends Algorithm { - public: CryptoKey; -} - -interface DhImportKeyParams extends Algorithm { - generator: Uint8Array; - prime: Uint8Array; -} - -interface ConcatParams extends Algorithm { - algorithmId: Uint8Array; - hash?: AlgorithmIdentifier; - partyUInfo: Uint8Array; - partyVInfo: Uint8Array; - privateInfo?: Uint8Array; - publicInfo?: Uint8Array; -} - -interface HkdfCtrParams extends Algorithm { - context: BufferSource; - hash: AlgorithmIdentifier; - label: BufferSource; -} - -interface Pbkdf2Params extends Algorithm { - hash: AlgorithmIdentifier; - iterations: number; - salt: BufferSource; -} - -interface RsaOtherPrimesInfo { - d: string; - r: string; - t: string; -} - -interface JsonWebKey { - alg?: string; - crv?: string; - d?: string; - dp?: string; - dq?: string; - e?: string; - ext?: boolean; - k?: string; - key_ops?: string[]; - kid?: string; - kty: string; - n?: string; - oth?: RsaOtherPrimesInfo[]; - p?: string; - q?: string; - qi?: string; - use?: string; - x5c?: string; - x5t?: string; - x5u?: string; - x?: string; - y?: string; -} - -interface ParentNode { - readonly childElementCount: number; - readonly children: HTMLCollection; - readonly firstElementChild: Element | null; - readonly lastElementChild: Element | null; -} - -interface DocumentOrShadowRoot { - readonly activeElement: Element | null; - readonly styleSheets: StyleSheetList; - elementFromPoint(x: number, y: number): Element | null; - elementsFromPoint(x: number, y: number): Element[]; - getSelection(): Selection | null; -} - -interface ShadowRoot extends DocumentOrShadowRoot, DocumentFragment { - readonly host: Element; - innerHTML: string; -} - -interface ShadowRootInit { - delegatesFocus?: boolean; - mode: "open" | "closed"; -} - -interface HTMLSlotElement extends HTMLElement { - name: string; - assignedNodes(options?: AssignedNodesOptions): Node[]; -} - -interface AssignedNodesOptions { - flatten?: boolean; -} - -interface ElementDefinitionOptions { - extends: string; -} - -interface ElementCreationOptions { - is?: string; -} - -interface CustomElementRegistry { - define(name: string, constructor: Function, options?: ElementDefinitionOptions): void; - get(name: string): any; - whenDefined(name: string): PromiseLike; -} - -interface PromiseRejectionEvent extends Event { - readonly promise: PromiseLike; - readonly reason: any; -} - -interface PromiseRejectionEventInit extends EventInit { - promise: PromiseLike; - reason?: any; -} - -interface EventListenerOptions { - capture?: boolean; -} - -interface AddEventListenerOptions extends EventListenerOptions { - once?: boolean; - passive?: boolean; -} - -interface TouchEventInit extends EventModifierInit { - changedTouches?: Touch[]; - targetTouches?: Touch[]; - touches?: Touch[]; -} - -interface HTMLDialogElement extends HTMLElement { - open: boolean; - returnValue: string; - close(returnValue?: string): void; - show(): void; - showModal(): void; -} - -declare var HTMLDialogElement: { - prototype: HTMLDialogElement; - new(): HTMLDialogElement; -}; - -interface HTMLMainElement extends HTMLElement { -} - -declare var HTMLMainElement: { - prototype: HTMLMainElement; - new(): HTMLMainElement; -}; - -interface HTMLDetailsElement extends HTMLElement { - open: boolean; -} - -declare var HTMLDetailsElement: { - prototype: HTMLDetailsElement; - new(): HTMLDetailsElement; -}; - -interface HTMLSummaryElement extends HTMLElement { -} - -declare var HTMLSummaryElement: { - prototype: HTMLSummaryElement; - new(): HTMLSummaryElement; -}; - -interface DOMRectReadOnly { - readonly bottom: number; - readonly height: number; - readonly left: number; - readonly right: number; - readonly top: number; - readonly width: number; - readonly x: number; - readonly y: number; -} - -declare var DOMRectReadOnly: { - prototype: DOMRectReadOnly; - new (x?: number, y?: number, width?: number, height?: number): DOMRectReadOnly; - fromRect(rectangle?: DOMRectInit): DOMRectReadOnly; -}; - -interface EXT_blend_minmax { - readonly MAX_EXT: number; - readonly MIN_EXT: number; -} - -interface EXT_frag_depth { -} - -interface EXT_shader_texture_lod { -} - -interface EXT_sRGB { - readonly FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT: number; - readonly SRGB8_ALPHA8_EXT: number; - readonly SRGB_ALPHA_EXT: number; - readonly SRGB_EXT: number; -} - -interface DOMRect extends DOMRectReadOnly { - height: number; - width: number; - x: number; - y: number; -} - -declare var DOMRect: { - prototype: DOMRect; - new (x?: number, y?: number, width?: number, height?: number): DOMRect; - fromRect(rectangle?: DOMRectInit): DOMRect; -}; - -interface DOMRectList { - readonly length: number; - item(index: number): DOMRect | null; - [index: number]: DOMRect; -} - -interface OES_vertex_array_object { - readonly VERTEX_ARRAY_BINDING_OES: number; - bindVertexArrayOES(arrayObject: WebGLVertexArrayObjectOES): void; - createVertexArrayOES(): WebGLVertexArrayObjectOES; - deleteVertexArrayOES(arrayObject: WebGLVertexArrayObjectOES): void; - isVertexArrayOES(value: any): value is WebGLVertexArrayObjectOES; -} - -interface WebGLVertexArrayObjectOES { -} - -interface WEBGL_color_buffer_float { - readonly FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT: number; - readonly RGB32F_EXT: number; - readonly RGBA32F_EXT: number; - readonly UNSIGNED_NORMALIZED_EXT: number; -} - -interface WEBGL_compressed_texture_astc { - readonly COMPRESSED_RGBA_ASTC_10x10_KHR: number; - readonly COMPRESSED_RGBA_ASTC_10x5_KHR: number; - readonly COMPRESSED_RGBA_ASTC_10x6_KHR: number; - readonly COMPRESSED_RGBA_ASTC_10x8_KHR: number; - readonly COMPRESSED_RGBA_ASTC_12x10_KHR: number; - readonly COMPRESSED_RGBA_ASTC_12x12_KHR: number; - readonly COMPRESSED_RGBA_ASTC_4x4_KHR: number; - readonly COMPRESSED_RGBA_ASTC_5x4_KHR: number; - readonly COMPRESSED_RGBA_ASTC_5x5_KHR: number; - readonly COMPRESSED_RGBA_ASTC_6x5_KHR: number; - readonly COMPRESSED_RGBA_ASTC_6x6_KHR: number; - readonly COMPRESSED_RGBA_ASTC_8x5_KHR: number; - readonly COMPRESSED_RGBA_ASTC_8x6_KHR: number; - readonly COMPRESSED_RGBA_ASTC_8x8_KHR: number; - readonly COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR: number; - readonly COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR: number; - readonly COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR: number; - readonly COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR: number; - readonly COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR: number; - readonly COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR: number; - readonly COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR: number; - readonly COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR: number; - readonly COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR: number; - readonly COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR: number; - readonly COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR: number; - readonly COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR: number; - readonly COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR: number; - readonly COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR: number; - getSupportedProfiles(): string[]; -} - -interface WEBGL_compressed_texture_s3tc_srgb { - readonly COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT: number; - readonly COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT: number; - readonly COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT: number; - readonly COMPRESSED_SRGB_S3TC_DXT1_EXT: number; -} - -interface WEBGL_debug_shaders { - getTranslatedShaderSource(shader: WebGLShader): string; -} - -interface WEBGL_draw_buffers { - readonly COLOR_ATTACHMENT0_WEBGL: number; - readonly COLOR_ATTACHMENT10_WEBGL: number; - readonly COLOR_ATTACHMENT11_WEBGL: number; - readonly COLOR_ATTACHMENT12_WEBGL: number; - readonly COLOR_ATTACHMENT13_WEBGL: number; - readonly COLOR_ATTACHMENT14_WEBGL: number; - readonly COLOR_ATTACHMENT15_WEBGL: number; - readonly COLOR_ATTACHMENT1_WEBGL: number; - readonly COLOR_ATTACHMENT2_WEBGL: number; - readonly COLOR_ATTACHMENT3_WEBGL: number; - readonly COLOR_ATTACHMENT4_WEBGL: number; - readonly COLOR_ATTACHMENT5_WEBGL: number; - readonly COLOR_ATTACHMENT6_WEBGL: number; - readonly COLOR_ATTACHMENT7_WEBGL: number; - readonly COLOR_ATTACHMENT8_WEBGL: number; - readonly COLOR_ATTACHMENT9_WEBGL: number; - readonly DRAW_BUFFER0_WEBGL: number; - readonly DRAW_BUFFER10_WEBGL: number; - readonly DRAW_BUFFER11_WEBGL: number; - readonly DRAW_BUFFER12_WEBGL: number; - readonly DRAW_BUFFER13_WEBGL: number; - readonly DRAW_BUFFER14_WEBGL: number; - readonly DRAW_BUFFER15_WEBGL: number; - readonly DRAW_BUFFER1_WEBGL: number; - readonly DRAW_BUFFER2_WEBGL: number; - readonly DRAW_BUFFER3_WEBGL: number; - readonly DRAW_BUFFER4_WEBGL: number; - readonly DRAW_BUFFER5_WEBGL: number; - readonly DRAW_BUFFER6_WEBGL: number; - readonly DRAW_BUFFER7_WEBGL: number; - readonly DRAW_BUFFER8_WEBGL: number; - readonly DRAW_BUFFER9_WEBGL: number; - readonly MAX_COLOR_ATTACHMENTS_WEBGL: number; - readonly MAX_DRAW_BUFFERS_WEBGL: number; - drawBuffersWEBGL(buffers: number[]): void; -} - -interface WEBGL_lose_context { - loseContext(): void; - restoreContext(): void; -} - -interface AbortController { - readonly signal: AbortSignal; - abort(): void; -} - -declare var AbortController: { - prototype: AbortController; - new(): AbortController; -}; - -interface AbortSignal extends EventTarget { - readonly aborted: boolean; - onabort: (ev: Event) => any; -} - -interface EventSource extends EventTarget { - readonly CLOSED: number; - readonly CONNECTING: number; - readonly OPEN: number; - onerror: (evt: MessageEvent) => any; - onmessage: (evt: MessageEvent) => any; - onopen: (evt: MessageEvent) => any; - readonly readyState: number; - readonly url: string; - readonly withCredentials: boolean; - close(): void; -} - -declare var EventSource: { - prototype: EventSource; - new(url: string, eventSourceInitDict?: EventSourceInit): EventSource; -}; - -interface EventSourceInit { - readonly withCredentials: boolean; -} - -interface AnimationKeyFrame { - easing?: string | string[]; - offset?: number | null | (number | null)[]; - [index: string]: string | number | number[] | string[] | null | (number | null)[] | undefined; -} - -interface AnimationOptions { - delay?: number; - direction?: "normal" | "reverse" | "alternate" | "alternate-reverse"; - duration?: number; - easing?: string; - endDelay?: number; - fill?: "none" | "forwards" | "backwards" | "both"| "auto"; - id?: string; - iterationStart?: number; - iterations?: number; -} - -interface AnimationTimeline { - readonly currentTime: number | null; -} - -interface ComputedTimingProperties { - activeDuration: number; - currentIteration: number | null; - endTime: number; - localTime: number | null; - progress: number | null; -} - -interface AnimationEffectReadOnly { - readonly timing: number; - getComputedTiming(): ComputedTimingProperties; -} - -interface AnimationPlaybackEventInit extends EventInit { - currentTime?: number | null; - timelineTime?: number | null; -} - -interface AnimationPlaybackEvent extends Event { - readonly currentTime: number | null; - readonly timelineTime: number | null; -} - -declare var AnimationPlaybackEvent: { - prototype: AnimationPlaybackEvent; - new(type: string, eventInitDict?: AnimationPlaybackEventInit): AnimationPlaybackEvent; -}; - -interface Animation { - currentTime: number | null; - effect: AnimationEffectReadOnly; - readonly finished: Promise; - id: string; - readonly pending: boolean; - readonly playState: "idle" | "running" | "paused" | "finished"; - playbackRate: number; - readonly ready: Promise; - startTime: number; - timeline: AnimationTimeline; - cancel(): void; - finish(): void; - oncancel: (this: Animation, ev: AnimationPlaybackEvent) => any; - onfinish: (this: Animation, ev: AnimationPlaybackEvent) => any; - pause(): void; - play(): void; - reverse(): void; -} - -declare var Animation: { - prototype: Animation; - new(effect?: AnimationEffectReadOnly, timeline?: AnimationTimeline): Animation; -}; - declare type EventListenerOrEventListenerObject = EventListener | EventListenerObject; interface DecodeErrorCallback { (error: DOMException): void; } + interface DecodeSuccessCallback { (decodedData: AudioBuffer): void; } + interface ErrorEventHandler { - (message: string, filename?: string, lineno?: number, colno?: number, error?: Error): void; + (event: Event | string, source?: string, fileno?: number, columnNumber?: number, error?: Error): void; } + +interface EventHandlerNonNull { + (event: Event): any; +} + interface ForEachCallback { - (keyId: any, status: MediaKeyStatus): void; + (keyId: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | null, status: MediaKeyStatus): void; } + interface FrameRequestCallback { (time: number): void; } + interface FunctionStringCallback { (data: string): void; } + interface IntersectionObserverCallback { (entries: IntersectionObserverEntry[], observer: IntersectionObserver): void; } -interface MSExecAtPriorityFunctionCallback { - (...args: any[]): any; -} + interface MSLaunchUriCallback { (): void; } -interface MSUnsafeFunctionCallback { - (): any; -} + interface MediaQueryListListener { (mql: MediaQueryList): void; } + interface MutationCallback { (mutations: MutationRecord[], observer: MutationObserver): void; } + interface NavigatorUserMediaErrorCallback { (error: MediaStreamError): void; } + interface NavigatorUserMediaSuccessCallback { (stream: MediaStream): void; } + interface NotificationPermissionCallback { (permission: NotificationPermission): void; } + interface PositionCallback { (position: Position): void; } + interface PositionErrorCallback { (error: PositionError): void; } + interface RTCPeerConnectionErrorCallback { (error: DOMError): void; } + interface RTCSessionDescriptionCallback { (sdp: RTCSessionDescription): void; } + interface RTCStatsCallback { (report: RTCStatsReport): void; } + interface VoidFunction { (): void; } + +interface WritableStreamChunkCallback { + (chunk: any, controller: WritableStreamDefaultController): void; +} + +interface WritableStreamDefaultControllerCallback { + (controller: WritableStreamDefaultController): void; +} + +interface WritableStreamErrorCallback { + (reason: string): void; +} + interface HTMLElementTagNameMap { "a": HTMLAnchorElement; "abbr": HTMLElement; @@ -15135,7 +15623,6 @@ interface HTMLElementTagNameMap { "var": HTMLElement; "video": HTMLVideoElement; "wbr": HTMLElement; - "x-ms-webview": MSHTMLWebViewElement; "xmp": HTMLPreElement; } @@ -15198,14 +15685,24 @@ interface SVGElementTagNameMap { /** @deprecated Directly use HTMLElementTagNameMap or SVGElementTagNameMap as appropriate, instead. */ interface ElementTagNameMap extends HTMLElementTagNameMap, SVGElementTagNameMap { } -declare var Audio: { new(src?: string): HTMLAudioElement; }; -declare var Image: { new(width?: number, height?: number): HTMLImageElement; }; -declare var Option: { new(text?: string, value?: string, defaultSelected?: boolean, selected?: boolean): HTMLOptionElement; }; +declare var Audio: { + new(src?: string): HTMLAudioElement; +}; +declare var Image: { + new(width?: number, height?: number): HTMLImageElement; +}; +declare var Option: { + new(text?: string, value?: string, defaultSelected?: boolean, selected?: boolean): HTMLOptionElement; +}; +declare var Blob: typeof Blob; +declare var URL: typeof URL; +declare var URLSearchParams: typeof URLSearchParams; declare var applicationCache: ApplicationCache; declare var caches: CacheStorage; declare var clientInformation: Navigator; declare var closed: boolean; declare var crypto: Crypto; +declare var customElements: CustomElementRegistry; declare var defaultStatus: string; declare var devicePixelRatio: number; declare var doNotTrack: string; @@ -15227,97 +15724,104 @@ declare var msCredentials: MSCredentials; declare const name: never; declare var navigator: Navigator; declare var offscreenBuffering: string | boolean; -declare var onabort: (this: Window, ev: UIEvent) => any; -declare var onafterprint: (this: Window, ev: Event) => any; -declare var onbeforeprint: (this: Window, ev: Event) => any; -declare var onbeforeunload: (this: Window, ev: BeforeUnloadEvent) => any; -declare var onblur: (this: Window, ev: FocusEvent) => any; -declare var oncanplay: (this: Window, ev: Event) => any; -declare var oncanplaythrough: (this: Window, ev: Event) => any; -declare var onchange: (this: Window, ev: Event) => any; -declare var onclick: (this: Window, ev: MouseEvent) => any; -declare var oncompassneedscalibration: (this: Window, ev: Event) => any; -declare var oncontextmenu: (this: Window, ev: PointerEvent) => any; -declare var ondblclick: (this: Window, ev: MouseEvent) => any; -declare var ondevicelight: (this: Window, ev: DeviceLightEvent) => any; -declare var ondevicemotion: (this: Window, ev: DeviceMotionEvent) => any; -declare var ondeviceorientation: (this: Window, ev: DeviceOrientationEvent) => any; -declare var ondrag: (this: Window, ev: DragEvent) => any; -declare var ondragend: (this: Window, ev: DragEvent) => any; -declare var ondragenter: (this: Window, ev: DragEvent) => any; -declare var ondragleave: (this: Window, ev: DragEvent) => any; -declare var ondragover: (this: Window, ev: DragEvent) => any; -declare var ondragstart: (this: Window, ev: DragEvent) => any; -declare var ondrop: (this: Window, ev: DragEvent) => any; -declare var ondurationchange: (this: Window, ev: Event) => any; -declare var onemptied: (this: Window, ev: Event) => any; -declare var onended: (this: Window, ev: MediaStreamErrorEvent) => any; +declare var onabort: ((this: Window, ev: UIEvent) => any) | null; +declare var onbeforeunload: ((this: Window, ev: BeforeUnloadEvent) => any) | null; +declare var onblur: ((this: Window, ev: FocusEvent) => any) | null; +declare var oncanplay: ((this: Window, ev: Event) => any) | null; +declare var oncanplaythrough: ((this: Window, ev: Event) => any) | null; +declare var onchange: ((this: Window, ev: Event) => any) | null; +declare var onclick: ((this: Window, ev: MouseEvent) => any) | null; +declare var oncompassneedscalibration: ((this: Window, ev: Event) => any) | null; +declare var oncontextmenu: ((this: Window, ev: PointerEvent) => any) | null; +declare var ondblclick: ((this: Window, ev: MouseEvent) => any) | null; +declare var ondevicelight: ((this: Window, ev: DeviceLightEvent) => any) | null; +declare var ondevicemotion: ((this: Window, ev: DeviceMotionEvent) => any) | null; +declare var ondeviceorientation: ((this: Window, ev: DeviceOrientationEvent) => any) | null; +declare var ondrag: ((this: Window, ev: DragEvent) => any) | null; +declare var ondragend: ((this: Window, ev: DragEvent) => any) | null; +declare var ondragenter: ((this: Window, ev: DragEvent) => any) | null; +declare var ondragleave: ((this: Window, ev: DragEvent) => any) | null; +declare var ondragover: ((this: Window, ev: DragEvent) => any) | null; +declare var ondragstart: ((this: Window, ev: DragEvent) => any) | null; +declare var ondrop: ((this: Window, ev: DragEvent) => any) | null; +declare var ondurationchange: ((this: Window, ev: Event) => any) | null; +declare var onemptied: ((this: Window, ev: Event) => any) | null; +declare var onended: ((this: Window, ev: Event) => any) | null; declare var onerror: ErrorEventHandler; -declare var onfocus: (this: Window, ev: FocusEvent) => any; -declare var onhashchange: (this: Window, ev: HashChangeEvent) => any; -declare var oninput: (this: Window, ev: Event) => any; -declare var oninvalid: (this: Window, ev: Event) => any; -declare var onkeydown: (this: Window, ev: KeyboardEvent) => any; -declare var onkeypress: (this: Window, ev: KeyboardEvent) => any; -declare var onkeyup: (this: Window, ev: KeyboardEvent) => any; -declare var onload: (this: Window, ev: Event) => any; -declare var onloadeddata: (this: Window, ev: Event) => any; -declare var onloadedmetadata: (this: Window, ev: Event) => any; -declare var onloadstart: (this: Window, ev: Event) => any; -declare var onmessage: (this: Window, ev: MessageEvent) => any; -declare var onmousedown: (this: Window, ev: MouseEvent) => any; -declare var onmouseenter: (this: Window, ev: MouseEvent) => any; -declare var onmouseleave: (this: Window, ev: MouseEvent) => any; -declare var onmousemove: (this: Window, ev: MouseEvent) => any; -declare var onmouseout: (this: Window, ev: MouseEvent) => any; -declare var onmouseover: (this: Window, ev: MouseEvent) => any; -declare var onmouseup: (this: Window, ev: MouseEvent) => any; -declare var onmousewheel: (this: Window, ev: WheelEvent) => any; -declare var onmsgesturechange: (this: Window, ev: MSGestureEvent) => any; -declare var onmsgesturedoubletap: (this: Window, ev: MSGestureEvent) => any; -declare var onmsgestureend: (this: Window, ev: MSGestureEvent) => any; -declare var onmsgesturehold: (this: Window, ev: MSGestureEvent) => any; -declare var onmsgesturestart: (this: Window, ev: MSGestureEvent) => any; -declare var onmsgesturetap: (this: Window, ev: MSGestureEvent) => any; -declare var onmsinertiastart: (this: Window, ev: MSGestureEvent) => any; -declare var onmspointercancel: (this: Window, ev: MSPointerEvent) => any; -declare var onmspointerdown: (this: Window, ev: MSPointerEvent) => any; -declare var onmspointerenter: (this: Window, ev: MSPointerEvent) => any; -declare var onmspointerleave: (this: Window, ev: MSPointerEvent) => any; -declare var onmspointermove: (this: Window, ev: MSPointerEvent) => any; -declare var onmspointerout: (this: Window, ev: MSPointerEvent) => any; -declare var onmspointerover: (this: Window, ev: MSPointerEvent) => any; -declare var onmspointerup: (this: Window, ev: MSPointerEvent) => any; -declare var onoffline: (this: Window, ev: Event) => any; -declare var ononline: (this: Window, ev: Event) => any; -declare var onorientationchange: (this: Window, ev: Event) => any; -declare var onpagehide: (this: Window, ev: PageTransitionEvent) => any; -declare var onpageshow: (this: Window, ev: PageTransitionEvent) => any; -declare var onpause: (this: Window, ev: Event) => any; -declare var onplay: (this: Window, ev: Event) => any; -declare var onplaying: (this: Window, ev: Event) => any; -declare var onpopstate: (this: Window, ev: PopStateEvent) => any; -declare var onprogress: (this: Window, ev: ProgressEvent) => any; -declare var onratechange: (this: Window, ev: Event) => any; -declare var onreadystatechange: (this: Window, ev: ProgressEvent) => any; -declare var onreset: (this: Window, ev: Event) => any; -declare var onresize: (this: Window, ev: UIEvent) => any; -declare var onscroll: (this: Window, ev: UIEvent) => any; -declare var onseeked: (this: Window, ev: Event) => any; -declare var onseeking: (this: Window, ev: Event) => any; -declare var onselect: (this: Window, ev: UIEvent) => any; -declare var onstalled: (this: Window, ev: Event) => any; -declare var onstorage: (this: Window, ev: StorageEvent) => any; -declare var onsubmit: (this: Window, ev: Event) => any; -declare var onsuspend: (this: Window, ev: Event) => any; -declare var ontimeupdate: (this: Window, ev: Event) => any; +declare var onfocus: ((this: Window, ev: FocusEvent) => any) | null; +declare var onhashchange: ((this: Window, ev: HashChangeEvent) => any) | null; +declare var oninput: ((this: Window, ev: Event) => any) | null; +declare var oninvalid: ((this: Window, ev: Event) => any) | null; +declare var onkeydown: ((this: Window, ev: KeyboardEvent) => any) | null; +declare var onkeypress: ((this: Window, ev: KeyboardEvent) => any) | null; +declare var onkeyup: ((this: Window, ev: KeyboardEvent) => any) | null; +declare var onload: ((this: Window, ev: Event) => any) | null; +declare var onloadeddata: ((this: Window, ev: Event) => any) | null; +declare var onloadedmetadata: ((this: Window, ev: Event) => any) | null; +declare var onloadstart: ((this: Window, ev: Event) => any) | null; +declare var onmessage: ((this: Window, ev: MessageEvent) => any) | null; +declare var onmousedown: ((this: Window, ev: MouseEvent) => any) | null; +declare var onmouseenter: ((this: Window, ev: MouseEvent) => any) | null; +declare var onmouseleave: ((this: Window, ev: MouseEvent) => any) | null; +declare var onmousemove: ((this: Window, ev: MouseEvent) => any) | null; +declare var onmouseout: ((this: Window, ev: MouseEvent) => any) | null; +declare var onmouseover: ((this: Window, ev: MouseEvent) => any) | null; +declare var onmouseup: ((this: Window, ev: MouseEvent) => any) | null; +declare var onmousewheel: ((this: Window, ev: WheelEvent) => any) | null; +declare var onmsgesturechange: ((this: Window, ev: Event) => any) | null; +declare var onmsgesturedoubletap: ((this: Window, ev: Event) => any) | null; +declare var onmsgestureend: ((this: Window, ev: Event) => any) | null; +declare var onmsgesturehold: ((this: Window, ev: Event) => any) | null; +declare var onmsgesturestart: ((this: Window, ev: Event) => any) | null; +declare var onmsgesturetap: ((this: Window, ev: Event) => any) | null; +declare var onmsinertiastart: ((this: Window, ev: Event) => any) | null; +declare var onmspointercancel: ((this: Window, ev: Event) => any) | null; +declare var onmspointerdown: ((this: Window, ev: Event) => any) | null; +declare var onmspointerenter: ((this: Window, ev: Event) => any) | null; +declare var onmspointerleave: ((this: Window, ev: Event) => any) | null; +declare var onmspointermove: ((this: Window, ev: Event) => any) | null; +declare var onmspointerout: ((this: Window, ev: Event) => any) | null; +declare var onmspointerover: ((this: Window, ev: Event) => any) | null; +declare var onmspointerup: ((this: Window, ev: Event) => any) | null; +declare var onoffline: ((this: Window, ev: Event) => any) | null; +declare var ononline: ((this: Window, ev: Event) => any) | null; +declare var onorientationchange: ((this: Window, ev: Event) => any) | null; +declare var onpagehide: ((this: Window, ev: PageTransitionEvent) => any) | null; +declare var onpageshow: ((this: Window, ev: PageTransitionEvent) => any) | null; +declare var onpause: ((this: Window, ev: Event) => any) | null; +declare var onplay: ((this: Window, ev: Event) => any) | null; +declare var onplaying: ((this: Window, ev: Event) => any) | null; +declare var onpopstate: ((this: Window, ev: PopStateEvent) => any) | null; +declare var onprogress: ((this: Window, ev: ProgressEvent) => any) | null; +declare var onratechange: ((this: Window, ev: Event) => any) | null; +declare var onreadystatechange: ((this: Window, ev: ProgressEvent) => any) | null; +declare var onreset: ((this: Window, ev: Event) => any) | null; +declare var onresize: ((this: Window, ev: UIEvent) => any) | null; +declare var onscroll: ((this: Window, ev: UIEvent) => any) | null; +declare var onseeked: ((this: Window, ev: Event) => any) | null; +declare var onseeking: ((this: Window, ev: Event) => any) | null; +declare var onselect: ((this: Window, ev: UIEvent) => any) | null; +declare var onstalled: ((this: Window, ev: Event) => any) | null; +declare var onstorage: ((this: Window, ev: StorageEvent) => any) | null; +declare var onsubmit: ((this: Window, ev: Event) => any) | null; +declare var onsuspend: ((this: Window, ev: Event) => any) | null; +declare var ontimeupdate: ((this: Window, ev: Event) => any) | null; declare var ontouchcancel: (ev: TouchEvent) => any; declare var ontouchend: (ev: TouchEvent) => any; declare var ontouchmove: (ev: TouchEvent) => any; declare var ontouchstart: (ev: TouchEvent) => any; -declare var onunload: (this: Window, ev: Event) => any; -declare var onvolumechange: (this: Window, ev: Event) => any; -declare var onwaiting: (this: Window, ev: Event) => any; +declare var onunload: ((this: Window, ev: Event) => any) | null; +declare var onvolumechange: ((this: Window, ev: Event) => any) | null; +declare var onvrdisplayactivate: ((this: Window, ev: Event) => any) | null; +declare var onvrdisplayblur: ((this: Window, ev: Event) => any) | null; +declare var onvrdisplayconnect: ((this: Window, ev: Event) => any) | null; +declare var onvrdisplaydeactivate: ((this: Window, ev: Event) => any) | null; +declare var onvrdisplaydisconnect: ((this: Window, ev: Event) => any) | null; +declare var onvrdisplayfocus: ((this: Window, ev: Event) => any) | null; +declare var onvrdisplaypointerrestricted: ((this: Window, ev: Event) => any) | null; +declare var onvrdisplaypointerunrestricted: ((this: Window, ev: Event) => any) | null; +declare var onvrdisplaypresentchange: ((this: Window, ev: Event) => any) | null; +declare var onwaiting: ((this: Window, ev: Event) => any) | null; declare var opener: any; declare var orientation: string | number; declare var outerHeight: number; @@ -15343,17 +15847,18 @@ declare var styleMedia: StyleMedia; declare var toolbar: BarProp; declare var top: Window; declare var window: Window; -declare var customElements: CustomElementRegistry; declare function alert(message?: any): void; declare function blur(): void; declare function cancelAnimationFrame(handle: number): void; declare function captureEvents(): void; declare function close(): void; declare function confirm(message?: string): boolean; +declare function createImageBitmap(image: HTMLImageElement | SVGImageElement | HTMLVideoElement | HTMLCanvasElement | ImageBitmap | ImageData | Blob, options?: ImageBitmapOptions): Promise; +declare function createImageBitmap(image: HTMLImageElement | SVGImageElement | HTMLVideoElement | HTMLCanvasElement | ImageBitmap | ImageData | Blob, sx: number, sy: number, sw: number, sh: number, options?: ImageBitmapOptions): Promise; declare function departFocus(navigationReason: NavigationReason, origin: FocusNavigationOrigin): void; declare function focus(): void; -declare function getComputedStyle(elt: Element, pseudoElt?: string): CSSStyleDeclaration; -declare function getMatchedCSSRules(elt: Element, pseudoElt?: string): CSSRuleList; +declare function getComputedStyle(elt: Element, pseudoElt?: string | null): CSSStyleDeclaration; +declare function getMatchedCSSRules(elt: Element, pseudoElt?: string | null): CSSRuleList; declare function getSelection(): Selection; declare function matchMedia(mediaQuery: string): MediaQueryList; declare function moveBy(x?: number, y?: number): void; @@ -15361,29 +15866,26 @@ declare function moveTo(x?: number, y?: number): void; declare function msWriteProfilerMark(profilerMarkName: string): void; declare function open(url?: string, target?: string, features?: string, replace?: boolean): Window | null; declare function postMessage(message: any, targetOrigin: string, transfer?: any[]): void; -declare function print(): void; declare function prompt(message?: string, _default?: string): string | null; declare function releaseEvents(): void; declare function requestAnimationFrame(callback: FrameRequestCallback): number; declare function resizeBy(x?: number, y?: number): void; declare function resizeTo(x?: number, y?: number): void; +declare function scroll(options?: ScrollToOptions): void; declare function scroll(x?: number, y?: number): void; +declare function scrollBy(options?: ScrollToOptions): void; declare function scrollBy(x?: number, y?: number): void; +declare function scrollTo(options?: ScrollToOptions): void; declare function scrollTo(x?: number, y?: number): void; declare function stop(): void; declare function webkitCancelAnimationFrame(handle: number): void; declare function webkitConvertPointFromNodeToPage(node: Node, pt: WebKitPoint): WebKitPoint; declare function webkitConvertPointFromPageToNode(node: Node, pt: WebKitPoint): WebKitPoint; declare function webkitRequestAnimationFrame(callback: FrameRequestCallback): number; -declare function createImageBitmap(image: HTMLImageElement | SVGImageElement | HTMLVideoElement | HTMLCanvasElement | ImageBitmap | ImageData | Blob, options?: ImageBitmapOptions): Promise; -declare function createImageBitmap(image: HTMLImageElement | SVGImageElement | HTMLVideoElement | HTMLCanvasElement | ImageBitmap | ImageData | Blob, sx: number, sy: number, sw: number, sh: number, options?: ImageBitmapOptions): Promise; -declare function scroll(options?: ScrollToOptions): void; -declare function scrollTo(options?: ScrollToOptions): void; -declare function scrollBy(options?: ScrollToOptions): void; declare function toString(): string; declare function dispatchEvent(evt: Event): boolean; -declare function clearInterval(handle: number): void; -declare function clearTimeout(handle: number): void; +declare function clearInterval(handle?: number): void; +declare function clearTimeout(handle?: number): void; declare function setInterval(handler: (...args: any[]) => void, timeout: number): number; declare function setInterval(handler: any, timeout?: any, ...args: any[]): number; declare function setTimeout(handler: (...args: any[]) => void, timeout: number): number; @@ -15394,26 +15896,36 @@ declare function setImmediate(handler: any, ...args: any[]): number; declare var sessionStorage: Storage; declare var localStorage: Storage; declare var console: Console; -declare var onpointercancel: (this: Window, ev: PointerEvent) => any; -declare var onpointerdown: (this: Window, ev: PointerEvent) => any; -declare var onpointerenter: (this: Window, ev: PointerEvent) => any; -declare var onpointerleave: (this: Window, ev: PointerEvent) => any; -declare var onpointermove: (this: Window, ev: PointerEvent) => any; -declare var onpointerout: (this: Window, ev: PointerEvent) => any; -declare var onpointerover: (this: Window, ev: PointerEvent) => any; -declare var onpointerup: (this: Window, ev: PointerEvent) => any; -declare var onwheel: (this: Window, ev: WheelEvent) => any; +declare var onpointercancel: ((this: Window, ev: PointerEvent) => any) | null; +declare var onpointerdown: ((this: Window, ev: PointerEvent) => any) | null; +declare var onpointerenter: ((this: Window, ev: PointerEvent) => any) | null; +declare var onpointerleave: ((this: Window, ev: PointerEvent) => any) | null; +declare var onpointermove: ((this: Window, ev: PointerEvent) => any) | null; +declare var onpointerout: ((this: Window, ev: PointerEvent) => any) | null; +declare var onpointerover: ((this: Window, ev: PointerEvent) => any) | null; +declare var onpointerup: ((this: Window, ev: PointerEvent) => any) | null; +declare var onwheel: ((this: Window, ev: WheelEvent) => any) | null; declare var indexedDB: IDBFactory; declare function atob(encodedString: string): string; declare function btoa(rawString: string): string; -declare function fetch(input: RequestInfo, init?: RequestInit): Promise; +declare function fetch(input?: Request | string, init?: RequestInit): Promise; declare function addEventListener(type: K, listener: (this: Window, ev: WindowEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; declare function addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; declare function removeEventListener(type: K, listener: (this: Window, ev: WindowEventMap[K]) => any, options?: boolean | EventListenerOptions): void; declare function removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; -type AAGUID = string; +type ScrollBehavior = "auto" | "instant" | "smooth"; +type ScrollLogicalPosition = "start" | "center" | "end" | "nearest"; +type MouseWheelEvent = WheelEvent; +type ScrollRestoration = "auto" | "manual"; +type FormDataEntryValue = string | File; +type InsertPosition = "beforebegin" | "afterbegin" | "beforeend" | "afterend"; +type HeadersInit = Headers | string[][] | { [key: string]: string }; +type OrientationLockType = "any" | "natural" | "portrait" | "landscape" | "portrait-primary" | "portrait-secondary" | "landscape-primary"| "landscape-secondary"; +type IDBValidKey = number | string | Date | IDBArrayKey; type AlgorithmIdentifier = string | Algorithm; -type BodyInit = Blob | BufferSource | FormData | string; +type MutationRecordType = "attributes" | "characterData" | "childList"; +type AAGUID = string; +type BodyInit = any; type ByteString = string; type ConstrainBoolean = boolean | ConstrainBooleanParameters; type ConstrainDOMString = string | string[] | ConstrainDOMStringParameters; @@ -15435,9 +15947,6 @@ type GLubyte = number; type GLuint = number; type GLushort = number; type IDBKeyPath = string; -type KeyFormat = string; -type KeyType = string; -type KeyUsage = string; type MSInboundPayload = MSVideoRecvPayload | MSAudioRecvPayload; type MSLocalClientEvent = MSLocalClientEventBase | MSAudioLocalClientEvent; type MSOutboundPayload = MSVideoSendPayload | MSAudioSendPayload; @@ -15447,28 +15956,30 @@ type RequestInfo = Request | string; type USVString = string; type payloadtype = number; type BufferSource = ArrayBuffer | ArrayBufferView; -type FormDataEntryValue = string | File; -type HeadersInit = Headers | string[][] | { [key: string]: string }; -type IDBValidKey = number | string | Date | IDBArrayKey; -type InsertPosition = "beforebegin" | "afterbegin" | "beforeend" | "afterend"; -type MouseWheelEvent = WheelEvent; -type MutationRecordType = "attributes" | "characterData" | "childList"; -type OrientationLockType = "any" | "natural" | "portrait" | "landscape" | "portrait-primary" | "portrait-secondary" | "landscape-primary"| "landscape-secondary"; -type ScrollBehavior = "auto" | "instant" | "smooth"; -type ScrollLogicalPosition = "start" | "center" | "end" | "nearest"; -type ScrollRestoration = "auto" | "manual"; +type ClientTypes = "window" | "worker" | "sharedworker" | "all"; type AppendMode = "segments" | "sequence"; +type AudioContextLatencyCategory = "balanced" | "interactive" | "playback"; type AudioContextState = "suspended" | "running" | "closed"; +type BinaryType = "blob" | "arraybuffer"; type BiquadFilterType = "lowpass" | "highpass" | "bandpass" | "lowshelf" | "highshelf" | "peaking" | "notch" | "allpass"; +type CanPlayTypeResult = "" | "maybe" | "probably"; type CanvasFillRule = "nonzero" | "evenodd"; type ChannelCountMode = "max" | "clamped-max" | "explicit"; type ChannelInterpretation = "speakers" | "discrete"; +type DisplayCaptureSurfaceType = "monitor" | "window" | "application" | "browser"; type DistanceModelType = "linear" | "inverse" | "exponential"; +type EndOfStreamError = "network" | "decode"; type ExpandGranularity = "character" | "word" | "sentence" | "textedit"; +type GamepadHand = "" | "left" | "right"; +type GamepadHapticActuatorType = "vibration"; type GamepadInputEmulationType = "mouse" | "keyboard" | "gamepad"; +type GamepadMappingType = "" | "standard"; type IDBCursorDirection = "next" | "nextunique" | "prev" | "prevunique"; type IDBRequestReadyState = "pending" | "done"; type IDBTransactionMode = "readonly" | "readwrite" | "versionchange"; +type KeyFormat = "raw" | "spki" | "pkcs8" | "jwk"; +type KeyType = "public" | "private" | "secret"; +type KeyUsage = "encrypt" | "decrypt" | "sign" | "verify" | "deriveKey" | "deriveBits" | "wrapKey" | "unwrapKey"; type ListeningState = "inactive" | "active" | "disambiguation"; type MSCredentialType = "FIDO_2_0"; type MSIceAddrType = "os" | "stun" | "turn" | "peer-derived"; @@ -15489,8 +16000,8 @@ type NotificationDirection = "auto" | "ltr" | "rtl"; type NotificationPermission = "default" | "denied" | "granted"; type OscillatorType = "sine" | "square" | "sawtooth" | "triangle" | "custom"; type OverSampleType = "none" | "2x" | "4x"; -type PanningModelType = "equalpower"; -type PaymentComplete = "success" | "fail" | ""; +type PanningModelType = "equalpower" | "HRTF"; +type PaymentComplete = "success" | "fail" | "unknown"; type PaymentShippingType = "shipping" | "delivery" | "pickup"; type PushEncryptionKeyName = "p256dh" | "auth"; type PushPermissionState = "granted" | "denied" | "prompt"; @@ -15514,6 +16025,7 @@ type RTCSignalingState = "stable" | "have-local-offer" | "have-remote-offer" | " type RTCStatsIceCandidatePairState = "frozen" | "waiting" | "inprogress" | "failed" | "succeeded" | "cancelled"; type RTCStatsIceCandidateType = "host" | "serverreflexive" | "peerreflexive" | "relayed"; type RTCStatsType = "inboundrtp" | "outboundrtp" | "session" | "datachannel" | "track" | "transport" | "candidatepair" | "localcandidate" | "remotecandidate"; +type ReadyState = "closed" | "open" | "ended"; type ReferrerPolicy = "" | "no-referrer" | "no-referrer-when-downgrade" | "origin-only" | "origin-when-cross-origin" | "unsafe-url"; type RequestCache = "default" | "no-store" | "reload" | "no-cache" | "force-cache"; type RequestCredentials = "omit" | "same-origin" | "include"; @@ -15524,7 +16036,11 @@ type RequestType = "" | "audio" | "font" | "image" | "script" | "style" | "track type ResponseType = "basic" | "cors" | "default" | "error" | "opaque" | "opaqueredirect"; type ScopedCredentialType = "ScopedCred"; type ServiceWorkerState = "installing" | "installed" | "activating" | "activated" | "redundant"; +type TextTrackKind = "subtitles" | "captions" | "descriptions" | "chapters" | "metadata"; +type TextTrackMode = "disabled" | "hidden" | "showing"; type Transport = "usb" | "nfc" | "ble"; +type VRDisplayEventReason = "mounted" | "navigation" | "requested" | "unmounted"; +type VREye = "left" | "right"; type VideoFacingModeEnum = "user" | "environment" | "left" | "right"; type VisibilityState = "hidden" | "visible" | "prerender" | "unloaded"; type XMLHttpRequestResponseType = "" | "arraybuffer" | "blob" | "document" | "json" | "text"; \ No newline at end of file diff --git a/baselines/webworker.generated.d.ts b/baselines/webworker.generated.d.ts index d0b3417a1..5e44945e2 100644 --- a/baselines/webworker.generated.d.ts +++ b/baselines/webworker.generated.d.ts @@ -1,8 +1,12 @@ - ///////////////////////////// /// Worker APIs ///////////////////////////// +interface AddEventListenerOptions extends EventListenerOptions { + once?: boolean; + passive?: boolean; +} + interface Algorithm { name: string; } @@ -14,16 +18,52 @@ interface CacheQueryOptions { ignoreVary?: boolean; } +interface ClientQueryOptions { + includeReserved?: boolean; + includeUncontrolled?: boolean; + type?: ClientTypes; +} + interface CloseEventInit extends EventInit { code?: number; reason?: string; wasClean?: boolean; } +interface ErrorEventInit extends EventInit { + colno?: number; + error?: any; + filename?: string; + lineno?: number; + message?: string; +} + interface EventInit { - scoped?: boolean; bubbles?: boolean; cancelable?: boolean; + scoped?: boolean; +} + +interface EventListenerOptions { + capture?: boolean; +} + +interface ExtendableEventInit extends EventInit { +} + +interface ExtendableMessageEventInit extends ExtendableEventInit { + data?: any; + lastEventId?: string; + origin?: string; + ports?: MessagePort[] | null; + source?: Client | ServiceWorker | MessagePort | null; +} + +interface FetchEventInit extends ExtendableEventInit { + clientId?: string; + request: Request; + reservedClientId?: string; + targetClientId?: string; } interface GetNotificationOptions { @@ -41,20 +81,26 @@ interface IDBObjectStoreParameters { } interface KeyAlgorithm { - name?: string; + name: string; } interface MessageEventInit extends EventInit { channel?: string; - lastEventId?: string; data?: any; + lastEventId?: string; origin?: string; ports?: MessagePort[]; - source?: any; + source?: object | null; +} + +interface NotificationEventInit extends ExtendableEventInit { + action?: string; + notification: Notification; } interface NotificationOptions { body?: string; + data?: any; dir?: NotificationDirection; icon?: string; lang?: string; @@ -65,14 +111,28 @@ interface ObjectURLOptions { oneTimeOnly?: boolean; } +interface ProgressEventInit extends EventInit { + lengthComputable?: boolean; + loaded?: number; + total?: number; +} + +interface PushEventInit extends ExtendableEventInit { + data?: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | string | null; +} + +interface PushSubscriptionChangeInit extends ExtendableEventInit { + newSubscription?: PushSubscription; + oldSubscription?: PushSubscription; +} + interface PushSubscriptionOptionsInit { - applicationServerKey?: BufferSource | null; + applicationServerKey?: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | string | null; userVisibleOnly?: boolean; } interface RequestInit { - signal?: AbortSignal; - body?: Blob | BufferSource | FormData | string | null; + body?: Blob | Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | FormData | string | null; cache?: RequestCache; credentials?: RequestCredentials; headers?: HeadersInit; @@ -83,6 +143,7 @@ interface RequestInit { redirect?: RequestRedirect; referrer?: string; referrerPolicy?: ReferrerPolicy; + signal?: object; window?: any; } @@ -92,37 +153,6 @@ interface ResponseInit { statusText?: string; } -interface ClientQueryOptions { - includeUncontrolled?: boolean; - type?: ClientType; -} - -interface ExtendableEventInit extends EventInit { -} - -interface ExtendableMessageEventInit extends ExtendableEventInit { - data?: any; - lastEventId?: string; - origin?: string; - ports?: MessagePort[] | null; - source?: Client | ServiceWorker | MessagePort | null; -} - -interface FetchEventInit extends ExtendableEventInit { - clientId?: string | null; - isReload?: boolean; - request: Request; -} - -interface NotificationEventInit extends ExtendableEventInit { - action?: string; - notification: Notification; -} - -interface PushEventInit extends ExtendableEventInit { - data?: BufferSource | USVString; -} - interface SyncEventInit extends ExtendableEventInit { lastChance?: boolean; tag: string; @@ -137,7 +167,7 @@ interface AbstractWorkerEventMap { } interface AbstractWorker { - onerror: (this: AbstractWorker, ev: ErrorEvent) => any; + onerror: ((this: AbstractWorker, ev: ErrorEvent) => any) | null; addEventListener(type: K, listener: (this: AbstractWorker, ev: AbstractWorkerEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: AbstractWorker, ev: AbstractWorkerEventMap[K]) => any, options?: boolean | EventListenerOptions): void; @@ -172,22 +202,28 @@ declare var Blob: { new (blobParts?: any[], options?: BlobPropertyBag): Blob; }; +interface BlobPropertyBag { + endings?: string; + type?: string; +} + interface Body { readonly bodyUsed: boolean; arrayBuffer(): Promise; blob(): Promise; + formData(): Promise; json(): Promise; text(): Promise; } interface Cache { - add(request: RequestInfo): Promise; - addAll(requests: RequestInfo[]): Promise; - delete(request: RequestInfo, options?: CacheQueryOptions): Promise; - keys(request?: RequestInfo, options?: CacheQueryOptions): Promise; - match(request: RequestInfo, options?: CacheQueryOptions): Promise; - matchAll(request?: RequestInfo, options?: CacheQueryOptions): Promise; - put(request: RequestInfo, response: Response): Promise; + add(request: Request | string): Promise; + addAll(requests: (Request | string)[]): Promise; + delete(request: Request | string, options?: CacheQueryOptions): Promise; + keys(request?: Request | string, options?: CacheQueryOptions): Promise; + match(request: Request | string, options?: CacheQueryOptions): Promise; + matchAll(request?: Request | string, options?: CacheQueryOptions): Promise; + put(request: Request | string, response: Response): Promise; } declare var Cache: { @@ -199,7 +235,7 @@ interface CacheStorage { delete(cacheName: string): Promise; has(cacheName: string): Promise; keys(): Promise; - match(request: RequestInfo, options?: CacheQueryOptions): Promise; + match(request: Request | string, options?: CacheQueryOptions): Promise; open(cacheName: string): Promise; } @@ -209,9 +245,10 @@ declare var CacheStorage: { }; interface Client { - readonly frameType: FrameType; readonly id: string; - readonly url: USVString; + readonly reserved: boolean; + readonly type: ClientTypes; + readonly url: string; postMessage(message: any, transfer?: any[]): void; } @@ -224,7 +261,7 @@ interface Clients { claim(): Promise; get(id: string): Promise; matchAll(options?: ClientQueryOptions): Promise; - openWindow(url: USVString): Promise; + openWindow(url: string): Promise; } declare var Clients: { @@ -236,18 +273,20 @@ interface CloseEvent extends Event { readonly code: number; readonly reason: string; readonly wasClean: boolean; + /** @deprecated */ initCloseEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, wasCleanArg: boolean, codeArg: number, reasonArg: string): void; } declare var CloseEvent: { prototype: CloseEvent; - new(typeArg: string, eventInitDict?: CloseEventInit): CloseEvent; + new(type: string, eventInitDict?: CloseEventInit): CloseEvent; }; interface Console { - assert(test?: boolean, message?: string, ...optionalParams: any[]): void; + memory: any; + assert(condition?: boolean, message?: string, ...data: any[]): void; clear(): void; - count(countTitle?: string): void; + count(label?: string): void; debug(message?: any, ...optionalParams: any[]): void; dir(value?: any, ...optionalParams: any[]): void; dirxml(value: any): void; @@ -258,13 +297,17 @@ interface Console { groupEnd(): void; info(message?: any, ...optionalParams: any[]): void; log(message?: any, ...optionalParams: any[]): void; - msIsIndependentlyComposed(element: any): boolean; + markTimeline(label?: string): void; + msIsIndependentlyComposed(element: object): boolean; profile(reportName?: string): void; profileEnd(): void; - select(element: any): void; - table(...data: any[]): void; - time(timerName?: string): void; - timeEnd(timerName?: string): void; + select(element: object): void; + table(...tabularData: any[]): void; + time(label?: string): void; + timeEnd(label?: string): void; + timeStamp(label?: string): void; + timeline(label?: string): void; + timelineEnd(label?: string): void; trace(message?: any, ...optionalParams: any[]): void; warn(message?: any, ...optionalParams: any[]): void; } @@ -394,7 +437,7 @@ interface DedicatedWorkerGlobalScopeEventMap extends WorkerGlobalScopeEventMap { } interface DedicatedWorkerGlobalScope extends WorkerGlobalScope { - onmessage: (this: DedicatedWorkerGlobalScope, ev: MessageEvent) => any; + onmessage: ((this: DedicatedWorkerGlobalScope, ev: MessageEvent) => any) | null; close(): void; postMessage(message: any, transfer?: any[]): void; addEventListener(type: K, listener: (this: DedicatedWorkerGlobalScope, ev: DedicatedWorkerGlobalScopeEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; @@ -419,31 +462,32 @@ interface ErrorEvent extends Event { declare var ErrorEvent: { prototype: ErrorEvent; - new(type: string, errorEventInitDict?: ErrorEventInit): ErrorEvent; + new(typeArg: string, eventInitDict?: ErrorEventInit): ErrorEvent; }; interface Event { readonly bubbles: boolean; cancelBubble: boolean; readonly cancelable: boolean; - readonly currentTarget: EventTarget; + readonly currentTarget: EventTarget | null; readonly defaultPrevented: boolean; readonly eventPhase: number; readonly isTrusted: boolean; returnValue: boolean; - readonly srcElement: any; - readonly target: EventTarget; + readonly scoped: boolean; + readonly srcElement: object | null; + readonly target: EventTarget | null; readonly timeStamp: number; readonly type: string; - readonly scoped: boolean; - initEvent(eventTypeArg: string, canBubbleArg: boolean, cancelableArg: boolean): void; + deepPath(): EventTarget[]; + initEvent(type: string, bubbles?: boolean, cancelable?: boolean): void; preventDefault(): void; stopImmediatePropagation(): void; stopPropagation(): void; - deepPath(): EventTarget[]; readonly AT_TARGET: number; readonly BUBBLING_PHASE: number; readonly CAPTURING_PHASE: number; + readonly NONE: number; } declare var Event: { @@ -452,12 +496,17 @@ declare var Event: { readonly AT_TARGET: number; readonly BUBBLING_PHASE: number; readonly CAPTURING_PHASE: number; + readonly NONE: number; }; +interface EventListenerObject { + handleEvent(evt: Event): void; +} + interface EventTarget { - addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; + addEventListener(type: string, listener: EventListenerOrEventListenerObject | null, options?: boolean | AddEventListenerOptions): void; dispatchEvent(evt: Event): boolean; - removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; + removeEventListener(type: string, listener?: EventListenerOrEventListenerObject | null, options?: EventListenerOptions | boolean): void; } declare var EventTarget: { @@ -478,7 +527,7 @@ interface ExtendableMessageEvent extends ExtendableEvent { readonly data: any; readonly lastEventId: string; readonly origin: string; - readonly ports: MessagePort[] | null; + readonly ports: ReadonlyArray | null; readonly source: Client | ServiceWorker | MessagePort | null; } @@ -488,9 +537,10 @@ declare var ExtendableMessageEvent: { }; interface FetchEvent extends ExtendableEvent { - readonly clientId: string | null; - readonly isReload: boolean; + readonly clientId: string; readonly request: Request; + readonly reservedClientId: string; + readonly targetClientId: string; respondWith(r: Promise): void; } @@ -500,10 +550,11 @@ declare var FetchEvent: { }; interface File extends Blob { + readonly lastModified: number; + /** @deprecated */ readonly lastModifiedDate: Date; readonly name: string; readonly webkitRelativePath: string; - readonly lastModified: number; } declare var File: { @@ -513,7 +564,7 @@ declare var File: { interface FileList { readonly length: number; - item(index: number): File; + item(index: number): File | null; [index: number]: File; } @@ -522,21 +573,49 @@ declare var FileList: { new(): FileList; }; -interface FileReader extends EventTarget, MSBaseReader { - readonly error: DOMError; +interface FilePropertyBag extends BlobPropertyBag { + lastModified?: number; +} + +interface FileReaderEventMap { + "abort": ProgressEvent; + "error": ProgressEvent; + "load": ProgressEvent; + "loadend": ProgressEvent; + "loadstart": ProgressEvent; + "progress": ProgressEvent; +} + +interface FileReader extends EventTarget { + readonly error: DOMException | null; + onabort: ((this: FileReader, ev: ProgressEvent) => any) | null; + onerror: ((this: FileReader, ev: ProgressEvent) => any) | null; + onload: ((this: FileReader, ev: ProgressEvent) => any) | null; + onloadend: ((this: FileReader, ev: ProgressEvent) => any) | null; + onloadstart: ((this: FileReader, ev: ProgressEvent) => any) | null; + onprogress: ((this: FileReader, ev: ProgressEvent) => any) | null; + readonly readyState: number; + readonly result: any; + abort(): void; readAsArrayBuffer(blob: Blob): void; readAsBinaryString(blob: Blob): void; readAsDataURL(blob: Blob): void; - readAsText(blob: Blob, encoding?: string): void; - addEventListener(type: K, listener: (this: FileReader, ev: MSBaseReaderEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; + readAsText(blob: Blob, label?: string): void; + readonly DONE: number; + readonly EMPTY: number; + readonly LOADING: number; + addEventListener(type: K, listener: (this: FileReader, ev: FileReaderEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; - removeEventListener(type: K, listener: (this: FileReader, ev: MSBaseReaderEventMap[K]) => any, options?: boolean | EventListenerOptions): void; + removeEventListener(type: K, listener: (this: FileReader, ev: FileReaderEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } declare var FileReader: { prototype: FileReader; new(): FileReader; + readonly DONE: number; + readonly EMPTY: number; + readonly LOADING: number; }; interface FileReaderSync { @@ -553,21 +632,27 @@ declare var FileReaderSync: { interface FormData { append(name: string, value: string | Blob, fileName?: string): void; + delete(name: string): void; + get(name: string): FormDataEntryValue | null; + getAll(name: string): FormDataEntryValue[]; + has(name: string): boolean; + set(name: string, value: string | Blob, fileName?: string): void; } declare var FormData: { prototype: FormData; new(): FormData; + new(form: object): FormData; }; interface GlobalFetch { - fetch(input: RequestInfo, init?: RequestInit): Promise; + fetch(input?: Request | string, init?: RequestInit): Promise; } interface Headers { append(name: string, value: string): void; delete(name: string): void; - forEach(callback: ForEachCallback): void; + forEach(callback: Function, thisArg?: any): void; get(name: string): string | null; has(name: string): boolean; set(name: string, value: string): void; @@ -578,13 +663,16 @@ declare var Headers: { new(init?: HeadersInit): Headers; }; +interface IDBArrayKey extends Array { +} + interface IDBCursor { readonly direction: IDBCursorDirection; - key: IDBKeyRange | IDBValidKey; + readonly key: IDBKeyRange | number | string | Date | IDBArrayKey; readonly primaryKey: any; - source: IDBObjectStore | IDBIndex; + readonly source: IDBObjectStore | IDBIndex; advance(count: number): void; - continue(key?: IDBKeyRange | IDBValidKey): void; + continue(key?: IDBKeyRange | number | string | Date | IDBArrayKey): void; delete(): IDBRequest; update(value: any): IDBRequest; readonly NEXT: string; @@ -619,16 +707,14 @@ interface IDBDatabaseEventMap { interface IDBDatabase extends EventTarget { readonly name: string; readonly objectStoreNames: DOMStringList; - onabort: (this: IDBDatabase, ev: Event) => any; - onerror: (this: IDBDatabase, ev: Event) => any; - version: number; - onversionchange: (ev: IDBVersionChangeEvent) => any; + onabort: ((this: IDBDatabase, ev: Event) => any) | null; + onerror: ((this: IDBDatabase, ev: Event) => any) | null; + onversionchange: ((this: IDBDatabase, ev: Event) => any) | null; + readonly version: number; close(): void; createObjectStore(name: string, optionalParameters?: IDBObjectStoreParameters): IDBObjectStore; deleteObjectStore(name: string): void; transaction(storeNames: string | string[], mode?: IDBTransactionMode): IDBTransaction; - addEventListener(type: "versionchange", listener: (this: IDBDatabase, ev: IDBVersionChangeEvent) => any, options?: boolean | AddEventListenerOptions): void; - removeEventListener(type: "versionchange", listener: (this: IDBDatabase, ev: IDBVersionChangeEvent) => any, options?: boolean | EventListenerOptions): void; addEventListener(type: K, listener: (this: IDBDatabase, ev: IDBDatabaseEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: IDBDatabase, ev: IDBDatabaseEventMap[K]) => any, options?: boolean | EventListenerOptions): void; @@ -652,16 +738,16 @@ declare var IDBFactory: { }; interface IDBIndex { - keyPath: string | string[]; + readonly keyPath: string | string[]; + multiEntry: boolean; readonly name: string; readonly objectStore: IDBObjectStore; readonly unique: boolean; - multiEntry: boolean; - count(key?: IDBKeyRange | IDBValidKey): IDBRequest; - get(key: IDBKeyRange | IDBValidKey): IDBRequest; - getKey(key: IDBKeyRange | IDBValidKey): IDBRequest; - openCursor(range?: IDBKeyRange | IDBValidKey, direction?: IDBCursorDirection): IDBRequest; - openKeyCursor(range?: IDBKeyRange | IDBValidKey, direction?: IDBCursorDirection): IDBRequest; + count(key?: IDBKeyRange | number | string | Date | IDBArrayKey): IDBRequest; + get(key: IDBKeyRange | number | string | Date | IDBArrayKey): IDBRequest; + getKey(key: IDBKeyRange | number | string | Date | IDBArrayKey): IDBRequest; + openCursor(range?: IDBKeyRange | number | string | Date | IDBArrayKey, direction?: IDBCursorDirection): IDBRequest; + openKeyCursor(range?: IDBKeyRange | number | string | Date | IDBArrayKey, direction?: IDBCursorDirection): IDBRequest; } declare var IDBIndex: { @@ -686,21 +772,21 @@ declare var IDBKeyRange: { }; interface IDBObjectStore { + autoIncrement: boolean; readonly indexNames: DOMStringList; - keyPath: string | string[]; + readonly keyPath: string | string[] | null; readonly name: string; readonly transaction: IDBTransaction; - autoIncrement: boolean; - add(value: any, key?: IDBKeyRange | IDBValidKey): IDBRequest; + add(value: any, key?: IDBKeyRange | number | string | Date | IDBArrayKey): IDBRequest; clear(): IDBRequest; - count(key?: IDBKeyRange | IDBValidKey): IDBRequest; + count(key?: IDBKeyRange | number | string | Date | IDBArrayKey): IDBRequest; createIndex(name: string, keyPath: string | string[], optionalParameters?: IDBIndexParameters): IDBIndex; - delete(key: IDBKeyRange | IDBValidKey): IDBRequest; + delete(key: IDBKeyRange | number | string | Date | IDBArrayKey): IDBRequest; deleteIndex(indexName: string): void; get(key: any): IDBRequest; index(name: string): IDBIndex; - openCursor(range?: IDBKeyRange | IDBValidKey, direction?: IDBCursorDirection): IDBRequest; - put(value: any, key?: IDBKeyRange | IDBValidKey): IDBRequest; + openCursor(range?: IDBKeyRange | number | string | Date | IDBArrayKey, direction?: IDBCursorDirection): IDBRequest; + put(value: any, key?: IDBKeyRange | number | string | Date | IDBArrayKey): IDBRequest; } declare var IDBObjectStore: { @@ -714,8 +800,8 @@ interface IDBOpenDBRequestEventMap extends IDBRequestEventMap { } interface IDBOpenDBRequest extends IDBRequest { - onblocked: (this: IDBOpenDBRequest, ev: Event) => any; - onupgradeneeded: (this: IDBOpenDBRequest, ev: IDBVersionChangeEvent) => any; + onblocked: ((this: IDBOpenDBRequest, ev: Event) => any) | null; + onupgradeneeded: ((this: IDBOpenDBRequest, ev: IDBVersionChangeEvent) => any) | null; addEventListener(type: K, listener: (this: IDBOpenDBRequest, ev: IDBOpenDBRequestEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: IDBOpenDBRequest, ev: IDBOpenDBRequestEventMap[K]) => any, options?: boolean | EventListenerOptions): void; @@ -734,11 +820,11 @@ interface IDBRequestEventMap { interface IDBRequest extends EventTarget { readonly error: DOMException; - onerror: (this: IDBRequest, ev: Event) => any; - onsuccess: (this: IDBRequest, ev: Event) => any; + onerror: ((this: IDBRequest, ev: Event) => any) | null; + onsuccess: ((this: IDBRequest, ev: Event) => any) | null; readonly readyState: IDBRequestReadyState; readonly result: any; - source: IDBObjectStore | IDBIndex | IDBCursor; + readonly source: IDBObjectStore | IDBIndex | IDBCursor; readonly transaction: IDBTransaction; addEventListener(type: K, listener: (this: IDBRequest, ev: IDBRequestEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; @@ -761,9 +847,9 @@ interface IDBTransaction extends EventTarget { readonly db: IDBDatabase; readonly error: DOMException; readonly mode: IDBTransactionMode; - onabort: (this: IDBTransaction, ev: Event) => any; - oncomplete: (this: IDBTransaction, ev: Event) => any; - onerror: (this: IDBTransaction, ev: Event) => any; + onabort: ((this: IDBTransaction, ev: Event) => any) | null; + oncomplete: ((this: IDBTransaction, ev: Event) => any) | null; + onerror: ((this: IDBTransaction, ev: Event) => any) | null; abort(): void; objectStore(name: string): IDBObjectStore; readonly READ_ONLY: string; @@ -793,8 +879,23 @@ declare var IDBVersionChangeEvent: { new(): IDBVersionChangeEvent; }; +interface ImageBitmap { + readonly height: number; + readonly width: number; + close(): void; +} + +interface ImageBitmapOptions { + colorSpaceConversion?: "none" | "default"; + imageOrientation?: "none" | "flipY"; + premultiplyAlpha?: "none" | "premultiply" | "default"; + resizeHeight?: number; + resizeQuality?: "pixelated" | "low" | "medium" | "high"; + resizeWidth?: number; +} + interface ImageData { - data: Uint8ClampedArray; + readonly data: Uint8ClampedArray; readonly height: number; readonly width: number; } @@ -805,34 +906,6 @@ declare var ImageData: { new(array: Uint8ClampedArray, width: number, height: number): ImageData; }; -interface MSBaseReaderEventMap { - "abort": Event; - "error": ErrorEvent; - "load": Event; - "loadend": ProgressEvent; - "loadstart": Event; - "progress": ProgressEvent; -} - -interface MSBaseReader { - onabort: (this: MSBaseReader, ev: Event) => any; - onerror: (this: MSBaseReader, ev: ErrorEvent) => any; - onload: (this: MSBaseReader, ev: Event) => any; - onloadend: (this: MSBaseReader, ev: ProgressEvent) => any; - onloadstart: (this: MSBaseReader, ev: Event) => any; - onprogress: (this: MSBaseReader, ev: ProgressEvent) => any; - readonly readyState: number; - readonly result: any; - abort(): void; - readonly DONE: number; - readonly EMPTY: number; - readonly LOADING: number; - addEventListener(type: K, listener: (this: MSBaseReader, ev: MSBaseReaderEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; - addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; - removeEventListener(type: K, listener: (this: MSBaseReader, ev: MSBaseReaderEventMap[K]) => any, options?: boolean | EventListenerOptions): void; - removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; -} - interface MessageChannel { readonly port1: MessagePort; readonly port2: MessagePort; @@ -846,9 +919,9 @@ declare var MessageChannel: { interface MessageEvent extends Event { readonly data: any; readonly origin: string; - readonly ports: any; - readonly source: any; - initMessageEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, dataArg: any, originArg: string, lastEventIdArg: string, sourceArg: any): void; + readonly ports: ReadonlyArray; + readonly source: object | null; + initMessageEvent(type: string, bubbles: boolean, cancelable: boolean, data: any, origin: string, lastEventId: string, source: object): void; } declare var MessageEvent: { @@ -861,7 +934,7 @@ interface MessagePortEventMap { } interface MessagePort extends EventTarget { - onmessage: (this: MessagePort, ev: MessageEvent) => any; + onmessage: ((this: MessagePort, ev: MessageEvent) => any) | null; close(): void; postMessage(message?: any, transfer?: any[]): void; start(): void; @@ -877,7 +950,7 @@ declare var MessagePort: { }; interface NavigatorBeacon { - sendBeacon(url: USVString, data?: BodyInit): boolean; + sendBeacon(url: string, data?: Blob | Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | FormData | string | null): boolean; } interface NavigatorConcurrentHardware { @@ -908,16 +981,17 @@ interface NotificationEventMap { } interface Notification extends EventTarget { - readonly body: string; + readonly body: string | null; + readonly data: any; readonly dir: NotificationDirection; - readonly icon: string; - readonly lang: string; - onclick: (this: Notification, ev: Event) => any; - onclose: (this: Notification, ev: Event) => any; - onerror: (this: Notification, ev: Event) => any; - onshow: (this: Notification, ev: Event) => any; + readonly icon: string | null; + readonly lang: string | null; + onclick: ((this: Notification, ev: Event) => any) | null; + onclose: ((this: Notification, ev: Event) => any) | null; + onerror: ((this: Notification, ev: Event) => any) | null; + onshow: ((this: Notification, ev: Event) => any) | null; readonly permission: NotificationPermission; - readonly tag: string; + readonly tag: string | null; readonly title: string; close(): void; addEventListener(type: K, listener: (this: Notification, ev: NotificationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; @@ -943,15 +1017,20 @@ declare var NotificationEvent: { }; interface Performance { + /** @deprecated */ readonly navigation: PerformanceNavigation; + readonly timeOrigin: number; + /** @deprecated */ readonly timing: PerformanceTiming; clearMarks(markName?: string): void; clearMeasures(measureName?: string): void; clearResourceTimings(): void; getEntries(): any; - getEntriesByName(name: string, entryType?: string): any; - getEntriesByType(entryType: string): any; + getEntriesByName(name: string, type?: string): any; + getEntriesByType(type: string): any; + /** @deprecated */ getMarks(markName?: string): any; + /** @deprecated */ getMeasures(measureName?: string): any; mark(markName: string): void; measure(measureName: string, startMarkName?: string, endMarkName?: string): void; @@ -1004,9 +1083,9 @@ interface PerformanceTiming { readonly requestStart: number; readonly responseEnd: number; readonly responseStart: number; + readonly secureConnectionStart: number; readonly unloadEventEnd: number; readonly unloadEventStart: number; - readonly secureConnectionStart: number; toJSON(): any; } @@ -1051,7 +1130,7 @@ interface ProgressEvent extends Event { declare var ProgressEvent: { prototype: ProgressEvent; - new(type: string, eventInitDict?: ProgressEventInit): ProgressEvent; + new(typeArg: string, eventInitDict?: ProgressEventInit): ProgressEvent; }; interface PushEvent extends ExtendableEvent { @@ -1064,6 +1143,7 @@ declare var PushEvent: { }; interface PushManager { + readonly supportedContentEncodings: ReadonlyArray; getSubscription(): Promise; permissionState(options?: PushSubscriptionOptionsInit): Promise; subscribe(options?: PushSubscriptionOptionsInit): Promise; @@ -1077,8 +1157,8 @@ declare var PushManager: { interface PushMessageData { arrayBuffer(): ArrayBuffer; blob(): Blob; - json(): JSON; - text(): USVString; + json(): any; + text(): string; } declare var PushMessageData: { @@ -1087,7 +1167,8 @@ declare var PushMessageData: { }; interface PushSubscription { - readonly endpoint: USVString; + readonly endpoint: string; + readonly expirationTime: number | null; readonly options: PushSubscriptionOptions; getKey(name: PushEncryptionKeyName): ArrayBuffer | null; toJSON(): any; @@ -1099,6 +1180,16 @@ declare var PushSubscription: { new(): PushSubscription; }; +interface PushSubscriptionChangeEvent extends ExtendableEvent { + readonly newSubscription: PushSubscription | null; + readonly oldSubscription: PushSubscription | null; +} + +declare var PushSubscriptionChangeEvent: { + prototype: PushSubscriptionChangeEvent; + new(type: string, eventInitDict?: PushSubscriptionChangeInit): PushSubscriptionChangeEvent; +}; + interface PushSubscriptionOptions { readonly applicationServerKey: ArrayBuffer | null; readonly userVisibleOnly: boolean; @@ -1131,7 +1222,7 @@ declare var ReadableStreamReader: { new(): ReadableStreamReader; }; -interface Request extends Object, Body { +interface Request extends Body { readonly cache: RequestCache; readonly credentials: RequestCredentials; readonly destination: RequestDestination; @@ -1143,9 +1234,9 @@ interface Request extends Object, Body { readonly redirect: RequestRedirect; readonly referrer: string; readonly referrerPolicy: ReferrerPolicy; + readonly signal: object | null; readonly type: RequestType; readonly url: string; - readonly signal: AbortSignal; clone(): Request; } @@ -1154,23 +1245,23 @@ declare var Request: { new(input: Request | string, init?: RequestInit): Request; }; -interface Response extends Object, Body { +interface Response extends Body { readonly body: ReadableStream | null; readonly headers: Headers; readonly ok: boolean; + readonly redirected: boolean; readonly status: number; readonly statusText: string; readonly type: ResponseType; readonly url: string; - readonly redirected: boolean; clone(): Response; } declare var Response: { prototype: Response; - new(body?: any, init?: ResponseInit): Response; - error: () => Response; - redirect: (url: string, status?: number) => Response; + new(body?: Blob | Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | FormData | string | null, init?: ResponseInit): Response; + error(): Response; + redirect(url: string, status?: number): Response; }; interface ServiceWorkerEventMap extends AbstractWorkerEventMap { @@ -1178,8 +1269,8 @@ interface ServiceWorkerEventMap extends AbstractWorkerEventMap { } interface ServiceWorker extends EventTarget, AbstractWorker { - onstatechange: (this: ServiceWorker, ev: Event) => any; - readonly scriptURL: USVString; + onstatechange: ((this: ServiceWorker, ev: Event) => any) | null; + readonly scriptURL: string; readonly state: ServiceWorkerState; postMessage(message: any, transfer?: any[]): void; addEventListener(type: K, listener: (this: ServiceWorker, ev: ServiceWorkerEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; @@ -1198,24 +1289,26 @@ interface ServiceWorkerGlobalScopeEventMap extends WorkerGlobalScopeEventMap { "fetch": FetchEvent; "install": ExtendableEvent; "message": ExtendableMessageEvent; + "messageerror": MessageEvent; "notificationclick": NotificationEvent; "notificationclose": NotificationEvent; "push": PushEvent; - "pushsubscriptionchange": ExtendableEvent; + "pushsubscriptionchange": PushSubscriptionChangeEvent; "sync": SyncEvent; } interface ServiceWorkerGlobalScope extends WorkerGlobalScope { readonly clients: Clients; - onactivate: (this: ServiceWorkerGlobalScope, ev: ExtendableEvent) => any; - onfetch: (this: ServiceWorkerGlobalScope, ev: FetchEvent) => any; - oninstall: (this: ServiceWorkerGlobalScope, ev: ExtendableEvent) => any; - onmessage: (this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any; - onnotificationclick: (this: ServiceWorkerGlobalScope, ev: NotificationEvent) => any; - onnotificationclose: (this: ServiceWorkerGlobalScope, ev: NotificationEvent) => any; - onpush: (this: ServiceWorkerGlobalScope, ev: PushEvent) => any; - onpushsubscriptionchange: (this: ServiceWorkerGlobalScope, ev: ExtendableEvent) => any; - onsync: (this: ServiceWorkerGlobalScope, ev: SyncEvent) => any; + onactivate: ((this: ServiceWorkerGlobalScope, ev: ExtendableEvent) => any) | null; + onfetch: ((this: ServiceWorkerGlobalScope, ev: FetchEvent) => any) | null; + oninstall: ((this: ServiceWorkerGlobalScope, ev: ExtendableEvent) => any) | null; + onmessage: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null; + onmessageerror: ((this: ServiceWorkerGlobalScope, ev: MessageEvent) => any) | null; + onnotificationclick: ((this: ServiceWorkerGlobalScope, ev: NotificationEvent) => any) | null; + onnotificationclose: ((this: ServiceWorkerGlobalScope, ev: NotificationEvent) => any) | null; + onpush: ((this: ServiceWorkerGlobalScope, ev: PushEvent) => any) | null; + onpushsubscriptionchange: ((this: ServiceWorkerGlobalScope, ev: PushSubscriptionChangeEvent) => any) | null; + onsync: ((this: ServiceWorkerGlobalScope, ev: SyncEvent) => any) | null; readonly registration: ServiceWorkerRegistration; skipWaiting(): Promise; addEventListener(type: K, listener: (this: ServiceWorkerGlobalScope, ev: ServiceWorkerGlobalScopeEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; @@ -1236,9 +1329,9 @@ interface ServiceWorkerRegistrationEventMap { interface ServiceWorkerRegistration extends EventTarget { readonly active: ServiceWorker | null; readonly installing: ServiceWorker | null; - onupdatefound: (this: ServiceWorkerRegistration, ev: Event) => any; + onupdatefound: ((this: ServiceWorkerRegistration, ev: Event) => any) | null; readonly pushManager: PushManager; - readonly scope: USVString; + readonly scope: string; readonly sync: SyncManager; readonly waiting: ServiceWorker | null; getNotifications(filter?: GetNotificationOptions): Promise; @@ -1287,8 +1380,8 @@ interface URL { port: string; protocol: string; search: string; - username: string; readonly searchParams: URLSearchParams; + username: string; toString(): string; } @@ -1299,6 +1392,38 @@ declare var URL: { revokeObjectURL(url: string): void; }; +interface URLSearchParams { + /** + * Appends a specified key/value pair as a new search parameter. + */ + append(name: string, value: string): void; + /** + * Deletes the given search parameter, and its associated value, from the list of all search parameters. + */ + delete(name: string): void; + /** + * Returns the first value associated to the given search parameter. + */ + get(name: string): string | null; + /** + * Returns all the values association with a given search parameter. + */ + getAll(name: string): string[]; + /** + * Returns a Boolean indicating if such a search parameter exists. + */ + has(name: string): boolean; + /** + * Sets the value associated to a given search parameter to the given value. If there were several values, delete the others. + */ + set(name: string, value: string): void; +} + +declare var URLSearchParams: { + prototype: URLSearchParams; + new (init?: string | URLSearchParams): URLSearchParams; +}; + interface WebSocketEventMap { "close": CloseEvent; "error": Event; @@ -1307,18 +1432,18 @@ interface WebSocketEventMap { } interface WebSocket extends EventTarget { - binaryType: string; + binaryType: BinaryType; readonly bufferedAmount: number; readonly extensions: string; - onclose: (this: WebSocket, ev: CloseEvent) => any; - onerror: (this: WebSocket, ev: Event) => any; - onmessage: (this: WebSocket, ev: MessageEvent) => any; - onopen: (this: WebSocket, ev: Event) => any; + onclose: ((this: WebSocket, ev: CloseEvent) => any) | null; + onerror: ((this: WebSocket, ev: Event) => any) | null; + onmessage: ((this: WebSocket, ev: MessageEvent) => any) | null; + onopen: ((this: WebSocket, ev: Event) => any) | null; readonly protocol: string; readonly readyState: number; readonly url: string; close(code?: number, reason?: string): void; - send(data: USVString | ArrayBuffer | Blob | ArrayBufferView): void; + send(data: string | ArrayBuffer | Blob | ArrayBufferView): void; readonly CLOSED: number; readonly CLOSING: number; readonly CONNECTING: number; @@ -1344,10 +1469,11 @@ interface WindowBase64 { } interface WindowClient extends Client { + readonly ancestorOrigins: ReadonlyArray; readonly focused: boolean; readonly visibilityState: VisibilityState; focus(): Promise; - navigate(url: USVString): Promise; + navigate(url: string): Promise; } declare var WindowClient: { @@ -1364,7 +1490,8 @@ interface WorkerEventMap extends AbstractWorkerEventMap { } interface Worker extends EventTarget, AbstractWorker { - onmessage: (this: Worker, ev: MessageEvent) => any; + onmessage: ((this: Worker, ev: MessageEvent) => any) | null; + /** @deprecated */ postMessage(message: any, transfer?: any[]): void; terminate(): void; addEventListener(type: K, listener: (this: Worker, ev: WorkerEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; @@ -1386,12 +1513,12 @@ interface WorkerGlobalScope extends EventTarget, WorkerUtils, WindowConsole, Glo readonly caches: CacheStorage; readonly isSecureContext: boolean; readonly location: WorkerLocation; - onerror: (this: WorkerGlobalScope, ev: ErrorEvent) => any; + onerror: ((this: WorkerGlobalScope, ev: ErrorEvent) => any) | null; readonly performance: Performance; readonly self: WorkerGlobalScope; - msWriteProfilerMark(profilerMarkName: string): void; createImageBitmap(image: ImageBitmap | ImageData | Blob, options?: ImageBitmapOptions): Promise; createImageBitmap(image: ImageBitmap | ImageData | Blob, sx: number, sy: number, sw: number, sh: number, options?: ImageBitmapOptions): Promise; + msWriteProfilerMark(profilerMarkName: string): void; addEventListener(type: K, listener: (this: WorkerGlobalScope, ev: WorkerGlobalScopeEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: WorkerGlobalScope, ev: WorkerGlobalScopeEventMap[K]) => any, options?: boolean | EventListenerOptions): void; @@ -1421,8 +1548,7 @@ declare var WorkerLocation: { new(): WorkerLocation; }; -interface WorkerNavigator extends Object, NavigatorID, NavigatorOnLine, NavigatorBeacon, NavigatorConcurrentHardware { - readonly hardwareConcurrency: number; +interface WorkerNavigator extends NavigatorID, NavigatorOnLine, NavigatorBeacon, NavigatorConcurrentHardware { } declare var WorkerNavigator: { @@ -1430,7 +1556,7 @@ declare var WorkerNavigator: { new(): WorkerNavigator; }; -interface WorkerUtils extends Object, WindowBase64 { +interface WorkerUtils extends WindowBase64 { readonly indexedDB: IDBFactory; readonly msIndexedDB: IDBFactory; readonly navigator: WorkerNavigator; @@ -1438,11 +1564,8 @@ interface WorkerUtils extends Object, WindowBase64 { clearInterval(handle: number): void; clearTimeout(handle: number): void; importScripts(...urls: string[]): void; - setImmediate(handler: (...args: any[]) => void): number; setImmediate(handler: any, ...args: any[]): number; - setInterval(handler: (...args: any[]) => void, timeout: number): number; setInterval(handler: any, timeout?: any, ...args: any[]): number; - setTimeout(handler: (...args: any[]) => void, timeout: number): number; setTimeout(handler: any, timeout?: any, ...args: any[]): number; } @@ -1451,26 +1574,25 @@ interface XMLHttpRequestEventMap extends XMLHttpRequestEventTargetEventMap { } interface XMLHttpRequest extends EventTarget, XMLHttpRequestEventTarget { - onreadystatechange: (this: XMLHttpRequest, ev: Event) => any; + msCaching: string; + onreadystatechange: ((this: XMLHttpRequest, ev: Event) => any) | null; readonly readyState: number; readonly response: any; readonly responseText: string; responseType: XMLHttpRequestResponseType; readonly responseURL: string; - readonly responseXML: any; + readonly responseXML: object | null; readonly status: number; readonly statusText: string; timeout: number; readonly upload: XMLHttpRequestUpload; withCredentials: boolean; - msCaching?: string; abort(): void; getAllResponseHeaders(): string; getResponseHeader(header: string): string | null; msCachingEnabled(): boolean; - open(method: string, url: string, async?: boolean, user?: string, password?: string): void; + open(method: string, url: string, async?: boolean, user?: string | null, password?: string | null): void; overrideMimeType(mime: string): void; - send(data?: string): void; send(data?: any): void; setRequestHeader(header: string, value: string): void; readonly DONE: number; @@ -1505,13 +1627,13 @@ interface XMLHttpRequestEventTargetEventMap { } interface XMLHttpRequestEventTarget { - onabort: (this: XMLHttpRequest, ev: Event) => any; - onerror: (this: XMLHttpRequest, ev: ErrorEvent) => any; - onload: (this: XMLHttpRequest, ev: Event) => any; - onloadend: (this: XMLHttpRequest, ev: ProgressEvent) => any; - onloadstart: (this: XMLHttpRequest, ev: Event) => any; - onprogress: (this: XMLHttpRequest, ev: ProgressEvent) => any; - ontimeout: (this: XMLHttpRequest, ev: ProgressEvent) => any; + onabort: ((this: XMLHttpRequest, ev: Event) => any) | null; + onerror: ((this: XMLHttpRequest, ev: ErrorEvent) => any) | null; + onload: ((this: XMLHttpRequest, ev: Event) => any) | null; + onloadend: ((this: XMLHttpRequest, ev: ProgressEvent) => any) | null; + onloadstart: ((this: XMLHttpRequest, ev: Event) => any) | null; + onprogress: ((this: XMLHttpRequest, ev: ProgressEvent) => any) | null; + ontimeout: ((this: XMLHttpRequest, ev: ProgressEvent) => any) | null; addEventListener(type: K, listener: (this: XMLHttpRequestEventTarget, ev: XMLHttpRequestEventTargetEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: XMLHttpRequestEventTarget, ev: XMLHttpRequestEventTargetEventMap[K]) => any, options?: boolean | EventListenerOptions): void; @@ -1530,363 +1652,53 @@ declare var XMLHttpRequestUpload: { new(): XMLHttpRequestUpload; }; -interface BroadcastChannel extends EventTarget { - readonly name: string; - onmessage: (ev: MessageEvent) => any; - onmessageerror: (ev: MessageEvent) => any; - addEventListener(type: K, listener: (this: BroadcastChannel, ev: BroadcastChannelEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; - addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; - close(): void; - postMessage(message: any): void; - removeEventListener(type: K, listener: (this: BroadcastChannel, ev: BroadcastChannelEventMap[K]) => any, options?: boolean | EventListenerOptions): void; - removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; -} - -declare var BroadcastChannel: { - prototype: BroadcastChannel; - new(name: string): BroadcastChannel; -}; - -interface BroadcastChannelEventMap { - message: MessageEvent; - messageerror: MessageEvent; -} - -interface ErrorEventInit { - conlno?: number; - error?: any; - filename?: string; - lineno?: number; - message?: string; -} - -interface ImageBitmapOptions { - colorSpaceConversion?: "none" | "default"; - imageOrientation?: "none" | "flipY"; - premultiplyAlpha?: "none" | "premultiply" | "default"; - resizeHeight?: number; - resizeQuality?: "pixelated" | "low" | "medium" | "high"; - resizeWidth?: number; -} - -interface ImageBitmap { - readonly height: number; - readonly width: number; - close(): void; -} - -interface URLSearchParams { - /** - * Appends a specified key/value pair as a new search parameter. - */ - append(name: string, value: string): void; - /** - * Deletes the given search parameter, and its associated value, from the list of all search parameters. - */ - delete(name: string): void; - /** - * Returns the first value associated to the given search parameter. - */ - get(name: string): string | null; - /** - * Returns all the values association with a given search parameter. - */ - getAll(name: string): string[]; - /** - * Returns a Boolean indicating if such a search parameter exists. - */ - has(name: string): boolean; - /** - * Sets the value associated to a given search parameter to the given value. If there were several values, delete the others. - */ - set(name: string, value: string): void; -} - -declare var URLSearchParams: { - prototype: URLSearchParams; - /** - * Constructor returning a URLSearchParams object. - */ - new (init?: string | URLSearchParams): URLSearchParams; -}; - -interface BlobPropertyBag { - endings?: string; - type?: string; -} - -interface FilePropertyBag extends BlobPropertyBag { - lastModified?: number; -} - -interface EventListenerObject { - handleEvent(evt: Event): void; -} - -interface ProgressEventInit extends EventInit { - lengthComputable?: boolean; - loaded?: number; - total?: number; -} - -interface IDBArrayKey extends Array { -} - -interface RsaKeyGenParams extends Algorithm { - modulusLength: number; - publicExponent: Uint8Array; -} - -interface RsaHashedKeyGenParams extends RsaKeyGenParams { - hash: AlgorithmIdentifier; -} - -interface RsaKeyAlgorithm extends KeyAlgorithm { - modulusLength: number; - publicExponent: Uint8Array; -} - -interface RsaHashedKeyAlgorithm extends RsaKeyAlgorithm { - hash: AlgorithmIdentifier; -} - -interface RsaHashedImportParams { - hash: AlgorithmIdentifier; -} - -interface RsaPssParams { - saltLength: number; -} - -interface RsaOaepParams extends Algorithm { - label?: BufferSource; -} - -interface EcdsaParams extends Algorithm { - hash: AlgorithmIdentifier; -} - -interface EcKeyGenParams extends Algorithm { - namedCurve: string; -} - -interface EcKeyAlgorithm extends KeyAlgorithm { - typedCurve: string; -} - -interface EcKeyImportParams extends Algorithm { - namedCurve: string; -} - -interface EcdhKeyDeriveParams extends Algorithm { - public: CryptoKey; -} - -interface AesCtrParams extends Algorithm { - counter: BufferSource; - length: number; -} - -interface AesKeyAlgorithm extends KeyAlgorithm { - length: number; -} - -interface AesKeyGenParams extends Algorithm { - length: number; -} - -interface AesDerivedKeyParams extends Algorithm { - length: number; -} - -interface AesCbcParams extends Algorithm { - iv: BufferSource; -} - -interface AesCmacParams extends Algorithm { - length: number; -} - -interface AesGcmParams extends Algorithm { - additionalData?: BufferSource; - iv: BufferSource; - tagLength?: number; -} - -interface AesCfbParams extends Algorithm { - iv: BufferSource; -} - -interface HmacImportParams extends Algorithm { - hash?: AlgorithmIdentifier; - length?: number; -} - -interface HmacKeyAlgorithm extends KeyAlgorithm { - hash: AlgorithmIdentifier; - length: number; -} - -interface HmacKeyGenParams extends Algorithm { - hash: AlgorithmIdentifier; - length?: number; -} - -interface DhKeyGenParams extends Algorithm { - generator: Uint8Array; - prime: Uint8Array; -} - -interface DhKeyAlgorithm extends KeyAlgorithm { - generator: Uint8Array; - prime: Uint8Array; -} - -interface DhKeyDeriveParams extends Algorithm { - public: CryptoKey; -} - -interface DhImportKeyParams extends Algorithm { - generator: Uint8Array; - prime: Uint8Array; -} - -interface ConcatParams extends Algorithm { - algorithmId: Uint8Array; - hash?: AlgorithmIdentifier; - partyUInfo: Uint8Array; - partyVInfo: Uint8Array; - privateInfo?: Uint8Array; - publicInfo?: Uint8Array; -} - -interface HkdfCtrParams extends Algorithm { - context: BufferSource; - hash: AlgorithmIdentifier; - label: BufferSource; -} - -interface Pbkdf2Params extends Algorithm { - hash: AlgorithmIdentifier; - iterations: number; - salt: BufferSource; -} - -interface RsaOtherPrimesInfo { - d: string; - r: string; - t: string; -} - -interface JsonWebKey { - alg?: string; - crv?: string; - d?: string; - dp?: string; - dq?: string; - e?: string; - ext?: boolean; - k?: string; - key_ops?: string[]; - kid?: string; - kty: string; - n?: string; - oth?: RsaOtherPrimesInfo[]; - p?: string; - q?: string; - qi?: string; - use?: string; - x5c?: string; - x5t?: string; - x5u?: string; - x?: string; - y?: string; -} - -interface EventListenerOptions { - capture?: boolean; -} - -interface AddEventListenerOptions extends EventListenerOptions { - once?: boolean; - passive?: boolean; -} - -interface AbortController { - readonly signal: AbortSignal; - abort(): void; -} - -declare var AbortController: { - prototype: AbortController; - new(): AbortController; -}; - -interface AbortSignal extends EventTarget { - readonly aborted: boolean; - onabort: (ev: Event) => any; -} - -interface EventSource extends EventTarget { - readonly CLOSED: number; - readonly CONNECTING: number; - readonly OPEN: number; - onerror: (evt: MessageEvent) => any; - onmessage: (evt: MessageEvent) => any; - onopen: (evt: MessageEvent) => any; - readonly readyState: number; - readonly url: string; - readonly withCredentials: boolean; - close(): void; -} - -declare var EventSource: { - prototype: EventSource; - new(url: string, eventSourceInitDict?: EventSourceInit): EventSource; -}; - -interface EventSourceInit { - readonly withCredentials: boolean; -} - declare type EventListenerOrEventListenerObject = EventListener | EventListenerObject; interface DecodeErrorCallback { (error: DOMException): void; } + interface DecodeSuccessCallback { (decodedData: AudioBuffer): void; } + interface ErrorEventHandler { - (message: string, filename?: string, lineno?: number, colno?: number, error?: Error): void; + (event: Event | string, source?: string, fileno?: number, columnNumber?: number, error?: Error): void; } + interface ForEachCallback { - (keyId: any, status: MediaKeyStatus): void; + (keyId: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | null, status: MediaKeyStatus): void; } + interface FunctionStringCallback { (data: string): void; } + interface NotificationPermissionCallback { (permission: NotificationPermission): void; } + interface PositionCallback { (position: Position): void; } + interface PositionErrorCallback { (error: PositionError): void; } -declare var onmessage: (this: DedicatedWorkerGlobalScope, ev: MessageEvent) => any; + +declare var onmessage: ((this: DedicatedWorkerGlobalScope, ev: MessageEvent) => any) | null; declare function close(): void; declare function postMessage(message: any, transfer?: any[]): void; +declare function dispatchEvent(evt: Event): boolean; declare var caches: CacheStorage; declare var isSecureContext: boolean; declare var location: WorkerLocation; -declare var onerror: (this: DedicatedWorkerGlobalScope, ev: ErrorEvent) => any; +declare var onerror: ((this: DedicatedWorkerGlobalScope, ev: ErrorEvent) => any) | null; declare var performance: Performance; declare var self: WorkerGlobalScope; -declare function msWriteProfilerMark(profilerMarkName: string): void; declare function createImageBitmap(image: ImageBitmap | ImageData | Blob, options?: ImageBitmapOptions): Promise; declare function createImageBitmap(image: ImageBitmap | ImageData | Blob, sx: number, sy: number, sw: number, sh: number, options?: ImageBitmapOptions): Promise; +declare function msWriteProfilerMark(profilerMarkName: string): void; declare function dispatchEvent(evt: Event): boolean; declare var indexedDB: IDBFactory; declare var msIndexedDB: IDBFactory; @@ -1895,35 +1707,50 @@ declare function clearImmediate(handle: number): void; declare function clearInterval(handle: number): void; declare function clearTimeout(handle: number): void; declare function importScripts(...urls: string[]): void; -declare function setImmediate(handler: (...args: any[]) => void): number; declare function setImmediate(handler: any, ...args: any[]): number; -declare function setInterval(handler: (...args: any[]) => void, timeout: number): number; declare function setInterval(handler: any, timeout?: any, ...args: any[]): number; -declare function setTimeout(handler: (...args: any[]) => void, timeout: number): number; declare function setTimeout(handler: any, timeout?: any, ...args: any[]): number; declare function atob(encodedString: string): string; declare function btoa(rawString: string): string; declare var console: Console; -declare function fetch(input: RequestInfo, init?: RequestInit): Promise; -declare function dispatchEvent(evt: Event): boolean; +declare function fetch(input?: Request | string, init?: RequestInit): Promise; declare function addEventListener(type: K, listener: (this: DedicatedWorkerGlobalScope, ev: DedicatedWorkerGlobalScopeEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; declare function addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; declare function removeEventListener(type: K, listener: (this: DedicatedWorkerGlobalScope, ev: DedicatedWorkerGlobalScopeEventMap[K]) => any, options?: boolean | EventListenerOptions): void; declare function removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; +type FormDataEntryValue = string | File; +type HeadersInit = Headers | string[][] | { [key: string]: string }; type AlgorithmIdentifier = string | Algorithm; -type BodyInit = Blob | BufferSource | FormData | string; +type AAGUID = string; +type BodyInit = any; +type ByteString = string; +type CryptoOperationData = ArrayBufferView; +type GLbitfield = number; +type GLboolean = boolean; +type GLbyte = number; +type GLclampf = number; +type GLenum = number; +type GLfloat = number; +type GLint = number; +type GLintptr = number; +type GLshort = number; +type GLsizei = number; +type GLsizeiptr = number; +type GLubyte = number; +type GLuint = number; +type GLushort = number; type IDBKeyPath = string; type RequestInfo = Request | string; type USVString = string; -type BufferSource = ArrayBuffer | ArrayBufferView; -type FormDataEntryValue = string | File; -type HeadersInit = Headers | string[][] | { [key: string]: string }; -type IDBValidKey = number | string | Date | IDBArrayKey; -type ClientType = "window" | "worker" | "sharedworker" | "all"; -type FrameType = "auxiliary" | "top-level" | "nested" | "none"; +type payloadtype = number; +type ClientTypes = "window" | "worker" | "sharedworker" | "all"; +type BinaryType = "blob" | "arraybuffer"; type IDBCursorDirection = "next" | "nextunique" | "prev" | "prevunique"; type IDBRequestReadyState = "pending" | "done"; type IDBTransactionMode = "readonly" | "readwrite" | "versionchange"; +type KeyFormat = "raw" | "spki" | "pkcs8" | "jwk"; +type KeyType = "public" | "private" | "secret"; +type KeyUsage = "encrypt" | "decrypt" | "sign" | "verify" | "deriveKey" | "deriveBits" | "wrapKey" | "unwrapKey"; type MediaKeyStatus = "usable" | "expired" | "output-downscaled" | "output-not-allowed" | "status-pending" | "internal-error"; type NotificationDirection = "auto" | "ltr" | "rtl"; type NotificationPermission = "default" | "denied" | "granted"; diff --git a/build.cmd b/build.cmd index 3e1dbf3ad..1f2c7e04a 100644 --- a/build.cmd +++ b/build.cmd @@ -1,26 +1,5 @@ @echo off cls -if not exist .paket mkdir .paket - -if not exist .paket/paket.bootstrapper.exe ( - @echo "Installing Paket" - Powershell.exe -NoProfile -Command "Invoke-WebRequest -Uri https://github.com/fsprojects/Paket/releases/download/2.12.5/paket.bootstrapper.exe -OutFile .paket\paket.bootstrapper.exe" - - - .paket\paket.bootstrapper.exe prerelease - if errorlevel 1 ( - exit /b %errorlevel% - ) -) - -if not exist paket.lock ( - @echo "Installing dependencies" - .paket\paket.exe install -) else ( - @echo "Restoring dependencies" - .paket\paket.exe restore -) - @echo "Building..." -packages\FAKE\tools\FAKE.exe %* --fsiargs --optimize+ build.fsx +npm run build & npm run test diff --git a/build.fsx b/build.fsx deleted file mode 100644 index 7e46ca1c3..000000000 --- a/build.fsx +++ /dev/null @@ -1,31 +0,0 @@ -#r "packages/FAKE/tools/FakeLib.dll" -#load "TS.fsx" - -open Fake -open TS.Emit -open System -open System.IO - -Target "Run" (fun _ -> - TS.Emit.EmitDomWeb() - TS.Emit.EmitDomWorker() -) - -let testFile file = - let baseline = File.ReadAllText("./baselines/" + file).Replace("\r\n", "\n").Trim('\n') - let newFileWithLFEndings = File.ReadAllText("./generated/" + file).Replace("\r\n", "\n").Trim('\n') - if String.Equals(baseline, newFileWithLFEndings) then - String.Empty - else - sprintf "\nTest failed: %s is different from baseline file." file - -Target "Test" (fun _ -> - Directory.GetFiles("./baselines") - |> Array.map (Path.GetFileName >> testFile) - |> String.concat "" - |> (fun msg -> if String.IsNullOrEmpty(msg) then tracefn "All tests passed." else failwith msg) -) - -"Run" ==> "Test" - -RunTargetOrDefault "Test" diff --git a/build.sh b/build.sh old mode 100755 new mode 100644 index 6eec77ee0..28911063e --- a/build.sh +++ b/build.sh @@ -2,13 +2,4 @@ set -eu -x=.paket - -if [ ! -d $x ]; then - mkdir $x - curl https://github.com/fsprojects/Paket/releases/download/2.12.5/paket.bootstrapper.exe -L --insecure -o $x/paket.bootstrapper.exe -fi - -mono $x/paket.bootstrapper.exe -mono $x/paket.exe restore -mono packages/FAKE/tools/FAKE.exe build.fsx +npm run build & npm run test diff --git a/inputfiles/README.md b/inputfiles/README.md index 8841beb99..9be4babad 100644 --- a/inputfiles/README.md +++ b/inputfiles/README.md @@ -4,7 +4,6 @@ Some files in this directory are generated. Please do not edit them. This specifically includes: -* `browser.webidl.xml` -* `webworkers.webidl.xml` +* `browser.webidl.json` Feel free to send a pull request with changes to any other files. \ No newline at end of file diff --git a/inputfiles/addedTypes.json b/inputfiles/addedTypes.json index 5901a5866..7f6452ff5 100644 --- a/inputfiles/addedTypes.json +++ b/inputfiles/addedTypes.json @@ -1,3075 +1,3002 @@ -[ - { - "kind": "interface", - "name": "BroadcastChannel", - "extends": "EventTarget", - "constructorSignatures": [ - "new(name: string): BroadcastChannel" - ], - "properties": [ - { - "readonly": true, - "name": "name", - "type": "string" - }, - { - "name": "onmessage", - "type": "(ev: MessageEvent) => any" - }, - { - "name": "onmessageerror", - "type": "(ev: MessageEvent) => any" - } - ], - "methods": [ - { - "name": "close", - "signatures": [ - "close(): void" - ] - }, - { - "name": "postMessage", - "signatures": [ - "postMessage(message: any): void" - ] - }, - { - "name": "addEventListener", - "signatures": [ - "addEventListener(type: K, listener: (this: BroadcastChannel, ev: BroadcastChannelEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void", - "addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void" - ] - }, - { - "name": "removeEventListener", - "signatures": [ - "removeEventListener(type: K, listener: (this: BroadcastChannel, ev: BroadcastChannelEventMap[K]) => any, options?: boolean | EventListenerOptions): void", - "removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void" - ] - } - ] - }, - { - "kind": "interface", - "name": "BroadcastChannelEventMap", - "properties": [ - { - "name": "message", - "type": "MessageEvent" - }, - { - "name": "messageerror", - "type": "MessageEvent" - } - ] - }, - { - "kind": "interface", - "name": "ErrorEventInit", - "properties": [ - { - "name": "message?", - "type": "string" - }, - { - "name": "filename?", - "type": "string" - }, - { - "name": "lineno?", - "type": "number" - }, - { - "name": "conlno?", - "type": "number" - }, - { - "name": "error?", - "type": "any" - } - ] - }, - { - "kind": "property", - "interface": "CSSStyleDeclaration", - "name": "resize", - "type": "string | null" - }, - { - "kind": "property", - "interface": "CSSStyleDeclaration", - "name": "userSelect", - "type": "string | null" - }, - { - "kind": "interface", - "name": "StorageEventInit", - "flavor": "Web", - "extends": "EventInit", - "properties": [ - { - "name": "key?", - "type": "string" - }, - { - "name": "oldValue?", - "type": "string" - }, - { - "name": "newValue?", - "type": "string" - }, - { - "name": "url", - "type": "string" - }, - { - "name": "storageArea?", - "type": "Storage" - } - ] - }, - { - "kind": "interface", - "name": "Canvas2DContextAttributes", - "flavor": "Web", - "properties": [ - { - "name": "alpha?", - "type": "boolean" - }, - { - "name": "willReadFrequently?", - "type": "boolean" - }, - { - "name": "storage?", - "type": "boolean" - }, - { - "name": "[attribute: string]", - "type": "boolean | string | undefined" - } - ] - }, - { - "kind": "interface", - "flavor": "All", - "name": "ImageBitmapOptions", - "properties": [ - { - "name": "imageOrientation?", - "type": "\"none\" | \"flipY\"" - }, - { - "name": "premultiplyAlpha?", - "type": "\"none\" | \"premultiply\" | \"default\"" - }, - { - "name": "colorSpaceConversion?", - "type": "\"none\" | \"default\"" - }, - { - "name": "resizeWidth?", - "type": "number" - }, - { - "name": "resizeHeight?", - "type": "number" - }, - { - "name": "resizeQuality?", - "type": "\"pixelated\" | \"low\" | \"medium\" | \"high\"" - } - ] - }, - { - "kind": "interface", - "name": "ImageBitmap", - "flavor": "All", - "properties": [ - { - "name": "width", - "readonly": true, - "type": "number" - }, - { - "name": "height", - "readonly": true, - "type": "number" - } - ], - "methods": [ - { - "name": "close", - "signatures": [ - "close(): void" - ] - } - ] - }, - { - "kind": "method", - "interface": "Window", - "name": "createImageBitmap", - "signatures": [ - "createImageBitmap(image: HTMLImageElement | SVGImageElement | HTMLVideoElement | HTMLCanvasElement | ImageBitmap | ImageData | Blob, options?: ImageBitmapOptions): Promise", - "createImageBitmap(image: HTMLImageElement | SVGImageElement | HTMLVideoElement | HTMLCanvasElement | ImageBitmap | ImageData | Blob, sx: number, sy: number, sw: number, sh: number, options?: ImageBitmapOptions): Promise" - ] - }, - { - "kind": "method", - "interface": "WorkerGlobalScope", - "name": "createImageBitmap", - "signatures": [ - "createImageBitmap(image: ImageBitmap | ImageData | Blob, options?: ImageBitmapOptions): Promise", - "createImageBitmap(image: ImageBitmap | ImageData | Blob, sx: number, sy: number, sw: number, sh: number, options?: ImageBitmapOptions): Promise" - ] - }, - { - "kind": "property", - "interface": "IDBObjectStoreParameters", - "name": "autoIncrement?", - "type": "boolean" - }, - { - "kind": "property", - "interface": "IDBIndexParameters", - "name": "multiEntry?", - "type": "boolean" - }, - { - "kind": "property", - "interface": "IDBIndex", - "name": "multiEntry", - "type": "boolean" - }, - { - "kind": "interface", - "name": "URLSearchParams", - "constructorSignatures": [ - "new (init?: string | URLSearchParams): URLSearchParams" - ], - "methods": [ - { - "name": "append", - "signatures": [ - "append(name: string, value: string): void" - ] - }, - { - "name": "delete", - "signatures": [ - "delete(name: string): void" - ] - }, - { - "name": "get", - "signatures": [ - "get(name: string): string | null" - ] - }, - { - "name": "getAll", - "signatures": [ - "getAll(name: string): string[]" - ] - }, - { - "name": "has", - "signatures": [ - "has(name: string): boolean" - ] - }, - { - "name": "set", - "signatures": [ - "set(name: string, value: string): void" - ] - } - ] - }, - { - "kind": "property", - "interface": "URL", - "name": "searchParams", - "readonly": true, - "type": "URLSearchParams" - }, - { - "kind": "property", - "interface": "Window", - "exposeGlobally": false, - "name": "URL", - "type": "typeof URL" - }, - { - "kind": "property", - "interface": "Window", - "exposeGlobally": false, - "name": "URLSearchParams", - "type": "typeof URLSearchParams" - }, - { - "kind": "property", - "interface": "Window", - "exposeGlobally": false, - "name": "Blob", - "type": "typeof Blob" - }, - { - "kind": "interface", - "name": "NodeListOf", - "flavor": "Web", - "extends": "NodeList", - "properties": [ - { - "name": "length", - "type": "number" - } - ], - "methods": [ - { - "name": "item", - "signatures": [ - "item(index: number): TNode" - ] - } - ], - "indexer": [ - { - "signatures": [ - "[index: number]: TNode" - ] - } - ] - }, - { - "kind": "interface", - "name": "HTMLCollectionOf", - "flavor": "Web", - "extends": "HTMLCollection", - "methods": [ - { - "name": "item", - "signatures": [ - "item(index: number): T" - ] - }, - { - "name": "namedItem", - "signatures": [ - "namedItem(name: string): T" - ] - } - ], - "indexer": [ - { - "signatures": [ - "[index: number]: T" - ] - } - ] - }, - { - "kind": "interface", - "name": "BlobPropertyBag", - "properties": [ - { - "name": "type?", - "type": "string" - }, - { - "name": "endings?", - "type": "string" - } - ] - }, - { - "kind": "interface", - "name": "FilePropertyBag", - "extends": "BlobPropertyBag", - "properties": [ - { - "name": "lastModified?", - "type": "number" - } - ] - }, - { - "kind": "interface", - "name": "EventListenerObject", - "methods": [ - { - "name": "handleEvent", - "signatures": [ - "handleEvent(evt: Event): void" - ] - } - ] - }, - { - "kind": "property", - "interface": "MessageEventInit", - "name": "lastEventId?", - "type": "string" - }, - { - "kind": "property", - "interface": "MessageEventInit", - "name": "channel?", - "type": "string" - }, - { - "kind": "interface", - "name": "ProgressEventInit", - "extends": "EventInit", - "properties": [ - { - "name": "lengthComputable?", - "type": "boolean" - }, - { - "name": "loaded?", - "type": "number" - }, - { - "name": "total?", - "type": "number" - } - ] - }, - { - "kind": "method", - "interface": "Element", - "signatures": [ - "getElementsByClassName(classNames: string): NodeListOf" - ] - }, - { - "kind": "method", - "interface": "Element", - "signatures": [ - "matches(selector: string): boolean" - ] - }, - { - "kind": "method", - "interface": "Element", - "signatures": [ - "closest(selector: K): HTMLElementTagNameMap[K] | null", - "closest(selector: K): SVGElementTagNameMap[K] | null" - ] - }, - { - "kind": "method", - "interface": "Element", - "signatures": [ - "closest(selector: string): Element | null" - ] - }, - { - "kind": "typedef", - "flavor": "Web", - "name": "ScrollBehavior", - "type": "\"auto\" | \"instant\" | \"smooth\"" - }, - { - "kind": "interface", - "flavor": "Web", - "name": "ScrollOptions", - "properties": [ - { - "name": "behavior?", - "type": "ScrollBehavior" - } - ] - }, - { - "kind": "interface", - "flavor": "Web", - "name": "ScrollToOptions", - "extends": "ScrollOptions", - "properties": [ - { - "name": "left?", - "type": "number" - }, - { - "name": "top?", - "type": "number" - } - ] - }, - { - "kind": "method", - "interface": "Window", - "signatures": [ - "scroll(options?: ScrollToOptions): void" - ] - }, - { - "kind": "method", - "interface": "Window", - "signatures": [ - "scrollTo(options?: ScrollToOptions): void" - ] - }, - { - "kind": "method", - "interface": "Window", - "signatures": [ - "scrollBy(options?: ScrollToOptions): void" - ] - }, - { - "kind": "typedef", - "flavor": "Web", - "name": "ScrollLogicalPosition", - "type": "\"start\" | \"center\" | \"end\" | \"nearest\"" - }, - { - "kind": "interface", - "flavor": "Web", - "name": "ScrollIntoViewOptions", - "extends": "ScrollOptions", - "properties": [ - { - "name": "block?", - "type": "ScrollLogicalPosition" - }, - { - "name": "inline?", - "type": "ScrollLogicalPosition" - } - ] - }, - { - "kind": "method", - "interface": "Element", - "signatures": [ - "scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void" - ] - }, - { - "kind": "method", - "interface": "Element", - "signatures": [ - "scroll(options?: ScrollToOptions): void", - "scroll(x: number, y: number): void" - ] - }, - { - "kind": "method", - "interface": "Element", - "signatures": [ - "scrollTo(options?: ScrollToOptions): void", - "scrollTo(x: number, y: number): void" - ] - }, - { - "kind": "method", - "interface": "Element", - "signatures": [ - "scrollBy(options?: ScrollToOptions): void", - "scrollBy(x: number, y: number): void" - ] - }, - { - "kind": "signatureoverload", - "name": "createElementNS", - "interface": "Document", - "signatures": [ - "createElementNS(namespaceURI: \"http://www.w3.org/1999/xhtml\", qualifiedName: string): HTMLElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"a\"): SVGAElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"circle\"): SVGCircleElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"clipPath\"): SVGClipPathElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"componentTransferFunction\"): SVGComponentTransferFunctionElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"defs\"): SVGDefsElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"desc\"): SVGDescElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"ellipse\"): SVGEllipseElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feBlend\"): SVGFEBlendElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feColorMatrix\"): SVGFEColorMatrixElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feComponentTransfer\"): SVGFEComponentTransferElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feComposite\"): SVGFECompositeElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feConvolveMatrix\"): SVGFEConvolveMatrixElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feDiffuseLighting\"): SVGFEDiffuseLightingElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feDisplacementMap\"): SVGFEDisplacementMapElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feDistantLight\"): SVGFEDistantLightElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feFlood\"): SVGFEFloodElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feFuncA\"): SVGFEFuncAElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feFuncB\"): SVGFEFuncBElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feFuncG\"): SVGFEFuncGElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feFuncR\"): SVGFEFuncRElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feGaussianBlur\"): SVGFEGaussianBlurElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feImage\"): SVGFEImageElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feMerge\"): SVGFEMergeElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feMergeNode\"): SVGFEMergeNodeElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feMorphology\"): SVGFEMorphologyElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feOffset\"): SVGFEOffsetElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"fePointLight\"): SVGFEPointLightElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feSpecularLighting\"): SVGFESpecularLightingElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feSpotLight\"): SVGFESpotLightElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feTile\"): SVGFETileElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feTurbulence\"): SVGFETurbulenceElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"filter\"): SVGFilterElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"foreignObject\"): SVGForeignObjectElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"g\"): SVGGElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"image\"): SVGImageElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"gradient\"): SVGGradientElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"line\"): SVGLineElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"linearGradient\"): SVGLinearGradientElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"marker\"): SVGMarkerElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"mask\"): SVGMaskElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"path\"): SVGPathElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"metadata\"): SVGMetadataElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"pattern\"): SVGPatternElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"polygon\"): SVGPolygonElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"polyline\"): SVGPolylineElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"radialGradient\"): SVGRadialGradientElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"rect\"): SVGRectElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"svg\"): SVGSVGElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"script\"): SVGScriptElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"stop\"): SVGStopElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"style\"): SVGStyleElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"switch\"): SVGSwitchElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"symbol\"): SVGSymbolElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"tspan\"): SVGTSpanElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"textContent\"): SVGTextContentElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"text\"): SVGTextElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"textPath\"): SVGTextPathElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"textPositioning\"): SVGTextPositioningElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"title\"): SVGTitleElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"use\"): SVGUseElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"view\"): SVGViewElement", - "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: string): SVGElement" - ] - }, - { - "kind": "method", - "interface": "Navigator", - "signatures": [ - "vibrate(pattern: number | number[]): boolean" - ] - }, - { - "kind": "property", - "interface": "Navigator", - "readonly": true, - "name": "doNotTrack", - "type": "string | null" - }, - { - "kind": "property", - "interface": "Navigator", - "name": "hardwareConcurrency", - "readonly": true, - "type": "number" - }, - { - "kind": "property", - "interface": "Navigator", - "name": "languages", - "readonly": true, - "type": "string[]" - }, - { - "kind": "property", - "interface": "WorkerNavigator", - "name": "hardwareConcurrency", - "readonly": true, - "type": "number" - }, - { - "kind": "property", - "interface": "HTMLLinkElement", - "name": "import?", - "type": "Document" - }, - { - "kind": "method", - "interface": "HTMLCanvasElement", - "name": "toBlob", - "signatures": [ - "toBlob(callback: (result: Blob | null) => void, type?: string, ...arguments: any[]): void" - ] - }, - { - "kind": "property", - "interface": "StorageEvent", - "name": "key?", - "type": "string" - }, - { - "kind": "property", - "interface": "StorageEvent", - "name": "oldValue?", - "type": "string" - }, - { - "kind": "property", - "interface": "StorageEvent", - "name": "newValue?", - "type": "string" - }, - { - "kind": "property", - "interface": "StorageEvent", - "name": "storageArea?", - "type": "Storage" - }, - { - "kind": "property", - "interface": "IDBObjectStore", - "name": "autoIncrement", - "type": "boolean" - }, - { - "kind": "interface", - "flavor": "Web", - "name": "ClipboardEventInit", - "extends": "EventInit", - "properties": [ - { - "name": "data?", - "type": "string" - }, - { - "name": "dataType?", - "type": "string" - } - ] - }, - { - "kind": "typedef", - "name": "IDBValidKey", - "type": "number | string | Date | IDBArrayKey" - }, - { - "kind": "interface", - "name": "IDBArrayKey", - "extends": "Array" - }, - { - "kind": "property", - "interface": "HTMLInputElement", - "name": "minLength", - "type": "number" - }, - { - "kind": "property", - "interface": "HTMLIFrameElement", - "name": "srcdoc", - "type": "string" - }, - { - "kind": "property", - "interface": "HTMLTextAreaElement", - "name": "minLength", - "type": "number" - }, - { - "kind": "property", - "interface": "IDBDatabase", - "name": "onversionchange", - "type": "(ev: IDBVersionChangeEvent) => any" - }, - { - "kind": "method", - "interface": "IDBDatabase", - "name": "addEventListener", - "signatures": [ - "addEventListener(type: \"versionchange\", listener: (this: IDBDatabase, ev: IDBVersionChangeEvent) => any, options?: boolean | AddEventListenerOptions): void" - ] - }, - { - "kind": "method", - "interface": "IDBDatabase", - "name": "removeEventListener", - "signatures": [ - "removeEventListener(type: \"versionchange\", listener: (this: IDBDatabase, ev: IDBVersionChangeEvent) => any, options?: boolean | EventListenerOptions): void" - ] - }, - { - "kind": "property", - "interface": "CanvasRenderingContext2D", - "name": "mozImageSmoothingEnabled", - "type": "boolean" - }, - { - "kind": "property", - "interface": "CanvasRenderingContext2D", - "name": "webkitImageSmoothingEnabled", - "type": "boolean" - }, - { - "kind": "property", - "interface": "CanvasRenderingContext2D", - "name": "oImageSmoothingEnabled", - "type": "boolean" - }, - { - "kind": "property", - "interface": "WebGLContextAttributes", - "name": "failIfMajorPerformanceCaveat?", - "type": "boolean" - }, - { - "kind": "typedef", - "name": "BufferSource", - "type": "ArrayBuffer | ArrayBufferView" - }, - { - "kind": "interface", - "name": "RsaKeyGenParams", - "extends": "Algorithm", - "properties": [ - { - "name": "modulusLength", - "type": "number" - }, - { - "name": "publicExponent", - "type": "Uint8Array" - } - ] - }, - { - "kind": "interface", - "name": "RsaHashedKeyGenParams", - "extends": "RsaKeyGenParams", - "properties": [ - { - "name": "hash", - "type": "AlgorithmIdentifier" - } - ] - }, - { - "kind": "interface", - "name": "RsaKeyAlgorithm", - "extends": "KeyAlgorithm", - "properties": [ - { - "name": "modulusLength", - "type": "number" - }, - { - "name": "publicExponent", - "type": "Uint8Array" - } - ] - }, - { - "kind": "interface", - "name": "RsaHashedKeyAlgorithm", - "extends": "RsaKeyAlgorithm", - "properties": [ - { - "name": "hash", - "type": "AlgorithmIdentifier" - } - ] - }, - { - "kind": "interface", - "name": "RsaHashedImportParams", - "properties": [ - { - "name": "hash", - "type": "AlgorithmIdentifier" - } - ] - }, - { - "kind": "interface", - "name": "RsaPssParams", - "properties": [ - { - "name": "saltLength", - "type": "number" - } - ] - }, - { - "kind": "interface", - "name": "RsaOaepParams", - "extends": "Algorithm", - "properties": [ - { - "name": "label?", - "type": "BufferSource" - } - ] - }, - { - "kind": "interface", - "name": "EcdsaParams", - "extends": "Algorithm", - "properties": [ - { - "name": "hash", - "type": "AlgorithmIdentifier" - } - ] - }, - { - "kind": "interface", - "name": "EcKeyGenParams", - "extends": "Algorithm", - "properties": [ - { - "name": "namedCurve", - "type": "string" - } - ] - }, - { - "kind": "interface", - "name": "EcKeyAlgorithm", - "extends": "KeyAlgorithm", - "properties": [ - { - "name": "typedCurve", - "type": "string" - } - ] - }, - { - "kind": "interface", - "name": "EcKeyImportParams", - "extends": "Algorithm", - "properties": [ - { - "name": "namedCurve", - "type": "string" - } - ] - }, - { - "kind": "interface", - "name": "EcdhKeyDeriveParams", - "extends": "Algorithm", - "properties": [ - { - "name": "public", - "type": "CryptoKey" - } - ] - }, - { - "kind": "interface", - "name": "AesCtrParams", - "extends": "Algorithm", - "properties": [ - { - "name": "counter", - "type": "BufferSource" - }, - { - "name": "length", - "type": "number" - } - ] - }, - { - "kind": "interface", - "name": "AesKeyAlgorithm", - "extends": "KeyAlgorithm", - "properties": [ - { - "name": "length", - "type": "number" - } - ] - }, - { - "kind": "interface", - "name": "AesKeyGenParams", - "extends": "Algorithm", - "properties": [ - { - "name": "length", - "type": "number" - } - ] - }, - { - "kind": "interface", - "name": "AesDerivedKeyParams", - "extends": "Algorithm", - "properties": [ - { - "name": "length", - "type": "number" - } - ] - }, - { - "kind": "interface", - "name": "AesCbcParams", - "extends": "Algorithm", - "properties": [ - { - "name": "iv", - "type": "BufferSource" - } - ] - }, - { - "kind": "interface", - "name": "AesCmacParams", - "extends": "Algorithm", - "properties": [ - { - "name": "length", - "type": "number" - } - ] - }, - { - "kind": "interface", - "name": "AesGcmParams", - "extends": "Algorithm", - "properties": [ - { - "name": "iv", - "type": "BufferSource" - }, - { - "name": "additionalData?", - "type": "BufferSource" - }, - { - "name": "tagLength?", - "type": "number" - } - ] - }, - { - "kind": "interface", - "name": "AesCfbParams", - "extends": "Algorithm", - "properties": [ - { - "name": "iv", - "type": "BufferSource" - } - ] - }, - { - "kind": "interface", - "name": "HmacImportParams", - "extends": "Algorithm", - "properties": [ - { - "name": "hash?", - "type": "AlgorithmIdentifier" - }, - { - "name": "length?", - "type": "number" - } - ] - }, - { - "kind": "interface", - "name": "HmacKeyAlgorithm", - "extends": "KeyAlgorithm", - "properties": [ - { - "name": "hash", - "type": "AlgorithmIdentifier" - }, - { - "name": "length", - "type": "number" - } - ] - }, - { - "kind": "interface", - "name": "HmacKeyGenParams", - "extends": "Algorithm", - "properties": [ - { - "name": "hash", - "type": "AlgorithmIdentifier" - }, - { - "name": "length?", - "type": "number" - } - ] - }, - { - "kind": "interface", - "name": "DhKeyGenParams", - "extends": "Algorithm", - "properties": [ - { - "name": "prime", - "type": "Uint8Array" - }, - { - "name": "generator", - "type": "Uint8Array" - } - ] - }, - { - "kind": "interface", - "name": "DhKeyAlgorithm", - "extends": "KeyAlgorithm", - "properties": [ - { - "name": "prime", - "type": "Uint8Array" - }, - { - "name": "generator", - "type": "Uint8Array" - } - ] - }, - { - "kind": "interface", - "name": "DhKeyDeriveParams", - "extends": "Algorithm", - "properties": [ - { - "name": "public", - "type": "CryptoKey" - } - ] - }, - { - "kind": "interface", - "name": "DhImportKeyParams", - "extends": "Algorithm", - "properties": [ - { - "name": "prime", - "type": "Uint8Array" - }, - { - "name": "generator", - "type": "Uint8Array" - } - ] - }, - { - "kind": "interface", - "name": "ConcatParams", - "extends": "Algorithm", - "properties": [ - { - "name": "hash?", - "type": "AlgorithmIdentifier" - }, - { - "name": "algorithmId", - "type": "Uint8Array" - }, - { - "name": "partyUInfo", - "type": "Uint8Array" - }, - { - "name": "partyVInfo", - "type": "Uint8Array" - }, - { - "name": "publicInfo?", - "type": "Uint8Array" - }, - { - "name": "privateInfo?", - "type": "Uint8Array" - } - ] - }, - { - "kind": "interface", - "name": "HkdfCtrParams", - "extends": "Algorithm", - "properties": [ - { - "name": "hash", - "type": "AlgorithmIdentifier" - }, - { - "name": "label", - "type": "BufferSource" - }, - { - "name": "context", - "type": "BufferSource" - } - ] - }, - { - "kind": "interface", - "name": "Pbkdf2Params", - "extends": "Algorithm", - "properties": [ - { - "name": "salt", - "type": "BufferSource" - }, - { - "name": "iterations", - "type": "number" - }, - { - "name": "hash", - "type": "AlgorithmIdentifier" - } - ] - }, - { - "kind": "interface", - "name": "RsaOtherPrimesInfo", - "properties": [ - { - "name": "r", - "type": "string" - }, - { - "name": "d", - "type": "string" - }, - { - "name": "t", - "type": "string" - } - ] - }, - { - "kind": "interface", - "name": "JsonWebKey", - "properties": [ - { - "name": "kty", - "type": "string" - }, - { - "name": "use?", - "type": "string" - }, - { - "name": "key_ops?", - "type": "string[]" - }, - { - "name": "alg?", - "type": "string" - }, - { - "name": "kid?", - "type": "string" - }, - { - "name": "x5u?", - "type": "string" - }, - { - "name": "x5c?", - "type": "string" - }, - { - "name": "x5t?", - "type": "string" - }, - { - "name": "ext?", - "type": "boolean" - }, - { - "name": "crv?", - "type": "string" - }, - { - "name": "x?", - "type": "string" - }, - { - "name": "y?", - "type": "string" - }, - { - "name": "d?", - "type": "string" - }, - { - "name": "n?", - "type": "string" - }, - { - "name": "e?", - "type": "string" - }, - { - "name": "p?", - "type": "string" - }, - { - "name": "q?", - "type": "string" - }, - { - "name": "dp?", - "type": "string" - }, - { - "name": "dq?", - "type": "string" - }, - { - "name": "qi?", - "type": "string" - }, - { - "name": "oth?", - "type": "RsaOtherPrimesInfo[]" - }, - { - "name": "k?", - "type": "string" - } - ] - }, - { - "kind": "property", - "name": "msCaching?", - "interface": "XMLHttpRequest", - "type": "string" - }, - { - "kind": "typedef", - "name": "MouseWheelEvent", - "flavor": "Web", - "type": "WheelEvent" - }, - { - "kind": "method", - "interface": "DataTransfer", - "name": "setDragImage", - "signatures": [ - "setDragImage(image: Element, x: number, y: number): void" - ] - }, - { - "kind": "method", - "interface": "Element", - "name": "insertAdjacentElement", - "signatures": [ - "insertAdjacentElement(position: InsertPosition, insertedElement: Element): Element | null" - ] - }, - { - "kind": "method", - "interface": "Element", - "name": "insertAdjacentHTML", - "signatures": [ - "insertAdjacentHTML(where: InsertPosition, html: string): void" - ] - }, - { - "kind": "method", - "interface": "Element", - "name": "insertAdjacentText", - "signatures": [ - "insertAdjacentText(where: InsertPosition, text: string): void" - ] - }, - { - "kind": "property", - "name": "secureConnectionStart", - "interface": "PerformanceTiming", - "readonly": true, - "type": "number" - }, - { - "kind": "property", - "interface": "HTMLLinkElement", - "name": "integrity", - "type": "string" - }, - { - "kind": "property", - "interface": "HTMLScriptElement", - "name": "integrity", - "type": "string" - }, - { - "kind": "property", - "interface": "KeyboardEvent", - "readonly": true, - "name": "code", - "type": "string" - }, - { - "kind": "property", - "interface": "KeyboardEventInit", - "name": "code?", - "type": "string" - }, - { - "kind": "interface", - "name": "ParentNode", - "flavor": "Web", - "properties": [ - { - "name": "children", - "readonly": true, - "type": "HTMLCollection" - }, - { - "name": "firstElementChild", - "readonly": true, - "type": "Element | null" - }, - { - "name": "lastElementChild", - "readonly": true, - "type": "Element | null" - }, - { - "name": "childElementCount", - "readonly": true, - "type": "number" - } - ] - }, - { - "kind": "extends", - "baseInterface": "ParentNode", - "interface": "Element" - }, - { - "kind": "extends", - "baseInterface": "ParentNode", - "interface": "Document" - }, - { - "kind": "extends", - "baseInterface": "ParentNode", - "interface": "DocumentFragment" - }, - { - "kind": "typedef", - "name": "ScrollRestoration", - "flavor": "Web", - "type": "\"auto\" | \"manual\"" - }, - { - "kind": "property", - "interface": "History", - "name": "scrollRestoration", - "type": "ScrollRestoration" - }, - { - "kind": "method", - "interface": "CanvasPattern", - "name": "setTransform", - "signatures": [ - "setTransform(matrix: SVGMatrix): void" - ] - }, - { - "kind": "interface", - "name": "DocumentOrShadowRoot", - "flavor": "Web", - "methods": [ - { - "name": "getSelection", - "signatures": [ - "getSelection(): Selection | null" - ] - }, - { - "name": "elementFromPoint", - "signatures": [ - "elementFromPoint(x: number, y: number): Element | null" - ] - }, - { - "name": "elementsFromPoint", - "signatures": [ - "elementsFromPoint(x: number, y: number): Element[]" - ] - } - ], - "properties": [ - { - "name": "activeElement", - "type": "Element | null", - "readonly": true - }, - { - "name": "styleSheets", - "type": "StyleSheetList", - "readonly": true - } - ] - }, - { - "kind": "interface", - "name": "ShadowRoot", - "extends": "DocumentOrShadowRoot, DocumentFragment", - "flavor": "Web", - "properties": [ - { - "name": "host", - "type": "Element", - "readonly": true - }, - { - "name": "innerHTML", - "type": "string" - } - ] - }, - { - "kind": "method", - "interface": "Element", - "name": "attachShadow", - "signatures": [ - "attachShadow(shadowRootInitDict: ShadowRootInit): ShadowRoot" - ] - }, - { - "kind": "property", - "interface": "Element", - "name": "assignedSlot", - "type": "HTMLSlotElement | null", - "readonly": true - }, - { - "kind": "property", - "interface": "Element", - "name": "slot", - "type": "string" - }, - { - "kind": "property", - "interface": "Element", - "name": "shadowRoot", - "type": "ShadowRoot | null", - "readonly": true - }, - { - "kind": "interface", - "name": "ShadowRootInit", - "flavor": "Web", - "properties": [ - { - "name": "mode", - "type": "\"open\" | \"closed\"" - }, - { - "name": "delegatesFocus?", - "type": "boolean" - } - ] - }, - { - "kind": "property", - "interface": "Text", - "name": "assignedSlot", - "type": "HTMLSlotElement | null", - "readonly": true - }, - { - "kind": "interface", - "name": "HTMLSlotElement", - "extends": "HTMLElement", - "flavor": "Web", - "tagNames": [ - "slot" - ], - "properties": [ - { - "name": "name", - "type": "string" - } - ], - "methods": [ - { - "name": "assignedNodes", - "signatures": [ - "assignedNodes(options?: AssignedNodesOptions): Node[]" - ] - } - ] - }, - { - "kind": "interface", - "name": "AssignedNodesOptions", - "flavor": "Web", - "properties": [ - { - "name": "flatten?", - "type": "boolean" - } - ] - }, - { - "kind": "property", - "interface": "EventInit", - "name": "scoped?", - "type": "boolean" - }, - { - "kind": "property", - "interface": "Event", - "name": "scoped", - "type": "boolean", - "readonly": true - }, - { - "kind": "method", - "interface": "Event", - "name": "deepPath", - "signatures": [ - "deepPath(): EventTarget[]" - ] - }, - { - "kind": "interface", - "name": "ElementDefinitionOptions", - "flavor": "Web", - "properties": [ - { - "name": "extends", - "type": "string" - } - ] - }, - { - "kind": "interface", - "name": "ElementCreationOptions", - "flavor": "Web", - "properties": [ - { - "name": "is?", - "type": "string" - } - ] - }, - { - "kind": "interface", - "name": "CustomElementRegistry", - "flavor": "Web", - "methods": [ - { - "name": "define", - "signatures": [ - "define(name: string, constructor: Function, options?: ElementDefinitionOptions): void" - ] - }, - { - "name": "get", - "signatures": [ - "get(name: string): any" - ] - }, - { - "name": "whenDefined", - "signatures": [ - "whenDefined(name: string): PromiseLike" - ] - } - ] - }, - { - "kind": "property", - "interface": "Window", - "name": "customElements", - "type": "CustomElementRegistry" - }, - { - "kind": "interface", - "name": "PromiseRejectionEvent", - "extends": "Event", - "flavor": "Web", - "properties": [ - { - "name": "promise", - "type": "PromiseLike", - "readonly": true - }, - { - "name": "reason", - "type": "any", - "readonly": true - } - ] - }, - { - "kind": "interface", - "name": "PromiseRejectionEventInit", - "extends": "EventInit", - "flavor": "Web", - "properties": [ - { - "name": "promise", - "type": "PromiseLike" - }, - { - "name": "reason?", - "type": "any" - } - ] - }, - { - "kind": "method", - "interface": "Body", - "name": "formData", - "flavor": "Web", - "signatures": [ - "formData(): Promise" - ] - }, - { - "kind": "method", - "interface": "DocumentFragment", - "name": "getElementById", - "flavor": "Web", - "signatures": [ - "getElementById(elementId: string): HTMLElement | null" - ] - }, - { - "kind": "typedef", - "name": "FormDataEntryValue", - "type": "string | File" - }, - { - "kind": "method", - "interface": "FormData", - "name": "delete", - "flavor": "Web", - "signatures": [ - "delete(name: string): void" - ] - }, - { - "kind": "method", - "interface": "FormData", - "name": "get", - "flavor": "Web", - "signatures": [ - "get(name: string): FormDataEntryValue | null" - ] - }, - { - "kind": "method", - "interface": "FormData", - "name": "getAll", - "flavor": "Web", - "signatures": [ - "getAll(name: string): FormDataEntryValue[]" - ] - }, - { - "kind": "method", - "interface": "FormData", - "name": "has", - "flavor": "Web", - "signatures": [ - "has(name: string): boolean" - ] - }, - { - "kind": "method", - "interface": "FormData", - "name": "set", - "flavor": "Web", - "signatures": [ - "set(name: string, value: string | Blob, fileName?: string): void" - ] - }, - { - "kind": "interface", - "name": "EventListenerOptions", - "properties": [ - { - "name": "capture?", - "type": "boolean" - } - ] - }, - { - "kind": "interface", - "name": "AddEventListenerOptions", - "extends": "EventListenerOptions", - "properties": [ - { - "name": "passive?", - "type": "boolean" - }, - { - "name": "once?", - "type": "boolean" - } - ] - }, - { - "kind": "interface", - "name": "TouchEventInit", - "flavor": "Web", - "extends": "EventModifierInit", - "properties": [ - { - "name": "touches?", - "type": "Touch[]" - }, - { - "name": "targetTouches?", - "type": "Touch[]" - }, - { - "name": "changedTouches?", - "type": "Touch[]" - } - ] - }, - { - "kind": "typedef", - "name": "InsertPosition", - "flavor": "Web", - "type": "\"beforebegin\" | \"afterbegin\" | \"beforeend\" | \"afterend\"" - }, - { - "kind": "property", - "interface": "IntersectionObserverEntryInit", - "name": "isIntersecting", - "type": "boolean" - }, - { - "kind": "property", - "interface": "IntersectionObserverEntry", - "name": "isIntersecting", - "type": "boolean", - "readonly": true - }, - { - "kind": "property", - "interface": "ValidityState", - "name": "tooShort", - "flavor": "Web", - "readonly": true, - "type": "boolean" - }, - { - "kind": "interface", - "name": "HTMLDialogElement", - "constructorSignatures": [ - "new(): HTMLDialogElement" - ], - "extends": "HTMLElement", - "flavor": "Web", - "properties": [ - { - "name": "open", - "type": "boolean" - }, - { - "name": "returnValue", - "type": "string" - } - ], - "methods": [ - { - "name": "close", - "signatures": [ - "close(returnValue?: string): void" - ] - }, - { - "name": "show", - "signatures": [ - "show(): void" - ] - }, - { - "name": "showModal", - "signatures": [ - "showModal(): void" - ] - } - ] - }, - { - "kind": "property", - "interface": "Response", - "name": "redirected", - "readonly": true, - "type": "boolean" - }, - { - "kind": "interface", - "name": "HTMLMainElement", - "constructorSignatures": [ - "new(): HTMLMainElement" - ], - "extends": "HTMLElement", - "flavor": "Web" - }, - { - "kind": "interface", - "name": "HTMLDetailsElement", - "constructorSignatures": [ - "new(): HTMLDetailsElement" - ], - "extends": "HTMLElement", - "flavor": "Web", - "properties": [ - { - "name": "open", - "type": "boolean" - } - ] - }, - { - "kind": "interface", - "name": "HTMLSummaryElement", - "constructorSignatures": [ - "new(): HTMLSummaryElement" - ], - "extends": "HTMLElement", - "flavor": "Web" - }, - { - "kind": "interface", - "name": "DOMRectReadOnly", - "flavor": "Web", - "properties": [ - { - "name": "bottom", - "readonly": true, - "type": "number" - }, - { - "name": "height", - "readonly": true, - "type": "number" - }, - { - "name": "left", - "readonly": true, - "type": "number" - }, - { - "name": "right", - "readonly": true, - "type": "number" - }, - { - "name": "top", - "readonly": true, - "type": "number" - }, - { - "name": "width", - "readonly": true, - "type": "number" - }, - { - "name": "x", - "readonly": true, - "type": "number" - }, - { - "name": "y", - "readonly": true, - "type": "number" - } - ], - "constructorSignatures": [ - "new (x?: number, y?: number, width?: number, height?: number): DOMRectReadOnly", - "fromRect(rectangle?: DOMRectInit): DOMRectReadOnly" - ] - }, - { - "kind": "interface", - "name": "EXT_blend_minmax", - "flavor": "Web", - "properties": [ - { - "readonly": true, - "name": "MIN_EXT", - "type": "number" - }, - { - "readonly": true, - "name": "MAX_EXT", - "type": "number" - } - ] - }, - { - "kind": "interface", - "name": "EXT_frag_depth", - "flavor": "Web", - "properties": [] - }, - { - "kind": "interface", - "name": "EXT_shader_texture_lod", - "flavor": "Web", - "properties": [] - }, - { - "kind": "interface", - "name": "EXT_sRGB", - "flavor": "Web", - "properties": [ - { - "readonly": true, - "name": "SRGB_EXT", - "type": "number" - }, - { - "readonly": true, - "name": "SRGB_ALPHA_EXT", - "type": "number" - }, - { - "readonly": true, - "name": "SRGB8_ALPHA8_EXT", - "type": "number" - }, - { - "readonly": true, - "name": "FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT", - "type": "number" - } - ] - }, - { - "kind": "interface", - "name": "DOMRect", - "extends": "DOMRectReadOnly", - "flavor": "Web", - "properties": [ - { - "name": "height", - "type": "number" - }, - { - "name": "width", - "type": "number" - }, - { - "name": "x", - "type": "number" - }, - { - "name": "y", - "type": "number" - } - ], - "constructorSignatures": [ - "new (x?: number, y?: number, width?: number, height?: number): DOMRect", - "fromRect(rectangle?: DOMRectInit): DOMRect" - ] - }, - { - "kind": "interface", - "name": "DOMRectList", - "flavor": "Web", - "properties": [ - { - "name": "length", - "type": "number", - "readonly": true - } - ], - "indexer": [ - { - "signatures": [ - "[index: number]: DOMRect" - ] - } - ], - "methods": [ - { - "name": "item", - "signatures": [ - "item(index: number): DOMRect | null" - ] - } - ] - }, - { - "kind": "method", - "interface": "HTMLFormElement", - "name": "reportValidity", - "flavor": "Web", - "signatures": [ - "reportValidity(): boolean" - ] - }, - { - "kind": "interface", - "name": "OES_vertex_array_object", - "flavor": "Web", - "properties": [ - { - "readonly": true, - "name": "VERTEX_ARRAY_BINDING_OES", - "type": "number" - } - ], - "methods": [ - { - "name": "createVertexArrayOES", - "signatures": [ - "createVertexArrayOES(): WebGLVertexArrayObjectOES" +{ + "mixins": { + "mixin": { + "Body": { + "name": "Body", + "methods": { + "method": { + "formData": { + "name": "formData", + "flavor": "Web", + "override-signatures": [ + "formData(): Promise" + ] + } + } + } + }, + "HTMLHyperlinkElementUtils": { + "name": "HTMLHyperlinkElementUtils", + "properties": { + "property": { + "origin": { + "name": "origin", + "override-type": "string" + } + } + } + } + } + }, + "callback-interfaces": { + "interface": {} + }, + "enums": { + "enum": {} + }, + "interfaces": { + "interface": { + "BroadcastChannel": { + "name": "BroadcastChannel", + "extends": "EventTarget", + "properties": { + "property": { + "name": { + "name": "name", + "read-only": "1", + "override-type": "string" + }, + "onmessage": { + "name": "onmessage", + "override-type": "(ev: MessageEvent) => any" + }, + "onmessageerror": { + "name": "onmessageerror", + "override-type": "(ev: MessageEvent) => any" + } + } + }, + "methods": { + "method": { + "close": { + "name": "close", + "override-signatures": [ + "close(): void" + ] + }, + "postMessage": { + "name": "postMessage", + "override-signatures": [ + "postMessage(message: any): void" + ] + }, + "addEventListener": { + "name": "addEventListener", + "override-signatures": [ + "addEventListener(type: K, listener: (this: BroadcastChannel, ev: BroadcastChannelEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void", + "addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void" + ] + }, + "removeEventListener": { + "name": "removeEventListener", + "override-signatures": [ + "removeEventListener(type: K, listener: (this: BroadcastChannel, ev: BroadcastChannelEventMap[K]) => any, options?: boolean | EventListenerOptions): void", + "removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void" + ] + } + } + }, + "constructor": { + "override-signatures": [ + "new(name: string): BroadcastChannel" + ] + } + }, + "BroadcastChannelEventMap": { + "name": "BroadcastChannelEventMap", + "properties": { + "property": { + "message": { + "name": "message", + "override-type": "MessageEvent" + }, + "messageerror": { + "name": "messageerror", + "override-type": "MessageEvent" + } + } + }, + "no-interface-object": "1" + }, + "CSSStyleDeclaration": { + "name": "CSSStyleDeclaration", + "properties": { + "property": { + "resize": { + "name": "resize", + "override-type": "string | null" + }, + "userSelect": { + "name": "userSelect", + "override-type": "string | null" + } + } + } + }, + "StorageEventInit": { + "name": "StorageEventInit", + "flavor": "Web", + "extends": "EventInit", + "properties": { + "property": { + "key": { + "name": "key", + "override-type": "string", + "required": "false" + }, + "oldValue": { + "name": "oldValue", + "override-type": "string", + "required": "false" + }, + "newValue": { + "name": "newValue", + "override-type": "string", + "required": "false" + }, + "url": { + "name": "url", + "override-type": "string" + }, + "storageArea": { + "name": "storageArea", + "override-type": "Storage", + "required": "false" + } + } + }, + "no-interface-object": "1" + }, + "Canvas2DContextAttributes": { + "name": "Canvas2DContextAttributes", + "flavor": "Web", + "properties": { + "property": { + "alpha": { + "name": "alpha", + "override-type": "boolean", + "required": "false" + }, + "willReadFrequently": { + "name": "willReadFrequently", + "override-type": "boolean", + "required": "false" + }, + "storage": { + "name": "storage", + "override-type": "boolean", + "required": "false" + } + } + }, + "overide-index-signatures": [ + "[attribute: string]: boolean | string | undefined" + ], + "no-interface-object": "1" + }, + "ImageBitmapOptions": { + "flavor": "All", + "name": "ImageBitmapOptions", + "properties": { + "property": { + "imageOrientation": { + "name": "imageOrientation", + "override-type": "\"none\" | \"flipY\"", + "required": "false" + }, + "premultiplyAlpha": { + "name": "premultiplyAlpha", + "override-type": "\"none\" | \"premultiply\" | \"default\"", + "required": "false" + }, + "colorSpaceConversion": { + "name": "colorSpaceConversion", + "override-type": "\"none\" | \"default\"", + "required": "false" + }, + "resizeWidth": { + "name": "resizeWidth", + "override-type": "number", + "required": "false" + }, + "resizeHeight": { + "name": "resizeHeight", + "override-type": "number", + "required": "false" + }, + "resizeQuality": { + "name": "resizeQuality", + "override-type": "\"pixelated\" | \"low\" | \"medium\" | \"high\"", + "required": "false" + } + } + }, + "no-interface-object": "1" + }, + "ImageBitmap": { + "name": "ImageBitmap", + "flavor": "All", + "properties": { + "property": { + "width": { + "name": "width", + "read-only": "1", + "override-type": "number" + }, + "height": { + "name": "height", + "read-only": "1", + "override-type": "number" + } + } + }, + "methods": { + "method": { + "close": { + "name": "close", + "override-signatures": [ + "close(): void" + ] + } + } + }, + "no-interface-object": "1" + }, + "Window": { + "name": "Window", + "methods": { + "method": { + "createImageBitmap": { + "name": "createImageBitmap", + "override-signatures": [ + "createImageBitmap(image: HTMLImageElement | SVGImageElement | HTMLVideoElement | HTMLCanvasElement | ImageBitmap | ImageData | Blob, options?: ImageBitmapOptions): Promise", + "createImageBitmap(image: HTMLImageElement | SVGImageElement | HTMLVideoElement | HTMLCanvasElement | ImageBitmap | ImageData | Blob, sx: number, sy: number, sw: number, sh: number, options?: ImageBitmapOptions): Promise" + ] + }, + "scroll": { + "name": "scroll", + "additional-signatures": [ + "scroll(options?: ScrollToOptions): void" + ] + }, + "scrollTo": { + "name": "scrollTo", + "additional-signatures": [ + "scrollTo(options?: ScrollToOptions): void" + ] + }, + "scrollBy": { + "name": "scrollBy", + "additional-signatures": [ + "scrollBy(options?: ScrollToOptions): void" + ] + } + } + }, + "properties": { + "property": { + "URL": { + "exposeGlobally": false, + "name": "URL", + "override-type": "typeof URL" + }, + "URLSearchParams": { + "exposeGlobally": false, + "name": "URLSearchParams", + "override-type": "typeof URLSearchParams" + }, + "Blob": { + "exposeGlobally": false, + "name": "Blob", + "override-type": "typeof Blob" + }, + "customElements": { + "name": "customElements", + "override-type": "CustomElementRegistry" + } + } + } + }, + "WorkerGlobalScope": { + "name": "WorkerGlobalScope", + "methods": { + "method": { + "createImageBitmap": { + "name": "createImageBitmap", + "override-signatures": [ + "createImageBitmap(image: ImageBitmap | ImageData | Blob, options?: ImageBitmapOptions): Promise", + "createImageBitmap(image: ImageBitmap | ImageData | Blob, sx: number, sy: number, sw: number, sh: number, options?: ImageBitmapOptions): Promise" + ] + } + } + } + }, + "IDBIndex": { + "name": "IDBIndex", + "properties": { + "property": { + "multiEntry": { + "name": "multiEntry", + "override-type": "boolean" + } + } + } + }, + "URLSearchParams": { + "name": "URLSearchParams", + "methods": { + "method": { + "append": { + "name": "append", + "override-signatures": [ + "append(name: string, value: string): void" + ] + }, + "delete": { + "name": "delete", + "override-signatures": [ + "delete(name: string): void" + ] + }, + "get": { + "name": "get", + "override-signatures": [ + "get(name: string): string | null" + ] + }, + "getAll": { + "name": "getAll", + "override-signatures": [ + "getAll(name: string): string[]" + ] + }, + "has": { + "name": "has", + "override-signatures": [ + "has(name: string): boolean" + ] + }, + "set": { + "name": "set", + "override-signatures": [ + "set(name: string, value: string): void" + ] + } + } + }, + "constructor": { + "override-signatures": [ + "new (init?: string | URLSearchParams): URLSearchParams" + ] + } + }, + "URL": { + "name": "URL", + "properties": { + "property": { + "searchParams": { + "name": "searchParams", + "read-only": "1", + "override-type": "URLSearchParams" + } + } + } + }, + "NodeListOf": { + "name": "NodeListOf", + "flavor": "Web", + "extends": "NodeList", + "properties": { + "property": { + "length": { + "name": "length", + "override-type": "number" + } + } + }, + "methods": { + "method": { + "item": { + "name": "item", + "override-signatures": [ + "item(index: number): TNode" + ] + } + } + }, + "no-interface-object": "1", + "overide-index-signatures": [ + "[index: number]: TNode" ] }, - { - "name": "deleteVertexArrayOES", - "signatures": [ - "deleteVertexArrayOES(arrayObject: WebGLVertexArrayObjectOES): void" + "HTMLCollectionOf": { + "name": "HTMLCollectionOf", + "flavor": "Web", + "extends": "HTMLCollection", + "methods": { + "method": { + "item": { + "name": "item", + "override-signatures": [ + "item(index: number): T" + ] + }, + "namedItem": { + "name": "namedItem", + "override-signatures": [ + "namedItem(name: string): T" + ] + } + } + }, + "no-interface-object": "1", + "overide-index-signatures": [ + "[index: number]: T" ] }, - { - "name": "isVertexArrayOES", - "signatures": [ - "isVertexArrayOES(value: any): value is WebGLVertexArrayObjectOES" + "BlobPropertyBag": { + "name": "BlobPropertyBag", + "properties": { + "property": { + "type": { + "name": "type", + "override-type": "string", + "required": "false" + }, + "endings": { + "name": "endings", + "override-type": "string", + "required": "false" + } + } + }, + "no-interface-object": "1" + }, + "FilePropertyBag": { + "name": "FilePropertyBag", + "extends": "BlobPropertyBag", + "properties": { + "property": { + "lastModified": { + "name": "lastModified", + "override-type": "number", + "required": "false" + } + } + }, + "no-interface-object": "1" + }, + "EventListenerObject": { + "name": "EventListenerObject", + "methods": { + "method": { + "handleEvent": { + "name": "handleEvent", + "override-signatures": [ + "handleEvent(evt: Event): void" + ] + } + } + }, + "no-interface-object": "1" + }, + "Element": { + "name": "Element", + "methods": { + "method": { + "getElementsByClassName": { + "name": "getElementsByClassName", + "override-signatures": [ + "getElementsByClassName(classNames: string): NodeListOf" + ] + }, + "closest": { + "name": "closest", + "override-signatures": [ + "closest(selector: K): HTMLElementTagNameMap[K] | null", + "closest(selector: K): SVGElementTagNameMap[K] | null", + "closest(selector: string): Element | null" + ] + }, + "scrollIntoView": { + "name": "scrollIntoView", + "override-signatures": [ + "scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void" + ] + }, + "scroll": { + "name": "scroll", + "override-signatures": [ + "scroll(options?: ScrollToOptions): void", + "scroll(x: number, y: number): void" + ] + }, + "scrollTo": { + "name": "scrollTo", + "override-signatures": [ + "scrollTo(options?: ScrollToOptions): void", + "scrollTo(x: number, y: number): void" + ] + }, + "scrollBy": { + "name": "scrollBy", + "override-signatures": [ + "scrollBy(options?: ScrollToOptions): void", + "scrollBy(x: number, y: number): void" + ] + }, + "insertAdjacentElement": { + "name": "insertAdjacentElement", + "override-signatures": [ + "insertAdjacentElement(position: InsertPosition, insertedElement: Element): Element | null" + ] + }, + "insertAdjacentHTML": { + "name": "insertAdjacentHTML", + "override-signatures": [ + "insertAdjacentHTML(where: InsertPosition, html: string): void" + ] + }, + "insertAdjacentText": { + "name": "insertAdjacentText", + "override-signatures": [ + "insertAdjacentText(where: InsertPosition, text: string): void" + ] + }, + "attachShadow": { + "name": "attachShadow", + "override-signatures": [ + "attachShadow(shadowRootInitDict: ShadowRootInit): ShadowRoot" + ] + } + } + }, + "extends": "ParentNode", + "properties": { + "property": { + "assignedSlot": { + "name": "assignedSlot", + "read-only": "1", + "override-type": "HTMLSlotElement | null" + }, + "slot": { + "name": "slot", + "override-type": "string" + }, + "shadowRoot": { + "name": "shadowRoot", + "read-only": "1", + "override-type": "ShadowRoot | null" + } + } + } + }, + "ScrollOptions": { + "flavor": "Web", + "name": "ScrollOptions", + "properties": { + "property": { + "behavior": { + "name": "behavior", + "override-type": "ScrollBehavior", + "required": "false" + } + } + }, + "no-interface-object": "1" + }, + "ScrollToOptions": { + "flavor": "Web", + "name": "ScrollToOptions", + "extends": "ScrollOptions", + "properties": { + "property": { + "left": { + "name": "left", + "override-type": "number", + "required": "false" + }, + "top": { + "name": "top", + "override-type": "number", + "required": "false" + } + } + }, + "no-interface-object": "1" + }, + "ScrollIntoViewOptions": { + "flavor": "Web", + "name": "ScrollIntoViewOptions", + "extends": "ScrollOptions", + "properties": { + "property": { + "block": { + "name": "block", + "override-type": "ScrollLogicalPosition", + "required": "false" + }, + "inline": { + "name": "inline", + "override-type": "ScrollLogicalPosition", + "required": "false" + } + } + }, + "no-interface-object": "1" + }, + "Document": { + "methods": { + "method": { + "createElementNS": { + "name": "createElementNS", + "additional-signatures": [ + "createElementNS(namespaceURI: \"http://www.w3.org/1999/xhtml\", qualifiedName: string): HTMLElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"a\"): SVGAElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"circle\"): SVGCircleElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"clipPath\"): SVGClipPathElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"componentTransferFunction\"): SVGComponentTransferFunctionElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"defs\"): SVGDefsElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"desc\"): SVGDescElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"ellipse\"): SVGEllipseElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feBlend\"): SVGFEBlendElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feColorMatrix\"): SVGFEColorMatrixElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feComponentTransfer\"): SVGFEComponentTransferElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feComposite\"): SVGFECompositeElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feConvolveMatrix\"): SVGFEConvolveMatrixElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feDiffuseLighting\"): SVGFEDiffuseLightingElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feDisplacementMap\"): SVGFEDisplacementMapElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feDistantLight\"): SVGFEDistantLightElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feFlood\"): SVGFEFloodElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feFuncA\"): SVGFEFuncAElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feFuncB\"): SVGFEFuncBElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feFuncG\"): SVGFEFuncGElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feFuncR\"): SVGFEFuncRElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feGaussianBlur\"): SVGFEGaussianBlurElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feImage\"): SVGFEImageElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feMerge\"): SVGFEMergeElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feMergeNode\"): SVGFEMergeNodeElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feMorphology\"): SVGFEMorphologyElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feOffset\"): SVGFEOffsetElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"fePointLight\"): SVGFEPointLightElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feSpecularLighting\"): SVGFESpecularLightingElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feSpotLight\"): SVGFESpotLightElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feTile\"): SVGFETileElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"feTurbulence\"): SVGFETurbulenceElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"filter\"): SVGFilterElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"foreignObject\"): SVGForeignObjectElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"g\"): SVGGElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"image\"): SVGImageElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"gradient\"): SVGGradientElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"line\"): SVGLineElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"linearGradient\"): SVGLinearGradientElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"marker\"): SVGMarkerElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"mask\"): SVGMaskElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"path\"): SVGPathElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"metadata\"): SVGMetadataElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"pattern\"): SVGPatternElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"polygon\"): SVGPolygonElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"polyline\"): SVGPolylineElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"radialGradient\"): SVGRadialGradientElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"rect\"): SVGRectElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"svg\"): SVGSVGElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"script\"): SVGScriptElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"stop\"): SVGStopElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"style\"): SVGStyleElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"switch\"): SVGSwitchElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"symbol\"): SVGSymbolElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"tspan\"): SVGTSpanElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"textContent\"): SVGTextContentElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"text\"): SVGTextElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"textPath\"): SVGTextPathElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"textPositioning\"): SVGTextPositioningElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"title\"): SVGTitleElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"use\"): SVGUseElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"view\"): SVGViewElement", + "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: string): SVGElement" + ] + } + } + }, + "properties": { + "property": { + "onvisibilitychange": { + "name": "onvisibilitychange", + "override-type": "(this: Document, ev: Event) => any" + } + } + } + }, + "Navigator": { + "name": "Navigator", + "methods": { + "method": { + "vibrate": { + "name": "vibrate", + "override-signatures": [ + "vibrate(pattern: number | number[]): boolean" + ] + } + } + }, + "properties": { + "property": { + "pointerEnabled": { + "name": "pointerEnabled", + "read-only": 1, + "override-type": "boolean" + }, + "doNotTrack": { + "name": "doNotTrack", + "read-only": "1", + "override-type": "string | null" + } + } + } + }, + "HTMLLinkElement": { + "name": "HTMLLinkElement", + "properties": { + "property": { + "import": { + "name": "import", + "override-type": "Document", + "required": "false" + } + } + } + }, + "HTMLCanvasElement": { + "name": "HTMLCanvasElement", + "methods": { + "method": { + "toBlob": { + "name": "toBlob", + "override-signatures": [ + "toBlob(callback: (result: Blob | null) => void, type?: string, ...arguments: any[]): void" + ] + } + } + } + }, + "IDBObjectStore": { + "name": "IDBObjectStore", + "properties": { + "property": { + "autoIncrement": { + "name": "autoIncrement", + "override-type": "boolean" + } + } + } + }, + "ClipboardEventInit": { + "flavor": "Web", + "name": "ClipboardEventInit", + "extends": "EventInit", + "properties": { + "property": { + "data": { + "name": "data", + "override-type": "string", + "required": "false" + }, + "dataType": { + "name": "dataType", + "override-type": "string", + "required": "false" + } + } + }, + "no-interface-object": "1" + }, + "IDBArrayKey": { + "name": "IDBArrayKey", + "extends": "Array", + "no-interface-object": "1" + }, + "HTMLInputElement": { + "name": "HTMLInputElement", + "properties": { + "property": { + "minLength": { + "name": "minLength", + "override-type": "number" + } + } + } + }, + "HTMLIFrameElement": { + "name": "HTMLIFrameElement", + "properties": { + "property": { + "srcdoc": { + "name": "srcdoc", + "override-type": "string" + } + } + } + }, + "HTMLTextAreaElement": { + "name": "HTMLTextAreaElement", + "properties": { + "property": { + "minLength": { + "name": "minLength", + "override-type": "number" + } + } + } + }, + "IDBDatabase": { + "name": "IDBDatabase", + "properties": { + "property": { + "onversionchange": { + "name": "onversionchange", + "type": "EventHandlerNonNull", + "nullable": 1 + } + } + }, + "events": { + "event": [ + { + "name": "versionchange", + "type": "IDBVersionChangeEvent" + } + ] + } + }, + "CanvasRenderingContext2D": { + "name": "CanvasRenderingContext2D", + "properties": { + "property": { + "mozImageSmoothingEnabled": { + "name": "mozImageSmoothingEnabled", + "override-type": "boolean" + }, + "webkitImageSmoothingEnabled": { + "name": "webkitImageSmoothingEnabled", + "override-type": "boolean" + }, + "oImageSmoothingEnabled": { + "name": "oImageSmoothingEnabled", + "override-type": "boolean" + } + } + } + }, + "AesCmacParams": { + "name": "AesCmacParams", + "extends": "Algorithm", + "properties": { + "property": { + "length": { + "name": "length", + "override-type": "number" + } + } + }, + "no-interface-object": "1" + }, + "AesCfbParams": { + "name": "AesCfbParams", + "extends": "Algorithm", + "properties": { + "property": { + "iv": { + "name": "iv", + "override-type": "Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer" + } + } + }, + "no-interface-object": "1" + }, + "DhKeyGenParams": { + "name": "DhKeyGenParams", + "extends": "Algorithm", + "properties": { + "property": { + "prime": { + "name": "prime", + "override-type": "Uint8Array" + }, + "generator": { + "name": "generator", + "override-type": "Uint8Array" + } + } + }, + "no-interface-object": "1" + }, + "DhKeyAlgorithm": { + "name": "DhKeyAlgorithm", + "extends": "KeyAlgorithm", + "properties": { + "property": { + "prime": { + "name": "prime", + "override-type": "Uint8Array" + }, + "generator": { + "name": "generator", + "override-type": "Uint8Array" + } + } + }, + "no-interface-object": "1" + }, + "DhKeyDeriveParams": { + "name": "DhKeyDeriveParams", + "extends": "Algorithm", + "properties": { + "property": { + "prime": { + "name": "public", + "override-type": "CryptoKey" + } + } + }, + "no-interface-object": "1" + }, + "DhImportKeyParams": { + "name": "DhImportKeyParams", + "extends": "Algorithm", + "properties": { + "property": { + "prime": { + "name": "prime", + "override-type": "Uint8Array" + }, + "generator": { + "name": "generator", + "override-type": "Uint8Array" + } + } + }, + "no-interface-object": "1" + }, + "ConcatParams": { + "name": "ConcatParams", + "extends": "Algorithm", + "properties": { + "property": { + "hash": { + "name": "hash", + "override-type": "string | Algorithm", + "required": "false" + }, + "algorithmId": { + "name": "algorithmId", + "override-type": "Uint8Array" + }, + "partyUInfo": { + "name": "partyUInfo", + "override-type": "Uint8Array" + }, + "partyVInfo": { + "name": "partyVInfo", + "override-type": "Uint8Array" + }, + "publicInfo": { + "name": "publicInfo", + "override-type": "Uint8Array", + "required": "false" + }, + "privateInfo": { + "name": "privateInfo", + "override-type": "Uint8Array", + "required": "false" + } + } + }, + "no-interface-object": "1" + }, + "HkdfCtrParams": { + "name": "HkdfCtrParams", + "extends": "Algorithm", + "properties": { + "property": { + "hash": { + "name": "hash", + "override-type": "string | Algorithm" + }, + "label": { + "name": "label", + "override-type": "Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer" + }, + "context": { + "name": "context", + "override-type": "Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer" + } + } + }, + "no-interface-object": "1" + }, + "DataTransfer": { + "name": "DataTransfer", + "methods": { + "method": { + "setDragImage": { + "name": "setDragImage", + "override-signatures": [ + "setDragImage(image: Element, x: number, y: number): void" + ] + } + } + } + }, + "PerformanceTiming": { + "name": "PerformanceTiming", + "properties": { + "property": { + "secureConnectionStart": { + "name": "secureConnectionStart", + "read-only": "1", + "override-type": "number" + } + } + } + }, + "KeyboardEvent": { + "name": "KeyboardEvent", + "properties": { + "property": { + "code": { + "name": "code", + "read-only": "1", + "override-type": "string" + } + } + } + }, + "ParentNode": { + "name": "ParentNode", + "flavor": "Web", + "properties": { + "property": { + "firstElementChild": { + "name": "firstElementChild", + "read-only": "1", + "override-type": "Element | null" + }, + "lastElementChild": { + "name": "lastElementChild", + "read-only": "1", + "override-type": "Element | null" + }, + "childElementCount": { + "name": "childElementCount", + "read-only": "1", + "override-type": "number" + } + } + }, + "no-interface-object": "1" + }, + "DocumentFragment": { + "name": "DocumentFragment", + "methods": { + "method": { + "getElementById": { + "name": "getElementById", + "flavor": "Web", + "override-signatures": [ + "getElementById(elementId: string): HTMLElement | null" + ] + } + } + } + }, + "History": { + "name": "History", + "properties": { + "property": { + "scrollRestoration": { + "name": "scrollRestoration", + "override-type": "ScrollRestoration" + } + } + } + }, + "CanvasPattern": { + "name": "CanvasPattern", + "methods": { + "method": { + "setTransform": { + "name": "setTransform", + "override-signatures": [ + "setTransform(matrix: SVGMatrix): void" + ] + } + } + } + }, + "DocumentOrShadowRoot": { + "name": "DocumentOrShadowRoot", + "flavor": "Web", + "methods": { + "method": { + "getSelection": { + "name": "getSelection", + "override-signatures": [ + "getSelection(): Selection | null" + ] + }, + "elementFromPoint": { + "name": "elementFromPoint", + "override-signatures": [ + "elementFromPoint(x: number, y: number): Element | null" + ] + }, + "elementsFromPoint": { + "name": "elementsFromPoint", + "override-signatures": [ + "elementsFromPoint(x: number, y: number): Element[]" + ] + } + } + }, + "properties": { + "property": { + "activeElement": { + "name": "activeElement", + "read-only": "1", + "override-type": "Element | null" + }, + "styleSheets": { + "name": "styleSheets", + "read-only": "1", + "override-type": "StyleSheetList" + } + } + }, + "no-interface-object": "1" + }, + "ShadowRoot": { + "name": "ShadowRoot", + "extends": "DocumentOrShadowRoot, DocumentFragment", + "flavor": "Web", + "properties": { + "property": { + "host": { + "name": "host", + "read-only": "1", + "override-type": "Element" + }, + "innerHTML": { + "name": "innerHTML", + "override-type": "string" + } + } + }, + "no-interface-object": "1" + }, + "ShadowRootInit": { + "name": "ShadowRootInit", + "flavor": "Web", + "properties": { + "property": { + "mode": { + "name": "mode", + "override-type": "\"open\" | \"closed\"" + }, + "delegatesFocus": { + "name": "delegatesFocus", + "override-type": "boolean", + "required": "false" + } + } + }, + "no-interface-object": "1" + }, + "Text": { + "name": "Text", + "properties": { + "property": { + "assignedSlot": { + "name": "assignedSlot", + "read-only": "1", + "override-type": "HTMLSlotElement | null" + } + } + } + }, + "HTMLSlotElement": { + "name": "HTMLSlotElement", + "extends": "HTMLElement", + "flavor": "Web", + "properties": { + "property": { + "name": { + "name": "name", + "override-type": "string" + } + } + }, + "methods": { + "method": { + "assignedNodes": { + "name": "assignedNodes", + "override-signatures": [ + "assignedNodes(options?: AssignedNodesOptions): Node[]" + ] + } + } + }, + "no-interface-object": "1", + "element": [ + { + "name": "slot" + } ] }, - { - "name": "bindVertexArrayOES", - "signatures": [ - "bindVertexArrayOES(arrayObject: WebGLVertexArrayObjectOES): void" + "AssignedNodesOptions": { + "name": "AssignedNodesOptions", + "flavor": "Web", + "properties": { + "property": { + "flatten": { + "name": "flatten", + "override-type": "boolean", + "required": "false" + } + } + }, + "no-interface-object": "1" + }, + "Event": { + "name": "Event", + "properties": { + "property": { + "scoped": { + "name": "scoped", + "read-only": "1", + "override-type": "boolean" + } + } + }, + "methods": { + "method": { + "deepPath": { + "name": "deepPath", + "override-signatures": [ + "deepPath(): EventTarget[]" + ] + } + } + } + }, + "ElementDefinitionOptions": { + "name": "ElementDefinitionOptions", + "flavor": "Web", + "properties": { + "property": { + "extends": { + "name": "extends", + "override-type": "string" + } + } + }, + "no-interface-object": "1" + }, + "ElementCreationOptions": { + "name": "ElementCreationOptions", + "flavor": "Web", + "properties": { + "property": { + "is": { + "name": "is", + "override-type": "string", + "required": "false" + } + } + }, + "no-interface-object": "1" + }, + "CustomElementRegistry": { + "name": "CustomElementRegistry", + "flavor": "Web", + "methods": { + "method": { + "define": { + "name": "define", + "override-signatures": [ + "define(name: string, constructor: Function, options?: ElementDefinitionOptions): void" + ] + }, + "get": { + "name": "get", + "override-signatures": [ + "get(name: string): any" + ] + }, + "whenDefined": { + "name": "whenDefined", + "override-signatures": [ + "whenDefined(name: string): PromiseLike" + ] + } + } + }, + "no-interface-object": "1" + }, + "PromiseRejectionEvent": { + "name": "PromiseRejectionEvent", + "extends": "Event", + "flavor": "Web", + "properties": { + "property": { + "promise": { + "name": "promise", + "read-only": "1", + "override-type": "PromiseLike" + }, + "reason": { + "name": "reason", + "read-only": "1", + "override-type": "any" + } + } + }, + "no-interface-object": "1" + }, + "PromiseRejectionEventInit": { + "name": "PromiseRejectionEventInit", + "extends": "EventInit", + "flavor": "Web", + "properties": { + "property": { + "promise": { + "name": "promise", + "override-type": "PromiseLike" + }, + "reason": { + "name": "reason", + "override-type": "any", + "required": "false" + } + } + }, + "no-interface-object": "1" + }, + "FormData": { + "name": "FormData", + "methods": { + "method": { + "delete": { + "name": "delete", + "flavor": "Web", + "override-signatures": [ + "delete(name: string): void" + ] + }, + "get": { + "name": "get", + "flavor": "Web", + "override-signatures": [ + "get(name: string): FormDataEntryValue | null" + ] + }, + "getAll": { + "name": "getAll", + "flavor": "Web", + "override-signatures": [ + "getAll(name: string): FormDataEntryValue[]" + ] + }, + "has": { + "name": "has", + "flavor": "Web", + "override-signatures": [ + "has(name: string): boolean" + ] + }, + "set": { + "name": "set", + "flavor": "Web", + "override-signatures": [ + "set(name: string, value: string | Blob, fileName?: string): void" + ] + } + } + } + }, + "TouchEventInit": { + "name": "TouchEventInit", + "flavor": "Web", + "extends": "EventModifierInit", + "properties": { + "property": { + "touches": { + "name": "touches", + "override-type": "Touch[]", + "required": "false" + }, + "targetTouches": { + "name": "targetTouches", + "override-type": "Touch[]", + "required": "false" + }, + "changedTouches": { + "name": "changedTouches", + "override-type": "Touch[]", + "required": "false" + } + } + }, + "no-interface-object": "1" + }, + "ValidityState": { + "name": "ValidityState", + "properties": { + "property": { + "tooShort": { + "name": "tooShort", + "flavor": "Web", + "read-only": "1", + "override-type": "boolean" + } + } + } + }, + "HTMLDialogElement": { + "name": "HTMLDialogElement", + "extends": "HTMLElement", + "flavor": "Web", + "properties": { + "property": { + "open": { + "name": "open", + "override-type": "boolean" + }, + "returnValue": { + "name": "returnValue", + "override-type": "string" + } + } + }, + "methods": { + "method": { + "close": { + "name": "close", + "override-signatures": [ + "close(returnValue?: string): void" + ] + }, + "show": { + "name": "show", + "override-signatures": [ + "show(): void" + ] + }, + "showModal": { + "name": "showModal", + "override-signatures": [ + "showModal(): void" + ] + } + } + }, + "constructor": { + "override-signatures": [ + "new(): HTMLDialogElement" + ] + } + }, + "HTMLMainElement": { + "name": "HTMLMainElement", + "extends": "HTMLElement", + "flavor": "Web", + "constructor": { + "override-signatures": [ + "new(): HTMLMainElement" + ] + } + }, + "HTMLDetailsElement": { + "name": "HTMLDetailsElement", + "extends": "HTMLElement", + "flavor": "Web", + "properties": { + "property": { + "open": { + "name": "open", + "override-type": "boolean" + } + } + }, + "constructor": { + "override-signatures": [ + "new(): HTMLDetailsElement" + ] + } + }, + "HTMLSummaryElement": { + "name": "HTMLSummaryElement", + "extends": "HTMLElement", + "flavor": "Web", + "constructor": { + "override-signatures": [ + "new(): HTMLSummaryElement" + ] + } + }, + "DOMRectReadOnly": { + "name": "DOMRectReadOnly", + "flavor": "Web", + "properties": { + "property": { + "bottom": { + "name": "bottom", + "read-only": "1", + "override-type": "number" + }, + "height": { + "name": "height", + "read-only": "1", + "override-type": "number" + }, + "left": { + "name": "left", + "read-only": "1", + "override-type": "number" + }, + "right": { + "name": "right", + "read-only": "1", + "override-type": "number" + }, + "top": { + "name": "top", + "read-only": "1", + "override-type": "number" + }, + "width": { + "name": "width", + "read-only": "1", + "override-type": "number" + }, + "x": { + "name": "x", + "read-only": "1", + "override-type": "number" + }, + "y": { + "name": "y", + "read-only": "1", + "override-type": "number" + } + } + }, + "constructor": { + "override-signatures": [ + "new (x?: number, y?: number, width?: number, height?: number): DOMRectReadOnly", + "fromRect(rectangle?: DOMRectInit): DOMRectReadOnly" + ] + } + }, + "EXT_blend_minmax": { + "name": "EXT_blend_minmax", + "flavor": "Web", + "properties": { + "property": { + "MIN_EXT": { + "name": "MIN_EXT", + "read-only": "1", + "override-type": "number" + }, + "MAX_EXT": { + "name": "MAX_EXT", + "read-only": "1", + "override-type": "number" + } + } + }, + "no-interface-object": "1" + }, + "EXT_frag_depth": { + "name": "EXT_frag_depth", + "flavor": "Web", + "properties": { + "property": {} + }, + "no-interface-object": "1" + }, + "EXT_shader_texture_lod": { + "name": "EXT_shader_texture_lod", + "flavor": "Web", + "properties": { + "property": {} + }, + "no-interface-object": "1" + }, + "EXT_sRGB": { + "name": "EXT_sRGB", + "flavor": "Web", + "properties": { + "property": { + "SRGB_EXT": { + "name": "SRGB_EXT", + "read-only": "1", + "override-type": "number" + }, + "SRGB_ALPHA_EXT": { + "name": "SRGB_ALPHA_EXT", + "read-only": "1", + "override-type": "number" + }, + "SRGB8_ALPHA8_EXT": { + "name": "SRGB8_ALPHA8_EXT", + "read-only": "1", + "override-type": "number" + }, + "FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT": { + "name": "FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT", + "read-only": "1", + "override-type": "number" + } + } + }, + "no-interface-object": "1" + }, + "DOMRect": { + "name": "DOMRect", + "extends": "DOMRectReadOnly", + "flavor": "Web", + "properties": { + "property": { + "height": { + "name": "height", + "override-type": "number" + }, + "width": { + "name": "width", + "override-type": "number" + }, + "x": { + "name": "x", + "override-type": "number" + }, + "y": { + "name": "y", + "override-type": "number" + } + } + }, + "constructor": { + "override-signatures": [ + "new (x?: number, y?: number, width?: number, height?: number): DOMRect", + "fromRect(rectangle?: DOMRectInit): DOMRect" + ] + } + }, + "DOMRectList": { + "name": "DOMRectList", + "flavor": "Web", + "properties": { + "property": { + "length": { + "name": "length", + "read-only": "1", + "override-type": "number" + } + } + }, + "methods": { + "method": { + "item": { + "name": "item", + "override-signatures": [ + "item(index: number): DOMRect | null" + ] + } + } + }, + "no-interface-object": "1", + "overide-index-signatures": [ + "[index: number]: DOMRect" ] - } - ] - }, - { - "kind": "interface", - "name": "WebGLVertexArrayObjectOES", - "flavor": "Web", - "properties": [] - }, - { - "kind": "interface", - "name": "WEBGL_color_buffer_float", - "flavor": "Web", - "properties": [ - { - "readonly": true, - "name": "RGBA32F_EXT", - "type": "number" - }, - { - "readonly": true, - "name": "RGB32F_EXT", - "type": "number" - }, - { - "readonly": true, - "name": "FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT", - "type": "number" - }, - { - "readonly": true, - "name": "UNSIGNED_NORMALIZED_EXT", - "type": "number" - } - ] - }, - { - "kind": "interface", - "name": "WEBGL_compressed_texture_astc", - "flavor": "Web", - "properties": [ - { - "readonly": true, - "name": "COMPRESSED_RGBA_ASTC_4x4_KHR", - "type": "number" - }, - { - "readonly": true, - "name": "COMPRESSED_RGBA_ASTC_5x4_KHR", - "type": "number" - }, - { - "readonly": true, - "name": "COMPRESSED_RGBA_ASTC_5x5_KHR", - "type": "number" - }, - { - "readonly": true, - "name": "COMPRESSED_RGBA_ASTC_6x5_KHR", - "type": "number" - }, - { - "readonly": true, - "name": "COMPRESSED_RGBA_ASTC_6x6_KHR", - "type": "number" - }, - { - "readonly": true, - "name": "COMPRESSED_RGBA_ASTC_8x5_KHR", - "type": "number" - }, - { - "readonly": true, - "name": "COMPRESSED_RGBA_ASTC_8x6_KHR", - "type": "number" - }, - { - "readonly": true, - "name": "COMPRESSED_RGBA_ASTC_8x8_KHR", - "type": "number" - }, - { - "readonly": true, - "name": "COMPRESSED_RGBA_ASTC_10x5_KHR", - "type": "number" - }, - { - "readonly": true, - "name": "COMPRESSED_RGBA_ASTC_10x6_KHR", - "type": "number" - }, - { - "readonly": true, - "name": "COMPRESSED_RGBA_ASTC_10x8_KHR", - "type": "number" - }, - { - "readonly": true, - "name": "COMPRESSED_RGBA_ASTC_10x10_KHR", - "type": "number" - }, - { - "readonly": true, - "name": "COMPRESSED_RGBA_ASTC_12x10_KHR", - "type": "number" - }, - { - "readonly": true, - "name": "COMPRESSED_RGBA_ASTC_12x12_KHR", - "type": "number" - }, - { - "readonly": true, - "name": "COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR", - "type": "number" - }, - { - "readonly": true, - "name": "COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR", - "type": "number" - }, - { - "readonly": true, - "name": "COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR", - "type": "number" - }, - { - "readonly": true, - "name": "COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR", - "type": "number" - }, - { - "readonly": true, - "name": "COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR", - "type": "number" - }, - { - "readonly": true, - "name": "COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR", - "type": "number" - }, - { - "readonly": true, - "name": "COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR", - "type": "number" - }, - { - "readonly": true, - "name": "COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR", - "type": "number" - }, - { - "readonly": true, - "name": "COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR", - "type": "number" - }, - { - "readonly": true, - "name": "COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR", - "type": "number" - }, - { - "readonly": true, - "name": "COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR", - "type": "number" - }, - { - "readonly": true, - "name": "COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR", - "type": "number" }, - { - "readonly": true, - "name": "COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR", - "type": "number" + "HTMLFormElement": { + "name": "HTMLFormElement", + "methods": { + "method": { + "reportValidity": { + "name": "reportValidity", + "flavor": "Web", + "override-signatures": [ + "reportValidity(): boolean" + ] + } + } + } + }, + "OES_vertex_array_object": { + "name": "OES_vertex_array_object", + "flavor": "Web", + "properties": { + "property": { + "VERTEX_ARRAY_BINDING_OES": { + "name": "VERTEX_ARRAY_BINDING_OES", + "read-only": "1", + "override-type": "number" + } + } + }, + "methods": { + "method": { + "createVertexArrayOES": { + "name": "createVertexArrayOES", + "override-signatures": [ + "createVertexArrayOES(): WebGLVertexArrayObjectOES" + ] + }, + "deleteVertexArrayOES": { + "name": "deleteVertexArrayOES", + "override-signatures": [ + "deleteVertexArrayOES(arrayObject: WebGLVertexArrayObjectOES): void" + ] + }, + "isVertexArrayOES": { + "name": "isVertexArrayOES", + "override-signatures": [ + "isVertexArrayOES(value: any): value is WebGLVertexArrayObjectOES" + ] + }, + "bindVertexArrayOES": { + "name": "bindVertexArrayOES", + "override-signatures": [ + "bindVertexArrayOES(arrayObject: WebGLVertexArrayObjectOES): void" + ] + } + } + }, + "no-interface-object": "1" + }, + "WebGLVertexArrayObjectOES": { + "name": "WebGLVertexArrayObjectOES", + "flavor": "Web", + "properties": { + "property": {} + }, + "no-interface-object": "1" + }, + "WEBGL_color_buffer_float": { + "name": "WEBGL_color_buffer_float", + "flavor": "Web", + "properties": { + "property": { + "RGBA32F_EXT": { + "name": "RGBA32F_EXT", + "read-only": "1", + "override-type": "number" + }, + "RGB32F_EXT": { + "name": "RGB32F_EXT", + "read-only": "1", + "override-type": "number" + }, + "FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT": { + "name": "FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT", + "read-only": "1", + "override-type": "number" + }, + "UNSIGNED_NORMALIZED_EXT": { + "name": "UNSIGNED_NORMALIZED_EXT", + "read-only": "1", + "override-type": "number" + } + } + }, + "no-interface-object": "1" + }, + "WEBGL_compressed_texture_astc": { + "name": "WEBGL_compressed_texture_astc", + "flavor": "Web", + "properties": { + "property": { + "COMPRESSED_RGBA_ASTC_4x4_KHR": { + "name": "COMPRESSED_RGBA_ASTC_4x4_KHR", + "read-only": "1", + "override-type": "number" + }, + "COMPRESSED_RGBA_ASTC_5x4_KHR": { + "name": "COMPRESSED_RGBA_ASTC_5x4_KHR", + "read-only": "1", + "override-type": "number" + }, + "COMPRESSED_RGBA_ASTC_5x5_KHR": { + "name": "COMPRESSED_RGBA_ASTC_5x5_KHR", + "read-only": "1", + "override-type": "number" + }, + "COMPRESSED_RGBA_ASTC_6x5_KHR": { + "name": "COMPRESSED_RGBA_ASTC_6x5_KHR", + "read-only": "1", + "override-type": "number" + }, + "COMPRESSED_RGBA_ASTC_6x6_KHR": { + "name": "COMPRESSED_RGBA_ASTC_6x6_KHR", + "read-only": "1", + "override-type": "number" + }, + "COMPRESSED_RGBA_ASTC_8x5_KHR": { + "name": "COMPRESSED_RGBA_ASTC_8x5_KHR", + "read-only": "1", + "override-type": "number" + }, + "COMPRESSED_RGBA_ASTC_8x6_KHR": { + "name": "COMPRESSED_RGBA_ASTC_8x6_KHR", + "read-only": "1", + "override-type": "number" + }, + "COMPRESSED_RGBA_ASTC_8x8_KHR": { + "name": "COMPRESSED_RGBA_ASTC_8x8_KHR", + "read-only": "1", + "override-type": "number" + }, + "COMPRESSED_RGBA_ASTC_10x5_KHR": { + "name": "COMPRESSED_RGBA_ASTC_10x5_KHR", + "read-only": "1", + "override-type": "number" + }, + "COMPRESSED_RGBA_ASTC_10x6_KHR": { + "name": "COMPRESSED_RGBA_ASTC_10x6_KHR", + "read-only": "1", + "override-type": "number" + }, + "COMPRESSED_RGBA_ASTC_10x8_KHR": { + "name": "COMPRESSED_RGBA_ASTC_10x8_KHR", + "read-only": "1", + "override-type": "number" + }, + "COMPRESSED_RGBA_ASTC_10x10_KHR": { + "name": "COMPRESSED_RGBA_ASTC_10x10_KHR", + "read-only": "1", + "override-type": "number" + }, + "COMPRESSED_RGBA_ASTC_12x10_KHR": { + "name": "COMPRESSED_RGBA_ASTC_12x10_KHR", + "read-only": "1", + "override-type": "number" + }, + "COMPRESSED_RGBA_ASTC_12x12_KHR": { + "name": "COMPRESSED_RGBA_ASTC_12x12_KHR", + "read-only": "1", + "override-type": "number" + }, + "COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR": { + "name": "COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR", + "read-only": "1", + "override-type": "number" + }, + "COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR": { + "name": "COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR", + "read-only": "1", + "override-type": "number" + }, + "COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR": { + "name": "COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR", + "read-only": "1", + "override-type": "number" + }, + "COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR": { + "name": "COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR", + "read-only": "1", + "override-type": "number" + }, + "COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR": { + "name": "COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR", + "read-only": "1", + "override-type": "number" + }, + "COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR": { + "name": "COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR", + "read-only": "1", + "override-type": "number" + }, + "COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR": { + "name": "COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR", + "read-only": "1", + "override-type": "number" + }, + "COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR": { + "name": "COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR", + "read-only": "1", + "override-type": "number" + }, + "COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR": { + "name": "COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR", + "read-only": "1", + "override-type": "number" + }, + "COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR": { + "name": "COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR", + "read-only": "1", + "override-type": "number" + }, + "COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR": { + "name": "COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR", + "read-only": "1", + "override-type": "number" + }, + "COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR": { + "name": "COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR", + "read-only": "1", + "override-type": "number" + }, + "COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR": { + "name": "COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR", + "read-only": "1", + "override-type": "number" + }, + "COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR": { + "name": "COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR", + "read-only": "1", + "override-type": "number" + } + } + }, + "methods": { + "method": { + "getSupportedProfiles": { + "name": "getSupportedProfiles", + "override-signatures": [ + "getSupportedProfiles(): string[]" + ] + } + } + }, + "no-interface-object": "1" + }, + "WEBGL_compressed_texture_s3tc_srgb": { + "name": "WEBGL_compressed_texture_s3tc_srgb", + "flavor": "Web", + "properties": { + "property": { + "COMPRESSED_SRGB_S3TC_DXT1_EXT": { + "name": "COMPRESSED_SRGB_S3TC_DXT1_EXT", + "read-only": "1", + "override-type": "number" + }, + "COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT": { + "name": "COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT", + "read-only": "1", + "override-type": "number" + }, + "COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT": { + "name": "COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT", + "read-only": "1", + "override-type": "number" + }, + "COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT": { + "name": "COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT", + "read-only": "1", + "override-type": "number" + } + } + }, + "no-interface-object": "1" + }, + "WEBGL_debug_shaders": { + "name": "WEBGL_debug_shaders", + "flavor": "Web", + "methods": { + "method": { + "getTranslatedShaderSource": { + "name": "getTranslatedShaderSource", + "override-signatures": [ + "getTranslatedShaderSource(shader: WebGLShader): string" + ] + } + } + }, + "no-interface-object": "1" + }, + "WEBGL_draw_buffers": { + "name": "WEBGL_draw_buffers", + "flavor": "Web", + "properties": { + "property": { + "COLOR_ATTACHMENT0_WEBGL": { + "name": "COLOR_ATTACHMENT0_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "COLOR_ATTACHMENT1_WEBGL": { + "name": "COLOR_ATTACHMENT1_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "COLOR_ATTACHMENT2_WEBGL": { + "name": "COLOR_ATTACHMENT2_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "COLOR_ATTACHMENT3_WEBGL": { + "name": "COLOR_ATTACHMENT3_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "COLOR_ATTACHMENT4_WEBGL": { + "name": "COLOR_ATTACHMENT4_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "COLOR_ATTACHMENT5_WEBGL": { + "name": "COLOR_ATTACHMENT5_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "COLOR_ATTACHMENT6_WEBGL": { + "name": "COLOR_ATTACHMENT6_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "COLOR_ATTACHMENT7_WEBGL": { + "name": "COLOR_ATTACHMENT7_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "COLOR_ATTACHMENT8_WEBGL": { + "name": "COLOR_ATTACHMENT8_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "COLOR_ATTACHMENT9_WEBGL": { + "name": "COLOR_ATTACHMENT9_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "COLOR_ATTACHMENT10_WEBGL": { + "name": "COLOR_ATTACHMENT10_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "COLOR_ATTACHMENT11_WEBGL": { + "name": "COLOR_ATTACHMENT11_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "COLOR_ATTACHMENT12_WEBGL": { + "name": "COLOR_ATTACHMENT12_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "COLOR_ATTACHMENT13_WEBGL": { + "name": "COLOR_ATTACHMENT13_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "COLOR_ATTACHMENT14_WEBGL": { + "name": "COLOR_ATTACHMENT14_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "COLOR_ATTACHMENT15_WEBGL": { + "name": "COLOR_ATTACHMENT15_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "DRAW_BUFFER0_WEBGL": { + "name": "DRAW_BUFFER0_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "DRAW_BUFFER1_WEBGL": { + "name": "DRAW_BUFFER1_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "DRAW_BUFFER2_WEBGL": { + "name": "DRAW_BUFFER2_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "DRAW_BUFFER3_WEBGL": { + "name": "DRAW_BUFFER3_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "DRAW_BUFFER4_WEBGL": { + "name": "DRAW_BUFFER4_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "DRAW_BUFFER5_WEBGL": { + "name": "DRAW_BUFFER5_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "DRAW_BUFFER6_WEBGL": { + "name": "DRAW_BUFFER6_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "DRAW_BUFFER7_WEBGL": { + "name": "DRAW_BUFFER7_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "DRAW_BUFFER8_WEBGL": { + "name": "DRAW_BUFFER8_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "DRAW_BUFFER9_WEBGL": { + "name": "DRAW_BUFFER9_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "DRAW_BUFFER10_WEBGL": { + "name": "DRAW_BUFFER10_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "DRAW_BUFFER11_WEBGL": { + "name": "DRAW_BUFFER11_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "DRAW_BUFFER12_WEBGL": { + "name": "DRAW_BUFFER12_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "DRAW_BUFFER13_WEBGL": { + "name": "DRAW_BUFFER13_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "DRAW_BUFFER14_WEBGL": { + "name": "DRAW_BUFFER14_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "DRAW_BUFFER15_WEBGL": { + "name": "DRAW_BUFFER15_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "MAX_COLOR_ATTACHMENTS_WEBGL": { + "name": "MAX_COLOR_ATTACHMENTS_WEBGL", + "read-only": "1", + "override-type": "number" + }, + "MAX_DRAW_BUFFERS_WEBGL": { + "name": "MAX_DRAW_BUFFERS_WEBGL", + "read-only": "1", + "override-type": "number" + } + } + }, + "methods": { + "method": { + "drawBuffersWEBGL": { + "name": "drawBuffersWEBGL", + "override-signatures": [ + "drawBuffersWEBGL(buffers: number[]): void" + ] + } + } + }, + "no-interface-object": "1" + }, + "WEBGL_lose_context": { + "name": "WEBGL_lose_context", + "flavor": "Web", + "methods": { + "method": { + "loseContext": { + "name": "loseContext", + "override-signatures": [ + "loseContext(): void" + ] + }, + "restoreContext": { + "name": "restoreContext", + "override-signatures": [ + "restoreContext(): void" + ] + } + } + }, + "no-interface-object": "1" + }, + "HTMLLabelElement": { + "name": "HTMLLabelElement", + "properties": { + "property": { + "control": { + "name": "control", + "read-only": "1", + "override-type": "HTMLInputElement | null" + } + } + } + }, + "HTMLObjectElement": { + "name": "HTMLObjectElement", + "properties": { + "property": { + "typemustmatch": { + "name": "typemustmatch", + "override-type": "boolean" + } + } + } + }, + "File": { + "name": "File", + "properties": { + "property": { + "lastModified": { + "name": "lastModified", + "read-only": "1", + "override-type": "number" + } + } + } + }, + "EventSource": { + "name": "EventSource", + "extends": "EventTarget", + "properties": { + "property": { + "url": { + "name": "url", + "read-only": "1", + "override-type": "string" + }, + "withCredentials": { + "name": "withCredentials", + "read-only": "1", + "override-type": "boolean" + }, + "CONNECTING": { + "name": "CONNECTING", + "read-only": "1", + "override-type": "number" + }, + "OPEN": { + "name": "OPEN", + "read-only": "1", + "override-type": "number" + }, + "CLOSED": { + "name": "CLOSED", + "read-only": "1", + "override-type": "number" + }, + "readyState": { + "name": "readyState", + "read-only": "1", + "override-type": "number" + }, + "onopen": { + "name": "onopen", + "override-type": "(evt: MessageEvent) => any" + }, + "onmessage": { + "name": "onmessage", + "override-type": "(evt: MessageEvent) => any" + }, + "onerror": { + "name": "onerror", + "override-type": "(evt: MessageEvent) => any" + } + } + }, + "methods": { + "method": { + "close": { + "name": "close", + "override-signatures": [ + "close(): void" + ] + } + } + }, + "constructor": { + "override-signatures": [ + "new(url: string, eventSourceInitDict?: EventSourceInit): EventSource" + ] + } + }, + "EventSourceInit": { + "name": "EventSourceInit", + "properties": { + "property": { + "withCredentials": { + "name": "withCredentials", + "read-only": "1", + "override-type": "boolean" + } + } + }, + "no-interface-object": "1" + }, + "AnimationKeyFrame": { + "flavor": "Web", + "name": "AnimationKeyFrame", + "properties": { + "property": { + "offset": { + "name": "offset", + "override-type": "number | null | (number | null)[]", + "required": "false" + }, + "easing": { + "name": "easing", + "override-type": "string | string[]", + "required": "false" + } + } + }, + "no-interface-object": "1", + "overide-index-signatures": [ + "[index: string]: string | number | number[] | string[] | null | (number | null)[] | undefined" + ] }, - { - "readonly": true, - "name": "COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR", - "type": "number" - } - ], - "methods": [ - { - "name": "getSupportedProfiles", - "signatures": [ - "getSupportedProfiles(): string[]" + "AnimationOptions": { + "flavor": "Web", + "name": "AnimationOptions", + "properties": { + "property": { + "id": { + "name": "id", + "override-type": "string", + "required": "false" + }, + "delay": { + "name": "delay", + "override-type": "number", + "required": "false" + }, + "direction": { + "name": "direction", + "override-type": "\"normal\" | \"reverse\" | \"alternate\" | \"alternate-reverse\"", + "required": "false" + }, + "duration": { + "name": "duration", + "override-type": "number", + "required": "false" + }, + "easing": { + "name": "easing", + "override-type": "string", + "required": "false" + }, + "endDelay": { + "name": "endDelay", + "override-type": "number", + "required": "false" + }, + "fill": { + "name": "fill", + "override-type": "\"none\" | \"forwards\" | \"backwards\" | \"both\"| \"auto\"", + "required": "false" + }, + "iterationStart": { + "name": "iterationStart", + "override-type": "number", + "required": "false" + }, + "iterations": { + "name": "iterations", + "override-type": "number", + "required": "false" + } + } + }, + "no-interface-object": "1" + }, + "AnimationTimeline": { + "flavor": "Web", + "name": "AnimationTimeline", + "properties": { + "property": { + "currentTime": { + "name": "currentTime", + "read-only": "1", + "override-type": "number | null" + } + } + }, + "no-interface-object": "1" + }, + "ComputedTimingProperties": { + "flavor": "Web", + "name": "ComputedTimingProperties", + "properties": { + "property": { + "endTime": { + "name": "endTime", + "override-type": "number" + }, + "activeDuration": { + "name": "activeDuration", + "override-type": "number" + }, + "localTime": { + "name": "localTime", + "override-type": "number | null" + }, + "progress": { + "name": "progress", + "override-type": "number | null" + }, + "currentIteration": { + "name": "currentIteration", + "override-type": "number | null" + } + } + }, + "no-interface-object": "1" + }, + "AnimationEffectReadOnly": { + "flavor": "Web", + "name": "AnimationEffectReadOnly", + "properties": { + "property": { + "timing": { + "name": "timing", + "read-only": "1", + "override-type": "number" + } + } + }, + "methods": { + "method": { + "getComputedTiming": { + "name": "getComputedTiming", + "override-signatures": [ + "getComputedTiming(): ComputedTimingProperties" + ] + } + } + }, + "no-interface-object": "1" + }, + "AnimationPlaybackEventInit": { + "flavor": "Web", + "name": "AnimationPlaybackEventInit", + "extends": "EventInit", + "properties": { + "property": { + "currentTime": { + "name": "currentTime", + "override-type": "number | null", + "required": "false" + }, + "timelineTime": { + "name": "timelineTime", + "override-type": "number | null", + "required": "false" + } + } + }, + "no-interface-object": "1" + }, + "AnimationPlaybackEvent": { + "flavor": "Web", + "name": "AnimationPlaybackEvent", + "extends": "Event", + "properties": { + "property": { + "currentTime": { + "name": "currentTime", + "read-only": "1", + "override-type": "number | null" + }, + "timelineTime": { + "name": "timelineTime", + "read-only": "1", + "override-type": "number | null" + } + } + }, + "constructor": { + "override-signatures": [ + "new(type: string, eventInitDict?: AnimationPlaybackEventInit): AnimationPlaybackEvent" + ] + } + }, + "Animation": { + "flavor": "Web", + "name": "Animation", + "properties": { + "property": { + "currentTime": { + "name": "currentTime", + "override-type": "number | null" + }, + "effect": { + "name": "effect", + "override-type": "AnimationEffectReadOnly" + }, + "finished": { + "name": "finished", + "read-only": "1", + "override-type": "Promise" + }, + "id": { + "name": "id", + "override-type": "string" + }, + "pending": { + "name": "pending", + "read-only": "1", + "override-type": "boolean" + }, + "playState": { + "name": "playState", + "read-only": "1", + "override-type": "\"idle\" | \"running\" | \"paused\" | \"finished\"" + }, + "playbackRate": { + "name": "playbackRate", + "override-type": "number" + }, + "ready": { + "name": "ready", + "read-only": "1", + "override-type": "Promise" + }, + "startTime": { + "name": "startTime", + "override-type": "number" + }, + "timeline": { + "name": "timeline", + "override-type": "AnimationTimeline" + } + } + }, + "methods": { + "method": { + "oncancel": { + "name": "oncancel", + "override-signatures": [ + "oncancel: (this: Animation, ev: AnimationPlaybackEvent) => any" + ] + }, + "onfinish": { + "name": "onfinish", + "override-signatures": [ + "onfinish: (this: Animation, ev: AnimationPlaybackEvent) => any" + ] + }, + "cancel": { + "name": "cancel", + "override-signatures": [ + "cancel(): void" + ] + }, + "finish": { + "name": "finish", + "override-signatures": [ + "finish(): void" + ] + }, + "pause": { + "name": "pause", + "override-signatures": [ + "pause(): void" + ] + }, + "play": { + "name": "play", + "override-signatures": [ + "play(): void" + ] + }, + "reverse": { + "name": "reverse", + "override-signatures": [ + "reverse(): void" + ] + } + } + }, + "constructor": { + "override-signatures": [ + "new(effect?: AnimationEffectReadOnly, timeline?: AnimationTimeline): Animation" + ] + } + }, + "HTMLElement": { + "name": "HTMLElement", + "methods": { + "method": { + "animate": { + "name": "animate", + "override-signatures": [ + "animate(keyframes: AnimationKeyFrame | AnimationKeyFrame[], options: number | AnimationOptions): Animation" + ] + } + } + } + }, + "Screen": { + "name": "Screen", + "methods": { + "method": { + "lockOrientation": { + "name": "lockOrientation", + "override-signatures": [ + "lockOrientation(orientations: OrientationLockType | OrientationLockType[]): boolean" + ] + }, + "unlockOrientation": { + "name": "unlockOrientation", + "override-signatures": [ + "unlockOrientation(): void" + ] + } + } + } + }, + "HTMLTableDataCellElement": { + "name": "HTMLTableDataCellElement", + "extends": "HTMLTableCellElement", + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "td" + } ] - } - ] - }, - { - "kind": "interface", - "name": "WEBGL_compressed_texture_s3tc_srgb", - "flavor": "Web", - "properties": [ - { - "readonly": true, - "name": "COMPRESSED_SRGB_S3TC_DXT1_EXT", - "type": "number" }, - { - "readonly": true, - "name": "COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT", - "type": "number" + "HTMLTableHeaderCellElement": { + "name": "HTMLTableHeaderCellElement", + "extends": "HTMLTableCellElement", + "properties": { + "property": { + "scope": { + "name": "scope", + "override-type": "string" + } + } + }, + "element": [ + { + "name": "th" + } + ] }, - { - "readonly": true, - "name": "COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT", - "type": "number" + "NodeSelector": { + "name": "NodeSelector", + "extends": "Object", + "no-interface-object": "1", + "methods": { + "method": { + "querySelectorAll": { + "signature": [ + { + "param-min-required": 1, + "type": "NodeList", + "param": [ + { + "name": "selectors", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "NodeList" + } + ], + "name": "querySelectorAll" + }, + "querySelector": { + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "Element", + "param": [ + { + "name": "selectors", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "Element?" + } + ], + "name": "querySelector" + } + } + } + }, + "CSS": { + "name": "CSS", + "methods": { + "method": { + "escape": { + "name": "escape", + "override-signatures": [ + "escape(value: string): string" + ], + "static": 1 + } + } + } + } + } + }, + "dictionaries": { + "dictionary": { + "IDBObjectStoreParameters": { + "name": "IDBObjectStoreParameters", + "members": { + "member": { + "autoIncrement": { + "name": "autoIncrement", + "override-type": "boolean", + "required": "false" + } + } + } + }, + "IDBIndexParameters": { + "name": "IDBIndexParameters", + "members": { + "member": { + "multiEntry": { + "name": "multiEntry", + "override-type": "boolean", + "required": "false" + } + } + } + }, + "MessageEventInit": { + "name": "MessageEventInit", + "members": { + "member": { + "lastEventId": { + "name": "lastEventId", + "override-type": "string", + "required": "false" + }, + "channel": { + "name": "channel", + "override-type": "string", + "required": "false" + } + } + } + }, + "WebGLContextAttributes": { + "name": "WebGLContextAttributes", + "members": { + "member": { + "failIfMajorPerformanceCaveat": { + "name": "failIfMajorPerformanceCaveat", + "override-type": "boolean", + "required": "false" + } + } + } + }, + "KeyboardEventInit": { + "name": "KeyboardEventInit", + "members": { + "member": { + "code": { + "name": "code", + "override-type": "string", + "required": "false" + } + } + } }, - { - "readonly": true, - "name": "COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT", - "type": "number" - } - ] - }, - { - "kind": "interface", - "name": "WEBGL_debug_shaders", - "flavor": "Web", - "methods": [ - { - "name": "getTranslatedShaderSource", - "signatures": [ - "getTranslatedShaderSource(shader: WebGLShader): string" - ] + "EventInit": { + "name": "EventInit", + "members": { + "member": { + "scoped": { + "name": "scoped", + "override-type": "boolean", + "required": "false" + } + } + } } - ] + } }, - { - "kind": "interface", - "name": "WEBGL_draw_buffers", - "flavor": "Web", - "properties": [ - { - "readonly": true, - "name": "COLOR_ATTACHMENT0_WEBGL", - "type": "number" - }, - { - "readonly": true, - "name": "COLOR_ATTACHMENT1_WEBGL", - "type": "number" - }, - { - "readonly": true, - "name": "COLOR_ATTACHMENT2_WEBGL", - "type": "number" - }, - { - "readonly": true, - "name": "COLOR_ATTACHMENT3_WEBGL", - "type": "number" - }, - { - "readonly": true, - "name": "COLOR_ATTACHMENT4_WEBGL", - "type": "number" - }, - { - "readonly": true, - "name": "COLOR_ATTACHMENT5_WEBGL", - "type": "number" - }, - { - "readonly": true, - "name": "COLOR_ATTACHMENT6_WEBGL", - "type": "number" - }, - { - "readonly": true, - "name": "COLOR_ATTACHMENT7_WEBGL", - "type": "number" - }, - { - "readonly": true, - "name": "COLOR_ATTACHMENT8_WEBGL", - "type": "number" - }, - { - "readonly": true, - "name": "COLOR_ATTACHMENT9_WEBGL", - "type": "number" - }, - { - "readonly": true, - "name": "COLOR_ATTACHMENT10_WEBGL", - "type": "number" - }, - { - "readonly": true, - "name": "COLOR_ATTACHMENT11_WEBGL", - "type": "number" - }, - { - "readonly": true, - "name": "COLOR_ATTACHMENT12_WEBGL", - "type": "number" - }, - { - "readonly": true, - "name": "COLOR_ATTACHMENT13_WEBGL", - "type": "number" - }, - { - "readonly": true, - "name": "COLOR_ATTACHMENT14_WEBGL", - "type": "number" - }, - { - "readonly": true, - "name": "COLOR_ATTACHMENT15_WEBGL", - "type": "number" - }, - { - "readonly": true, - "name": "DRAW_BUFFER0_WEBGL", - "type": "number" - }, - { - "readonly": true, - "name": "DRAW_BUFFER1_WEBGL", - "type": "number" - }, - { - "readonly": true, - "name": "DRAW_BUFFER2_WEBGL", - "type": "number" - }, - { - "readonly": true, - "name": "DRAW_BUFFER3_WEBGL", - "type": "number" - }, - { - "readonly": true, - "name": "DRAW_BUFFER4_WEBGL", - "type": "number" - }, - { - "readonly": true, - "name": "DRAW_BUFFER5_WEBGL", - "type": "number" - }, - { - "readonly": true, - "name": "DRAW_BUFFER6_WEBGL", - "type": "number" - }, - { - "readonly": true, - "name": "DRAW_BUFFER7_WEBGL", - "type": "number" - }, - { - "readonly": true, - "name": "DRAW_BUFFER8_WEBGL", - "type": "number" - }, - { - "readonly": true, - "name": "DRAW_BUFFER9_WEBGL", - "type": "number" - }, - { - "readonly": true, - "name": "DRAW_BUFFER10_WEBGL", - "type": "number" - }, - { - "readonly": true, - "name": "DRAW_BUFFER11_WEBGL", - "type": "number" - }, - { - "readonly": true, - "name": "DRAW_BUFFER12_WEBGL", - "type": "number" - }, - { - "readonly": true, - "name": "DRAW_BUFFER13_WEBGL", - "type": "number" - }, + "typedefs": { + "typedef": [ { - "readonly": true, - "name": "DRAW_BUFFER14_WEBGL", - "type": "number" + "override-type": "\"auto\" | \"instant\" | \"smooth\"", + "new-type": "ScrollBehavior" }, { - "readonly": true, - "name": "DRAW_BUFFER15_WEBGL", - "type": "number" + "override-type": "\"start\" | \"center\" | \"end\" | \"nearest\"", + "new-type": "ScrollLogicalPosition" }, { - "readonly": true, - "name": "MAX_COLOR_ATTACHMENTS_WEBGL", - "type": "number" + "override-type": "WheelEvent", + "new-type": "MouseWheelEvent" }, { - "readonly": true, - "name": "MAX_DRAW_BUFFERS_WEBGL", - "type": "number" - } - ], - "methods": [ - { - "name": "drawBuffersWEBGL", - "signatures": [ - "drawBuffersWEBGL(buffers: number[]): void" - ] - } - ] - }, - { - "kind": "interface", - "name": "WEBGL_lose_context", - "flavor": "Web", - "methods": [ - { - "name": "loseContext", - "signatures": [ - "loseContext(): void" - ] + "override-type": "\"auto\" | \"manual\"", + "new-type": "ScrollRestoration" }, { - "name": "restoreContext", - "signatures": [ - "restoreContext(): void" - ] - } - ] - }, - { - "kind": "method", - "interface": "HTMLFormElement", - "name": "reportValidity", - "flavor": "Web", - "signatures": [ - "reportValidity(): boolean" - ] - }, - { - "kind": "typedef", - "name": "HeadersInit", - "type": "Headers | string[][] | { [key: string]: string }" - }, - { - "kind": "property", - "interface": "HTMLLabelElement", - "readonly": true, - "name": "control", - "type": "HTMLInputElement | null" - }, - { - "kind": "property", - "interface": "HTMLObjectElement", - "name": "typemustmatch", - "type": "boolean" - }, - { - "kind": "property", - "interface": "File", - "readonly": true, - "name": "lastModified", - "type": "number" - }, - { - "kind": "interface", - "name": "AbortController", - "constructorSignatures": [ - "new(): AbortController" - ], - "properties": [ - { - "readonly": true, - "name": "signal", - "type": "AbortSignal" - } - ], - "methods": [ - { - "name": "abort", - "signatures": [ - "abort(): void" - ] - } - ] - }, - { - "kind": "interface", - "name": "AbortSignal", - "extends": "EventTarget", - "properties": [ - { - "readonly": true, - "name": "aborted", - "type": "boolean" + "override-type": "string | File", + "new-type": "FormDataEntryValue" }, { - "name": "onabort", - "type": "(ev: Event) => any" - } - ] - }, - { - "kind": "property", - "interface": "Request", - "readonly": true, - "name": "signal", - "type": "AbortSignal" - }, - { - "kind": "property", - "interface": "RequestInit", - "name": "signal?", - "type": "AbortSignal" - }, - { - "kind": "interface", - "name": "EventSource", - "extends": "EventTarget", - "constructorSignatures": [ - "new(url: string, eventSourceInitDict?: EventSourceInit): EventSource" - ], - "properties": [ - { - "readonly": true, - "name": "url", - "type": "string" + "override-type": "\"beforebegin\" | \"afterbegin\" | \"beforeend\" | \"afterend\"", + "new-type": "InsertPosition" }, { - "readonly": true, - "name": "withCredentials", - "type": "boolean" + "override-type": "Headers | string[][] | { [key: string]: string }", + "new-type": "HeadersInit" }, { - "readonly": true, - "name": "CONNECTING", - "type": "number" + "override-type": "\"any\" | \"natural\" | \"portrait\" | \"landscape\" | \"portrait-primary\" | \"portrait-secondary\" | \"landscape-primary\"| \"landscape-secondary\"", + "new-type": "OrientationLockType" }, { - "readonly": true, - "name": "OPEN", - "type": "number" + "override-type": "number | string | Date | IDBArrayKey", + "new-type": "IDBValidKey" }, { - "readonly": true, - "name": "CLOSED", - "type": "number" + "override-type": "string | Algorithm", + "new-type": "AlgorithmIdentifier" }, { - "readonly": true, - "name": "readyState", - "type": "number" + "new-type": "MutationRecordType", + "override-type": "\"attributes\" | \"characterData\" | \"childList\"" }, { - "name": "onopen", - "type": "(evt: MessageEvent) => any" + "new-type": "AAGUID", + "override-type": "string" }, { - "name": "onmessage", - "type": "(evt: MessageEvent) => any" + "new-type": "BodyInit", + "override-type": "any" }, { - "name": "onerror", - "type": "(evt: MessageEvent) => any" - } - ], - "methods": [ - { - "name": "close", - "signatures": [ - "close(): void" - ] - } - ] - }, - { - "kind": "interface", - "name": "EventSourceInit", - "properties": [ - { - "readonly": true, - "name": "withCredentials", - "type": "boolean" - } - ] - }, - { - "kind": "property", - "interface": "Document", - "name": "onvisibilitychange", - "type": "(this: Document, ev: Event) => any" - }, - { - "kind": "interface", - "flavor": "Web", - "name": "AnimationKeyFrame", - "properties": [ - { - "name": "offset?", - "type": "number | null | (number | null)[]" + "new-type": "ByteString", + "override-type": "string" }, { - "name": "easing?", - "type": "string | string[]" - } - ], - "indexer": [ - { - "signatures": [ - "[index: string]: string | number | number[] | string[] | null | (number | null)[] | undefined" - ] - } - ] - }, - { - "kind": "interface", - "flavor": "Web", - "name": "AnimationOptions", - "properties": [ - { - "name": "id?", - "type": "string" + "new-type": "ConstrainBoolean", + "override-type": "boolean | ConstrainBooleanParameters" }, { - "name": "delay?", - "type": "number" + "new-type": "ConstrainDOMString", + "override-type": "string | string[] | ConstrainDOMStringParameters" }, { - "name": "direction?", - "type": "\"normal\" | \"reverse\" | \"alternate\" | \"alternate-reverse\"" + "new-type": "ConstrainDouble", + "override-type": "number | ConstrainDoubleRange" }, { - "name": "duration?", - "type": "number" + "new-type": "ConstrainLong", + "override-type": "number | ConstrainLongRange" }, { - "name": "easing?", - "type": "string" + "new-type": "CryptoOperationData", + "override-type": "ArrayBufferView" }, { - "name": "endDelay?", - "type": "number" + "new-type": "GLbitfield", + "override-type": "number" }, { - "name": "fill?", - "type": "\"none\" | \"forwards\" | \"backwards\" | \"both\"| \"auto\"" + "new-type": "GLboolean", + "override-type": "boolean" }, { - "name": "iterationStart?", - "type": "number" + "new-type": "GLbyte", + "override-type": "number" }, { - "name": "iterations?", - "type": "number" - } - ] - }, - { - "kind": "interface", - "flavor": "Web", - "name": "AnimationTimeline", - "properties": [ - { - "readonly": true, - "name": "currentTime", - "type": "number | null" - } - ] - }, - { - "kind": "interface", - "flavor": "Web", - "name": "ComputedTimingProperties", - "properties": [ - { - "name": "endTime", - "type": "number" + "new-type": "GLclampf", + "override-type": "number" }, { - "name": "activeDuration", - "type": "number" + "new-type": "GLenum", + "override-type": "number" }, { - "name": "localTime", - "type": "number | null" + "new-type": "GLfloat", + "override-type": "number" }, { - "name": "progress", - "type": "number | null" + "new-type": "GLint", + "override-type": "number" }, { - "name": "currentIteration", - "type": "number | null" - } - ] - }, - { - "kind": "interface", - "flavor": "Web", - "name": "AnimationEffectReadOnly", - "properties": [ - { - "readonly": true, - "name": "timing", - "type": "number" - } - ], - "methods": [ - { - "name": "getComputedTiming", - "signatures": [ - "getComputedTiming(): ComputedTimingProperties" - ] - } - ] - }, - { - "kind": "interface", - "flavor": "Web", - "name": "AnimationPlaybackEventInit", - "extends": "EventInit", - "properties": [ - { - "name": "currentTime?", - "type": "number | null" + "new-type": "GLintptr", + "override-type": "number" }, { - "name": "timelineTime?", - "type": "number | null" - } - ] - }, - { - "kind": "interface", - "flavor": "Web", - "name": "AnimationPlaybackEvent", - "extends": "Event", - "constructorSignatures": [ - "new(type: string, eventInitDict?: AnimationPlaybackEventInit): AnimationPlaybackEvent" - ], - "properties": [ - { - "readonly": true, - "name": "currentTime", - "type": "number | null" + "new-type": "GLshort", + "override-type": "number" }, { - "readonly": true, - "name": "timelineTime", - "type": "number | null" - } - ] - }, - { - "kind": "interface", - "flavor": "Web", - "name": "Animation", - "constructorSignatures": [ - "new(effect?: AnimationEffectReadOnly, timeline?: AnimationTimeline): Animation" - ], - "properties": [ - { - "name": "currentTime", - "type": "number | null" + "new-type": "GLsizei", + "override-type": "number" }, { - "name": "effect", - "type": "AnimationEffectReadOnly" + "new-type": "GLsizeiptr", + "override-type": "number" }, { - "readonly": true, - "name": "finished", - "type": "Promise" + "new-type": "GLubyte", + "override-type": "number" }, { - "name": "id", - "type": "string" + "new-type": "GLuint", + "override-type": "number" }, { - "readonly": true, - "name": "pending", - "type": "boolean" + "new-type": "GLushort", + "override-type": "number" }, { - "readonly": true, - "name": "playState", - "type": "\"idle\" | \"running\" | \"paused\" | \"finished\"" + "new-type": "IDBKeyPath", + "override-type": "string" }, { - "name": "playbackRate", - "type": "number" + "new-type": "MSInboundPayload", + "override-type": "MSVideoRecvPayload | MSAudioRecvPayload" }, { - "readonly": true, - "name": "ready", - "type": "Promise" + "new-type": "MSLocalClientEvent", + "override-type": "MSLocalClientEventBase | MSAudioLocalClientEvent" }, { - "name": "startTime", - "type": "number" + "new-type": "MSOutboundPayload", + "override-type": "MSVideoSendPayload | MSAudioSendPayload" }, { - "name": "timeline", - "type": "AnimationTimeline" - } - ], - "methods": [ - { - "name": "oncancel", - "signatures": [ - "oncancel: (this: Animation, ev: AnimationPlaybackEvent) => any" - ] + "new-type": "RTCIceGatherCandidate", + "override-type": "RTCIceCandidateDictionary | RTCIceCandidateComplete" }, { - "name": "onfinish", - "signatures": [ - "onfinish: (this: Animation, ev: AnimationPlaybackEvent) => any" - ] + "new-type": "RTCTransport", + "override-type": "RTCDtlsTransport | RTCSrtpSdesTransport" }, { - "name": "cancel", - "signatures": [ - "cancel(): void" - ] + "new-type": "RequestInfo", + "override-type": "Request | string" }, { - "name": "finish", - "signatures": [ - "finish(): void" - ] + "new-type": "USVString", + "override-type": "string" }, { - "name": "pause", - "signatures": [ - "pause(): void" - ] + "new-type": "payloadtype", + "override-type": "number" }, { - "name": "play", - "signatures": [ - "play(): void" - ] + "new-type": "BufferSource", + "override-type": "ArrayBuffer | ArrayBufferView" }, { - "name": "reverse", - "signatures": [ - "reverse(): void" - ] + "new-type": "ClientTypes", + "override-type": "\"window\" | \"worker\" | \"sharedworker\" | \"all\"" } ] - }, - { - "kind": "method", - "name": "animate", - "interface": "HTMLElement", - "signatures": [ - "animate(keyframes: AnimationKeyFrame | AnimationKeyFrame[], options: number | AnimationOptions): Animation" - ] - }, - { - "kind": "typedef", - "flavor": "Web", - "name": "OrientationLockType", - "type": "\"any\" | \"natural\" | \"portrait\" | \"landscape\" | \"portrait-primary\" | \"portrait-secondary\" | \"landscape-primary\"| \"landscape-secondary\"" - }, - { - "kind": "method", - "name": "lockOrientation", - "interface": "Screen", - "signatures": [ - "lockOrientation(orientations: OrientationLockType | OrientationLockType[]): boolean" - ] - }, - { - "kind": "method", - "name": "unlockOrientation", - "interface": "Screen", - "signatures": [ - "unlockOrientation(): void" - ] - }, - { - "kind": "property", - "interface": "DocumentEventMap", - "name": "\"focusin\"", - "type": "FocusEvent" - }, - { - "kind": "property", - "interface": "DocumentEventMap", - "name": "\"focusout\"", - "type": "FocusEvent" - }, - { - "kind": "property", - "interface": "HTMLElementEventMap", - "name": "\"focusin\"", - "type": "FocusEvent" - }, - { - "kind": "property", - "interface": "HTMLElementEventMap", - "name": "\"focusout\"", - "type": "FocusEvent" - }, - { - "kind": "typedef", - "flavor": "Web", - "name": "MutationRecordType", - "type": "\"attributes\" | \"characterData\" | \"childList\"" - }, - { - "kind": "property", - "interface": "HTMLAnchorElement", - "name": "origin", - "readonly": true, - "type": "string" } -] \ No newline at end of file +} \ No newline at end of file diff --git a/inputfiles/browser.webidl.preprocessed.json b/inputfiles/browser.webidl.preprocessed.json new file mode 100644 index 000000000..ba3225bea --- /dev/null +++ b/inputfiles/browser.webidl.preprocessed.json @@ -0,0 +1,94887 @@ +{ + "callback-functions": { + "callback-function": { + "VoidFunction": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "webidl", + "callback": 1, + "name": "VoidFunction" + }, + "NavigatorUserMediaSuccessCallback": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "stream", + "type": "MediaStream", + "type-original": "MediaStream" + } + ], + "type-original": "void" + } + ], + "specs": "media-capture-api", + "callback": 1, + "name": "NavigatorUserMediaSuccessCallback" + }, + "EventHandlerNonNull": { + "specs": "whatwg-html", + "name": "EventHandlerNonNull", + "signature": [ + { + "treat-non-object-as-null": 1, + "param-min-required": 1, + "type": "any", + "param": [ + { + "name": "event", + "type": "Event", + "type-original": "Event" + } + ], + "type-original": "any" + } + ], + "callback": 1 + }, + "DecodeErrorCallback": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "webaudio", + "callback": 1, + "name": "DecodeErrorCallback" + }, + "MediaQueryListListener": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "mql", + "type": "MediaQueryList", + "type-original": "MediaQueryList" + } + ], + "type-original": "void" + } + ], + "specs": "cssom-view", + "callback": 1, + "name": "MediaQueryListListener" + }, + "RTCStatsCallback": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "report", + "type": "RTCStatsReport", + "type-original": "RTCStatsReport" + } + ], + "type-original": "void" + } + ], + "specs": "webrtc", + "callback": 1, + "name": "RTCStatsCallback" + }, + "PositionErrorCallback": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "error", + "type": "PositionError", + "type-original": "PositionError" + } + ], + "type-original": "void" + } + ], + "specs": "geolocation-api", + "callback": 1, + "name": "PositionErrorCallback" + }, + "DecodeSuccessCallback": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "decodedData", + "type": "AudioBuffer", + "type-original": "AudioBuffer" + } + ], + "type-original": "void" + } + ], + "specs": "webaudio", + "callback": 1, + "name": "DecodeSuccessCallback" + }, + "RTCSessionDescriptionCallback": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "sdp", + "type": "RTCSessionDescription", + "type-original": "RTCSessionDescription" + } + ], + "type-original": "void" + } + ], + "specs": "webrtc", + "callback": 1, + "name": "RTCSessionDescriptionCallback" + }, + "NavigatorUserMediaErrorCallback": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "error", + "type": "MediaStreamError", + "type-original": "MediaStreamError" + } + ], + "type-original": "void" + } + ], + "specs": "media-capture-api", + "callback": 1, + "name": "NavigatorUserMediaErrorCallback" + }, + "WritableStreamErrorCallback": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "reason", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "whatwg-streams", + "callback": 1, + "name": "WritableStreamErrorCallback" + }, + "FunctionStringCallback": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "data", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "html51", + "callback": 1, + "name": "FunctionStringCallback" + }, + "PositionCallback": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "position", + "type": "Position", + "type-original": "Position" + } + ], + "type-original": "void" + } + ], + "specs": "geolocation-api", + "callback": 1, + "name": "PositionCallback" + }, + "WritableStreamChunkCallback": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "chunk", + "type": "any", + "type-original": "any" + }, + { + "name": "controller", + "type": "WritableStreamDefaultController", + "type-original": "WritableStreamDefaultController" + } + ], + "type-original": "void" + } + ], + "specs": "whatwg-streams", + "callback": 1, + "name": "WritableStreamChunkCallback" + }, + "MutationCallback": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "subtype": { + "type": "MutationRecord" + }, + "name": "mutations", + "type": "sequence", + "type-original": "sequence" + }, + { + "name": "observer", + "type": "MutationObserver", + "type-original": "MutationObserver" + } + ], + "type-original": "void" + } + ], + "specs": "dom4", + "callback": 1, + "name": "MutationCallback" + }, + "RTCPeerConnectionErrorCallback": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "error", + "type": "DOMError", + "type-original": "DOMError" + } + ], + "type-original": "void" + } + ], + "specs": "webrtc", + "callback": 1, + "name": "RTCPeerConnectionErrorCallback" + }, + "ForEachCallback": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "keyId", + "type": [ + { + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ] + }, + { + "nullable": 1, + "type": "ArrayBuffer" + } + ], + "type-original": "BufferSource" + }, + { + "name": "status", + "type": "MediaKeyStatus", + "type-original": "MediaKeyStatus" + } + ], + "type-original": "void" + } + ], + "specs": "encrypted-media", + "callback": 1, + "name": "ForEachCallback" + }, + "NotificationPermissionCallback": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "permission", + "type": "NotificationPermission", + "type-original": "NotificationPermission" + } + ], + "type-original": "void" + } + ], + "specs": "notifications", + "callback": 1, + "name": "NotificationPermissionCallback" + }, + "WritableStreamDefaultControllerCallback": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "controller", + "type": "WritableStreamDefaultController", + "type-original": "WritableStreamDefaultController" + } + ], + "type-original": "void" + } + ], + "specs": "whatwg-streams", + "callback": 1, + "name": "WritableStreamDefaultControllerCallback" + }, + "ErrorEventHandler": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "event", + "type": [ + { + "type": "Event" + }, + { + "type": "DOMString" + } + ], + "type-original": "(Event or DOMString)" + }, + { + "name": "source", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + }, + { + "name": "fileno", + "type": "unsigned long", + "optional": 1, + "type-original": "unsigned long" + }, + { + "name": "columnNumber", + "type": "unsigned long", + "optional": 1, + "type-original": "unsigned long" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "callback": 1, + "name": "ErrorEventHandler" + }, + "IntersectionObserverCallback": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "subtype": { + "type": "IntersectionObserverEntry" + }, + "name": "entries", + "type": "sequence", + "type-original": "sequence" + }, + { + "name": "observer", + "type": "IntersectionObserver", + "type-original": "IntersectionObserver" + } + ], + "type-original": "void" + } + ], + "specs": "intersection-observer", + "callback": 1, + "name": "IntersectionObserverCallback" + }, + "MSLaunchUriCallback": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "none", + "callback": 1, + "name": "MSLaunchUriCallback" + }, + "FrameRequestCallback": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "time", + "type": "double", + "type-original": "DOMHighResTimeStamp" + } + ], + "type-original": "void" + } + ], + "specs": "animation-timing", + "callback": 1, + "name": "FrameRequestCallback" + } + } + }, + "callback-interfaces": { + "interface": { + "EventListener": { + "constants": { + "constant": {} + }, + "specs": "dom4", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "handleEvent": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "evt", + "type": "Event", + "type-original": "Event" + } + ], + "type-original": "void" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "handleEvent" + } + } + }, + "name": "EventListener", + "extends": "Object", + "properties": { + "property": {} + } + }, + "WebKitFileCallback": { + "constants": { + "constant": {} + }, + "specs": "file-system-api", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "handleEvent": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "file", + "type": "File", + "type-original": "File" + } + ], + "type-original": "void" + } + ], + "specs": "file-system-api", + "exposed": "Window", + "name": "handleEvent" + } + } + }, + "name": "WebKitFileCallback", + "extends": "Object", + "properties": { + "property": {} + } + }, + "WebKitEntriesCallback": { + "constants": { + "constant": {} + }, + "specs": "file-system-api", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "handleEvent": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "subtype": { + "type": "WebKitEntry" + }, + "name": "entries", + "type": "sequence", + "type-original": "sequence" + } + ], + "type-original": "void" + } + ], + "specs": "file-system-api", + "exposed": "Window", + "name": "handleEvent" + } + } + }, + "name": "WebKitEntriesCallback", + "extends": "Object", + "properties": { + "property": {} + } + }, + "WebKitErrorCallback": { + "constants": { + "constant": {} + }, + "specs": "file-system-api", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "handleEvent": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "err", + "type": "DOMError", + "type-original": "DOMError" + } + ], + "type-original": "void" + } + ], + "specs": "file-system-api", + "exposed": "Window", + "name": "handleEvent" + } + } + }, + "name": "WebKitErrorCallback", + "extends": "Object", + "properties": { + "property": {} + } + } + } + }, + "dictionaries": { + "dictionary": { + "WheelEventInit": { + "members": { + "member": { + "deltaZ": { + "specs": "uievents", + "name": "deltaZ", + "default": "0.0", + "type": "double", + "type-original": "double" + }, + "deltaX": { + "specs": "uievents", + "name": "deltaX", + "default": "0.0", + "type": "double", + "type-original": "double" + }, + "deltaMode": { + "specs": "uievents", + "name": "deltaMode", + "default": "0", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "deltaY": { + "specs": "uievents", + "name": "deltaY", + "default": "0.0", + "type": "double", + "type-original": "double" + } + } + }, + "specs": "uievents", + "name": "WheelEventInit", + "extends": "MouseEventInit" + }, + "MSSignatureParameters": { + "members": { + "member": { + "userPrompt": { + "specs": "webauthn", + "name": "userPrompt", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "webauthn", + "name": "MSSignatureParameters", + "extends": "Object" + }, + "CustomEventInit": { + "members": { + "member": { + "detail": { + "specs": "dom4", + "name": "detail", + "default": "null", + "type": "any", + "type-original": "any" + } + } + }, + "specs": "dom4", + "name": "CustomEventInit", + "extends": "EventInit" + }, + "PaymentDetailsBase": { + "members": { + "member": { + "shippingOptions": { + "subtype": { + "type": "PaymentShippingOption" + }, + "specs": "payment-request", + "name": "shippingOptions", + "type": "sequence", + "type-original": "sequence" + }, + "modifiers": { + "subtype": { + "type": "PaymentDetailsModifier" + }, + "specs": "payment-request", + "name": "modifiers", + "type": "sequence", + "type-original": "sequence" + }, + "displayItems": { + "subtype": { + "type": "PaymentItem" + }, + "specs": "payment-request", + "name": "displayItems", + "type": "sequence", + "type-original": "sequence" + } + } + }, + "specs": "payment-request", + "name": "PaymentDetailsBase", + "extends": "Object" + }, + "MSIPAddressInfo": { + "members": { + "member": { + "manufacturerMacAddrMask": { + "specs": "webrtc-stats", + "name": "manufacturerMacAddrMask", + "type": "DOMString", + "type-original": "DOMString" + }, + "ipAddr": { + "specs": "webrtc-stats", + "name": "ipAddr", + "type": "DOMString", + "type-original": "DOMString" + }, + "port": { + "specs": "webrtc-stats", + "name": "port", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "specs": "webrtc-stats", + "name": "MSIPAddressInfo", + "extends": "Object" + }, + "HmacImportParams": { + "members": { + "member": { + "hash": { + "required": 1, + "specs": "webcryptoapi", + "name": "hash", + "type": [ + { + "type": "DOMString" + }, + { + "type": "Algorithm" + } + ], + "type-original": "HashAlgorithmIdentifier" + }, + "length": { + "specs": "webcryptoapi", + "name": "length", + "type": "unsigned long", + "enforce-range": 1, + "type-original": "unsigned long" + } + } + }, + "specs": "webcryptoapi", + "name": "HmacImportParams", + "extends": "Algorithm" + }, + "Account": { + "members": { + "member": { + "imageURL": { + "specs": "webauthn", + "name": "imageURL", + "type": "DOMString", + "type-original": "DOMString" + }, + "name": { + "specs": "webauthn", + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + }, + "id": { + "required": 1, + "specs": "webauthn", + "name": "id", + "type": "DOMString", + "type-original": "DOMString" + }, + "rpDisplayName": { + "required": 1, + "specs": "webauthn", + "name": "rpDisplayName", + "type": "DOMString", + "type-original": "DOMString" + }, + "displayName": { + "required": 1, + "specs": "webauthn", + "name": "displayName", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "webauthn", + "name": "Account", + "extends": "Object" + }, + "MSAudioRecvPayload": { + "members": { + "member": { + "ratioCompressedSamplesAvg": { + "specs": "webrtc-stats", + "name": "ratioCompressedSamplesAvg", + "type": "float", + "type-original": "float" + }, + "fecRecvDistance1": { + "specs": "webrtc-stats", + "name": "fecRecvDistance1", + "type": "float", + "type-original": "float" + }, + "fecRecvDistance2": { + "specs": "webrtc-stats", + "name": "fecRecvDistance2", + "type": "float", + "type-original": "float" + }, + "burstLossLength4": { + "specs": "webrtc-stats", + "name": "burstLossLength4", + "type": "float", + "type-original": "float" + }, + "burstLossLength7": { + "specs": "webrtc-stats", + "name": "burstLossLength7", + "type": "float", + "type-original": "float" + }, + "ratioStretchedSamplesAvg": { + "specs": "webrtc-stats", + "name": "ratioStretchedSamplesAvg", + "type": "float", + "type-original": "float" + }, + "burstLossLength1": { + "specs": "webrtc-stats", + "name": "burstLossLength1", + "type": "float", + "type-original": "float" + }, + "packetReorderRatio": { + "specs": "webrtc-stats", + "name": "packetReorderRatio", + "type": "float", + "type-original": "float" + }, + "burstLossLength6": { + "specs": "webrtc-stats", + "name": "burstLossLength6", + "type": "float", + "type-original": "float" + }, + "burstLossLength5": { + "specs": "webrtc-stats", + "name": "burstLossLength5", + "type": "float", + "type-original": "float" + }, + "burstLossLength3": { + "specs": "webrtc-stats", + "name": "burstLossLength3", + "type": "float", + "type-original": "float" + }, + "samplingRate": { + "specs": "webrtc-stats", + "name": "samplingRate", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "burstLossLength2": { + "specs": "webrtc-stats", + "name": "burstLossLength2", + "type": "float", + "type-original": "float" + }, + "burstLossLength8OrHigher": { + "specs": "webrtc-stats", + "name": "burstLossLength8OrHigher", + "type": "float", + "type-original": "float" + }, + "ratioConcealedSamplesAvg": { + "specs": "webrtc-stats", + "name": "ratioConcealedSamplesAvg", + "type": "float", + "type-original": "float" + }, + "signal": { + "specs": "webrtc-stats", + "name": "signal", + "type": "MSAudioRecvSignal", + "type-original": "MSAudioRecvSignal" + }, + "packetReorderDepthMax": { + "specs": "webrtc-stats", + "name": "packetReorderDepthMax", + "type": "long", + "type-original": "long" + }, + "fecRecvDistance3": { + "specs": "webrtc-stats", + "name": "fecRecvDistance3", + "type": "float", + "type-original": "float" + }, + "packetReorderDepthAvg": { + "specs": "webrtc-stats", + "name": "packetReorderDepthAvg", + "type": "long", + "type-original": "long" + } + } + }, + "specs": "webrtc-stats", + "name": "MSAudioRecvPayload", + "extends": "MSPayloadBase" + }, + "AudioBufferSourceOptions": { + "members": { + "member": { + "playbackRate": { + "specs": "webaudio", + "name": "playbackRate", + "default": "1", + "type": "float", + "type-original": "float" + }, + "detune": { + "specs": "webaudio", + "name": "detune", + "default": "0", + "type": "float", + "type-original": "float" + }, + "loopEnd": { + "specs": "webaudio", + "name": "loopEnd", + "default": "0", + "type": "double", + "type-original": "double" + }, + "buffer": { + "nullable": 1, + "specs": "webaudio", + "name": "buffer", + "type": "AudioBuffer", + "type-original": "AudioBuffer?" + }, + "loopStart": { + "specs": "webaudio", + "name": "loopStart", + "default": "0", + "type": "double", + "type-original": "double" + }, + "loop": { + "specs": "webaudio", + "name": "loop", + "default": "false", + "type": "boolean", + "type-original": "boolean" + } + } + }, + "specs": "webaudio", + "name": "AudioBufferSourceOptions", + "extends": "Object" + }, + "RsaKeyGenParams": { + "members": { + "member": { + "publicExponent": { + "required": 1, + "specs": "webcryptoapi", + "name": "publicExponent", + "type": "Uint8Array", + "type-original": "BigInteger" + }, + "modulusLength": { + "required": 1, + "specs": "webcryptoapi", + "name": "modulusLength", + "type": "unsigned long", + "enforce-range": 1, + "type-original": "unsigned long" + } + } + }, + "specs": "webcryptoapi", + "name": "RsaKeyGenParams", + "extends": "Algorithm" + }, + "MSDelay": { + "members": { + "member": { + "roundTrip": { + "specs": "webrtc-stats", + "name": "roundTrip", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "roundTripMax": { + "specs": "webrtc-stats", + "name": "roundTripMax", + "type": "unsigned long", + "type-original": "unsigned long" + } + } + }, + "specs": "webrtc-stats", + "name": "MSDelay", + "extends": "Object" + }, + "IDBIndexParameters": { + "members": { + "member": { + "unique": { + "specs": "indexeddb", + "name": "unique", + "default": "false", + "type": "boolean", + "type-original": "boolean" + } + } + }, + "specs": "indexeddb", + "name": "IDBIndexParameters", + "extends": "Object" + }, + "AnimationEventInit": { + "members": { + "member": { + "animationName": { + "specs": "css-animation", + "name": "animationName", + "default": "\"\"", + "type": "DOMString", + "type-original": "DOMString" + }, + "elapsedTime": { + "specs": "css-animation", + "name": "elapsedTime", + "default": "0.0", + "type": "float", + "type-original": "float" + } + } + }, + "specs": "css-animation", + "name": "AnimationEventInit", + "extends": "EventInit" + }, + "MSOutboundNetwork": { + "members": { + "member": { + "appliedBandwidthLimit": { + "specs": "webrtc-stats", + "name": "appliedBandwidthLimit", + "type": "unsigned long", + "type-original": "unsigned long" + } + } + }, + "specs": "webrtc-stats", + "name": "MSOutboundNetwork", + "extends": "MSNetwork" + }, + "IntersectionObserverInit": { + "members": { + "member": { + "rootMargin": { + "specs": "IntersectionObserver", + "name": "rootMargin", + "default": "\"0px\"", + "type": "DOMString", + "type-original": "DOMString" + }, + "threshold": { + "specs": "IntersectionObserver", + "name": "threshold", + "default": "0", + "type": [ + { + "type": "double" + }, + { + "subtype": { + "type": "double" + }, + "type": "sequence" + } + ], + "type-original": "(double or sequence)" + }, + "root": { + "nullable": 1, + "specs": "IntersectionObserver", + "name": "root", + "default": "null", + "type": "Element", + "type-original": "Element?" + } + } + }, + "specs": "IntersectionObserver", + "name": "IntersectionObserverInit", + "extends": "Object" + }, + "WebGLContextAttributes": { + "members": { + "member": { + "alpha": { + "specs": "webgl", + "name": "alpha", + "default": "true", + "type": "boolean", + "type-original": "boolean" + }, + "premultipliedAlpha": { + "specs": "webgl", + "name": "premultipliedAlpha", + "default": "true", + "type": "boolean", + "type-original": "boolean" + }, + "antialias": { + "specs": "webgl", + "name": "antialias", + "default": "true", + "type": "boolean", + "type-original": "boolean" + }, + "stencil": { + "specs": "webgl", + "name": "stencil", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "depth": { + "specs": "webgl", + "name": "depth", + "default": "true", + "type": "boolean", + "type-original": "boolean" + }, + "preserveDrawingBuffer": { + "specs": "webgl", + "name": "preserveDrawingBuffer", + "default": "false", + "type": "boolean", + "type-original": "boolean" + } + } + }, + "specs": "webgl", + "name": "WebGLContextAttributes", + "extends": "Object" + }, + "AesGcmParams": { + "members": { + "member": { + "iv": { + "required": 1, + "specs": "webcryptoapi", + "name": "iv", + "type": [ + { + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ] + }, + { + "nullable": 1, + "type": "ArrayBuffer" + } + ], + "type-original": "BufferSource" + }, + "additionalData": { + "specs": "webcryptoapi", + "name": "additionalData", + "type": [ + { + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ] + }, + { + "nullable": 1, + "type": "ArrayBuffer" + } + ], + "type-original": "BufferSource" + }, + "tagLength": { + "specs": "webcryptoapi", + "name": "tagLength", + "type": "octet", + "enforce-range": 1, + "type-original": "octet" + } + } + }, + "specs": "webcryptoapi", + "name": "AesGcmParams", + "extends": "Algorithm" + }, + "TrackEventInit": { + "members": { + "member": { + "track": { + "specs": "html5", + "name": "track", + "default": "null", + "type": [ + { + "nullable": 1, + "type": "VideoTrack" + }, + { + "nullable": 1, + "type": "AudioTrack" + }, + { + "nullable": 1, + "type": "TextTrack" + } + ], + "type-original": "(VideoTrack or AudioTrack or TextTrack)?" + } + } + }, + "specs": "html5", + "name": "TrackEventInit", + "extends": "EventInit" + }, + "MSAudioSendPayload": { + "members": { + "member": { + "audioFECUsed": { + "specs": "webrtc-stats", + "name": "audioFECUsed", + "type": "boolean", + "type-original": "boolean" + }, + "sendMutePercent": { + "specs": "webrtc-stats", + "name": "sendMutePercent", + "type": "float", + "type-original": "float" + }, + "signal": { + "specs": "webrtc-stats", + "name": "signal", + "type": "MSAudioSendSignal", + "type-original": "MSAudioSendSignal" + }, + "samplingRate": { + "specs": "webrtc-stats", + "name": "samplingRate", + "type": "unsigned long", + "type-original": "unsigned long" + } + } + }, + "specs": "webrtc-stats", + "name": "MSAudioSendPayload", + "extends": "MSPayloadBase" + }, + "ErrorEventInit": { + "members": { + "member": { + "colno": { + "specs": "workers", + "name": "colno", + "default": "0", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "filename": { + "specs": "workers", + "name": "filename", + "default": "\"\"", + "type": "DOMString", + "type-original": "DOMString" + }, + "error": { + "specs": "workers", + "name": "error", + "default": "null", + "type": "any", + "type-original": "any" + }, + "lineno": { + "specs": "workers", + "name": "lineno", + "default": "0", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "message": { + "specs": "workers", + "name": "message", + "default": "\"\"", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "workers", + "name": "ErrorEventInit", + "extends": "EventInit" + }, + "RTCSessionDescriptionInit": { + "members": { + "member": { + "sdp": { + "specs": "webrtc", + "name": "sdp", + "type": "DOMString", + "type-original": "DOMString" + }, + "type": { + "specs": "webrtc", + "name": "type", + "type": "RTCSdpType", + "type-original": "RTCSdpType" + } + } + }, + "specs": "webrtc", + "name": "RTCSessionDescriptionInit", + "extends": "Object" + }, + "MediaElementAudioSourceOptions": { + "members": { + "member": { + "mediaElement": { + "required": 1, + "specs": "webaudio", + "name": "mediaElement", + "type": "HTMLMediaElement", + "type-original": "HTMLMediaElement" + } + } + }, + "specs": "webaudio", + "name": "MediaElementAudioSourceOptions", + "extends": "Object" + }, + "RTCDtlsParameters": { + "members": { + "member": { + "fingerprints": { + "subtype": { + "type": "RTCDtlsFingerprint" + }, + "specs": "ortc", + "name": "fingerprints", + "type": "sequence", + "type-original": "sequence" + }, + "role": { + "specs": "ortc", + "name": "role", + "default": "\"auto\"", + "type": "RTCDtlsRole", + "type-original": "RTCDtlsRole" + } + } + }, + "specs": "ortc", + "name": "RTCDtlsParameters", + "extends": "Object" + }, + "RTCOutboundRTPStreamStats": { + "members": { + "member": { + "bytesSent": { + "specs": "ortc", + "name": "bytesSent", + "type": "unsigned long long", + "type-original": "unsigned long long" + }, + "targetBitrate": { + "specs": "ortc", + "name": "targetBitrate", + "type": "double", + "type-original": "double" + }, + "packetsSent": { + "specs": "ortc", + "name": "packetsSent", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "roundTripTime": { + "specs": "ortc", + "name": "roundTripTime", + "type": "double", + "type-original": "double" + } + } + }, + "specs": "ortc", + "name": "RTCOutboundRTPStreamStats", + "extends": "RTCRTPStreamStats" + }, + "RsaKeyAlgorithm": { + "members": { + "member": { + "publicExponent": { + "required": 1, + "specs": "webcryptoapi", + "name": "publicExponent", + "type": "Uint8Array", + "type-original": "BigInteger" + }, + "modulusLength": { + "required": 1, + "specs": "webcryptoapi", + "name": "modulusLength", + "type": "unsigned long", + "type-original": "unsigned long" + } + } + }, + "specs": "webcryptoapi", + "name": "RsaKeyAlgorithm", + "extends": "KeyAlgorithm" + }, + "MediaTrackConstraints": { + "members": { + "member": { + "advanced": { + "subtype": { + "type": "MediaTrackConstraintSet" + }, + "specs": "media-capture-api", + "name": "advanced", + "type": "sequence", + "type-original": "sequence" + } + } + }, + "specs": "media-capture-api", + "name": "MediaTrackConstraints", + "extends": "MediaTrackConstraintSet" + }, + "EcdsaParams": { + "members": { + "member": { + "hash": { + "required": 1, + "specs": "webcryptoapi", + "name": "hash", + "type": [ + { + "type": "DOMString" + }, + { + "type": "Algorithm" + } + ], + "type-original": "HashAlgorithmIdentifier" + } + } + }, + "specs": "webcryptoapi", + "name": "EcdsaParams", + "extends": "Algorithm" + }, + "DeviceLightEventInit": { + "members": { + "member": { + "value": { + "specs": "ambient-light", + "name": "value", + "default": "Infinity", + "type": "unrestricted double", + "type-original": "unrestricted double" + } + } + }, + "specs": "ambient-light", + "name": "DeviceLightEventInit", + "extends": "EventInit" + }, + "RTCSrtpSdesParameters": { + "members": { + "member": { + "sessionParams": { + "subtype": { + "type": "DOMString" + }, + "specs": "ortc", + "name": "sessionParams", + "type": "sequence", + "type-original": "sequence" + }, + "keyParams": { + "subtype": { + "type": "RTCSrtpKeyParam" + }, + "specs": "ortc", + "name": "keyParams", + "type": "sequence", + "type-original": "sequence" + }, + "tag": { + "specs": "ortc", + "name": "tag", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "cryptoSuite": { + "specs": "ortc", + "name": "cryptoSuite", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "ortc", + "name": "RTCSrtpSdesParameters", + "extends": "Object" + }, + "DoubleRange": { + "members": { + "member": { + "min": { + "specs": "media-capture-api", + "name": "min", + "type": "double", + "type-original": "double" + }, + "max": { + "specs": "media-capture-api", + "name": "max", + "type": "double", + "type-original": "double" + } + } + }, + "specs": "media-capture-api", + "name": "DoubleRange", + "extends": "Object" + }, + "RTCIceCandidatePairStats": { + "members": { + "member": { + "priority": { + "specs": "ortc", + "name": "priority", + "type": "unsigned long long", + "type-original": "unsigned long long" + }, + "nominated": { + "specs": "ortc", + "name": "nominated", + "type": "boolean", + "type-original": "boolean" + }, + "availableOutgoingBitrate": { + "specs": "ortc", + "name": "availableOutgoingBitrate", + "type": "double", + "type-original": "double" + }, + "bytesSent": { + "specs": "ortc", + "name": "bytesSent", + "type": "unsigned long long", + "type-original": "unsigned long long" + }, + "writable": { + "specs": "ortc", + "name": "writable", + "type": "boolean", + "type-original": "boolean" + }, + "transportId": { + "specs": "ortc", + "name": "transportId", + "type": "DOMString", + "type-original": "DOMString" + }, + "bytesReceived": { + "specs": "ortc", + "name": "bytesReceived", + "type": "unsigned long long", + "type-original": "unsigned long long" + }, + "state": { + "specs": "ortc", + "name": "state", + "type": "RTCStatsIceCandidatePairState", + "type-original": "RTCStatsIceCandidatePairState" + }, + "remoteCandidateId": { + "specs": "ortc", + "name": "remoteCandidateId", + "type": "DOMString", + "type-original": "DOMString" + }, + "localCandidateId": { + "specs": "ortc", + "name": "localCandidateId", + "type": "DOMString", + "type-original": "DOMString" + }, + "availableIncomingBitrate": { + "specs": "ortc", + "name": "availableIncomingBitrate", + "type": "double", + "type-original": "double" + }, + "roundTripTime": { + "specs": "ortc", + "name": "roundTripTime", + "type": "double", + "type-original": "double" + }, + "readable": { + "specs": "ortc", + "name": "readable", + "type": "boolean", + "type-original": "boolean" + } + } + }, + "specs": "ortc", + "name": "RTCIceCandidatePairStats", + "extends": "RTCStats" + }, + "MSVideoResolutionDistribution": { + "members": { + "member": { + "h1440Quality": { + "specs": "webrtc-stats", + "name": "h1440Quality", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "h720Quality": { + "specs": "webrtc-stats", + "name": "h720Quality", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "h2160Quality": { + "specs": "webrtc-stats", + "name": "h2160Quality", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "cifQuality": { + "specs": "webrtc-stats", + "name": "cifQuality", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "vgaQuality": { + "specs": "webrtc-stats", + "name": "vgaQuality", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "h1080Quality": { + "specs": "webrtc-stats", + "name": "h1080Quality", + "type": "unsigned long", + "type-original": "unsigned long" + } + } + }, + "specs": "webrtc-stats", + "name": "MSVideoResolutionDistribution", + "extends": "Object" + }, + "UIEventInit": { + "members": { + "member": { + "detail": { + "specs": "uievents", + "name": "detail", + "default": "0", + "type": "long", + "type-original": "long" + }, + "view": { + "nullable": 1, + "specs": "uievents", + "name": "view", + "default": "null", + "type": "Window", + "type-original": "Window?" + } + } + }, + "specs": "uievents", + "name": "UIEventInit", + "extends": "EventInit" + }, + "PushEventInit": { + "members": { + "member": { + "data": { + "specs": "push-api", + "name": "data", + "type": [ + { + "type": [ + { + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ] + }, + { + "nullable": 1, + "type": "ArrayBuffer" + } + ] + }, + { + "type": "USVString" + } + ], + "type-original": "PushMessageDataInit" + } + } + }, + "specs": "push-api", + "name": "PushEventInit", + "extends": "ExtendableEventInit" + }, + "ChannelMergerOptions": { + "members": { + "member": { + "numberOfInputs": { + "specs": "webaudio", + "name": "numberOfInputs", + "default": "6", + "type": "unsigned long", + "type-original": "unsigned long" + } + } + }, + "specs": "webaudio", + "name": "ChannelMergerOptions", + "extends": "AudioNodeOptions" + }, + "OscillatorOptions": { + "members": { + "member": { + "periodicWave": { + "specs": "webaudio", + "name": "periodicWave", + "type": "PeriodicWave", + "type-original": "PeriodicWave" + }, + "frequency": { + "specs": "webaudio", + "name": "frequency", + "default": "440", + "type": "float", + "type-original": "float" + }, + "detune": { + "specs": "webaudio", + "name": "detune", + "default": "0", + "type": "float", + "type-original": "float" + }, + "type": { + "specs": "webaudio", + "name": "type", + "default": "\"sine\"", + "type": "OscillatorType", + "type-original": "OscillatorType" + } + } + }, + "specs": "webaudio", + "name": "OscillatorOptions", + "extends": "AudioNodeOptions" + }, + "GamepadEventInit": { + "members": { + "member": { + "gamepad": { + "specs": "gamepad", + "name": "gamepad", + "default": "null", + "type": "Gamepad", + "type-original": "Gamepad" + } + } + }, + "specs": "gamepad", + "name": "GamepadEventInit", + "extends": "EventInit" + }, + "RTCRtpHeaderExtensionParameters": { + "members": { + "member": { + "encrypt": { + "specs": "ortc", + "name": "encrypt", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "id": { + "specs": "ortc", + "name": "id", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "uri": { + "specs": "ortc", + "name": "uri", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "ortc", + "name": "RTCRtpHeaderExtensionParameters", + "extends": "Object" + }, + "RTCRtpCodecParameters": { + "members": { + "member": { + "clockRate": { + "specs": "ortc", + "name": "clockRate", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "name": { + "specs": "ortc", + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + }, + "maxptime": { + "specs": "ortc", + "name": "maxptime", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "payloadType": { + "specs": "ortc", + "name": "payloadType", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "parameters": { + "specs": "ortc", + "name": "parameters", + "type": "object", + "type-original": "object" + }, + "rtcpFeedback": { + "subtype": { + "type": "RTCRtcpFeedback" + }, + "specs": "ortc", + "name": "rtcpFeedback", + "type": "sequence", + "type-original": "sequence" + }, + "ptime": { + "specs": "ortc", + "name": "ptime", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "numChannels": { + "specs": "ortc", + "name": "numChannels", + "type": "unsigned long", + "type-original": "unsigned long" + } + } + }, + "specs": "ortc", + "name": "RTCRtpCodecParameters", + "extends": "Object" + }, + "AnalyserOptions": { + "members": { + "member": { + "minDecibels": { + "specs": "webaudio", + "name": "minDecibels", + "default": "-100", + "type": "double", + "type-original": "double" + }, + "maxDecibels": { + "specs": "webaudio", + "name": "maxDecibels", + "default": "-30", + "type": "double", + "type-original": "double" + }, + "smoothingTimeConstant": { + "specs": "webaudio", + "name": "smoothingTimeConstant", + "default": "0.8", + "type": "double", + "type-original": "double" + }, + "fftSize": { + "specs": "webaudio", + "name": "fftSize", + "default": "2048", + "type": "unsigned long", + "type-original": "unsigned long" + } + } + }, + "specs": "webaudio", + "name": "AnalyserOptions", + "extends": "AudioNodeOptions" + }, + "FetchEventInit": { + "members": { + "member": { + "request": { + "required": 1, + "specs": "service-workers", + "name": "request", + "type": "Request", + "type-original": "Request" + }, + "clientId": { + "specs": "service-workers", + "name": "clientId", + "default": "null", + "type": "DOMString", + "type-original": "DOMString" + }, + "reservedClientId": { + "specs": "service-workers", + "name": "reservedClientId", + "default": "\"\"", + "type": "DOMString", + "type-original": "DOMString" + }, + "targetClientId": { + "specs": "service-workers", + "name": "targetClientId", + "default": "\"\"", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "service-workers", + "name": "FetchEventInit", + "extends": "ExtendableEventInit" + }, + "PushSubscriptionChangeInit": { + "members": { + "member": { + "newSubscription": { + "specs": "push-api", + "name": "newSubscription", + "default": "null", + "type": "PushSubscription", + "type-original": "PushSubscription" + }, + "oldSubscription": { + "specs": "push-api", + "name": "oldSubscription", + "default": "null", + "type": "PushSubscription", + "type-original": "PushSubscription" + } + } + }, + "specs": "push-api", + "name": "PushSubscriptionChangeInit", + "extends": "ExtendableEventInit" + }, + "AddEventListenerOptions": { + "members": { + "member": { + "once": { + "specs": "dom4", + "name": "once", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "passive": { + "specs": "dom4", + "name": "passive", + "default": "false", + "type": "boolean", + "type-original": "boolean" + } + } + }, + "specs": "dom4", + "name": "AddEventListenerOptions", + "extends": "EventListenerOptions" + }, + "VRLayer": { + "members": { + "member": { + "source": { + "nullable": 1, + "specs": "WebVR", + "name": "source", + "default": "null", + "type": "HTMLCanvasElement", + "type-original": "VRSource?" + }, + "rightBounds": { + "specs": "WebVR", + "name": "rightBounds", + "default": "null", + "type-original": "sequence?", + "subtype": { + "type": "float" + }, + "nullable": 1, + "type": "sequence" + }, + "leftBounds": { + "specs": "WebVR", + "name": "leftBounds", + "default": "null", + "type-original": "sequence?", + "subtype": { + "type": "float" + }, + "nullable": 1, + "type": "sequence" + } + } + }, + "specs": "WebVR", + "name": "VRLayer", + "extends": "Object" + }, + "GetNotificationOptions": { + "members": { + "member": { + "tag": { + "specs": "notifications", + "name": "tag", + "default": "\"\"", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "notifications", + "name": "GetNotificationOptions", + "extends": "Object" + }, + "ScopedCredentialOptions": { + "members": { + "member": { + "extensions": { + "specs": "WD-webauthn-20161207", + "name": "extensions", + "type": "WebAuthnExtensions", + "type-original": "WebAuthnExtensions" + }, + "excludeList": { + "subtype": { + "type": "ScopedCredentialDescriptor" + }, + "specs": "WD-webauthn-20161207", + "name": "excludeList", + "type": "sequence", + "type-original": "sequence" + }, + "rpId": { + "specs": "WD-webauthn-20161207", + "name": "rpId", + "type": "USVString", + "type-original": "USVString" + }, + "timeoutSeconds": { + "specs": "WD-webauthn-20161207", + "name": "timeoutSeconds", + "type": "unsigned long", + "type-original": "unsigned long" + } + } + }, + "specs": "WD-webauthn-20161207", + "name": "ScopedCredentialOptions", + "extends": "Object" + }, + "ObjectURLOptions": { + "members": { + "member": { + "oneTimeOnly": { + "specs": "fileapi", + "name": "oneTimeOnly", + "type": "boolean", + "type-original": "boolean" + } + } + }, + "specs": "fileapi", + "name": "ObjectURLOptions", + "extends": "Object" + }, + "RTCMediaStreamTrackStats": { + "members": { + "member": { + "remoteSource": { + "specs": "ortc", + "name": "remoteSource", + "type": "boolean", + "type-original": "boolean" + }, + "trackIdentifier": { + "specs": "ortc", + "name": "trackIdentifier", + "type": "DOMString", + "type-original": "DOMString" + }, + "frameHeight": { + "specs": "ortc", + "name": "frameHeight", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "echoReturnLossEnhancement": { + "specs": "ortc", + "name": "echoReturnLossEnhancement", + "type": "double", + "type-original": "double" + }, + "framesDecoded": { + "specs": "ortc", + "name": "framesDecoded", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "frameWidth": { + "specs": "ortc", + "name": "frameWidth", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "echoReturnLoss": { + "specs": "ortc", + "name": "echoReturnLoss", + "type": "double", + "type-original": "double" + }, + "framesDropped": { + "specs": "ortc", + "name": "framesDropped", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "framesPerSecond": { + "specs": "ortc", + "name": "framesPerSecond", + "type": "double", + "type-original": "double" + }, + "ssrcIds": { + "subtype": { + "type": "DOMString" + }, + "specs": "ortc", + "name": "ssrcIds", + "type": "sequence", + "type-original": "sequence" + }, + "framesCorrupted": { + "specs": "ortc", + "name": "framesCorrupted", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "audioLevel": { + "specs": "ortc", + "name": "audioLevel", + "type": "double", + "type-original": "double" + }, + "framesReceived": { + "specs": "ortc", + "name": "framesReceived", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "framesSent": { + "specs": "ortc", + "name": "framesSent", + "type": "unsigned long", + "type-original": "unsigned long" + } + } + }, + "specs": "ortc", + "name": "RTCMediaStreamTrackStats", + "extends": "RTCStats" + }, + "DelayOptions": { + "members": { + "member": { + "maxDelayTime": { + "specs": "webaudio", + "name": "maxDelayTime", + "default": "1", + "type": "double", + "type-original": "double" + }, + "delayTime": { + "specs": "webaudio", + "name": "delayTime", + "default": "0", + "type": "double", + "type-original": "double" + } + } + }, + "specs": "webaudio", + "name": "DelayOptions", + "extends": "AudioNodeOptions" + }, + "PushSubscriptionOptionsInit": { + "members": { + "member": { + "userVisibleOnly": { + "specs": "push-api", + "name": "userVisibleOnly", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "applicationServerKey": { + "specs": "push-api", + "name": "applicationServerKey", + "default": "null", + "type": [ + { + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ] + }, + { + "nullable": 1, + "type": "ArrayBuffer" + }, + { + "nullable": 1, + "type": "DOMString" + } + ], + "type-original": "(BufferSource or DOMString)?" + } + } + }, + "specs": "push-api", + "name": "PushSubscriptionOptionsInit", + "extends": "Object" + }, + "RTCSrtpKeyParam": { + "members": { + "member": { + "mkiLength": { + "specs": "ortc", + "name": "mkiLength", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "mkiValue": { + "specs": "ortc", + "name": "mkiValue", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "keySalt": { + "specs": "ortc", + "name": "keySalt", + "type": "DOMString", + "type-original": "DOMString" + }, + "keyMethod": { + "specs": "ortc", + "name": "keyMethod", + "type": "DOMString", + "type-original": "DOMString" + }, + "lifetime": { + "specs": "ortc", + "name": "lifetime", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "ortc", + "name": "RTCSrtpKeyParam", + "extends": "Object" + }, + "ConstantSourceOptions": { + "members": { + "member": { + "offset": { + "specs": "webaudio", + "name": "offset", + "default": "1", + "type": "float", + "type-original": "float" + } + } + }, + "specs": "webaudio", + "name": "ConstantSourceOptions", + "extends": "Object" + }, + "RTCRtpUnhandled": { + "members": { + "member": { + "payloadType": { + "specs": "ortc", + "name": "payloadType", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "muxId": { + "specs": "ortc", + "name": "muxId", + "type": "DOMString", + "type-original": "DOMString" + }, + "ssrc": { + "specs": "ortc", + "name": "ssrc", + "type": "unsigned long", + "type-original": "unsigned long" + } + } + }, + "specs": "ortc", + "name": "RTCRtpUnhandled", + "extends": "Object" + }, + "MSRelayAddress": { + "members": { + "member": { + "port": { + "specs": "webrtc-stats", + "name": "port", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "relayAddress": { + "specs": "webrtc-stats", + "name": "relayAddress", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "webrtc-stats", + "name": "MSRelayAddress", + "extends": "Object" + }, + "MSJitter": { + "members": { + "member": { + "interArrival": { + "specs": "webrtc-stats", + "name": "interArrival", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "interArrivalSD": { + "specs": "webrtc-stats", + "name": "interArrivalSD", + "type": "float", + "type-original": "float" + }, + "interArrivalMax": { + "specs": "webrtc-stats", + "name": "interArrivalMax", + "type": "unsigned long", + "type-original": "unsigned long" + } + } + }, + "specs": "webrtc-stats", + "name": "MSJitter", + "extends": "Object" + }, + "RTCRTPStreamStats": { + "members": { + "member": { + "isRemote": { + "specs": "ortc", + "name": "isRemote", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "sliCount": { + "specs": "ortc", + "name": "sliCount", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "nackCount": { + "specs": "ortc", + "name": "nackCount", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "codecId": { + "specs": "ortc", + "name": "codecId", + "type": "DOMString", + "type-original": "DOMString" + }, + "transportId": { + "specs": "ortc", + "name": "transportId", + "type": "DOMString", + "type-original": "DOMString" + }, + "pliCount": { + "specs": "ortc", + "name": "pliCount", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "associateStatsId": { + "specs": "ortc", + "name": "associateStatsId", + "type": "DOMString", + "type-original": "DOMString" + }, + "mediaTrackId": { + "specs": "ortc", + "name": "mediaTrackId", + "type": "DOMString", + "type-original": "DOMString" + }, + "mediaType": { + "specs": "ortc", + "name": "mediaType", + "type": "DOMString", + "type-original": "DOMString" + }, + "ssrc": { + "specs": "ortc", + "name": "ssrc", + "type": "DOMString", + "type-original": "DOMString" + }, + "firCount": { + "specs": "ortc", + "name": "firCount", + "type": "unsigned long", + "type-original": "unsigned long" + } + } + }, + "specs": "ortc", + "name": "RTCRTPStreamStats", + "extends": "RTCStats" + }, + "MSDCCEventInit": { + "members": { + "member": { + "maxFr": { + "specs": "ortc", + "name": "maxFr", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "maxFs": { + "specs": "ortc", + "name": "maxFs", + "type": "unsigned long", + "type-original": "unsigned long" + } + } + }, + "specs": "ortc", + "name": "MSDCCEventInit", + "extends": "EventInit" + }, + "ConfirmSiteSpecificExceptionsInformation": { + "members": { + "member": { + "arrayOfDomainStrings": { + "subtype": { + "type": "DOMString" + }, + "specs": "tracking-dnt", + "name": "arrayOfDomainStrings", + "type": "sequence", + "type-original": "sequence" + } + } + }, + "specs": "tracking-dnt", + "name": "ConfirmSiteSpecificExceptionsInformation", + "extends": "ExceptionInformation" + }, + "EcdhKeyDeriveParams": { + "members": { + "member": { + "public": { + "required": 1, + "specs": "webcryptoapi", + "name": "public", + "type": "CryptoKey", + "type-original": "CryptoKey" + } + } + }, + "specs": "webcryptoapi", + "name": "EcdhKeyDeriveParams", + "extends": "Algorithm" + }, + "MediaTrackConstraintSet": { + "members": { + "member": { + "sampleRate": { + "specs": "media-capture-api", + "name": "sampleRate", + "type": [ + { + "type": "long" + }, + { + "type": "ConstrainLongRange" + } + ], + "type-original": "ConstrainLong" + }, + "width": { + "specs": "media-capture-api", + "name": "width", + "type": [ + { + "type": "long" + }, + { + "type": "ConstrainLongRange" + } + ], + "type-original": "ConstrainLong" + }, + "deviceId": { + "specs": "media-capture-api", + "name": "deviceId", + "type": [ + { + "type": "DOMString" + }, + { + "subtype": { + "type": "DOMString" + }, + "type": "sequence" + }, + { + "type": "ConstrainDOMStringParameters" + } + ], + "type-original": "ConstrainDOMString" + }, + "volume": { + "specs": "media-capture-api", + "name": "volume", + "type": [ + { + "type": "double" + }, + { + "type": "ConstrainDoubleRange" + } + ], + "type-original": "ConstrainDouble" + }, + "echoCancelation": { + "specs": "media-capture-api", + "name": "echoCancelation", + "type": [ + { + "type": "boolean" + }, + { + "type": "ConstrainBooleanParameters" + } + ], + "type-original": "ConstrainBoolean" + }, + "sampleSize": { + "specs": "media-capture-api", + "name": "sampleSize", + "type": [ + { + "type": "long" + }, + { + "type": "ConstrainLongRange" + } + ], + "type-original": "ConstrainLong" + }, + "groupId": { + "specs": "media-capture-api", + "name": "groupId", + "type": [ + { + "type": "DOMString" + }, + { + "subtype": { + "type": "DOMString" + }, + "type": "sequence" + }, + { + "type": "ConstrainDOMStringParameters" + } + ], + "type-original": "ConstrainDOMString" + }, + "height": { + "specs": "media-capture-api", + "name": "height", + "type": [ + { + "type": "long" + }, + { + "type": "ConstrainLongRange" + } + ], + "type-original": "ConstrainLong" + }, + "facingMode": { + "specs": "media-capture-api", + "name": "facingMode", + "type": [ + { + "type": "DOMString" + }, + { + "subtype": { + "type": "DOMString" + }, + "type": "sequence" + }, + { + "type": "ConstrainDOMStringParameters" + } + ], + "type-original": "ConstrainDOMString" + }, + "frameRate": { + "specs": "media-capture-api", + "name": "frameRate", + "type": [ + { + "type": "double" + }, + { + "type": "ConstrainDoubleRange" + } + ], + "type-original": "ConstrainDouble" + }, + "aspectRatio": { + "specs": "media-capture-api", + "name": "aspectRatio", + "type": [ + { + "type": "double" + }, + { + "type": "ConstrainDoubleRange" + } + ], + "type-original": "ConstrainDouble" + }, + "displaySurface": { + "specs": "screen-capture", + "name": "displaySurface", + "type": [ + { + "type": "DOMString" + }, + { + "subtype": { + "type": "DOMString" + }, + "type": "sequence" + }, + { + "type": "ConstrainDOMStringParameters" + } + ], + "type-original": "ConstrainDOMString" + }, + "logicalSurface": { + "specs": "screen-capture", + "name": "logicalSurface", + "type": [ + { + "type": "boolean" + }, + { + "type": "ConstrainBooleanParameters" + } + ], + "type-original": "ConstrainBoolean" + } + } + }, + "specs": "media-capture-api", + "name": "MediaTrackConstraintSet", + "extends": "Object" + }, + "RTCRtpRtxParameters": { + "members": { + "member": { + "ssrc": { + "specs": "ortc", + "name": "ssrc", + "type": "unsigned long", + "type-original": "unsigned long" + } + } + }, + "specs": "ortc", + "name": "RTCRtpRtxParameters", + "extends": "Object" + }, + "RTCIceCandidateInit": { + "members": { + "member": { + "sdpMLineIndex": { + "specs": "webrtc", + "name": "sdpMLineIndex", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "candidate": { + "specs": "webrtc", + "name": "candidate", + "type": "DOMString", + "type-original": "DOMString" + }, + "sdpMid": { + "specs": "webrtc", + "name": "sdpMid", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "webrtc", + "name": "RTCIceCandidateInit", + "extends": "Object" + }, + "RegistrationOptions": { + "members": { + "member": { + "scope": { + "specs": "service-workers", + "name": "scope", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "service-workers", + "name": "RegistrationOptions", + "extends": "Object" + }, + "HkdfParams": { + "members": { + "member": { + "info": { + "required": 1, + "specs": "webcryptoapi", + "name": "info", + "type": [ + { + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ] + }, + { + "nullable": 1, + "type": "ArrayBuffer" + } + ], + "type-original": "BufferSource" + }, + "salt": { + "required": 1, + "specs": "webcryptoapi", + "name": "salt", + "type": [ + { + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ] + }, + { + "nullable": 1, + "type": "ArrayBuffer" + } + ], + "type-original": "BufferSource" + }, + "hash": { + "required": 1, + "specs": "webcryptoapi", + "name": "hash", + "type": [ + { + "type": "DOMString" + }, + { + "type": "Algorithm" + } + ], + "type-original": "HashAlgorithmIdentifier" + } + } + }, + "specs": "webcryptoapi", + "name": "HkdfParams", + "extends": "Algorithm" + }, + "FocusEventInit": { + "members": { + "member": { + "relatedTarget": { + "nullable": 1, + "specs": "uievents", + "name": "relatedTarget", + "default": "null", + "type": "EventTarget", + "type-original": "EventTarget?" + } + } + }, + "specs": "uievents", + "name": "FocusEventInit", + "extends": "UIEventInit" + }, + "RTCDTMFToneChangeEventInit": { + "members": { + "member": { + "tone": { + "specs": "ortc", + "name": "tone", + "default": "\"\"", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "ortc", + "name": "RTCDTMFToneChangeEventInit", + "extends": "EventInit" + }, + "RTCDtlsFingerprint": { + "members": { + "member": { + "algorithm": { + "specs": "ortc", + "name": "algorithm", + "type": "DOMString", + "type-original": "DOMString" + }, + "value": { + "specs": "ortc", + "name": "value", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "ortc", + "name": "RTCDtlsFingerprint", + "extends": "Object" + }, + "CompositionEventInit": { + "members": { + "member": { + "data": { + "specs": "uievents", + "name": "data", + "default": "\"\"", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "uievents", + "name": "CompositionEventInit", + "extends": "UIEventInit" + }, + "PaymentMethodData": { + "members": { + "member": { + "supportedMethods": { + "subtype": { + "type": "DOMString" + }, + "required": 1, + "specs": "payment-request", + "name": "supportedMethods", + "type": "sequence", + "type-original": "sequence" + }, + "data": { + "specs": "payment-request", + "name": "data", + "type": "object", + "type-original": "object" + } + } + }, + "specs": "payment-request", + "name": "PaymentMethodData", + "extends": "Object" + }, + "PaymentDetailsUpdate": { + "members": { + "member": { + "error": { + "specs": "payment-request", + "name": "error", + "type": "DOMString", + "type-original": "DOMString" + }, + "total": { + "specs": "payment-request", + "name": "total", + "type": "PaymentItem", + "type-original": "PaymentItem" + } + } + }, + "specs": "payment-request", + "name": "PaymentDetailsUpdate", + "extends": "PaymentDetailsBase" + }, + "VRDisplayEventInit": { + "members": { + "member": { + "reason": { + "specs": "WebVR", + "name": "reason", + "type": "VRDisplayEventReason", + "type-original": "VRDisplayEventReason" + }, + "display": { + "required": 1, + "specs": "WebVR", + "name": "display", + "type": "VRDisplay", + "type-original": "VRDisplay" + } + } + }, + "specs": "WebVR", + "name": "VRDisplayEventInit", + "extends": "EventInit" + }, + "MSTransportDiagnosticsStats": { + "members": { + "member": { + "protocol": { + "specs": "webrtc-stats", + "name": "protocol", + "type": "RTCIceProtocol", + "type-original": "RTCIceProtocol" + }, + "msRtcEngineVersion": { + "specs": "webrtc-stats", + "name": "msRtcEngineVersion", + "type": "DOMString", + "type-original": "DOMString" + }, + "baseInterface": { + "specs": "webrtc-stats", + "name": "baseInterface", + "type": "MSNetworkInterfaceType", + "type-original": "MSNetworkInterfaceType" + }, + "rtpRtcpMux": { + "specs": "webrtc-stats", + "name": "rtpRtcpMux", + "type": "boolean", + "type-original": "boolean" + }, + "remoteAddrType": { + "specs": "webrtc-stats", + "name": "remoteAddrType", + "type": "MSIceAddrType", + "type-original": "MSIceAddrType" + }, + "baseAddress": { + "specs": "webrtc-stats", + "name": "baseAddress", + "type": "DOMString", + "type-original": "DOMString" + }, + "allocationTimeInMs": { + "specs": "webrtc-stats", + "name": "allocationTimeInMs", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "numConsentRespSent": { + "specs": "webrtc-stats", + "name": "numConsentRespSent", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "remoteMR": { + "specs": "webrtc-stats", + "name": "remoteMR", + "type": "DOMString", + "type-original": "DOMString" + }, + "numConsentReqSent": { + "specs": "webrtc-stats", + "name": "numConsentReqSent", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "interfaces": { + "specs": "webrtc-stats", + "name": "interfaces", + "type": "MSNetworkInterfaceType", + "type-original": "MSNetworkInterfaceType" + }, + "localSite": { + "specs": "webrtc-stats", + "name": "localSite", + "type": "DOMString", + "type-original": "DOMString" + }, + "remoteMRTCPPort": { + "specs": "webrtc-stats", + "name": "remoteMRTCPPort", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "remoteAddress": { + "specs": "webrtc-stats", + "name": "remoteAddress", + "type": "DOMString", + "type-original": "DOMString" + }, + "localAddrType": { + "specs": "webrtc-stats", + "name": "localAddrType", + "type": "MSIceAddrType", + "type-original": "MSIceAddrType" + }, + "portRangeMax": { + "specs": "webrtc-stats", + "name": "portRangeMax", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "remoteSite": { + "specs": "webrtc-stats", + "name": "remoteSite", + "type": "DOMString", + "type-original": "DOMString" + }, + "numConsentReqReceived": { + "specs": "webrtc-stats", + "name": "numConsentReqReceived", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "localInterface": { + "specs": "webrtc-stats", + "name": "localInterface", + "type": "MSNetworkInterfaceType", + "type-original": "MSNetworkInterfaceType" + }, + "portRangeMin": { + "specs": "webrtc-stats", + "name": "portRangeMin", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "localMR": { + "specs": "webrtc-stats", + "name": "localMR", + "type": "DOMString", + "type-original": "DOMString" + }, + "stunVer": { + "specs": "webrtc-stats", + "name": "stunVer", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "localAddress": { + "specs": "webrtc-stats", + "name": "localAddress", + "type": "DOMString", + "type-original": "DOMString" + }, + "iceWarningFlags": { + "specs": "webrtc-stats", + "name": "iceWarningFlags", + "type": "MSIceWarningFlags", + "type-original": "MSIceWarningFlags" + }, + "localMRTCPPort": { + "specs": "webrtc-stats", + "name": "localMRTCPPort", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "numConsentRespReceived": { + "specs": "webrtc-stats", + "name": "numConsentRespReceived", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "iceRole": { + "specs": "webrtc-stats", + "name": "iceRole", + "type": "RTCIceRole", + "type-original": "RTCIceRole" + }, + "networkName": { + "specs": "webrtc-stats", + "name": "networkName", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "webrtc-stats", + "name": "MSTransportDiagnosticsStats", + "extends": "RTCStats" + }, + "EventInit": { + "members": { + "member": { + "cancelable": { + "specs": "dom4", + "name": "cancelable", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "bubbles": { + "specs": "dom4", + "name": "bubbles", + "default": "false", + "type": "boolean", + "type-original": "boolean" + } + } + }, + "specs": "dom4", + "name": "EventInit", + "extends": "Object" + }, + "RTCIceCandidateComplete": { + "members": { + "member": {} + }, + "specs": "ortc", + "name": "RTCIceCandidateComplete", + "extends": "Object" + }, + "PaymentItem": { + "members": { + "member": { + "amount": { + "required": 1, + "specs": "payment-request", + "name": "amount", + "type": "PaymentCurrencyAmount", + "type-original": "PaymentCurrencyAmount" + }, + "pending": { + "specs": "payment-request", + "name": "pending", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "label": { + "required": 1, + "specs": "payment-request", + "name": "label", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "payment-request", + "name": "PaymentItem", + "extends": "Object" + }, + "PaymentDetailsInit": { + "members": { + "member": { + "id": { + "specs": "payment-request", + "name": "id", + "type": "DOMString", + "type-original": "DOMString" + }, + "total": { + "required": 1, + "specs": "payment-request", + "name": "total", + "type": "PaymentItem", + "type-original": "PaymentItem" + } + } + }, + "specs": "payment-request", + "name": "PaymentDetailsInit", + "extends": "PaymentDetailsBase" + }, + "RTCRtpFecParameters": { + "members": { + "member": { + "mechanism": { + "specs": "ortc", + "name": "mechanism", + "type": "DOMString", + "type-original": "DOMString" + }, + "ssrc": { + "specs": "ortc", + "name": "ssrc", + "type": "unsigned long", + "type-original": "unsigned long" + } + } + }, + "specs": "ortc", + "name": "RTCRtpFecParameters", + "extends": "Object" + }, + "AesKeyGenParams": { + "members": { + "member": { + "length": { + "required": 1, + "specs": "webcryptoapi", + "name": "length", + "type": "unsigned short", + "enforce-range": 1, + "type-original": "unsigned short" + } + } + }, + "specs": "webcryptoapi", + "name": "AesKeyGenParams", + "extends": "Algorithm" + }, + "ConstrainDoubleRange": { + "members": { + "member": { + "exact": { + "specs": "media-capture-api", + "name": "exact", + "type": "double", + "type-original": "double" + }, + "ideal": { + "specs": "media-capture-api", + "name": "ideal", + "type": "double", + "type-original": "double" + } + } + }, + "specs": "media-capture-api", + "name": "ConstrainDoubleRange", + "extends": "DoubleRange" + }, + "DeviceRotationRateDict": { + "members": { + "member": { + "gamma": { + "nullable": 1, + "specs": "orientation-event", + "name": "gamma", + "default": "null", + "type": "double", + "type-original": "double?" + }, + "alpha": { + "nullable": 1, + "specs": "orientation-event", + "name": "alpha", + "default": "null", + "type": "double", + "type-original": "double?" + }, + "beta": { + "nullable": 1, + "specs": "orientation-event", + "name": "beta", + "default": "null", + "type": "double", + "type-original": "double?" + } + } + }, + "specs": "orientation-event", + "name": "DeviceRotationRateDict", + "extends": "Object" + }, + "AesDerivedKeyParams": { + "members": { + "member": { + "length": { + "required": 1, + "specs": "webcryptoapi", + "name": "length", + "type": "unsigned short", + "enforce-range": 1, + "type-original": "unsigned short" + } + } + }, + "specs": "webcryptoapi", + "name": "AesDerivedKeyParams", + "extends": "Algorithm" + }, + "ScopedCredentialDescriptor": { + "members": { + "member": { + "id": { + "required": 1, + "specs": "webauthn", + "name": "id", + "type": [ + { + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ] + }, + { + "nullable": 1, + "type": "ArrayBuffer" + } + ], + "type-original": "BufferSource" + }, + "type": { + "required": 1, + "specs": "webauthn", + "name": "type", + "type": "ScopedCredentialType", + "type-original": "ScopedCredentialType" + }, + "transports": { + "subtype": { + "type": "Transport" + }, + "specs": "webauthn", + "name": "transports", + "type": "sequence", + "type-original": "sequence" + } + } + }, + "specs": "webauthn", + "name": "ScopedCredentialDescriptor", + "extends": "Object" + }, + "MSDSHEventInit": { + "members": { + "member": { + "sources": { + "subtype": { + "type": "unsigned long" + }, + "specs": "ortc", + "name": "sources", + "type": "sequence", + "type-original": "sequence" + }, + "timestamp": { + "specs": "ortc", + "name": "timestamp", + "type": "double", + "type-original": "DOMHighResTimeStamp" + } + } + }, + "specs": "ortc", + "name": "MSDSHEventInit", + "extends": "EventInit" + }, + "StoreSiteSpecificExceptionsInformation": { + "members": { + "member": { + "arrayOfDomainStrings": { + "subtype": { + "type": "DOMString" + }, + "specs": "tracking-dnt", + "name": "arrayOfDomainStrings", + "type": "sequence", + "type-original": "sequence" + } + } + }, + "specs": "tracking-dnt", + "name": "StoreSiteSpecificExceptionsInformation", + "extends": "StoreExceptionsInformation" + }, + "ConstrainDOMStringParameters": { + "members": { + "member": { + "exact": { + "specs": "media-capture-api", + "name": "exact", + "type": [ + { + "type": "DOMString" + }, + { + "subtype": { + "type": "DOMString" + }, + "type": "sequence" + } + ], + "type-original": "(DOMString or sequence)" + }, + "ideal": { + "specs": "media-capture-api", + "name": "ideal", + "type": [ + { + "type": "DOMString" + }, + { + "subtype": { + "type": "DOMString" + }, + "type": "sequence" + } + ], + "type-original": "(DOMString or sequence)" + } + } + }, + "specs": "media-capture-api", + "name": "ConstrainDOMStringParameters", + "extends": "Object" + }, + "PaymentCurrencyAmount": { + "members": { + "member": { + "currency": { + "required": 1, + "specs": "payment-request", + "name": "currency", + "type": "DOMString", + "type-original": "DOMString" + }, + "currencySystem": { + "specs": "payment-request", + "name": "currencySystem", + "default": "\"urn:iso:std:iso:4217\"", + "type": "DOMString", + "type-original": "DOMString" + }, + "value": { + "required": 1, + "specs": "payment-request", + "name": "value", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "payment-request", + "name": "PaymentCurrencyAmount", + "extends": "Object" + }, + "HmacKeyGenParams": { + "members": { + "member": { + "hash": { + "required": 1, + "specs": "webcryptoapi", + "name": "hash", + "type": [ + { + "type": "DOMString" + }, + { + "type": "Algorithm" + } + ], + "type-original": "HashAlgorithmIdentifier" + }, + "length": { + "specs": "webcryptoapi", + "name": "length", + "type": "unsigned long", + "enforce-range": 1, + "type-original": "unsigned long" + } + } + }, + "specs": "webcryptoapi", + "name": "HmacKeyGenParams", + "extends": "Algorithm" + }, + "AssertionOptions": { + "members": { + "member": { + "extensions": { + "specs": "webauthn", + "name": "extensions", + "type": "WebAuthnExtensions", + "type-original": "WebAuthnExtensions" + }, + "rpId": { + "specs": "webauthn", + "name": "rpId", + "type": "USVString", + "type-original": "USVString" + }, + "timeoutSeconds": { + "specs": "WD-webauthn-20161207", + "name": "timeoutSeconds", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "allowList": { + "subtype": { + "type": "ScopedCredentialDescriptor" + }, + "specs": "webauthn", + "name": "allowList", + "default": "[]", + "type": "sequence", + "type-original": "sequence" + } + } + }, + "specs": "webauthn", + "name": "AssertionOptions", + "extends": "Object" + }, + "RsaPssParams": { + "members": { + "member": { + "saltLength": { + "required": 1, + "specs": "webcryptoapi", + "name": "saltLength", + "type": "unsigned long", + "enforce-range": 1, + "type-original": "unsigned long" + } + } + }, + "specs": "webcryptoapi", + "name": "RsaPssParams", + "extends": "Algorithm" + }, + "ConstrainVideoFacingModeParameters": { + "members": { + "member": { + "exact": { + "specs": "media-capture-api", + "name": "exact", + "type": [ + { + "type": "VideoFacingModeEnum" + }, + { + "subtype": { + "type": "VideoFacingModeEnum" + }, + "type": "sequence" + } + ], + "type-original": "(VideoFacingModeEnum or sequence)" + }, + "ideal": { + "specs": "media-capture-api", + "name": "ideal", + "type": [ + { + "type": "VideoFacingModeEnum" + }, + { + "subtype": { + "type": "VideoFacingModeEnum" + }, + "type": "sequence" + } + ], + "type-original": "(VideoFacingModeEnum or sequence)" + } + } + }, + "specs": "media-capture-api", + "name": "ConstrainVideoFacingModeParameters", + "extends": "Object" + }, + "AudioParamDescriptor": { + "members": { + "member": { + "minValue": { + "specs": "webaudio", + "name": "minValue", + "type": "float", + "type-original": "float" + }, + "maxValue": { + "specs": "webaudio", + "name": "maxValue", + "type": "float", + "type-original": "float" + }, + "name": { + "specs": "webaudio", + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + }, + "defaultValue": { + "specs": "webaudio", + "name": "defaultValue", + "default": "0", + "type": "float", + "type-original": "float" + } + } + }, + "specs": "webaudio", + "name": "AudioParamDescriptor", + "extends": "Object" + }, + "RTCConfiguration": { + "members": { + "member": { + "peerIdentity": { + "specs": "webrtc", + "name": "peerIdentity", + "type": "DOMString", + "type-original": "DOMString" + }, + "bundlePolicy": { + "specs": "webrtc", + "name": "bundlePolicy", + "default": "\"balanced\"", + "type": "RTCBundlePolicy", + "type-original": "RTCBundlePolicy" + }, + "iceServers": { + "subtype": { + "type": "RTCIceServer" + }, + "specs": "webrtc", + "name": "iceServers", + "type": "sequence", + "type-original": "sequence" + }, + "iceTransportPolicy": { + "specs": "webrtc", + "name": "iceTransportPolicy", + "default": "\"all\"", + "type": "RTCIceTransportPolicy", + "type-original": "RTCIceTransportPolicy" + } + } + }, + "specs": "webrtc", + "name": "RTCConfiguration", + "extends": "Object" + }, + "MSNetworkConnectivityInfo": { + "members": { + "member": { + "networkConnectionDetails": { + "specs": "webrtc-stats", + "name": "networkConnectionDetails", + "type": "DOMString", + "type-original": "DOMString" + }, + "linkspeed": { + "specs": "webrtc-stats", + "name": "linkspeed", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "vpn": { + "specs": "webrtc-stats", + "name": "vpn", + "type": "boolean", + "type-original": "boolean" + } + } + }, + "specs": "webrtc-stats", + "name": "MSNetworkConnectivityInfo", + "extends": "Object" + }, + "ClientQueryOptions": { + "members": { + "member": { + "includeReserved": { + "specs": "service-workers", + "name": "includeReserved", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "includeUncontrolled": { + "specs": "service-workers", + "name": "includeUncontrolled", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "type": { + "specs": "service-workers", + "name": "type", + "default": "\"window\"", + "type": "ClientType", + "type-original": "ClientType" + } + } + }, + "specs": "service-workers", + "name": "ClientQueryOptions", + "extends": "Object" + }, + "RsaHashedKeyAlgorithm": { + "members": { + "member": { + "hash": { + "required": 1, + "specs": "webcryptoapi", + "name": "hash", + "type": "KeyAlgorithm", + "type-original": "KeyAlgorithm" + } + } + }, + "specs": "webcryptoapi", + "name": "RsaHashedKeyAlgorithm", + "extends": "RsaKeyAlgorithm" + }, + "DeviceMotionEventInit": { + "members": { + "member": { + "rotationRate": { + "nullable": 1, + "specs": "orientation-event", + "name": "rotationRate", + "default": "null", + "type": "DeviceRotationRateDict", + "type-original": "DeviceRotationRateDict?" + }, + "acceleration": { + "nullable": 1, + "specs": "orientation-event", + "name": "acceleration", + "default": "null", + "type": "DeviceAccelerationDict", + "type-original": "DeviceAccelerationDict?" + }, + "interval": { + "nullable": 1, + "specs": "orientation-event", + "name": "interval", + "default": "null", + "type": "double", + "type-original": "double?" + }, + "accelerationIncludingGravity": { + "nullable": 1, + "specs": "orientation-event", + "name": "accelerationIncludingGravity", + "default": "null", + "type": "DeviceAccelerationDict", + "type-original": "DeviceAccelerationDict?" + } + } + }, + "specs": "orientation-event", + "name": "DeviceMotionEventInit", + "extends": "EventInit" + }, + "RTCIceServer": { + "members": { + "member": { + "credential": { + "nullable": 1, + "specs": "ortc", + "name": "credential", + "type": "DOMString", + "type-original": "DOMString?" + }, + "urls": { + "specs": "ortc", + "name": "urls", + "type": "any", + "type-original": "any" + }, + "username": { + "nullable": 1, + "specs": "ortc", + "name": "username", + "type": "DOMString", + "type-original": "DOMString?" + } + } + }, + "specs": "ortc", + "name": "RTCIceServer", + "extends": "Object" + }, + "HmacKeyAlgorithm": { + "members": { + "member": { + "hash": { + "required": 1, + "specs": "webcryptoapi", + "name": "hash", + "type": "KeyAlgorithm", + "type-original": "KeyAlgorithm" + }, + "length": { + "required": 1, + "specs": "webcryptoapi", + "name": "length", + "type": "unsigned long", + "type-original": "unsigned long" + } + } + }, + "specs": "webcryptoapi", + "name": "HmacKeyAlgorithm", + "extends": "KeyAlgorithm" + }, + "ConvolverOptions": { + "members": { + "member": { + "disableNormalization": { + "specs": "webaudio", + "name": "disableNormalization", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "buffer": { + "nullable": 1, + "specs": "webaudio", + "name": "buffer", + "type": "AudioBuffer", + "type-original": "AudioBuffer?" + } + } + }, + "specs": "webaudio", + "name": "ConvolverOptions", + "extends": "AudioNodeOptions" + }, + "MSPayloadBase": { + "members": { + "member": { + "payloadDescription": { + "specs": "webrtc-stats", + "name": "payloadDescription", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "webrtc-stats", + "name": "MSPayloadBase", + "extends": "RTCStats" + }, + "WaveShaperOptions": { + "members": { + "member": { + "curve": { + "subtype": { + "type": "float" + }, + "specs": "webaudio", + "name": "curve", + "type": "sequence", + "type-original": "sequence" + }, + "oversample": { + "specs": "webaudio", + "name": "oversample", + "default": "\"none\"", + "type": "OverSampleType", + "type-original": "OverSampleType" + } + } + }, + "specs": "webaudio", + "name": "WaveShaperOptions", + "extends": "AudioNodeOptions" + }, + "CloseEventInit": { + "members": { + "member": { + "wasClean": { + "specs": "html5", + "name": "wasClean", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "reason": { + "specs": "html5", + "name": "reason", + "default": "\"\"", + "type": "USVString", + "type-original": "USVString" + }, + "code": { + "specs": "html5", + "name": "code", + "default": "0", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "specs": "html5", + "name": "CloseEventInit", + "extends": "EventInit" + }, + "StoreExceptionsInformation": { + "members": { + "member": { + "detailURI": { + "nullable": 1, + "specs": "tracking-dnt", + "name": "detailURI", + "type": "DOMString", + "type-original": "DOMString?" + }, + "siteName": { + "nullable": 1, + "specs": "tracking-dnt", + "name": "siteName", + "type": "DOMString", + "type-original": "DOMString?" + }, + "explanationString": { + "nullable": 1, + "specs": "tracking-dnt", + "name": "explanationString", + "type": "DOMString", + "type-original": "DOMString?" + } + } + }, + "specs": "tracking-dnt", + "name": "StoreExceptionsInformation", + "extends": "ExceptionInformation" + }, + "MSPacketLoss": { + "members": { + "member": { + "lossRate": { + "specs": "webrtc-stats", + "name": "lossRate", + "type": "float", + "type-original": "float" + }, + "lossRateMax": { + "specs": "webrtc-stats", + "name": "lossRateMax", + "type": "float", + "type-original": "float" + } + } + }, + "specs": "webrtc-stats", + "name": "MSPacketLoss", + "extends": "Object" + }, + "IIRFilterOptions": { + "members": { + "member": { + "feedforward": { + "subtype": { + "type": "double" + }, + "required": 1, + "specs": "webaudio", + "name": "feedforward", + "type": "sequence", + "type-original": "sequence" + }, + "feedback": { + "subtype": { + "type": "double" + }, + "required": 1, + "specs": "webaudio", + "name": "feedback", + "type": "sequence", + "type-original": "sequence" + } + } + }, + "specs": "webaudio", + "name": "IIRFilterOptions", + "extends": "AudioNodeOptions" + }, + "ClientData": { + "members": { + "member": { + "extensions": { + "specs": "WD-webauthn-20161207", + "name": "extensions", + "type": "WebAuthnExtensions", + "type-original": "WebAuthnExtensions" + }, + "rpId": { + "required": 1, + "specs": "WD-webauthn-20160902", + "name": "rpId", + "type": "DOMString", + "type-original": "DOMString" + }, + "tokenBinding": { + "specs": "webauthn", + "name": "tokenBinding", + "type": "DOMString", + "type-original": "DOMString" + }, + "challenge": { + "required": 1, + "specs": "webauthn", + "name": "challenge", + "type": "DOMString", + "type-original": "DOMString" + }, + "origin": { + "required": 1, + "specs": "webauthn", + "name": "origin", + "type": "DOMString", + "type-original": "DOMString" + }, + "hashAlg": { + "required": 1, + "specs": "WD-webauthn-20170216", + "name": "hashAlg", + "type": [ + { + "type": "DOMString" + }, + { + "type": "Algorithm" + } + ], + "type-original": "AlgorithmIdentifier" + } + } + }, + "specs": "webauthn", + "name": "ClientData", + "extends": "Object" + }, + "ExtendableMessageEventInit": { + "members": { + "member": { + "source": { + "specs": "service-workers", + "name": "source", + "type": [ + { + "nullable": 1, + "type": "Client" + }, + { + "nullable": 1, + "type": "ServiceWorker" + }, + { + "nullable": 1, + "type": "MessagePort" + } + ], + "type-original": "(Client or ServiceWorker or MessagePort)?" + }, + "ports": { + "subtype": { + "type": "MessagePort" + }, + "nullable": 1, + "specs": "service-workers", + "name": "ports", + "type": "sequence", + "type-original": "sequence?" + }, + "lastEventId": { + "specs": "service-workers", + "name": "lastEventId", + "type": "DOMString", + "type-original": "DOMString" + }, + "origin": { + "specs": "service-workers", + "name": "origin", + "type": "DOMString", + "type-original": "DOMString" + }, + "data": { + "specs": "service-workers", + "name": "data", + "type": "any", + "type-original": "any" + } + } + }, + "specs": "service-workers", + "name": "ExtendableMessageEventInit", + "extends": "ExtendableEventInit" + }, + "MSVideoSendPayload": { + "members": { + "member": { + "sendResolutionWidth": { + "specs": "webrtc-stats", + "name": "sendResolutionWidth", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "sendVideoStreamsMax": { + "specs": "webrtc-stats", + "name": "sendVideoStreamsMax", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "sendFrameRateAverage": { + "specs": "webrtc-stats", + "name": "sendFrameRateAverage", + "type": "float", + "type-original": "float" + }, + "sendResolutionHeight": { + "specs": "webrtc-stats", + "name": "sendResolutionHeight", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "sendBitRateMaximum": { + "specs": "webrtc-stats", + "name": "sendBitRateMaximum", + "type": "unsigned long long", + "type-original": "unsigned long long" + }, + "sendBitRateAverage": { + "specs": "webrtc-stats", + "name": "sendBitRateAverage", + "type": "unsigned long long", + "type-original": "unsigned long long" + } + } + }, + "specs": "webrtc-stats", + "name": "MSVideoSendPayload", + "extends": "MSVideoPayload" + }, + "CacheQueryOptions": { + "members": { + "member": { + "ignoreSearch": { + "specs": "service-workers", + "name": "ignoreSearch", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "ignoreVary": { + "specs": "service-workers", + "name": "ignoreVary", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "ignoreMethod": { + "specs": "service-workers", + "name": "ignoreMethod", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "cacheName": { + "specs": "service-workers", + "name": "cacheName", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "service-workers", + "name": "CacheQueryOptions", + "extends": "Object" + }, + "AudioContextInfo": { + "members": { + "member": { + "sampleRate": { + "specs": "webaudio", + "name": "sampleRate", + "type": "float", + "type-original": "float" + }, + "currentTime": { + "specs": "webaudio", + "name": "currentTime", + "type": "double", + "type-original": "double" + } + } + }, + "specs": "webaudio", + "name": "AudioContextInfo", + "extends": "Object" + }, + "JsonWebKey": { + "members": { + "member": { + "oth": { + "subtype": { + "type": "RsaOtherPrimesInfo" + }, + "specs": "webcryptoapi", + "name": "oth", + "type": "sequence", + "type-original": "sequence" + }, + "dp": { + "specs": "webcryptoapi", + "name": "dp", + "type": "DOMString", + "type-original": "DOMString" + }, + "crv": { + "specs": "webcryptoapi", + "name": "crv", + "type": "DOMString", + "type-original": "DOMString" + }, + "d": { + "specs": "webcryptoapi", + "name": "d", + "type": "DOMString", + "type-original": "DOMString" + }, + "x": { + "specs": "webcryptoapi", + "name": "x", + "type": "DOMString", + "type-original": "DOMString" + }, + "y": { + "specs": "webcryptoapi", + "name": "y", + "type": "DOMString", + "type-original": "DOMString" + }, + "kty": { + "specs": "webcryptoapi", + "name": "kty", + "type": "DOMString", + "type-original": "DOMString" + }, + "k": { + "specs": "webcryptoapi", + "name": "k", + "type": "DOMString", + "type-original": "DOMString" + }, + "use": { + "specs": "webcryptoapi", + "name": "use", + "type": "DOMString", + "type-original": "DOMString" + }, + "key_ops": { + "subtype": { + "type": "DOMString" + }, + "specs": "webcryptoapi", + "name": "key_ops", + "type": "sequence", + "type-original": "sequence" + }, + "ext": { + "specs": "webcryptoapi", + "name": "ext", + "type": "boolean", + "type-original": "boolean" + }, + "e": { + "specs": "webcryptoapi", + "name": "e", + "type": "DOMString", + "type-original": "DOMString" + }, + "n": { + "specs": "webcryptoapi", + "name": "n", + "type": "DOMString", + "type-original": "DOMString" + }, + "p": { + "specs": "webcryptoapi", + "name": "p", + "type": "DOMString", + "type-original": "DOMString" + }, + "q": { + "specs": "webcryptoapi", + "name": "q", + "type": "DOMString", + "type-original": "DOMString" + }, + "alg": { + "specs": "webcryptoapi", + "name": "alg", + "type": "DOMString", + "type-original": "DOMString" + }, + "dq": { + "specs": "webcryptoapi", + "name": "dq", + "type": "DOMString", + "type-original": "DOMString" + }, + "qi": { + "specs": "webcryptoapi", + "name": "qi", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "webcryptoapi", + "name": "JsonWebKey", + "extends": "Object" + }, + "ResponseInit": { + "members": { + "member": { + "headers": { + "specs": "whatwg-fetch", + "name": "headers", + "type": [ + { + "type": "Headers" + }, + { + "subtype": { + "subtype": { + "type": "ByteString" + }, + "type": "sequence" + }, + "type": "sequence" + } + ], + "type-original": "HeadersInit" + }, + "status": { + "specs": "whatwg-fetch", + "name": "status", + "default": "200", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "statusText": { + "specs": "whatwg-fetch", + "name": "statusText", + "default": "\"OK\"", + "type": "ByteString", + "type-original": "ByteString" + } + } + }, + "specs": "whatwg-fetch", + "name": "ResponseInit", + "extends": "Object" + }, + "MediaTrackSupportedConstraints": { + "members": { + "member": { + "sampleRate": { + "specs": "media-capture-api", + "name": "sampleRate", + "type": "boolean", + "type-original": "boolean" + }, + "width": { + "specs": "media-capture-api", + "name": "width", + "type": "boolean", + "type-original": "boolean" + }, + "deviceId": { + "specs": "media-capture-api", + "name": "deviceId", + "type": "boolean", + "type-original": "boolean" + }, + "volume": { + "specs": "media-capture-api", + "name": "volume", + "type": "boolean", + "type-original": "boolean" + }, + "echoCancellation": { + "specs": "media-capture-api", + "name": "echoCancellation", + "type": "boolean", + "type-original": "boolean" + }, + "sampleSize": { + "specs": "media-capture-api", + "name": "sampleSize", + "type": "boolean", + "type-original": "boolean" + }, + "groupId": { + "specs": "media-capture-api", + "name": "groupId", + "type": "boolean", + "type-original": "boolean" + }, + "height": { + "specs": "media-capture-api", + "name": "height", + "type": "boolean", + "type-original": "boolean" + }, + "facingMode": { + "specs": "media-capture-api", + "name": "facingMode", + "type": "boolean", + "type-original": "boolean" + }, + "frameRate": { + "specs": "media-capture-api", + "name": "frameRate", + "type": "boolean", + "type-original": "boolean" + }, + "aspectRatio": { + "specs": "media-capture-api", + "name": "aspectRatio", + "type": "boolean", + "type-original": "boolean" + } + } + }, + "specs": "media-capture-api", + "name": "MediaTrackSupportedConstraints", + "extends": "Object" + }, + "Algorithm": { + "members": { + "member": { + "name": { + "required": 1, + "specs": "webcryptoapi", + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "webcryptoapi", + "name": "Algorithm", + "extends": "Object" + }, + "MediaEncryptedEventInit": { + "members": { + "member": { + "initDataType": { + "specs": "encrypted-media", + "name": "initDataType", + "default": "\"\"", + "type": "DOMString", + "type-original": "DOMString" + }, + "initData": { + "nullable": 1, + "specs": "encrypted-media", + "name": "initData", + "default": "null", + "type": "ArrayBuffer", + "type-original": "ArrayBuffer?" + } + } + }, + "specs": "encrypted-media", + "name": "MediaEncryptedEventInit", + "extends": "EventInit" + }, + "SyncEventInit": { + "members": { + "member": { + "lastChance": { + "specs": "web-background-sync", + "name": "lastChance", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "tag": { + "required": 1, + "specs": "web-background-sync", + "name": "tag", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "web-background-sync", + "name": "SyncEventInit", + "extends": "ExtendableEventInit" + }, + "MSUtilization": { + "members": { + "member": { + "bandwidthEstimationAvg": { + "specs": "webrtc-stats", + "name": "bandwidthEstimationAvg", + "type": "unsigned long long", + "type-original": "unsigned long long" + }, + "bandwidthEstimation": { + "specs": "webrtc-stats", + "name": "bandwidthEstimation", + "type": "unsigned long long", + "type-original": "unsigned long long" + }, + "bandwidthEstimationStdDev": { + "specs": "webrtc-stats", + "name": "bandwidthEstimationStdDev", + "type": "unsigned long long", + "type-original": "unsigned long long" + }, + "packets": { + "specs": "webrtc-stats", + "name": "packets", + "type": "unsigned long long", + "type-original": "unsigned long long" + }, + "bandwidthEstimationMin": { + "specs": "webrtc-stats", + "name": "bandwidthEstimationMin", + "type": "unsigned long long", + "type-original": "unsigned long long" + }, + "bandwidthEstimationMax": { + "specs": "webrtc-stats", + "name": "bandwidthEstimationMax", + "type": "unsigned long long", + "type-original": "unsigned long long" + } + } + }, + "specs": "webrtc-stats", + "name": "MSUtilization", + "extends": "Object" + }, + "TextDecoderOptions": { + "members": { + "member": { + "ignoreBOM": { + "specs": "encoding", + "name": "ignoreBOM", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "fatal": { + "specs": "encoding", + "name": "fatal", + "default": "false", + "type": "boolean", + "type-original": "boolean" + } + } + }, + "specs": "encoding", + "name": "TextDecoderOptions", + "extends": "Object" + }, + "PannerOptions": { + "members": { + "member": { + "positionZ": { + "specs": "webaudio", + "name": "positionZ", + "default": "0", + "type": "float", + "type-original": "float" + }, + "rolloffFactor": { + "specs": "webaudio", + "name": "rolloffFactor", + "default": "1", + "type": "double", + "type-original": "double" + }, + "coneOuterAngle": { + "specs": "webaudio", + "name": "coneOuterAngle", + "default": "360", + "type": "double", + "type-original": "double" + }, + "positionY": { + "specs": "webaudio", + "name": "positionY", + "default": "0", + "type": "float", + "type-original": "float" + }, + "orientationY": { + "specs": "webaudio", + "name": "orientationY", + "default": "0", + "type": "float", + "type-original": "float" + }, + "panningModel": { + "specs": "webaudio", + "name": "panningModel", + "default": "\"equalpower\"", + "type": "PanningModelType", + "type-original": "PanningModelType" + }, + "coneOuterGain": { + "specs": "webaudio", + "name": "coneOuterGain", + "default": "0", + "type": "double", + "type-original": "double" + }, + "coneInnerAngle": { + "specs": "webaudio", + "name": "coneInnerAngle", + "default": "360", + "type": "double", + "type-original": "double" + }, + "distanceModel": { + "specs": "webaudio", + "name": "distanceModel", + "default": "\"inverse\"", + "type": "DistanceModelType", + "type-original": "DistanceModelType" + }, + "positionX": { + "specs": "webaudio", + "name": "positionX", + "default": "0", + "type": "float", + "type-original": "float" + }, + "maxDistance": { + "specs": "webaudio", + "name": "maxDistance", + "default": "10000", + "type": "double", + "type-original": "double" + }, + "orientationX": { + "specs": "webaudio", + "name": "orientationX", + "default": "1", + "type": "float", + "type-original": "float" + }, + "refDistance": { + "specs": "webaudio", + "name": "refDistance", + "default": "1", + "type": "double", + "type-original": "double" + }, + "orientationZ": { + "specs": "webaudio", + "name": "orientationZ", + "default": "0", + "type": "float", + "type-original": "float" + } + } + }, + "specs": "webaudio", + "name": "PannerOptions", + "extends": "AudioNodeOptions" + }, + "EventListenerOptions": { + "members": { + "member": { + "capture": { + "specs": "dom4", + "name": "capture", + "default": "false", + "type": "boolean", + "type-original": "boolean" + } + } + }, + "specs": "dom4", + "name": "EventListenerOptions", + "extends": "Object" + }, + "TextDecodeOptions": { + "members": { + "member": { + "stream": { + "specs": "encoding", + "name": "stream", + "default": "false", + "type": "boolean", + "type-original": "boolean" + } + } + }, + "specs": "encoding", + "name": "TextDecodeOptions", + "extends": "Object" + }, + "RTCRtpCodecCapability": { + "members": { + "member": { + "preferredPayloadType": { + "specs": "ortc", + "name": "preferredPayloadType", + "type": "octet", + "type-original": "payloadtype" + }, + "options": { + "specs": "ortc", + "name": "options", + "type": "object", + "type-original": "object" + }, + "maxSpatialLayers": { + "specs": "ortc", + "name": "maxSpatialLayers", + "default": "0", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "clockRate": { + "specs": "ortc", + "name": "clockRate", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "name": { + "specs": "ortc", + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + }, + "maxptime": { + "specs": "ortc", + "name": "maxptime", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "parameters": { + "specs": "ortc", + "name": "parameters", + "type": "object", + "type-original": "object" + }, + "kind": { + "specs": "ortc", + "name": "kind", + "type": "DOMString", + "type-original": "DOMString" + }, + "rtcpFeedback": { + "subtype": { + "type": "RTCRtcpFeedback" + }, + "specs": "ortc", + "name": "rtcpFeedback", + "type": "sequence", + "type-original": "sequence" + }, + "maxTemporalLayers": { + "specs": "ortc", + "name": "maxTemporalLayers", + "default": "0", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "ptime": { + "specs": "ortc", + "name": "ptime", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "numChannels": { + "specs": "ortc", + "name": "numChannels", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "svcMultiStreamSupport": { + "specs": "ortc", + "name": "svcMultiStreamSupport", + "type": "boolean", + "type-original": "boolean" + } + } + }, + "specs": "ortc", + "name": "RTCRtpCodecCapability", + "extends": "Object" + }, + "ServiceWorkerMessageEventInit": { + "members": { + "member": { + "source": { + "specs": "service-workers", + "name": "source", + "type": [ + { + "nullable": 1, + "type": "ServiceWorker" + }, + { + "nullable": 1, + "type": "MessagePort" + } + ], + "type-original": "(ServiceWorker or MessagePort)?" + }, + "ports": { + "subtype": { + "type": "MessagePort" + }, + "nullable": 1, + "specs": "service-workers", + "name": "ports", + "type": "sequence", + "type-original": "sequence?" + }, + "lastEventId": { + "specs": "service-workers", + "name": "lastEventId", + "type": "DOMString", + "type-original": "DOMString" + }, + "origin": { + "specs": "service-workers", + "name": "origin", + "type": "DOMString", + "type-original": "DOMString" + }, + "data": { + "specs": "service-workers", + "name": "data", + "type": "any", + "type-original": "any" + } + } + }, + "specs": "service-workers", + "name": "ServiceWorkerMessageEventInit", + "extends": "EventInit" + }, + "RTCIceCandidateAttributes": { + "members": { + "member": { + "priority": { + "specs": "ortc", + "name": "priority", + "type": "long", + "type-original": "long" + }, + "transport": { + "specs": "ortc", + "name": "transport", + "type": "DOMString", + "type-original": "DOMString" + }, + "addressSourceUrl": { + "specs": "ortc", + "name": "addressSourceUrl", + "type": "DOMString", + "type-original": "DOMString" + }, + "portNumber": { + "specs": "ortc", + "name": "portNumber", + "type": "long", + "type-original": "long" + }, + "ipAddress": { + "specs": "ortc", + "name": "ipAddress", + "type": "DOMString", + "type-original": "DOMString" + }, + "candidateType": { + "specs": "ortc", + "name": "candidateType", + "type": "RTCStatsIceCandidateType", + "type-original": "RTCStatsIceCandidateType" + } + } + }, + "specs": "ortc", + "name": "RTCIceCandidateAttributes", + "extends": "RTCStats" + }, + "AudioNodeOptions": { + "members": { + "member": { + "channelCount": { + "specs": "webaudio", + "name": "channelCount", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "channelInterpretation": { + "specs": "webaudio", + "name": "channelInterpretation", + "type": "ChannelInterpretation", + "type-original": "ChannelInterpretation" + }, + "channelCountMode": { + "specs": "webaudio", + "name": "channelCountMode", + "type": "ChannelCountMode", + "type-original": "ChannelCountMode" + } + } + }, + "specs": "webaudio", + "name": "AudioNodeOptions", + "extends": "Object" + }, + "PeriodicWaveOptions": { + "members": { + "member": { + "imag": { + "subtype": { + "type": "float" + }, + "specs": "webaudio", + "name": "imag", + "type": "sequence", + "type-original": "sequence" + }, + "real": { + "subtype": { + "type": "float" + }, + "specs": "webaudio", + "name": "real", + "type": "sequence", + "type-original": "sequence" + } + } + }, + "specs": "webaudio", + "name": "PeriodicWaveOptions", + "extends": "PeriodicWaveConstraints" + }, + "MSCredentialFilter": { + "members": { + "member": { + "accept": { + "subtype": { + "type": "MSCredentialSpec" + }, + "specs": "webauthn", + "name": "accept", + "type": "sequence", + "type-original": "sequence" + } + } + }, + "specs": "webauthn", + "name": "MSCredentialFilter", + "extends": "Object" + }, + "RTCIceGatherOptions": { + "members": { + "member": { + "iceservers": { + "subtype": { + "type": "RTCIceServer" + }, + "specs": "ortc", + "name": "iceservers", + "type": "sequence", + "type-original": "sequence" + }, + "portRange": { + "specs": "ortc", + "name": "portRange", + "type": "MSPortRange", + "type-original": "MSPortRange" + }, + "gatherPolicy": { + "specs": "ortc", + "name": "gatherPolicy", + "type": "RTCIceGatherPolicy", + "type-original": "RTCIceGatherPolicy" + } + } + }, + "specs": "ortc", + "name": "RTCIceGatherOptions", + "extends": "Object" + }, + "MSDescription": { + "members": { + "member": { + "networkconnectivity": { + "specs": "webrtc-stats", + "name": "networkconnectivity", + "type": "MSNetworkConnectivityInfo", + "type-original": "MSNetworkConnectivityInfo" + }, + "transport": { + "specs": "webrtc-stats", + "name": "transport", + "type": "RTCIceProtocol", + "type-original": "RTCIceProtocol" + }, + "reflexiveLocalIPAddr": { + "specs": "webrtc-stats", + "name": "reflexiveLocalIPAddr", + "type": "MSIPAddressInfo", + "type-original": "MSIPAddressInfo" + }, + "connectivity": { + "specs": "webrtc-stats", + "name": "connectivity", + "type": "MSConnectivity", + "type-original": "MSConnectivity" + }, + "deviceDevName": { + "specs": "webrtc-stats", + "name": "deviceDevName", + "type": "DOMString", + "type-original": "DOMString" + }, + "localAddr": { + "specs": "webrtc-stats", + "name": "localAddr", + "type": "MSIPAddressInfo", + "type-original": "MSIPAddressInfo" + }, + "remoteAddr": { + "specs": "webrtc-stats", + "name": "remoteAddr", + "type": "MSIPAddressInfo", + "type-original": "MSIPAddressInfo" + } + } + }, + "specs": "webrtc-stats", + "name": "MSDescription", + "extends": "RTCStats" + }, + "RTCIceCandidateDictionary": { + "members": { + "member": { + "protocol": { + "specs": "ortc", + "name": "protocol", + "type": "RTCIceProtocol", + "type-original": "RTCIceProtocol" + }, + "priority": { + "specs": "ortc", + "name": "priority", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "tcpType": { + "specs": "ortc", + "name": "tcpType", + "type": "RTCIceTcpCandidateType", + "type-original": "RTCIceTcpCandidateType" + }, + "ip": { + "specs": "ortc", + "name": "ip", + "type": "DOMString", + "type-original": "DOMString" + }, + "port": { + "specs": "ortc", + "name": "port", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "msMTurnSessionId": { + "specs": "ortc", + "name": "msMTurnSessionId", + "type": "DOMString", + "type-original": "DOMString" + }, + "foundation": { + "specs": "ortc", + "name": "foundation", + "type": "DOMString", + "type-original": "DOMString" + }, + "relatedPort": { + "specs": "ortc", + "name": "relatedPort", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "type": { + "specs": "ortc", + "name": "type", + "type": "RTCIceCandidateType", + "type-original": "RTCIceCandidateType" + }, + "relatedAddress": { + "specs": "ortc", + "name": "relatedAddress", + "default": "\"\"", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "ortc", + "name": "RTCIceCandidateDictionary", + "extends": "Object" + }, + "OfflineAudioCompletionEventInit": { + "members": { + "member": { + "renderedBuffer": { + "required": 1, + "specs": "webaudio", + "name": "renderedBuffer", + "type": "AudioBuffer", + "type-original": "AudioBuffer" + } + } + }, + "specs": "webaudio", + "name": "OfflineAudioCompletionEventInit", + "extends": "EventInit" + }, + "MSPortRange": { + "members": { + "member": { + "min": { + "specs": "ortc", + "name": "min", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "max": { + "specs": "ortc", + "name": "max", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "specs": "ortc", + "name": "MSPortRange", + "extends": "Object" + }, + "RTCRtpContributingSource": { + "members": { + "member": { + "timestamp": { + "specs": "ortc", + "name": "timestamp", + "type": "double", + "type-original": "DOMHighResTimeStamp" + }, + "audioLevel": { + "specs": "ortc", + "name": "audioLevel", + "type": "byte", + "type-original": "byte" + }, + "csrc": { + "specs": "ortc", + "name": "csrc", + "type": "unsigned long", + "type-original": "unsigned long" + } + } + }, + "specs": "ortc", + "name": "RTCRtpContributingSource", + "extends": "Object" + }, + "AudioBufferOptions": { + "members": { + "member": { + "sampleRate": { + "required": 1, + "specs": "webaudio", + "name": "sampleRate", + "type": "float", + "type-original": "float" + }, + "length": { + "required": 1, + "specs": "webaudio", + "name": "length", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "numberOfChannels": { + "specs": "webaudio", + "name": "numberOfChannels", + "default": "1", + "type": "unsigned long", + "type-original": "unsigned long" + } + } + }, + "specs": "webaudio", + "name": "AudioBufferOptions", + "extends": "Object" + }, + "MSAccountInfo": { + "members": { + "member": { + "userId": { + "specs": "webauthn", + "name": "userId", + "type": "DOMString", + "type-original": "DOMString" + }, + "userDisplayName": { + "required": 1, + "specs": "webauthn", + "name": "userDisplayName", + "type": "DOMString", + "type-original": "DOMString" + }, + "rpDisplayName": { + "required": 1, + "specs": "webauthn", + "name": "rpDisplayName", + "type": "DOMString", + "type-original": "DOMString" + }, + "accountImageUri": { + "specs": "webauthn", + "name": "accountImageUri", + "type": "DOMString", + "type-original": "DOMString" + }, + "accountName": { + "specs": "webauthn", + "name": "accountName", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "webauthn", + "name": "MSAccountInfo", + "extends": "Object" + }, + "ExtendableEventInit": { + "members": { + "member": {} + }, + "specs": "service-workers", + "name": "ExtendableEventInit", + "extends": "EventInit" + }, + "RTCStatsReport": { + "members": { + "member": {} + }, + "specs": "ortc", + "name": "RTCStatsReport", + "extends": "Object" + }, + "PaymentShippingOption": { + "members": { + "member": { + "amount": { + "required": 1, + "specs": "payment-request", + "name": "amount", + "type": "PaymentCurrencyAmount", + "type-original": "PaymentCurrencyAmount" + }, + "label": { + "required": 1, + "specs": "payment-request", + "name": "label", + "type": "DOMString", + "type-original": "DOMString" + }, + "id": { + "required": 1, + "specs": "payment-request", + "name": "id", + "type": "DOMString", + "type-original": "DOMString" + }, + "selected": { + "specs": "payment-request", + "name": "selected", + "default": "false", + "type": "boolean", + "type-original": "boolean" + } + } + }, + "specs": "payment-request", + "name": "PaymentShippingOption", + "extends": "Object" + }, + "AudioContextOptions": { + "members": { + "member": { + "sampleRate": { + "specs": "webaudio", + "name": "sampleRate", + "type": "float", + "type-original": "float" + }, + "latencyHint": { + "specs": "webaudio", + "name": "latencyHint", + "default": "\"interactive\"", + "type": [ + { + "type": "AudioContextLatencyCategory" + }, + { + "type": "double" + } + ], + "type-original": "(AudioContextLatencyCategory or double)" + } + } + }, + "specs": "webaudio", + "name": "AudioContextOptions", + "extends": "Object" + }, + "RTCIceCandidatePair": { + "members": { + "member": { + "local": { + "specs": "ortc", + "name": "local", + "type": "RTCIceCandidateDictionary", + "type-original": "RTCIceCandidateDictionary" + }, + "remote": { + "specs": "ortc", + "name": "remote", + "type": "RTCIceCandidateDictionary", + "type-original": "RTCIceCandidateDictionary" + } + } + }, + "specs": "ortc", + "name": "RTCIceCandidatePair", + "extends": "Object" + }, + "AesCbcParams": { + "members": { + "member": { + "iv": { + "required": 1, + "specs": "webcryptoapi", + "name": "iv", + "type": [ + { + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ] + }, + { + "nullable": 1, + "type": "ArrayBuffer" + } + ], + "type-original": "BufferSource" + } + } + }, + "specs": "webcryptoapi", + "name": "AesCbcParams", + "extends": "Algorithm" + }, + "MediaTrackCapabilities": { + "members": { + "member": { + "sampleRate": { + "specs": "media-capture-api", + "name": "sampleRate", + "type": [ + { + "type": "long" + }, + { + "type": "LongRange" + } + ], + "type-original": "(long or LongRange)" + }, + "width": { + "specs": "media-capture-api", + "name": "width", + "type": [ + { + "type": "long" + }, + { + "type": "LongRange" + } + ], + "type-original": "(long or LongRange)" + }, + "deviceId": { + "specs": "media-capture-api", + "name": "deviceId", + "type": "DOMString", + "type-original": "DOMString" + }, + "volume": { + "specs": "media-capture-api", + "name": "volume", + "type": [ + { + "type": "double" + }, + { + "type": "DoubleRange" + } + ], + "type-original": "(double or DoubleRange)" + }, + "echoCancellation": { + "subtype": { + "type": "boolean" + }, + "specs": "media-capture-api", + "name": "echoCancellation", + "type": "sequence", + "type-original": "sequence" + }, + "sampleSize": { + "specs": "media-capture-api", + "name": "sampleSize", + "type": [ + { + "type": "long" + }, + { + "type": "LongRange" + } + ], + "type-original": "(long or LongRange)" + }, + "groupId": { + "specs": "media-capture-api", + "name": "groupId", + "type": "DOMString", + "type-original": "DOMString" + }, + "height": { + "specs": "media-capture-api", + "name": "height", + "type": [ + { + "type": "long" + }, + { + "type": "LongRange" + } + ], + "type-original": "(long or LongRange)" + }, + "facingMode": { + "specs": "media-capture-api", + "name": "facingMode", + "type": "DOMString", + "type-original": "DOMString" + }, + "frameRate": { + "specs": "media-capture-api", + "name": "frameRate", + "type": [ + { + "type": "double" + }, + { + "type": "DoubleRange" + } + ], + "type-original": "(double or DoubleRange)" + }, + "aspectRatio": { + "specs": "media-capture-api", + "name": "aspectRatio", + "type": [ + { + "type": "double" + }, + { + "type": "DoubleRange" + } + ], + "type-original": "(double or DoubleRange)" + } + } + }, + "specs": "media-capture-api", + "name": "MediaTrackCapabilities", + "extends": "Object" + }, + "MSConnectivity": { + "members": { + "member": { + "iceWarningFlags": { + "specs": "webrtc-stats", + "name": "iceWarningFlags", + "type": "MSIceWarningFlags", + "type-original": "MSIceWarningFlags" + }, + "iceType": { + "specs": "webrtc-stats", + "name": "iceType", + "type": "MSIceType", + "type-original": "MSIceType" + }, + "relayAddress": { + "specs": "webrtc-stats", + "name": "relayAddress", + "type": "MSRelayAddress", + "type-original": "MSRelayAddress" + } + } + }, + "specs": "webrtc-stats", + "name": "MSConnectivity", + "extends": "Object" + }, + "MediaKeySystemMediaCapability": { + "members": { + "member": { + "robustness": { + "specs": "encrypted-media", + "name": "robustness", + "default": "\"\"", + "type": "DOMString", + "type-original": "DOMString" + }, + "contentType": { + "specs": "encrypted-media", + "name": "contentType", + "default": "\"\"", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "encrypted-media", + "name": "MediaKeySystemMediaCapability", + "extends": "Object" + }, + "RTCRtpHeaderExtension": { + "members": { + "member": { + "preferredEncrypt": { + "specs": "ortc", + "name": "preferredEncrypt", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "kind": { + "specs": "ortc", + "name": "kind", + "type": "DOMString", + "type-original": "DOMString" + }, + "preferredId": { + "specs": "ortc", + "name": "preferredId", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "uri": { + "specs": "ortc", + "name": "uri", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "ortc", + "name": "RTCRtpHeaderExtension", + "extends": "Object" + }, + "IDBObjectStoreParameters": { + "members": { + "member": { + "keyPath": { + "nullable": 1, + "specs": "indexeddb", + "name": "keyPath", + "default": "null", + "type": "DOMString", + "type-original": "IDBKeyPath?" + } + } + }, + "specs": "indexeddb", + "name": "IDBObjectStoreParameters", + "extends": "Object" + }, + "TransitionEventInit": { + "members": { + "member": { + "propertyName": { + "specs": "css-transition", + "name": "propertyName", + "default": "\"\"", + "type": "DOMString", + "type-original": "DOMString" + }, + "elapsedTime": { + "specs": "css-transition", + "name": "elapsedTime", + "default": "0.0", + "type": "float", + "type-original": "float" + } + } + }, + "specs": "css-transition", + "name": "TransitionEventInit", + "extends": "EventInit" + }, + "RTCRtcpFeedback": { + "members": { + "member": { + "parameter": { + "specs": "ortc", + "name": "parameter", + "type": "DOMString", + "type-original": "DOMString" + }, + "type": { + "specs": "ortc", + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "ortc", + "name": "RTCRtcpFeedback", + "extends": "Object" + }, + "MSIceWarningFlags": { + "members": { + "member": { + "pseudoTLSFailure": { + "specs": "webrtc-stats", + "name": "pseudoTLSFailure", + "type": "boolean", + "type-original": "boolean" + }, + "udpRelayConnectivityFailed": { + "specs": "webrtc-stats", + "name": "udpRelayConnectivityFailed", + "type": "boolean", + "type-original": "boolean" + }, + "turnUdpSendFailed": { + "specs": "webrtc-stats", + "name": "turnUdpSendFailed", + "type": "boolean", + "type-original": "boolean" + }, + "turnTurnTcpConnectivityFailed": { + "specs": "webrtc-stats", + "name": "turnTurnTcpConnectivityFailed", + "type": "boolean", + "type-original": "boolean" + }, + "connCheckOtherError": { + "specs": "webrtc-stats", + "name": "connCheckOtherError", + "type": "boolean", + "type-original": "boolean" + }, + "udpLocalConnectivityFailed": { + "specs": "webrtc-stats", + "name": "udpLocalConnectivityFailed", + "type": "boolean", + "type-original": "boolean" + }, + "tcpRelayConnectivityFailed": { + "specs": "webrtc-stats", + "name": "tcpRelayConnectivityFailed", + "type": "boolean", + "type-original": "boolean" + }, + "turnTcpTimedOut": { + "specs": "webrtc-stats", + "name": "turnTcpTimedOut", + "type": "boolean", + "type-original": "boolean" + }, + "udpNatConnectivityFailed": { + "specs": "webrtc-stats", + "name": "udpNatConnectivityFailed", + "type": "boolean", + "type-original": "boolean" + }, + "multipleRelayServersAttempted": { + "specs": "webrtc-stats", + "name": "multipleRelayServersAttempted", + "type": "boolean", + "type-original": "boolean" + }, + "useCandidateChecksFailed": { + "specs": "webrtc-stats", + "name": "useCandidateChecksFailed", + "type": "boolean", + "type-original": "boolean" + }, + "turnAuthUnknownUsernameError": { + "specs": "webrtc-stats", + "name": "turnAuthUnknownUsernameError", + "type": "boolean", + "type-original": "boolean" + }, + "allocationMessageIntegrityFailed": { + "specs": "webrtc-stats", + "name": "allocationMessageIntegrityFailed", + "type": "boolean", + "type-original": "boolean" + }, + "turnTcpAllocateFailed": { + "specs": "webrtc-stats", + "name": "turnTcpAllocateFailed", + "type": "boolean", + "type-original": "boolean" + }, + "fipsAllocationFailure": { + "specs": "webrtc-stats", + "name": "fipsAllocationFailure", + "type": "boolean", + "type-original": "boolean" + }, + "portRangeExhausted": { + "specs": "webrtc-stats", + "name": "portRangeExhausted", + "type": "boolean", + "type-original": "boolean" + }, + "turnTcpSendFailed": { + "specs": "webrtc-stats", + "name": "turnTcpSendFailed", + "type": "boolean", + "type-original": "boolean" + }, + "noRelayServersConfigured": { + "specs": "webrtc-stats", + "name": "noRelayServersConfigured", + "type": "boolean", + "type-original": "boolean" + }, + "alternateServerReceived": { + "specs": "webrtc-stats", + "name": "alternateServerReceived", + "type": "boolean", + "type-original": "boolean" + }, + "tcpNatConnectivityFailed": { + "specs": "webrtc-stats", + "name": "tcpNatConnectivityFailed", + "type": "boolean", + "type-original": "boolean" + }, + "turnUdpAllocateFailed": { + "specs": "webrtc-stats", + "name": "turnUdpAllocateFailed", + "type": "boolean", + "type-original": "boolean" + }, + "connCheckMessageIntegrityFailed": { + "specs": "webrtc-stats", + "name": "connCheckMessageIntegrityFailed", + "type": "boolean", + "type-original": "boolean" + } + } + }, + "specs": "webrtc-stats", + "name": "MSIceWarningFlags", + "extends": "Object" + }, + "RsaOaepParams": { + "members": { + "member": { + "label": { + "specs": "webcryptoapi", + "name": "label", + "type": [ + { + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ] + }, + { + "nullable": 1, + "type": "ArrayBuffer" + } + ], + "type-original": "BufferSource" + } + } + }, + "specs": "webcryptoapi", + "name": "RsaOaepParams", + "extends": "Algorithm" + }, + "EventModifierInit": { + "members": { + "member": { + "modifierOS": { + "specs": "uievents", + "name": "modifierOS", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "modifierHyper": { + "specs": "uievents", + "name": "modifierHyper", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "modifierFnLock": { + "specs": "uievents", + "name": "modifierFnLock", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "shiftKey": { + "specs": "uievents", + "name": "shiftKey", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "modifierSuper": { + "specs": "uievents", + "name": "modifierSuper", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "modifierNumLock": { + "specs": "uievents", + "name": "modifierNumLock", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "modifierFn": { + "specs": "uievents", + "name": "modifierFn", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "modifierScrollLock": { + "specs": "uievents", + "name": "modifierScrollLock", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "modifierAltGraph": { + "specs": "uievents", + "name": "modifierAltGraph", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "modifierCapsLock": { + "specs": "uievents", + "name": "modifierCapsLock", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "modifierSymbolLock": { + "specs": "uievents", + "name": "modifierSymbolLock", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "modifierSymbol": { + "specs": "uievents", + "name": "modifierSymbol", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "altKey": { + "specs": "uievents", + "name": "altKey", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "metaKey": { + "specs": "uievents", + "name": "metaKey", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "ctrlKey": { + "specs": "uievents", + "name": "ctrlKey", + "default": "false", + "type": "boolean", + "type-original": "boolean" + } + } + }, + "specs": "uievents", + "name": "EventModifierInit", + "extends": "UIEventInit" + }, + "BiquadFilterOptions": { + "members": { + "member": { + "frequency": { + "specs": "webaudio", + "name": "frequency", + "default": "350", + "type": "float", + "type-original": "float" + }, + "Q": { + "specs": "webaudio", + "name": "Q", + "default": "1", + "type": "float", + "type-original": "float" + }, + "detune": { + "specs": "webaudio", + "name": "detune", + "default": "0", + "type": "float", + "type-original": "float" + }, + "gain": { + "specs": "webaudio", + "name": "gain", + "default": "0", + "type": "float", + "type-original": "float" + }, + "type": { + "specs": "webaudio", + "name": "type", + "default": "\"lowpass\"", + "type": "BiquadFilterType", + "type-original": "BiquadFilterType" + } + } + }, + "specs": "webaudio", + "name": "BiquadFilterOptions", + "extends": "AudioNodeOptions" + }, + "MsZoomToOptions": { + "members": { + "member": { + "viewportY": { + "nullable": 1, + "specs": "none", + "name": "viewportY", + "type": "DOMString", + "type-original": "DOMString?" + }, + "contentX": { + "specs": "none", + "name": "contentX", + "type": "long", + "type-original": "long" + }, + "animate": { + "specs": "none", + "name": "animate", + "type": "DOMString", + "type-original": "DOMString" + }, + "scaleFactor": { + "specs": "none", + "name": "scaleFactor", + "type": "float", + "type-original": "float" + }, + "viewportX": { + "nullable": 1, + "specs": "none", + "name": "viewportX", + "type": "DOMString", + "type-original": "DOMString?" + }, + "contentY": { + "specs": "none", + "name": "contentY", + "type": "long", + "type-original": "long" + } + } + }, + "specs": "none", + "name": "MsZoomToOptions", + "extends": "Object" + }, + "MSVideoPayload": { + "members": { + "member": { + "videoPacketLossRate": { + "specs": "webrtc-stats", + "name": "videoPacketLossRate", + "type": "float", + "type-original": "float" + }, + "videoBitRateAvg": { + "specs": "webrtc-stats", + "name": "videoBitRateAvg", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "resolution": { + "specs": "webrtc-stats", + "name": "resolution", + "type": "DOMString", + "type-original": "DOMString" + }, + "videoBitRateMax": { + "specs": "webrtc-stats", + "name": "videoBitRateMax", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "videoFrameRateAvg": { + "specs": "webrtc-stats", + "name": "videoFrameRateAvg", + "type": "float", + "type-original": "float" + }, + "durationSeconds": { + "specs": "webrtc-stats", + "name": "durationSeconds", + "type": "float", + "type-original": "float" + } + } + }, + "specs": "webrtc-stats", + "name": "MSVideoPayload", + "extends": "MSPayloadBase" + }, + "FocusNavigationOrigin": { + "members": { + "member": { + "originHeight": { + "specs": "none", + "name": "originHeight", + "type": "float", + "type-original": "float" + }, + "originTop": { + "specs": "none", + "name": "originTop", + "type": "float", + "type-original": "float" + }, + "originLeft": { + "specs": "none", + "name": "originLeft", + "type": "float", + "type-original": "float" + }, + "originWidth": { + "specs": "none", + "name": "originWidth", + "type": "float", + "type-original": "float" + } + } + }, + "specs": "none", + "name": "FocusNavigationOrigin", + "extends": "Object" + }, + "MediaStreamTrackEventInit": { + "members": { + "member": { + "track": { + "nullable": 1, + "specs": "media-capture-api", + "name": "track", + "default": "null", + "type": "MediaStreamTrack", + "type-original": "MediaStreamTrack?" + } + } + }, + "specs": "media-capture-api", + "name": "MediaStreamTrackEventInit", + "extends": "EventInit" + }, + "WebGLContextEventInit": { + "members": { + "member": { + "statusMessage": { + "specs": "webgl", + "name": "statusMessage", + "default": "\"\"", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "webgl", + "name": "WebGLContextEventInit", + "extends": "EventInit" + }, + "RTCRtcpParameters": { + "members": { + "member": { + "ssrc": { + "specs": "ortc", + "name": "ssrc", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "mux": { + "specs": "ortc", + "name": "mux", + "default": "true", + "type": "boolean", + "type-original": "boolean" + }, + "reducedSize": { + "specs": "ortc", + "name": "reducedSize", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "cname": { + "specs": "ortc", + "name": "cname", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "ortc", + "name": "RTCRtcpParameters", + "extends": "Object" + }, + "DynamicsCompressorOptions": { + "members": { + "member": { + "ratio": { + "specs": "webaudio", + "name": "ratio", + "default": "12", + "type": "float", + "type-original": "float" + }, + "threshold": { + "specs": "webaudio", + "name": "threshold", + "default": "-24", + "type": "float", + "type-original": "float" + }, + "attack": { + "specs": "webaudio", + "name": "attack", + "default": "0.003", + "type": "float", + "type-original": "float" + }, + "release": { + "specs": "webaudio", + "name": "release", + "default": "0.25", + "type": "float", + "type-original": "float" + }, + "knee": { + "specs": "webaudio", + "name": "knee", + "default": "30", + "type": "float", + "type-original": "float" + } + } + }, + "specs": "webaudio", + "name": "DynamicsCompressorOptions", + "extends": "AudioNodeOptions" + }, + "RequestInit": { + "members": { + "member": { + "headers": { + "specs": "whatwg-fetch", + "name": "headers", + "type": [ + { + "type": "Headers" + }, + { + "subtype": { + "subtype": { + "type": "ByteString" + }, + "type": "sequence" + }, + "type": "sequence" + } + ], + "type-original": "HeadersInit" + }, + "window": { + "specs": "whatwg-fetch", + "name": "window", + "type": "any", + "type-original": "any" + }, + "mode": { + "specs": "whatwg-fetch", + "name": "mode", + "type": "RequestMode", + "type-original": "RequestMode" + }, + "referrer": { + "specs": "whatwg-fetch", + "name": "referrer", + "type": "USVString", + "type-original": "USVString" + }, + "credentials": { + "specs": "whatwg-fetch", + "name": "credentials", + "type": "RequestCredentials", + "type-original": "RequestCredentials" + }, + "body": { + "specs": "whatwg-fetch", + "name": "body", + "type": [ + { + "nullable": 1, + "type": "Blob" + }, + { + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + }, + { + "nullable": 1, + "type": "ArrayBuffer" + } + ] + }, + { + "nullable": 1, + "type": "FormData" + }, + { + "nullable": 1, + "type": "USVString" + } + ], + "type-original": "BodyInit?" + }, + "signal": { + "specs": "whatwg-fetch", + "name": "signal", + "type": "AbortSignal", + "type-original": "AbortSignal" + }, + "redirect": { + "specs": "whatwg-fetch", + "name": "redirect", + "type": "RequestRedirect", + "type-original": "RequestRedirect" + }, + "referrerPolicy": { + "specs": "whatwg-fetch", + "name": "referrerPolicy", + "type": "ReferrerPolicy", + "type-original": "ReferrerPolicy" + }, + "keepalive": { + "specs": "whatwg-fetch", + "name": "keepalive", + "type": "boolean", + "type-original": "boolean" + }, + "method": { + "specs": "whatwg-fetch", + "name": "method", + "type": "ByteString", + "type-original": "ByteString" + }, + "integrity": { + "specs": "whatwg-fetch", + "name": "integrity", + "type": "DOMString", + "type-original": "DOMString" + }, + "cache": { + "specs": "whatwg-fetch", + "name": "cache", + "type": "RequestCache", + "type-original": "RequestCache" + } + } + }, + "specs": "whatwg-fetch", + "name": "RequestInit", + "extends": "Object" + }, + "RTCTransportStats": { + "members": { + "member": { + "remoteCertificateId": { + "specs": "ortc", + "name": "remoteCertificateId", + "type": "DOMString", + "type-original": "DOMString" + }, + "selectedCandidatePairId": { + "specs": "ortc", + "name": "selectedCandidatePairId", + "type": "DOMString", + "type-original": "DOMString" + }, + "rtcpTransportStatsId": { + "specs": "ortc", + "name": "rtcpTransportStatsId", + "type": "DOMString", + "type-original": "DOMString" + }, + "activeConnection": { + "specs": "ortc", + "name": "activeConnection", + "type": "boolean", + "type-original": "boolean" + }, + "bytesSent": { + "specs": "ortc", + "name": "bytesSent", + "type": "unsigned long long", + "type-original": "unsigned long long" + }, + "localCertificateId": { + "specs": "ortc", + "name": "localCertificateId", + "type": "DOMString", + "type-original": "DOMString" + }, + "bytesReceived": { + "specs": "ortc", + "name": "bytesReceived", + "type": "unsigned long long", + "type-original": "unsigned long long" + } + } + }, + "specs": "ortc", + "name": "RTCTransportStats", + "extends": "RTCStats" + }, + "Pbkdf2Params": { + "members": { + "member": { + "hash": { + "required": 1, + "specs": "webcryptoapi", + "name": "hash", + "type": [ + { + "type": "DOMString" + }, + { + "type": "Algorithm" + } + ], + "type-original": "HashAlgorithmIdentifier" + }, + "salt": { + "required": 1, + "specs": "webcryptoapi", + "name": "salt", + "type": [ + { + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ] + }, + { + "nullable": 1, + "type": "ArrayBuffer" + } + ], + "type-original": "BufferSource" + }, + "iterations": { + "required": 1, + "specs": "webcryptoapi", + "name": "iterations", + "type": "unsigned long", + "enforce-range": 1, + "type-original": "unsigned long" + } + } + }, + "specs": "webcryptoapi", + "name": "Pbkdf2Params", + "extends": "Algorithm" + }, + "RTCInboundRTPStreamStats": { + "members": { + "member": { + "packetsLost": { + "specs": "ortc", + "name": "packetsLost", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "packetsReceived": { + "specs": "ortc", + "name": "packetsReceived", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "fractionLost": { + "specs": "ortc", + "name": "fractionLost", + "type": "double", + "type-original": "double" + }, + "jitter": { + "specs": "ortc", + "name": "jitter", + "type": "double", + "type-original": "double" + }, + "bytesReceived": { + "specs": "ortc", + "name": "bytesReceived", + "type": "unsigned long long", + "type-original": "unsigned long long" + } + } + }, + "specs": "ortc", + "name": "RTCInboundRTPStreamStats", + "extends": "RTCRTPStreamStats" + }, + "PointerEventInit": { + "members": { + "member": { + "width": { + "specs": "pointer-events", + "name": "width", + "default": "0", + "type": "long", + "type-original": "long" + }, + "pressure": { + "specs": "pointer-events", + "name": "pressure", + "default": "0", + "type": "float", + "type-original": "float" + }, + "isPrimary": { + "specs": "pointer-events", + "name": "isPrimary", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "pointerType": { + "specs": "pointer-events", + "name": "pointerType", + "default": "\"\"", + "type": "DOMString", + "type-original": "DOMString" + }, + "tiltY": { + "specs": "pointer-events", + "name": "tiltY", + "default": "0", + "type": "long", + "type-original": "long" + }, + "height": { + "specs": "pointer-events", + "name": "height", + "default": "0", + "type": "long", + "type-original": "long" + }, + "tiltX": { + "specs": "pointer-events", + "name": "tiltX", + "default": "0", + "type": "long", + "type-original": "long" + }, + "pointerId": { + "specs": "pointer-events", + "name": "pointerId", + "default": "0", + "type": "long", + "type-original": "long" + } + } + }, + "specs": "pointer-events", + "name": "PointerEventInit", + "extends": "MouseEventInit" + }, + "MutationObserverInit": { + "members": { + "member": { + "characterDataOldValue": { + "specs": "dom4", + "name": "characterDataOldValue", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "characterData": { + "specs": "dom4", + "name": "characterData", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "attributeOldValue": { + "specs": "dom4", + "name": "attributeOldValue", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "subtree": { + "specs": "dom4", + "name": "subtree", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "childList": { + "specs": "dom4", + "name": "childList", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "attributes": { + "specs": "dom4", + "name": "attributes", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "attributeFilter": { + "subtype": { + "type": "DOMString" + }, + "specs": "dom4", + "name": "attributeFilter", + "type": "sequence", + "type-original": "sequence" + } + } + }, + "specs": "dom4", + "name": "MutationObserverInit", + "extends": "Object" + }, + "ConstrainLongRange": { + "members": { + "member": { + "exact": { + "specs": "media-capture-api", + "name": "exact", + "type": "long", + "type-original": "long" + }, + "ideal": { + "specs": "media-capture-api", + "name": "ideal", + "type": "long", + "type-original": "long" + } + } + }, + "specs": "media-capture-api", + "name": "ConstrainLongRange", + "extends": "LongRange" + }, + "RTCRtpParameters": { + "members": { + "member": { + "rtcp": { + "specs": "ortc", + "name": "rtcp", + "type": "RTCRtcpParameters", + "type-original": "RTCRtcpParameters" + }, + "encodings": { + "subtype": { + "type": "RTCRtpEncodingParameters" + }, + "specs": "ortc", + "name": "encodings", + "type": "sequence", + "type-original": "sequence" + }, + "codecs": { + "subtype": { + "type": "RTCRtpCodecParameters" + }, + "specs": "ortc", + "name": "codecs", + "type": "sequence", + "type-original": "sequence" + }, + "headerExtensions": { + "subtype": { + "type": "RTCRtpHeaderExtensionParameters" + }, + "specs": "ortc", + "name": "headerExtensions", + "type": "sequence", + "type-original": "sequence" + }, + "muxId": { + "specs": "ortc", + "name": "muxId", + "default": "\"\"", + "type": "DOMString", + "type-original": "DOMString" + }, + "degradationPreference": { + "specs": "ortc", + "name": "degradationPreference", + "default": "\"balanced\"", + "type": "RTCDegradationPreference", + "type-original": "RTCDegradationPreference" + } + } + }, + "specs": "ortc", + "name": "RTCRtpParameters", + "extends": "Object" + }, + "MSAudioSendSignal": { + "members": { + "member": { + "sendSignalLevelCh1": { + "specs": "webrtc-stats", + "name": "sendSignalLevelCh1", + "type": "long", + "type-original": "long" + }, + "noiseLevel": { + "specs": "webrtc-stats", + "name": "noiseLevel", + "type": "long", + "type-original": "long" + }, + "sendNoiseLevelCh1": { + "specs": "webrtc-stats", + "name": "sendNoiseLevelCh1", + "type": "long", + "type-original": "long" + } + } + }, + "specs": "webrtc-stats", + "name": "MSAudioSendSignal", + "extends": "Object" + }, + "RTCRtpCapabilities": { + "members": { + "member": { + "codecs": { + "subtype": { + "type": "RTCRtpCodecCapability" + }, + "specs": "ortc", + "name": "codecs", + "type": "sequence", + "type-original": "sequence" + }, + "headerExtensions": { + "subtype": { + "type": "RTCRtpHeaderExtension" + }, + "specs": "ortc", + "name": "headerExtensions", + "type": "sequence", + "type-original": "sequence" + }, + "fecMechanisms": { + "subtype": { + "type": "DOMString" + }, + "specs": "ortc", + "name": "fecMechanisms", + "type": "sequence", + "type-original": "sequence" + } + } + }, + "specs": "ortc", + "name": "RTCRtpCapabilities", + "extends": "Object" + }, + "RsaHashedKeyGenParams": { + "members": { + "member": { + "hash": { + "required": 1, + "specs": "webcryptoapi", + "name": "hash", + "type": [ + { + "type": "DOMString" + }, + { + "type": "Algorithm" + } + ], + "type-original": "HashAlgorithmIdentifier" + } + } + }, + "specs": "webcryptoapi", + "name": "RsaHashedKeyGenParams", + "extends": "RsaKeyGenParams" + }, + "MSAudioLocalClientEvent": { + "members": { + "member": { + "deviceHowlingEventCount": { + "specs": "webrtc-stats", + "name": "deviceHowlingEventCount", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "deviceMultipleEndpointsEventCount": { + "specs": "webrtc-stats", + "name": "deviceMultipleEndpointsEventCount", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "deviceClippingEventRatio": { + "specs": "webrtc-stats", + "name": "deviceClippingEventRatio", + "type": "float", + "type-original": "float" + }, + "deviceHalfDuplexAECEventRatio": { + "specs": "webrtc-stats", + "name": "deviceHalfDuplexAECEventRatio", + "type": "float", + "type-original": "float" + }, + "cpuInsufficientEventRatio": { + "specs": "webrtc-stats", + "name": "cpuInsufficientEventRatio", + "type": "float", + "type-original": "float" + }, + "deviceGlitchesEventRatio": { + "specs": "webrtc-stats", + "name": "deviceGlitchesEventRatio", + "type": "float", + "type-original": "float" + }, + "deviceNearEndToEchoRatioEventRatio": { + "specs": "webrtc-stats", + "name": "deviceNearEndToEchoRatioEventRatio", + "type": "float", + "type-original": "float" + }, + "deviceRenderMuteEventRatio": { + "specs": "webrtc-stats", + "name": "deviceRenderMuteEventRatio", + "type": "float", + "type-original": "float" + }, + "deviceRenderNotFunctioningEventRatio": { + "specs": "webrtc-stats", + "name": "deviceRenderNotFunctioningEventRatio", + "type": "float", + "type-original": "float" + }, + "deviceRenderZeroVolumeEventRatio": { + "specs": "webrtc-stats", + "name": "deviceRenderZeroVolumeEventRatio", + "type": "float", + "type-original": "float" + }, + "deviceEchoEventRatio": { + "specs": "webrtc-stats", + "name": "deviceEchoEventRatio", + "type": "float", + "type-original": "float" + }, + "networkSendQualityEventRatio": { + "specs": "webrtc-stats", + "name": "networkSendQualityEventRatio", + "type": "float", + "type-original": "float" + }, + "deviceLowSpeechLevelEventRatio": { + "specs": "webrtc-stats", + "name": "deviceLowSpeechLevelEventRatio", + "type": "float", + "type-original": "float" + }, + "networkDelayEventRatio": { + "specs": "webrtc-stats", + "name": "networkDelayEventRatio", + "type": "float", + "type-original": "float" + }, + "deviceCaptureNotFunctioningEventRatio": { + "specs": "webrtc-stats", + "name": "deviceCaptureNotFunctioningEventRatio", + "type": "float", + "type-original": "float" + }, + "deviceLowSNREventRatio": { + "specs": "webrtc-stats", + "name": "deviceLowSNREventRatio", + "type": "float", + "type-original": "float" + } + } + }, + "specs": "webrtc-stats", + "name": "MSAudioLocalClientEvent", + "extends": "MSLocalClientEventBase" + }, + "AesCtrParams": { + "members": { + "member": { + "length": { + "required": 1, + "specs": "webcryptoapi", + "name": "length", + "type": "octet", + "enforce-range": 1, + "type-original": "octet" + }, + "counter": { + "required": 1, + "specs": "webcryptoapi", + "name": "counter", + "type": [ + { + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ] + }, + { + "nullable": 1, + "type": "ArrayBuffer" + } + ], + "type-original": "BufferSource" + } + } + }, + "specs": "webcryptoapi", + "name": "AesCtrParams", + "extends": "Algorithm" + }, + "RTCOfferOptions": { + "members": { + "member": { + "voiceActivityDetection": { + "specs": "webrtc", + "name": "voiceActivityDetection", + "default": "true", + "type": "boolean", + "type-original": "boolean" + }, + "offerToReceiveAudio": { + "specs": "webrtc", + "name": "offerToReceiveAudio", + "type": "long", + "type-original": "long" + }, + "offerToReceiveVideo": { + "specs": "webrtc", + "name": "offerToReceiveVideo", + "type": "long", + "type-original": "long" + }, + "iceRestart": { + "specs": "webrtc", + "name": "iceRestart", + "default": "false", + "type": "boolean", + "type-original": "boolean" + } + } + }, + "specs": "webrtc", + "name": "RTCOfferOptions", + "extends": "Object" + }, + "RTCIceParameters": { + "members": { + "member": { + "password": { + "specs": "ortc", + "name": "password", + "type": "DOMString", + "type-original": "DOMString" + }, + "usernameFragment": { + "specs": "ortc", + "name": "usernameFragment", + "type": "DOMString", + "type-original": "DOMString" + }, + "iceLite": { + "nullable": 1, + "specs": "ortc", + "name": "iceLite", + "type": "boolean", + "type-original": "boolean?" + } + } + }, + "specs": "ortc", + "name": "RTCIceParameters", + "extends": "Object" + }, + "RsaHashedImportParams": { + "members": { + "member": { + "hash": { + "required": 1, + "specs": "webcryptoapi", + "name": "hash", + "type": [ + { + "type": "DOMString" + }, + { + "type": "Algorithm" + } + ], + "type-original": "HashAlgorithmIdentifier" + } + } + }, + "specs": "webcryptoapi", + "name": "RsaHashedImportParams", + "extends": "Algorithm" + }, + "ByteLengthChunk": { + "members": { + "member": { + "byteLength": { + "specs": "whatwg-streams", + "name": "byteLength", + "type": "unsigned long", + "type-original": "unsigned long" + } + } + }, + "specs": "whatwg-streams", + "name": "ByteLengthChunk", + "extends": "Object" + }, + "ConstrainBooleanParameters": { + "members": { + "member": { + "exact": { + "specs": "media-capture-api", + "name": "exact", + "type": "boolean", + "type-original": "boolean" + }, + "ideal": { + "specs": "media-capture-api", + "name": "ideal", + "type": "boolean", + "type-original": "boolean" + } + } + }, + "specs": "media-capture-api", + "name": "ConstrainBooleanParameters", + "extends": "Object" + }, + "UnderlyingSink": { + "members": { + "member": { + "close": { + "specs": "whatwg-streams", + "name": "close", + "type": "WritableStreamDefaultControllerCallback", + "type-original": "WritableStreamDefaultControllerCallback" + }, + "abort": { + "specs": "whatwg-streams", + "name": "abort", + "type": "WritableStreamErrorCallback", + "type-original": "WritableStreamErrorCallback" + }, + "write": { + "specs": "whatwg-streams", + "name": "write", + "type": "WritableStreamChunkCallback", + "type-original": "WritableStreamChunkCallback" + }, + "start": { + "required": 1, + "specs": "whatwg-streams", + "name": "start", + "type": "WritableStreamDefaultControllerCallback", + "type-original": "WritableStreamDefaultControllerCallback" + } + } + }, + "specs": "whatwg-streams", + "name": "UnderlyingSink", + "extends": "Object" + }, + "PaymentOptions": { + "members": { + "member": { + "shippingType": { + "specs": "payment-request", + "name": "shippingType", + "default": "\"shipping\"", + "type": "DOMString", + "type-original": "DOMString" + }, + "requestPayerEmail": { + "specs": "payment-request", + "name": "requestPayerEmail", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "requestShipping": { + "specs": "payment-request", + "name": "requestShipping", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "requestPayerPhone": { + "specs": "payment-request", + "name": "requestPayerPhone", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "requestPayerName": { + "specs": "payment-request", + "name": "requestPayerName", + "default": "false", + "type": "boolean", + "type-original": "boolean" + } + } + }, + "specs": "payment-request", + "name": "PaymentOptions", + "extends": "Object" + }, + "MediaKeyMessageEventInit": { + "members": { + "member": { + "messageType": { + "specs": "encrypted-media", + "name": "messageType", + "default": "\"license-request\"", + "type": "MediaKeyMessageType", + "type-original": "MediaKeyMessageType" + }, + "message": { + "nullable": 1, + "specs": "encrypted-media", + "name": "message", + "default": "null", + "type": "ArrayBuffer", + "type-original": "ArrayBuffer?" + } + } + }, + "specs": "encrypted-media", + "name": "MediaKeyMessageEventInit", + "extends": "EventInit" + }, + "MediaTrackSettings": { + "members": { + "member": { + "sampleRate": { + "specs": "media-capture-api", + "name": "sampleRate", + "type": "long", + "type-original": "long" + }, + "width": { + "specs": "media-capture-api", + "name": "width", + "type": "long", + "type-original": "long" + }, + "deviceId": { + "specs": "media-capture-api", + "name": "deviceId", + "type": "DOMString", + "type-original": "DOMString" + }, + "volume": { + "specs": "media-capture-api", + "name": "volume", + "type": "double", + "type-original": "double" + }, + "echoCancellation": { + "specs": "media-capture-api", + "name": "echoCancellation", + "type": "boolean", + "type-original": "boolean" + }, + "sampleSize": { + "specs": "media-capture-api", + "name": "sampleSize", + "type": "long", + "type-original": "long" + }, + "groupId": { + "specs": "media-capture-api", + "name": "groupId", + "type": "DOMString", + "type-original": "DOMString" + }, + "height": { + "specs": "media-capture-api", + "name": "height", + "type": "long", + "type-original": "long" + }, + "facingMode": { + "specs": "media-capture-api", + "name": "facingMode", + "type": "DOMString", + "type-original": "DOMString" + }, + "frameRate": { + "specs": "media-capture-api", + "name": "frameRate", + "type": "double", + "type-original": "double" + }, + "aspectRatio": { + "specs": "media-capture-api", + "name": "aspectRatio", + "type": "double", + "type-original": "double" + } + } + }, + "specs": "media-capture-api", + "name": "MediaTrackSettings", + "extends": "Object" + }, + "MessageEventInit": { + "members": { + "member": { + "source": { + "nullable": 1, + "specs": "html5", + "name": "source", + "default": "null", + "type": "Window", + "type-original": "Window?" + }, + "ports": { + "subtype": { + "type": "MessagePort" + }, + "specs": "html5", + "name": "ports", + "default": "null", + "type": "sequence", + "type-original": "sequence" + }, + "origin": { + "specs": "html5", + "name": "origin", + "default": "\"\"", + "type": "USVString", + "type-original": "USVString" + }, + "data": { + "specs": "html5", + "name": "data", + "default": "null", + "type": "any", + "type-original": "any" + } + } + }, + "specs": "html5", + "name": "MessageEventInit", + "extends": "EventInit" + }, + "RTCRtpEncodingParameters": { + "members": { + "member": { + "priority": { + "specs": "ortc", + "name": "priority", + "default": "1.0", + "type": "double", + "type-original": "double" + }, + "codecPayloadType": { + "specs": "ortc", + "name": "codecPayloadType", + "type": "octet", + "type-original": "payloadtype" + }, + "rtx": { + "specs": "ortc", + "name": "rtx", + "type": "RTCRtpRtxParameters", + "type-original": "RTCRtpRtxParameters" + }, + "maxBitrate": { + "specs": "ortc", + "name": "maxBitrate", + "type": "double", + "type-original": "double" + }, + "resolutionScale": { + "specs": "ortc", + "name": "resolutionScale", + "type": "double", + "type-original": "double" + }, + "encodingId": { + "specs": "ortc", + "name": "encodingId", + "type": "DOMString", + "type-original": "DOMString" + }, + "active": { + "specs": "ortc", + "name": "active", + "default": "true", + "type": "boolean", + "type-original": "boolean" + }, + "dependencyEncodingIds": { + "subtype": { + "type": "DOMString" + }, + "specs": "ortc", + "name": "dependencyEncodingIds", + "type": "sequence", + "type-original": "sequence" + }, + "maxFramerate": { + "specs": "ortc", + "name": "maxFramerate", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "ssrcRange": { + "specs": "ortc", + "name": "ssrcRange", + "type": "RTCSsrcRange", + "type-original": "RTCSsrcRange" + }, + "fec": { + "specs": "ortc", + "name": "fec", + "type": "RTCRtpFecParameters", + "type-original": "RTCRtpFecParameters" + }, + "framerateScale": { + "specs": "ortc", + "name": "framerateScale", + "type": "double", + "type-original": "double" + }, + "ssrc": { + "specs": "ortc", + "name": "ssrc", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "minQuality": { + "specs": "ortc", + "name": "minQuality", + "default": "0", + "type": "double", + "type-original": "double" + } + } + }, + "specs": "ortc", + "name": "RTCRtpEncodingParameters", + "extends": "Object" + }, + "MSVideoRecvPayload": { + "members": { + "member": { + "recvCodecType": { + "specs": "webrtc-stats", + "name": "recvCodecType", + "type": "DOMString", + "type-original": "DOMString" + }, + "recvVideoStreamsMin": { + "specs": "webrtc-stats", + "name": "recvVideoStreamsMin", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "recvVideoStreamsMax": { + "specs": "webrtc-stats", + "name": "recvVideoStreamsMax", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "recvVideoStreamsMode": { + "specs": "webrtc-stats", + "name": "recvVideoStreamsMode", + "type": "long", + "type-original": "long" + }, + "recvResolutionHeight": { + "specs": "webrtc-stats", + "name": "recvResolutionHeight", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "videoResolutions": { + "specs": "webrtc-stats", + "name": "videoResolutions", + "type": "MSVideoResolutionDistribution", + "type-original": "MSVideoResolutionDistribution" + }, + "reorderBufferTotalPackets": { + "specs": "webrtc-stats", + "name": "reorderBufferTotalPackets", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "recvBitRateAverage": { + "specs": "webrtc-stats", + "name": "recvBitRateAverage", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "recvNumResSwitches": { + "specs": "webrtc-stats", + "name": "recvNumResSwitches", + "type": "float", + "type-original": "float" + }, + "recvReorderBufferReorderedPackets": { + "specs": "webrtc-stats", + "name": "recvReorderBufferReorderedPackets", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "videoPostFECPLR": { + "specs": "webrtc-stats", + "name": "videoPostFECPLR", + "type": "float", + "type-original": "float" + }, + "recvFpsHarmonicAverage": { + "specs": "webrtc-stats", + "name": "recvFpsHarmonicAverage", + "type": "float", + "type-original": "float" + }, + "recvReorderBufferMaxSuccessfullyOrderedLateTime": { + "specs": "webrtc-stats", + "name": "recvReorderBufferMaxSuccessfullyOrderedLateTime", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "videoFrameLossRate": { + "specs": "webrtc-stats", + "name": "videoFrameLossRate", + "type": "float", + "type-original": "float" + }, + "lowFrameRateCallPercent": { + "specs": "webrtc-stats", + "name": "lowFrameRateCallPercent", + "type": "float", + "type-original": "float" + }, + "recvReorderBufferPacketsDroppedDueToBufferExhaustion": { + "specs": "webrtc-stats", + "name": "recvReorderBufferPacketsDroppedDueToBufferExhaustion", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "recvReorderBufferMaxSuccessfullyOrderedExtent": { + "specs": "webrtc-stats", + "name": "recvReorderBufferMaxSuccessfullyOrderedExtent", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "recvBitRateMaximum": { + "specs": "webrtc-stats", + "name": "recvBitRateMaximum", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "lowBitRateCallPercent": { + "specs": "webrtc-stats", + "name": "lowBitRateCallPercent", + "type": "float", + "type-original": "float" + }, + "recvReorderBufferPacketsDroppedDueToTimeout": { + "specs": "webrtc-stats", + "name": "recvReorderBufferPacketsDroppedDueToTimeout", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "recvResolutionWidth": { + "specs": "webrtc-stats", + "name": "recvResolutionWidth", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "recvFrameRateAverage": { + "specs": "webrtc-stats", + "name": "recvFrameRateAverage", + "type": "float", + "type-original": "float" + } + } + }, + "specs": "webrtc-stats", + "name": "MSVideoRecvPayload", + "extends": "MSVideoPayload" + }, + "WebAuthnExtensions": { + "members": { + "member": {} + }, + "specs": "WD-webauthn-20161207", + "name": "WebAuthnExtensions", + "extends": "Object" + }, + "StereoPannerOptions": { + "members": { + "member": { + "pan": { + "specs": "webaudio", + "name": "pan", + "default": "0", + "type": "float", + "type-original": "float" + } + } + }, + "specs": "webaudio", + "name": "StereoPannerOptions", + "extends": "AudioNodeOptions" + }, + "MediaStreamConstraints": { + "members": { + "member": { + "audio": { + "specs": "media-capture-api", + "name": "audio", + "default": "false", + "type": [ + { + "type": "boolean" + }, + { + "type": "MediaTrackConstraints" + } + ], + "type-original": "(boolean or MediaTrackConstraints)" + }, + "video": { + "specs": "media-capture-api", + "name": "video", + "default": "false", + "type": [ + { + "type": "boolean" + }, + { + "type": "MediaTrackConstraints" + } + ], + "type-original": "(boolean or MediaTrackConstraints)" + } + } + }, + "specs": "media-capture-api", + "name": "MediaStreamConstraints", + "extends": "Object" + }, + "EcKeyImportParams": { + "members": { + "member": { + "namedCurve": { + "required": 1, + "specs": "webcryptoapi", + "name": "namedCurve", + "type": "DOMString", + "type-original": "NamedCurve" + } + } + }, + "specs": "webcryptoapi", + "name": "EcKeyImportParams", + "extends": "Algorithm" + }, + "GainOptions": { + "members": { + "member": { + "gain": { + "specs": "webaudio", + "name": "gain", + "default": "1.0", + "type": "float", + "type-original": "float" + } + } + }, + "specs": "webaudio", + "name": "GainOptions", + "extends": "AudioNodeOptions" + }, + "LongRange": { + "members": { + "member": { + "min": { + "specs": "media-capture-api", + "name": "min", + "type": "long", + "type-original": "long" + }, + "max": { + "specs": "media-capture-api", + "name": "max", + "type": "long", + "type-original": "long" + } + } + }, + "specs": "media-capture-api", + "name": "LongRange", + "extends": "Object" + }, + "SecurityPolicyViolationEventInit": { + "members": { + "member": { + "sourceFile": { + "specs": "csp", + "name": "sourceFile", + "default": "\"\"", + "type": "DOMString", + "type-original": "DOMString" + }, + "violatedDirective": { + "specs": "csp", + "name": "violatedDirective", + "default": "\"\"", + "type": "DOMString", + "type-original": "DOMString" + }, + "lineNumber": { + "specs": "csp", + "name": "lineNumber", + "default": "0", + "type": "long", + "type-original": "long" + }, + "referrer": { + "specs": "csp", + "name": "referrer", + "default": "\"\"", + "type": "DOMString", + "type-original": "DOMString" + }, + "columnNumber": { + "specs": "csp", + "name": "columnNumber", + "default": "0", + "type": "long", + "type-original": "long" + }, + "statusCode": { + "specs": "csp", + "name": "statusCode", + "default": "0", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "originalPolicy": { + "specs": "csp", + "name": "originalPolicy", + "default": "\"\"", + "type": "DOMString", + "type-original": "DOMString" + }, + "effectiveDirective": { + "specs": "csp", + "name": "effectiveDirective", + "default": "\"\"", + "type": "DOMString", + "type-original": "DOMString" + }, + "blockedURI": { + "specs": "csp", + "name": "blockedURI", + "default": "\"\"", + "type": "DOMString", + "type-original": "DOMString" + }, + "documentURI": { + "specs": "csp", + "name": "documentURI", + "default": "\"\"", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "csp", + "name": "SecurityPolicyViolationEventInit", + "extends": "EventInit" + }, + "RsaOtherPrimesInfo": { + "members": { + "member": { + "r": { + "specs": "webcryptoapi", + "name": "r", + "type": "DOMString", + "type-original": "DOMString" + }, + "d": { + "specs": "webcryptoapi", + "name": "d", + "type": "DOMString", + "type-original": "DOMString" + }, + "t": { + "specs": "webcryptoapi", + "name": "t", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "webcryptoapi", + "name": "RsaOtherPrimesInfo", + "extends": "Object" + }, + "MSLocalClientEventBase": { + "members": { + "member": { + "networkBandwidthLowEventRatio": { + "specs": "webrtc-stats", + "name": "networkBandwidthLowEventRatio", + "type": "float", + "type-original": "float" + }, + "networkReceiveQualityEventRatio": { + "specs": "webrtc-stats", + "name": "networkReceiveQualityEventRatio", + "type": "float", + "type-original": "float" + } + } + }, + "specs": "webrtc-stats", + "name": "MSLocalClientEventBase", + "extends": "RTCStats" + }, + "PaymentRequestUpdateEventInit": { + "members": { + "member": {} + }, + "specs": "payment-request", + "name": "PaymentRequestUpdateEventInit", + "extends": "EventInit" + }, + "MSNetwork": { + "members": { + "member": { + "utilization": { + "specs": "webrtc-stats", + "name": "utilization", + "type": "MSUtilization", + "type-original": "MSUtilization" + }, + "packetLoss": { + "specs": "webrtc-stats", + "name": "packetLoss", + "type": "MSPacketLoss", + "type-original": "MSPacketLoss" + }, + "delay": { + "specs": "webrtc-stats", + "name": "delay", + "type": "MSDelay", + "type-original": "MSDelay" + }, + "jitter": { + "specs": "webrtc-stats", + "name": "jitter", + "type": "MSJitter", + "type-original": "MSJitter" + } + } + }, + "specs": "webrtc-stats", + "name": "MSNetwork", + "extends": "RTCStats" + }, + "MSAudioRecvSignal": { + "members": { + "member": { + "renderLoopbackSignalLevel": { + "specs": "webrtc-stats", + "name": "renderLoopbackSignalLevel", + "type": "float", + "type-original": "float" + }, + "recvSignalLevelCh1": { + "specs": "webrtc-stats", + "name": "recvSignalLevelCh1", + "type": "long", + "type-original": "long" + }, + "renderNoiseLevel": { + "specs": "webrtc-stats", + "name": "renderNoiseLevel", + "type": "float", + "type-original": "float" + }, + "renderSignalLevel": { + "specs": "webrtc-stats", + "name": "renderSignalLevel", + "type": "float", + "type-original": "float" + }, + "initialSignalLevelRMS": { + "specs": "webrtc-stats", + "name": "initialSignalLevelRMS", + "type": "float", + "type-original": "float" + }, + "recvNoiseLevelCh1": { + "specs": "webrtc-stats", + "name": "recvNoiseLevelCh1", + "type": "long", + "type-original": "long" + } + } + }, + "specs": "webrtc-stats", + "name": "MSAudioRecvSignal", + "extends": "Object" + }, + "MSFIDOCredentialParameters": { + "members": { + "member": { + "algorithm": { + "specs": "webauthn", + "name": "algorithm", + "type": [ + { + "type": "DOMString" + }, + { + "type": "Algorithm" + } + ], + "type-original": "AlgorithmIdentifier" + }, + "authenticators": { + "subtype": { + "type": "DOMString" + }, + "specs": "webauthn", + "name": "authenticators", + "type": "sequence", + "type-original": "sequence" + } + } + }, + "specs": "webauthn", + "name": "MSFIDOCredentialParameters", + "extends": "MSCredentialParameters" + }, + "PopStateEventInit": { + "members": { + "member": { + "state": { + "specs": "html5", + "name": "state", + "default": "null", + "type": "any", + "type-original": "any" + } + } + }, + "specs": "html5", + "name": "PopStateEventInit", + "extends": "EventInit" + }, + "HashChangeEventInit": { + "members": { + "member": { + "newURL": { + "specs": "html5", + "name": "newURL", + "default": "\"\"", + "type": "USVString", + "type-original": "USVString" + }, + "oldURL": { + "specs": "html5", + "name": "oldURL", + "default": "\"\"", + "type": "USVString", + "type-original": "USVString" + } + } + }, + "specs": "html5", + "name": "HashChangeEventInit", + "extends": "EventInit" + }, + "DeviceOrientationEventInit": { + "members": { + "member": { + "gamma": { + "nullable": 1, + "specs": "orientation-event", + "name": "gamma", + "default": "null", + "type": "double", + "type-original": "double?" + }, + "absolute": { + "specs": "orientation-event", + "name": "absolute", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "alpha": { + "nullable": 1, + "specs": "orientation-event", + "name": "alpha", + "default": "null", + "type": "double", + "type-original": "double?" + }, + "beta": { + "nullable": 1, + "specs": "orientation-event", + "name": "beta", + "default": "null", + "type": "double", + "type-original": "double?" + } + } + }, + "specs": "orientation-event", + "name": "DeviceOrientationEventInit", + "extends": "EventInit" + }, + "MouseEventInit": { + "members": { + "member": { + "clientY": { + "specs": "uievents", + "name": "clientY", + "default": "0", + "type": "long", + "type-original": "long" + }, + "screenY": { + "specs": "uievents", + "name": "screenY", + "default": "0", + "type": "long", + "type-original": "long" + }, + "relatedTarget": { + "nullable": 1, + "specs": "uievents", + "name": "relatedTarget", + "default": "null", + "type": "EventTarget", + "type-original": "EventTarget?" + }, + "button": { + "specs": "uievents", + "name": "button", + "default": "0", + "type": "short", + "type-original": "short" + }, + "buttons": { + "specs": "uievents", + "name": "buttons", + "default": "0", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "clientX": { + "specs": "uievents", + "name": "clientX", + "default": "0", + "type": "long", + "type-original": "long" + }, + "screenX": { + "specs": "uievents", + "name": "screenX", + "default": "0", + "type": "long", + "type-original": "long" + } + } + }, + "specs": "uievents", + "name": "MouseEventInit", + "extends": "EventModifierInit" + }, + "NotificationOptions": { + "members": { + "member": { + "icon": { + "specs": "notifications", + "name": "icon", + "default": "\"\"", + "type": "DOMString", + "type-original": "DOMString" + }, + "body": { + "specs": "notifications", + "name": "body", + "default": "\"\"", + "type": "DOMString", + "type-original": "DOMString" + }, + "lang": { + "specs": "notifications", + "name": "lang", + "default": "\"\"", + "type": "DOMString", + "type-original": "DOMString" + }, + "data": { + "specs": "notifications", + "name": "data", + "default": "null", + "type": "any", + "type-original": "any" + }, + "tag": { + "specs": "notifications", + "name": "tag", + "default": "\"\"", + "type": "DOMString", + "type-original": "DOMString" + }, + "dir": { + "specs": "notifications", + "name": "dir", + "default": "\"auto\"", + "type": "NotificationDirection", + "type-original": "NotificationDirection" + } + } + }, + "specs": "notifications", + "name": "NotificationOptions", + "extends": "Object" + }, + "AudioTimestamp": { + "members": { + "member": { + "contextTime": { + "specs": "webaudio", + "name": "contextTime", + "type": "double", + "type-original": "double" + }, + "performanceTime": { + "specs": "webaudio", + "name": "performanceTime", + "type": "double", + "type-original": "DOMHighResTimeStamp" + } + } + }, + "specs": "webaudio", + "name": "AudioTimestamp", + "extends": "Object" + }, + "MediaStreamEventInit": { + "members": { + "member": { + "stream": { + "specs": "webrtc", + "name": "stream", + "default": "null", + "type": "MediaStream", + "type-original": "MediaStream" + } + } + }, + "specs": "webrtc", + "name": "MediaStreamEventInit", + "extends": "EventInit" + }, + "EcKeyGenParams": { + "members": { + "member": { + "namedCurve": { + "required": 1, + "specs": "webcryptoapi", + "name": "namedCurve", + "type": "DOMString", + "type-original": "NamedCurve" + } + } + }, + "specs": "webcryptoapi", + "name": "EcKeyGenParams", + "extends": "Algorithm" + }, + "MediaStreamErrorEventInit": { + "members": { + "member": { + "error": { + "nullable": 1, + "specs": "media-capture-api", + "name": "error", + "default": "null", + "type": "MediaStreamError", + "type-original": "MediaStreamError?" + } + } + }, + "specs": "media-capture-api", + "name": "MediaStreamErrorEventInit", + "extends": "EventInit" + }, + "RTCStats": { + "members": { + "member": { + "timestamp": { + "specs": "ortc", + "name": "timestamp", + "type": "double", + "type-original": "DOMHighResTimeStamp" + }, + "msType": { + "specs": "webrtc-stats", + "name": "msType", + "type": "MSStatsType", + "type-original": "MSStatsType" + }, + "id": { + "specs": "ortc", + "name": "id", + "type": "DOMString", + "type-original": "DOMString" + }, + "type": { + "specs": "ortc", + "name": "type", + "type": "RTCStatsType", + "type-original": "RTCStatsType" + } + } + }, + "specs": "ortc", + "name": "RTCStats", + "extends": "Object" + }, + "MSCredentialParameters": { + "members": { + "member": { + "type": { + "specs": "webauthn", + "name": "type", + "type": "MSCredentialType", + "type-original": "MSCredentialType" + } + } + }, + "specs": "webauthn", + "name": "MSCredentialParameters", + "extends": "Object" + }, + "IntersectionObserverEntryInit": { + "members": { + "member": { + "target": { + "required": 1, + "specs": "IntersectionObserver", + "name": "target", + "type": "Element", + "type-original": "Element" + }, + "intersectionRect": { + "required": 1, + "specs": "IntersectionObserver", + "name": "intersectionRect", + "type": "DOMRectInit", + "type-original": "DOMRectInit" + }, + "isIntersecting": { + "required": 1, + "specs": "IntersectionObserver", + "name": "isIntersecting", + "type": "boolean", + "type-original": "boolean" + }, + "time": { + "required": 1, + "specs": "IntersectionObserver", + "name": "time", + "type": "double", + "type-original": "DOMHighResTimeStamp" + }, + "boundingClientRect": { + "required": 1, + "specs": "IntersectionObserver", + "name": "boundingClientRect", + "type": "DOMRectInit", + "type-original": "DOMRectInit" + }, + "rootBounds": { + "required": 1, + "specs": "IntersectionObserver", + "name": "rootBounds", + "type": "DOMRectInit", + "type-original": "DOMRectInit" + } + } + }, + "specs": "IntersectionObserver", + "name": "IntersectionObserverEntryInit", + "extends": "Object" + }, + "ExceptionInformation": { + "members": { + "member": { + "domain": { + "nullable": 1, + "specs": "tracking-dnt", + "name": "domain", + "type": "DOMString", + "type-original": "DOMString?" + } + } + }, + "specs": "tracking-dnt", + "name": "ExceptionInformation", + "extends": "Object" + }, + "MSCredentialSpec": { + "members": { + "member": { + "id": { + "specs": "webauthn", + "name": "id", + "type": "DOMString", + "type-original": "DOMString" + }, + "type": { + "required": 1, + "specs": "webauthn", + "name": "type", + "type": "MSCredentialType", + "type-original": "MSCredentialType" + } + } + }, + "specs": "webauthn", + "name": "MSCredentialSpec", + "extends": "Object" + }, + "ScopedCredentialParameters": { + "members": { + "member": { + "algorithm": { + "required": 1, + "specs": "webauthn", + "name": "algorithm", + "type": [ + { + "type": "DOMString" + }, + { + "type": "Algorithm" + } + ], + "type-original": "AlgorithmIdentifier" + }, + "type": { + "required": 1, + "specs": "webauthn", + "name": "type", + "type": "ScopedCredentialType", + "type-original": "ScopedCredentialType" + } + } + }, + "specs": "webauthn", + "name": "ScopedCredentialParameters", + "extends": "Object" + }, + "PositionOptions": { + "members": { + "member": { + "enableHighAccuracy": { + "specs": "geolocation-api", + "name": "enableHighAccuracy", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "timeout": { + "specs": "geolocation-api", + "name": "timeout", + "clamp": 1, + "type": "unsigned long", + "type-original": "unsigned long" + }, + "maximumAge": { + "specs": "geolocation-api", + "name": "maximumAge", + "clamp": 1, + "default": "0", + "type": "unsigned long", + "type-original": "unsigned long" + } + } + }, + "specs": "geolocation-api", + "name": "PositionOptions", + "extends": "Object" + }, + "NotificationEventInit": { + "members": { + "member": { + "notification": { + "required": 1, + "specs": "notifications", + "name": "notification", + "type": "Notification", + "type-original": "Notification" + }, + "action": { + "specs": "notifications", + "name": "action", + "default": "\"\"", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "notifications", + "name": "NotificationEventInit", + "extends": "ExtendableEventInit" + }, + "FocusNavigationEventInit": { + "members": { + "member": { + "navigationReason": { + "nullable": 1, + "specs": "none", + "name": "navigationReason", + "default": "null", + "type": "DOMString", + "type-original": "DOMString?" + }, + "originHeight": { + "specs": "none", + "name": "originHeight", + "default": "0", + "type": "float", + "type-original": "float" + }, + "originTop": { + "specs": "none", + "name": "originTop", + "default": "0", + "type": "float", + "type-original": "float" + }, + "originLeft": { + "specs": "none", + "name": "originLeft", + "default": "0", + "type": "float", + "type-original": "float" + }, + "originWidth": { + "specs": "none", + "name": "originWidth", + "default": "0", + "type": "float", + "type-original": "float" + } + } + }, + "specs": "none", + "name": "FocusNavigationEventInit", + "extends": "EventInit" + }, + "KeyboardEventInit": { + "members": { + "member": { + "location": { + "specs": "uievents", + "name": "location", + "default": "0", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "repeat": { + "specs": "uievents", + "name": "repeat", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "key": { + "specs": "uievents", + "name": "key", + "default": "\"\"", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "uievents", + "name": "KeyboardEventInit", + "extends": "EventModifierInit" + }, + "QueuingStrategy": { + "members": { + "member": { + "highWaterMark": { + "specs": "whatwg-streams", + "name": "highWaterMark", + "type": "double", + "type-original": "double" + }, + "size": { + "specs": "whatwg-streams", + "name": "size", + "type": "WritableStreamChunkCallback", + "type-original": "WritableStreamChunkCallback" + } + } + }, + "specs": "whatwg-streams", + "name": "QueuingStrategy", + "extends": "Object" + }, + "DeviceAccelerationDict": { + "members": { + "member": { + "y": { + "nullable": 1, + "specs": "orientation-event", + "name": "y", + "default": "null", + "type": "double", + "type-original": "double?" + }, + "x": { + "nullable": 1, + "specs": "orientation-event", + "name": "x", + "default": "null", + "type": "double", + "type-original": "double?" + }, + "z": { + "nullable": 1, + "specs": "orientation-event", + "name": "z", + "default": "null", + "type": "double", + "type-original": "double?" + } + } + }, + "specs": "orientation-event", + "name": "DeviceAccelerationDict", + "extends": "Object" + }, + "MSNetworkInterfaceType": { + "members": { + "member": { + "interfaceTypeTunnel": { + "specs": "webrtc-stats", + "name": "interfaceTypeTunnel", + "type": "boolean", + "type-original": "boolean" + }, + "interfaceTypePPP": { + "specs": "webrtc-stats", + "name": "interfaceTypePPP", + "type": "boolean", + "type-original": "boolean" + }, + "interfaceTypeEthernet": { + "specs": "webrtc-stats", + "name": "interfaceTypeEthernet", + "type": "boolean", + "type-original": "boolean" + }, + "interfaceTypeWireless": { + "specs": "webrtc-stats", + "name": "interfaceTypeWireless", + "type": "boolean", + "type-original": "boolean" + }, + "interfaceTypeWWAN": { + "specs": "webrtc-stats", + "name": "interfaceTypeWWAN", + "type": "boolean", + "type-original": "boolean" + } + } + }, + "specs": "webrtc-stats", + "name": "MSNetworkInterfaceType", + "extends": "Object" + }, + "AudioProcessingEventInit": { + "members": { + "member": { + "playbackTime": { + "required": 1, + "specs": "webaudio", + "name": "playbackTime", + "type": "double", + "type-original": "double" + }, + "outputBuffer": { + "required": 1, + "specs": "webaudio", + "name": "outputBuffer", + "type": "AudioBuffer", + "type-original": "AudioBuffer" + }, + "inputBuffer": { + "required": 1, + "specs": "webaudio", + "name": "inputBuffer", + "type": "AudioBuffer", + "type-original": "AudioBuffer" + } + } + }, + "specs": "webaudio", + "name": "AudioProcessingEventInit", + "extends": "EventInit" + }, + "AesKeyAlgorithm": { + "members": { + "member": { + "length": { + "required": 1, + "specs": "webcryptoapi", + "name": "length", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "specs": "webcryptoapi", + "name": "AesKeyAlgorithm", + "extends": "KeyAlgorithm" + }, + "PaymentDetailsModifier": { + "members": { + "member": { + "additionalDisplayItems": { + "subtype": { + "type": "PaymentItem" + }, + "specs": "payment-request", + "name": "additionalDisplayItems", + "type": "sequence", + "type-original": "sequence" + }, + "supportedMethods": { + "subtype": { + "type": "DOMString" + }, + "required": 1, + "specs": "payment-request", + "name": "supportedMethods", + "type": "sequence", + "type-original": "sequence" + }, + "data": { + "specs": "payment-request", + "name": "data", + "type": "object", + "type-original": "object" + }, + "total": { + "specs": "payment-request", + "name": "total", + "type": "PaymentItem", + "type-original": "PaymentItem" + } + } + }, + "specs": "payment-request", + "name": "PaymentDetailsModifier", + "extends": "Object" + }, + "SpeechSynthesisEventInit": { + "members": { + "member": { + "charLength": { + "specs": "none", + "name": "charLength", + "default": "0", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "utterance": { + "nullable": 1, + "specs": "none", + "name": "utterance", + "default": "null", + "type": "SpeechSynthesisUtterance", + "type-original": "SpeechSynthesisUtterance?" + }, + "name": { + "specs": "none", + "name": "name", + "default": "\"\"", + "type": "DOMString", + "type-original": "DOMString" + }, + "charIndex": { + "specs": "none", + "name": "charIndex", + "default": "0", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "elapsedTime": { + "specs": "none", + "name": "elapsedTime", + "default": "0", + "type": "float", + "type-original": "float" + } + } + }, + "specs": "none", + "name": "SpeechSynthesisEventInit", + "extends": "EventInit" + }, + "RTCPeerConnectionIceEventInit": { + "members": { + "member": { + "candidate": { + "specs": "webrtc", + "name": "candidate", + "default": "null", + "type": "RTCIceCandidate", + "type-original": "RTCIceCandidate" + } + } + }, + "specs": "webrtc", + "name": "RTCPeerConnectionIceEventInit", + "extends": "EventInit" + }, + "EcKeyAlgorithm": { + "members": { + "member": { + "namedCurve": { + "required": 1, + "specs": "webcryptoapi", + "name": "namedCurve", + "type": "DOMString", + "type-original": "NamedCurve" + } + } + }, + "specs": "webcryptoapi", + "name": "EcKeyAlgorithm", + "extends": "KeyAlgorithm" + }, + "DOMRectInit": { + "members": { + "member": { + "width": { + "specs": "geometry_1", + "name": "width", + "default": "0", + "type": "unrestricted double", + "type-original": "unrestricted double" + }, + "y": { + "specs": "geometry_1", + "name": "y", + "default": "0", + "type": "unrestricted double", + "type-original": "unrestricted double" + }, + "x": { + "specs": "geometry_1", + "name": "x", + "default": "0", + "type": "unrestricted double", + "type-original": "unrestricted double" + }, + "height": { + "specs": "geometry_1", + "name": "height", + "default": "0", + "type": "unrestricted double", + "type-original": "unrestricted double" + } + } + }, + "specs": "geometry_1", + "name": "DOMRectInit", + "extends": "Object" + }, + "PeriodicWaveConstraints": { + "members": { + "member": { + "disableNormalization": { + "specs": "webaudio", + "name": "disableNormalization", + "default": "false", + "type": "boolean", + "type-original": "boolean" + } + } + }, + "specs": "webaudio", + "name": "PeriodicWaveConstraints", + "extends": "Object" + }, + "KeyAlgorithm": { + "members": { + "member": { + "name": { + "required": 1, + "specs": "webcryptoapi", + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "specs": "webcryptoapi", + "name": "KeyAlgorithm", + "extends": "Object" + }, + "VRStageParameters": { + "members": { + "member": { + "sizeY": { + "specs": "WebVR", + "name": "sizeY", + "type": "float", + "type-original": "float" + }, + "sizeX": { + "specs": "WebVR", + "name": "sizeX", + "type": "float", + "type-original": "float" + }, + "sittingToStandingTransform": { + "specs": "WebVR", + "name": "sittingToStandingTransform", + "type": "Float32Array", + "type-original": "Float32Array" + } + } + }, + "specs": "WebVR", + "name": "VRStageParameters", + "extends": "Object" + }, + "RTCSsrcRange": { + "members": { + "member": { + "min": { + "specs": "ortc", + "name": "min", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "max": { + "specs": "ortc", + "name": "max", + "type": "unsigned long", + "type-original": "unsigned long" + } + } + }, + "specs": "ortc", + "name": "RTCSsrcRange", + "extends": "Object" + }, + "ProgressEventInit": { + "members": { + "member": { + "loaded": { + "specs": "progress-events", + "name": "loaded", + "default": "0", + "type": "unsigned long long", + "type-original": "unsigned long long" + }, + "lengthComputable": { + "specs": "progress-events", + "name": "lengthComputable", + "default": "false", + "type": "boolean", + "type-original": "boolean" + }, + "total": { + "specs": "progress-events", + "name": "total", + "default": "0", + "type": "unsigned long long", + "type-original": "unsigned long long" + } + } + }, + "specs": "progress-events", + "name": "ProgressEventInit", + "extends": "EventInit" + }, + "ChannelSplitterOptions": { + "members": { + "member": { + "numberOfOutputs": { + "specs": "webaudio", + "name": "numberOfOutputs", + "default": "6", + "type": "unsigned long", + "type-original": "unsigned long" + } + } + }, + "specs": "webaudio", + "name": "ChannelSplitterOptions", + "extends": "AudioNodeOptions" + }, + "MediaKeySystemConfiguration": { + "members": { + "member": { + "distinctiveIdentifier": { + "specs": "encrypted-media", + "name": "distinctiveIdentifier", + "default": "\"optional\"", + "type": "MediaKeysRequirement", + "type-original": "MediaKeysRequirement" + }, + "initDataTypes": { + "subtype": { + "type": "DOMString" + }, + "specs": "encrypted-media", + "name": "initDataTypes", + "type": "sequence", + "type-original": "sequence" + }, + "audioCapabilities": { + "subtype": { + "type": "MediaKeySystemMediaCapability" + }, + "specs": "encrypted-media", + "name": "audioCapabilities", + "type": "sequence", + "type-original": "sequence" + }, + "persistentState": { + "specs": "encrypted-media", + "name": "persistentState", + "default": "\"optional\"", + "type": "MediaKeysRequirement", + "type-original": "MediaKeysRequirement" + }, + "videoCapabilities": { + "subtype": { + "type": "MediaKeySystemMediaCapability" + }, + "specs": "encrypted-media", + "name": "videoCapabilities", + "type": "sequence", + "type-original": "sequence" + } + } + }, + "specs": "encrypted-media", + "name": "MediaKeySystemConfiguration", + "extends": "Object" + } + } + }, + "enums": { + "enum": { + "ReferrerPolicy": { + "specs": "whatwg-fetch", + "value": [ + "", + "no-referrer", + "no-referrer-when-downgrade", + "origin-only", + "origin-when-cross-origin", + "unsafe-url" + ], + "name": "ReferrerPolicy" + }, + "DistanceModelType": { + "specs": "webaudio", + "value": [ + "linear", + "inverse", + "exponential" + ], + "name": "DistanceModelType" + }, + "MediaKeySessionType": { + "specs": "encrypted-media", + "value": [ + "temporary", + "persistent-license", + "persistent-release-message" + ], + "name": "MediaKeySessionType" + }, + "AudioContextState": { + "specs": "webaudio", + "value": [ + "suspended", + "running", + "closed" + ], + "name": "AudioContextState" + }, + "GamepadInputEmulationType": { + "specs": "gamepad", + "value": [ + "mouse", + "keyboard", + "gamepad" + ], + "name": "GamepadInputEmulationType" + }, + "EndOfStreamError": { + "specs": "media-source", + "value": [ + "network", + "decode" + ], + "name": "EndOfStreamError" + }, + "MediaKeysRequirement": { + "specs": "encrypted-media", + "value": [ + "required", + "optional", + "not-allowed" + ], + "name": "MediaKeysRequirement" + }, + "ChannelCountMode": { + "specs": "webaudio", + "value": [ + "max", + "clamped-max", + "explicit" + ], + "name": "ChannelCountMode" + }, + "RequestCredentials": { + "specs": "whatwg-fetch", + "value": [ + "omit", + "same-origin", + "include" + ], + "name": "RequestCredentials" + }, + "RTCDtlsRole": { + "specs": "ortc", + "value": [ + "auto", + "client", + "server" + ], + "name": "RTCDtlsRole" + }, + "RTCIceTcpCandidateType": { + "specs": "ortc", + "value": [ + "active", + "passive", + "so" + ], + "name": "RTCIceTcpCandidateType" + }, + "IDBTransactionMode": { + "specs": "indexeddb", + "value": [ + "readonly", + "readwrite", + "versionchange" + ], + "name": "IDBTransactionMode" + }, + "MSWebViewPermissionType": { + "specs": "none", + "value": [ + "geolocation", + "unlimitedIndexedDBQuota", + "media", + "pointerlock", + "webnotifications" + ], + "name": "MSWebViewPermissionType" + }, + "MSIceType": { + "specs": "webrtc-stats", + "value": [ + "failed", + "direct", + "relay" + ], + "name": "MSIceType" + }, + "TextTrackKind": { + "specs": "html5", + "value": [ + "subtitles", + "captions", + "descriptions", + "chapters", + "metadata" + ], + "name": "TextTrackKind" + }, + "ReadyState": { + "specs": "media-source", + "value": [ + "closed", + "open", + "ended" + ], + "name": "ReadyState" + }, + "GamepadMappingType": { + "specs": "gamepad", + "value": [ + "", + "standard" + ], + "name": "GamepadMappingType" + }, + "OverSampleType": { + "specs": "webaudio", + "value": [ + "none", + "2x", + "4x" + ], + "name": "OverSampleType" + }, + "NotificationDirection": { + "specs": "notifications", + "value": [ + "auto", + "ltr", + "rtl" + ], + "name": "NotificationDirection" + }, + "RTCDtlsTransportState": { + "specs": "ortc", + "value": [ + "new", + "connecting", + "connected", + "closed" + ], + "name": "RTCDtlsTransportState" + }, + "AudioContextLatencyCategory": { + "specs": "webaudio", + "value": [ + "balanced", + "interactive", + "playback" + ], + "name": "AudioContextLatencyCategory" + }, + "ChannelInterpretation": { + "specs": "webaudio", + "value": [ + "speakers", + "discrete" + ], + "name": "ChannelInterpretation" + }, + "RTCIceGathererState": { + "specs": "ortc", + "value": [ + "new", + "gathering", + "complete" + ], + "name": "RTCIceGathererState" + }, + "OscillatorType": { + "specs": "webaudio", + "value": [ + "sine", + "square", + "sawtooth", + "triangle", + "custom" + ], + "name": "OscillatorType" + }, + "RequestType": { + "specs": "whatwg-fetch", + "value": [ + "", + "audio", + "font", + "image", + "script", + "style", + "track", + "video" + ], + "name": "RequestType" + }, + "RequestDestination": { + "specs": "whatwg-fetch", + "value": [ + "", + "document", + "sharedworker", + "subresource", + "unknown", + "worker" + ], + "name": "RequestDestination" + }, + "MediaDeviceKind": { + "specs": "media-capture-api", + "value": [ + "audioinput", + "audiooutput", + "videoinput" + ], + "name": "MediaDeviceKind" + }, + "BinaryType": { + "specs": "html5", + "value": [ + "blob", + "arraybuffer" + ], + "name": "BinaryType" + }, + "PushPermissionState": { + "specs": "push-api", + "value": [ + "granted", + "denied", + "prompt" + ], + "name": "PushPermissionState" + }, + "Transport": { + "specs": "webauthn", + "value": [ + "usb", + "nfc", + "ble" + ], + "name": "Transport" + }, + "GamepadHand": { + "specs": "gamepad extension", + "value": [ + "", + "left", + "right" + ], + "name": "GamepadHand" + }, + "BiquadFilterType": { + "specs": "webaudio", + "value": [ + "lowpass", + "highpass", + "bandpass", + "lowshelf", + "highshelf", + "peaking", + "notch", + "allpass" + ], + "name": "BiquadFilterType" + }, + "VideoFacingModeEnum": { + "specs": "media-capture-api", + "value": [ + "user", + "environment", + "left", + "right" + ], + "name": "VideoFacingModeEnum" + }, + "VREye": { + "specs": "WebVR", + "value": [ + "left", + "right" + ], + "name": "VREye" + }, + "RTCSdpType": { + "specs": "webrtc", + "value": [ + "offer", + "pranswer", + "answer" + ], + "name": "RTCSdpType" + }, + "MediaKeyMessageType": { + "specs": "encrypted-media", + "value": [ + "license-request", + "license-renewal", + "license-release", + "individualization-request" + ], + "name": "MediaKeyMessageType" + }, + "RTCIceProtocol": { + "specs": "ortc", + "value": [ + "udp", + "tcp" + ], + "name": "RTCIceProtocol" + }, + "NotificationPermission": { + "specs": "notifications", + "value": [ + "default", + "denied", + "granted" + ], + "name": "NotificationPermission" + }, + "KeyUsage": { + "specs": "webcryptoapi", + "value": [ + "encrypt", + "decrypt", + "sign", + "verify", + "deriveKey", + "deriveBits", + "wrapKey", + "unwrapKey" + ], + "name": "KeyUsage" + }, + "PaymentComplete": { + "specs": "payment-request", + "value": [ + "success", + "fail", + "unknown" + ], + "name": "PaymentComplete" + }, + "RequestMode": { + "specs": "whatwg-fetch", + "value": [ + "navigate", + "same-origin", + "no-cors", + "cors" + ], + "name": "RequestMode" + }, + "ExpandGranularity": { + "specs": "dom4", + "value": [ + "character", + "word", + "sentence", + "textedit" + ], + "name": "ExpandGranularity" + }, + "KeyType": { + "specs": "webcryptoapi", + "value": [ + "public", + "private", + "secret" + ], + "name": "KeyType" + }, + "RTCStatsType": { + "specs": "ortc", + "value": [ + "inboundrtp", + "outboundrtp", + "session", + "datachannel", + "track", + "transport", + "candidatepair", + "localcandidate", + "remotecandidate" + ], + "name": "RTCStatsType" + }, + "ClientType": { + "specs": "service-workers", + "value": [ + "window", + "worker", + "sharedworker", + "all" + ], + "name": "ClientType" + }, + "IDBCursorDirection": { + "specs": "indexeddb", + "value": [ + "next", + "nextunique", + "prev", + "prevunique" + ], + "name": "IDBCursorDirection" + }, + "NavigationType": { + "specs": "navigation-timing", + "value": [ + "navigate", + "reload", + "back_forward", + "prerender" + ], + "name": "NavigationType" + }, + "IDBRequestReadyState": { + "specs": "indexeddb", + "value": [ + "pending", + "done" + ], + "name": "IDBRequestReadyState" + }, + "KeyFormat": { + "specs": "webcryptoapi", + "value": [ + "raw", + "spki", + "pkcs8", + "jwk" + ], + "name": "KeyFormat" + }, + "CanPlayTypeResult": { + "specs": "html5", + "value": [ + "", + "maybe", + "probably" + ], + "name": "CanPlayTypeResult" + }, + "TextTrackMode": { + "specs": "whatwg-html", + "value": [ + "disabled", + "hidden", + "showing" + ], + "name": "TextTrackMode" + }, + "RTCBundlePolicy": { + "specs": "webrtc", + "value": [ + "balanced", + "max-compat", + "max-bundle" + ], + "name": "RTCBundlePolicy" + }, + "MSCredentialType": { + "specs": "webauthn", + "value": [ + "FIDO_2_0" + ], + "name": "MSCredentialType" + }, + "AppendMode": { + "specs": "media-source", + "value": [ + "segments", + "sequence" + ], + "name": "AppendMode" + }, + "RequestCache": { + "specs": "whatwg-fetch", + "value": [ + "default", + "no-store", + "reload", + "no-cache", + "force-cache" + ], + "name": "RequestCache" + }, + "RTCIceConnectionState": { + "specs": "webrtc", + "value": [ + "new", + "checking", + "connected", + "completed", + "failed", + "disconnected", + "closed" + ], + "name": "RTCIceConnectionState" + }, + "RTCIceCandidateType": { + "specs": "ortc", + "value": [ + "host", + "srflx", + "prflx", + "relay" + ], + "name": "RTCIceCandidateType" + }, + "RTCIceComponent": { + "specs": "ortc", + "value": [ + "RTP", + "RTCP" + ], + "name": "RTCIceComponent" + }, + "VisibilityState": { + "specs": "page-visibility", + "value": [ + "hidden", + "visible", + "prerender", + "unloaded" + ], + "name": "VisibilityState" + }, + "GamepadHapticActuatorType": { + "specs": "gamepad extension", + "value": [ + "vibration" + ], + "name": "GamepadHapticActuatorType" + }, + "VRDisplayEventReason": { + "specs": "WebVR", + "value": [ + "mounted", + "navigation", + "requested", + "unmounted" + ], + "name": "VRDisplayEventReason" + }, + "DisplayCaptureSurfaceType": { + "specs": "screen-capture", + "value": [ + "monitor", + "window", + "application", + "browser" + ], + "name": "DisplayCaptureSurfaceType" + }, + "XMLHttpRequestResponseType": { + "specs": "xhr", + "value": [ + "", + "arraybuffer", + "blob", + "document", + "json", + "text" + ], + "name": "XMLHttpRequestResponseType" + }, + "CanvasFillRule": { + "specs": "2dcontext", + "value": [ + "nonzero", + "evenodd" + ], + "name": "CanvasFillRule" + }, + "RTCIceTransportPolicy": { + "specs": "webrtc", + "value": [ + "none", + "relay", + "all" + ], + "name": "RTCIceTransportPolicy" + }, + "MSWebViewPermissionState": { + "specs": "none", + "value": [ + "unknown", + "defer", + "allow", + "deny" + ], + "name": "MSWebViewPermissionState" + }, + "ScopedCredentialType": { + "specs": "webauthn", + "value": [ + "ScopedCred" + ], + "name": "ScopedCredentialType" + }, + "ListeningState": { + "specs": "none", + "value": [ + "inactive", + "active", + "disambiguation" + ], + "name": "ListeningState" + }, + "MediaStreamTrackState": { + "specs": "media-capture-api", + "value": [ + "live", + "ended" + ], + "name": "MediaStreamTrackState" + }, + "RTCIceRole": { + "specs": "ortc", + "value": [ + "controlling", + "controlled" + ], + "name": "RTCIceRole" + }, + "MSStatsType": { + "specs": "webrtc-stats", + "value": [ + "description", + "localclientevent", + "inbound-network", + "outbound-network", + "inbound-payload", + "outbound-payload", + "transportdiagnostics" + ], + "name": "MSStatsType" + }, + "RTCStatsIceCandidatePairState": { + "specs": "ortc", + "value": [ + "frozen", + "waiting", + "inprogress", + "failed", + "succeeded", + "cancelled" + ], + "name": "RTCStatsIceCandidatePairState" + }, + "RTCSignalingState": { + "specs": "webrtc", + "value": [ + "stable", + "have-local-offer", + "have-remote-offer", + "have-local-pranswer", + "have-remote-pranswer", + "closed" + ], + "name": "RTCSignalingState" + }, + "ResponseType": { + "specs": "whatwg-fetch", + "value": [ + "basic", + "cors", + "default", + "error", + "opaque", + "opaqueredirect" + ], + "name": "ResponseType" + }, + "RTCIceTransportState": { + "specs": "ortc", + "value": [ + "new", + "checking", + "connected", + "completed", + "disconnected", + "closed" + ], + "name": "RTCIceTransportState" + }, + "MediaKeyStatus": { + "specs": "encrypted-media", + "value": [ + "usable", + "expired", + "output-downscaled", + "output-not-allowed", + "status-pending", + "internal-error" + ], + "name": "MediaKeyStatus" + }, + "PushEncryptionKeyName": { + "specs": "push-api", + "value": [ + "p256dh", + "auth" + ], + "name": "PushEncryptionKeyName" + }, + "MSIceAddrType": { + "specs": "webrtc-stats", + "value": [ + "os", + "stun", + "turn", + "peer-derived" + ], + "name": "MSIceAddrType" + }, + "RTCStatsIceCandidateType": { + "specs": "ortc", + "value": [ + "host", + "serverreflexive", + "peerreflexive", + "relayed" + ], + "name": "RTCStatsIceCandidateType" + }, + "NavigationReason": { + "specs": "none", + "value": [ + "up", + "down", + "left", + "right" + ], + "name": "NavigationReason" + }, + "RTCIceGatheringState": { + "specs": "webrtc", + "value": [ + "new", + "gathering", + "complete" + ], + "name": "RTCIceGatheringState" + }, + "RequestRedirect": { + "specs": "whatwg-fetch", + "value": [ + "follow", + "error", + "manual" + ], + "name": "RequestRedirect" + }, + "ServiceWorkerState": { + "specs": "service-workers", + "value": [ + "installing", + "installed", + "activating", + "activated", + "redundant" + ], + "name": "ServiceWorkerState" + }, + "RTCIceGatherPolicy": { + "specs": "ortc", + "value": [ + "all", + "nohost", + "relay" + ], + "name": "RTCIceGatherPolicy" + }, + "MSTransportType": { + "specs": "webauthn", + "value": [ + "Embedded", + "USB", + "NFC", + "BT" + ], + "name": "MSTransportType" + }, + "RTCDegradationPreference": { + "specs": "ortc", + "value": [ + "maintain-framerate", + "maintain-resolution", + "balanced" + ], + "name": "RTCDegradationPreference" + }, + "PaymentShippingType": { + "specs": "payment-request", + "value": [ + "shipping", + "delivery", + "pickup" + ], + "name": "PaymentShippingType" + }, + "PanningModelType": { + "specs": "webaudio", + "value": [ + "equalpower", + "HRTF" + ], + "name": "PanningModelType" + } + } + }, + "interfaces": { + "interface": { + "HTMLTableElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLTableElement", + "properties": { + "property": { + "width": { + "specs": "html5", + "ce-reactions": 1, + "name": "width", + "type-original": "DOMString", + "content-attribute": "width", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "non_negative_integer", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "tBodies": { + "specs": "html5", + "same-object": 1, + "name": "tBodies", + "type-original": "HTMLCollection", + "exposed": "Window", + "type": "HTMLCollection", + "read-only": 1 + }, + "align": { + "content-attribute-enum-values": "center left right", + "specs": "html5", + "ce-reactions": 1, + "name": "align", + "type-original": "DOMString", + "content-attribute": "align", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "tHead": { + "specs": "html5", + "ce-reactions": 1, + "name": "tHead", + "type-original": "HTMLTableSectionElement?", + "nullable": 1, + "exposed": "Window", + "type": "HTMLTableSectionElement" + }, + "cellSpacing": { + "specs": "html5", + "ce-reactions": 1, + "name": "cellSpacing", + "type-original": "DOMString", + "content-attribute": "cellspacing", + "deprecated": 1, + "interop": 1, + "treat-null-as": "EmptyString", + "content-attribute-value-syntax": "integer_or_percentage", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "frame": { + "content-attribute-enum-values": "void above below border box hsides lhs rhs vsides", + "specs": "html5", + "ce-reactions": 1, + "name": "frame", + "type-original": "DOMString", + "content-attribute": "frame", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "tFoot": { + "specs": "html5", + "ce-reactions": 1, + "name": "tFoot", + "type-original": "HTMLTableSectionElement?", + "nullable": 1, + "exposed": "Window", + "type": "HTMLTableSectionElement" + }, + "rules": { + "content-attribute-enum-values": "all cols groups none rows", + "specs": "html5", + "ce-reactions": 1, + "name": "rules", + "type-original": "DOMString", + "content-attribute": "rules", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "rows": { + "specs": "html5", + "same-object": 1, + "name": "rows", + "type-original": "HTMLCollection", + "exposed": "Window", + "type": "HTMLCollection", + "read-only": 1 + }, + "border": { + "specs": "html5", + "ce-reactions": 1, + "name": "border", + "type-original": "DOMString", + "content-attribute": "border", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "non_negative_integer", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "cellPadding": { + "specs": "html5", + "ce-reactions": 1, + "name": "cellPadding", + "type-original": "DOMString", + "content-attribute": "cellpadding", + "deprecated": 1, + "interop": 1, + "treat-null-as": "EmptyString", + "content-attribute-value-syntax": "integer_or_percentage", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "bgColor": { + "specs": "html5", + "ce-reactions": 1, + "name": "bgColor", + "type-original": "DOMString", + "content-attribute": "bgcolor", + "deprecated": 1, + "interop": 1, + "treat-null-as": "EmptyString", + "content-attribute-value-syntax": "simple_color", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "summary": { + "specs": "html5", + "ce-reactions": 1, + "name": "summary", + "type-original": "DOMString", + "content-attribute": "summary", + "deprecated": 1, + "interop": 1, + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "caption": { + "specs": "html5", + "ce-reactions": 1, + "name": "caption", + "type-original": "HTMLTableCaptionElement?", + "nullable": 1, + "exposed": "Window", + "type": "HTMLTableCaptionElement" + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "table" + } + ], + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": { + "deleteRow": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "index", + "default": "-1", + "type": "long", + "optional": 1, + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "ce-reactions": 1, + "exposed": "Window", + "name": "deleteRow" + }, + "createTBody": { + "signature": [ + { + "type": "HTMLTableSectionElement", + "type-original": "HTMLTableSectionElement" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "createTBody" + }, + "insertRow": { + "signature": [ + { + "param-min-required": 0, + "type": "HTMLTableRowElement", + "param": [ + { + "name": "index", + "default": "-1", + "type": "long", + "optional": 1, + "type-original": "long" + } + ], + "type-original": "HTMLTableRowElement" + } + ], + "specs": "html5", + "ce-reactions": 1, + "exposed": "Window", + "name": "insertRow" + }, + "deleteCaption": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "html5", + "ce-reactions": 1, + "exposed": "Window", + "name": "deleteCaption" + }, + "deleteTFoot": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "html5", + "ce-reactions": 1, + "exposed": "Window", + "name": "deleteTFoot" + }, + "createTHead": { + "signature": [ + { + "type": "HTMLTableSectionElement", + "type-original": "HTMLTableSectionElement" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "createTHead" + }, + "deleteTHead": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "html5", + "ce-reactions": 1, + "exposed": "Window", + "name": "deleteTHead" + }, + "createCaption": { + "signature": [ + { + "type": "HTMLTableCaptionElement", + "type-original": "HTMLTableCaptionElement" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "createCaption" + }, + "createTFoot": { + "signature": [ + { + "type": "HTMLTableSectionElement", + "type-original": "HTMLTableSectionElement" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "createTFoot" + } + } + }, + "extends": "HTMLElement" + }, + "VRFrameData": { + "specs": "WebVR", + "constructor": { + "specs": "WebVR", + "signature": [ + { + "type": "VRFrameData", + "type-original": "VRFrameData" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "VRFrameData", + "properties": { + "property": { + "rightViewMatrix": { + "pure": 1, + "specs": "WebVR", + "name": "rightViewMatrix", + "type-original": "Float32Array", + "exposed": "Window", + "type": "Float32Array", + "read-only": 1 + }, + "leftViewMatrix": { + "pure": 1, + "specs": "WebVR", + "name": "leftViewMatrix", + "type-original": "Float32Array", + "exposed": "Window", + "type": "Float32Array", + "read-only": 1 + }, + "timestamp": { + "specs": "WebVR", + "exposed": "Window", + "name": "timestamp", + "type": "double", + "type-original": "DOMHighResTimeStamp", + "read-only": 1 + }, + "rightProjectionMatrix": { + "pure": 1, + "specs": "WebVR", + "name": "rightProjectionMatrix", + "type-original": "Float32Array", + "exposed": "Window", + "type": "Float32Array", + "read-only": 1 + }, + "leftProjectionMatrix": { + "pure": 1, + "specs": "WebVR", + "name": "leftProjectionMatrix", + "type-original": "Float32Array", + "exposed": "Window", + "type": "Float32Array", + "read-only": 1 + }, + "pose": { + "pure": 1, + "specs": "WebVR", + "name": "pose", + "type-original": "VRPose", + "exposed": "Window", + "type": "VRPose", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "TreeWalker": { + "constants": { + "constant": {} + }, + "specs": "dom", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": { + "previousSibling": { + "specs": "dom", + "name": "previousSibling", + "signature": [ + { + "nullable": 1, + "type": "Node", + "type-original": "Node?" + } + ], + "exposed": "Window" + }, + "nextSibling": { + "specs": "dom", + "name": "nextSibling", + "signature": [ + { + "nullable": 1, + "type": "Node", + "type-original": "Node?" + } + ], + "exposed": "Window" + }, + "lastChild": { + "specs": "dom", + "name": "lastChild", + "signature": [ + { + "nullable": 1, + "type": "Node", + "type-original": "Node?" + } + ], + "exposed": "Window" + }, + "nextNode": { + "specs": "dom", + "name": "nextNode", + "signature": [ + { + "nullable": 1, + "type": "Node", + "type-original": "Node?" + } + ], + "exposed": "Window" + }, + "previousNode": { + "specs": "dom", + "name": "previousNode", + "signature": [ + { + "nullable": 1, + "type": "Node", + "type-original": "Node?" + } + ], + "exposed": "Window" + }, + "firstChild": { + "specs": "dom", + "name": "firstChild", + "signature": [ + { + "nullable": 1, + "type": "Node", + "type-original": "Node?" + } + ], + "exposed": "Window" + }, + "parentNode": { + "specs": "dom", + "name": "parentNode", + "signature": [ + { + "nullable": 1, + "type": "Node", + "type-original": "Node?" + } + ], + "exposed": "Window" + } + } + }, + "exposed": "Window", + "name": "TreeWalker", + "extends": "Object", + "properties": { + "property": { + "whatToShow": { + "specs": "dom", + "name": "whatToShow", + "constant": 1, + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + }, + "filter": { + "specs": "dom", + "name": "filter", + "constant": 1, + "type-original": "NodeFilter?", + "nullable": 1, + "exposed": "Window", + "type": "NodeFilter", + "read-only": 1 + }, + "currentNode": { + "pure": 1, + "specs": "dom", + "name": "currentNode", + "type-original": "Node", + "exposed": "Window", + "type": "Node" + }, + "root": { + "specs": "dom", + "same-object": 1, + "name": "root", + "constant": 1, + "type-original": "Node", + "exposed": "Window", + "type": "Node", + "read-only": 1 + }, + "expandEntityReferences": { + "specs": "dom-level-2-traversal-range", + "name": "expandEntityReferences", + "type-original": "boolean", + "deprecated": 1, + "exposed": "Window", + "type": "boolean", + "read-only": 1 + } + } + } + }, + "TextTrackCue": { + "specs": "html5", + "constructor": { + "specs": "html5", + "signature": [ + { + "param-min-required": 3, + "type": "TextTrackCue", + "param": [ + { + "name": "startTime", + "type": "double", + "type-original": "double" + }, + { + "name": "endTime", + "type": "double", + "type-original": "double" + }, + { + "name": "text", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "TextTrackCue" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "TextTrackCue", + "properties": { + "property": { + "onenter": { + "specs": "html5", + "name": "onenter", + "tags": "Captions", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "enter" + }, + "text": { + "specs": "html5", + "exposed": "Window", + "name": "text", + "type": "DOMString", + "tags": "Captions", + "type-original": "DOMString" + }, + "endTime": { + "specs": "html5", + "exposed": "Window", + "name": "endTime", + "type": "double", + "tags": "Captions", + "type-original": "double" + }, + "track": { + "specs": "html5", + "name": "track", + "tags": "Captions", + "type-original": "TextTrack", + "exposed": "Window", + "type": "TextTrack", + "read-only": 1 + }, + "pauseOnExit": { + "specs": "html5", + "exposed": "Window", + "name": "pauseOnExit", + "type": "boolean", + "tags": "Captions", + "type-original": "boolean" + }, + "startTime": { + "specs": "html5", + "exposed": "Window", + "name": "startTime", + "type": "double", + "tags": "Captions", + "type-original": "double" + }, + "id": { + "specs": "html5", + "exposed": "Window", + "name": "id", + "type": "DOMString", + "tags": "Captions", + "type-original": "DOMString" + }, + "onexit": { + "specs": "html5", + "name": "onexit", + "tags": "Captions", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "exit" + } + } + }, + "tags": "Captions", + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "HTML5", + "name": "enter", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "exit", + "type": "Event", + "skips-window": 1 + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "getCueAsHTML": { + "signature": [ + { + "type": "DocumentFragment", + "type-original": "DocumentFragment" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "getCueAsHTML", + "tags": "Captions" + } + } + }, + "extends": "EventTarget" + }, + "RTCRtpSender": { + "specs": "ortc", + "constructor": { + "specs": "ortc", + "signature": [ + { + "param-min-required": 2, + "type": "RTCRtpSender", + "param": [ + { + "name": "track", + "type": "MediaStreamTrack", + "type-original": "MediaStreamTrack" + }, + { + "name": "transport", + "type": [ + { + "type": "RTCDtlsTransport" + }, + { + "type": "RTCSrtpSdesTransport" + } + ], + "type-original": "RTCTransport" + }, + { + "name": "rtcpTransport", + "type": "RTCDtlsTransport", + "optional": 1, + "type-original": "RTCDtlsTransport" + } + ], + "type-original": "RTCRtpSender" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "RTCRtpSender", + "properties": { + "property": { + "onssrcconflict": { + "specs": "ortc", + "name": "onssrcconflict", + "type-original": "EventHandler?", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "ssrcconflict" + }, + "rtcpTransport": { + "specs": "ortc", + "exposed": "Window", + "name": "rtcpTransport", + "type": "RTCDtlsTransport", + "type-original": "RTCDtlsTransport", + "read-only": 1 + }, + "transport": { + "specs": "ortc", + "exposed": "Window", + "name": "transport", + "type": [ + { + "type": "RTCDtlsTransport" + }, + { + "type": "RTCSrtpSdesTransport" + } + ], + "type-original": "RTCTransport", + "read-only": 1 + }, + "track": { + "specs": "ortc", + "exposed": "Window", + "name": "track", + "type": "MediaStreamTrack", + "type-original": "MediaStreamTrack", + "read-only": 1 + }, + "onerror": { + "specs": "ortc", + "name": "onerror", + "type-original": "EventHandler?", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "error" + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "ORTC", + "name": "error", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "ORTC", + "name": "ssrcconflict", + "type": "RTCSsrcConflictEvent", + "skips-window": 1 + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "setTrack": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "track", + "type": "MediaStreamTrack", + "type-original": "MediaStreamTrack" + } + ], + "type-original": "void" + } + ], + "specs": "ortc", + "exposed": "Window", + "name": "setTrack" + }, + "stop": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "ortc", + "exposed": "Window", + "name": "stop" + }, + "send": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "parameters", + "type": "RTCRtpParameters", + "type-original": "RTCRtpParameters" + } + ], + "type-original": "void" + } + ], + "specs": "ortc", + "exposed": "Window", + "name": "send" + }, + "setTransport": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "transport", + "type": [ + { + "type": "RTCDtlsTransport" + }, + { + "type": "RTCSrtpSdesTransport" + } + ], + "type-original": "RTCTransport" + }, + { + "name": "rtcpTransport", + "type": "RTCDtlsTransport", + "optional": 1, + "type-original": "RTCDtlsTransport" + } + ], + "type-original": "void" + } + ], + "specs": "ortc", + "exposed": "Window", + "name": "setTransport" + }, + "getCapabilities": { + "signature": [ + { + "param-min-required": 0, + "type": "RTCRtpCapabilities", + "param": [ + { + "name": "kind", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + } + ], + "type-original": "RTCRtpCapabilities" + } + ], + "specs": "ortc", + "exposed": "Window", + "name": "getCapabilities", + "static": 1 + } + } + }, + "extends": "RTCStatsProvider" + }, + "XPathResult": { + "dataslot": [ + { + "name": "valueCache" + } + ], + "specs": "dom-level-3-xpath", + "anonymous-methods": { + "method": [] + }, + "name": "XPathResult", + "properties": { + "property": { + "invalidIteratorState": { + "specs": "dom-level-3-xpath", + "exposed": "Window", + "name": "invalidIteratorState", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "stringValue": { + "specs": "dom-level-3-xpath", + "exposed": "Window", + "name": "stringValue", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "numberValue": { + "specs": "dom-level-3-xpath", + "exposed": "Window", + "name": "numberValue", + "type": "double", + "type-original": "double", + "read-only": 1 + }, + "singleNodeValue": { + "specs": "dom-level-3-xpath", + "exposed": "Window", + "name": "singleNodeValue", + "type": "Node", + "type-original": "Node", + "read-only": 1 + }, + "booleanValue": { + "specs": "dom-level-3-xpath", + "exposed": "Window", + "name": "booleanValue", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "snapshotLength": { + "specs": "dom-level-3-xpath", + "exposed": "Window", + "name": "snapshotLength", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + }, + "resultType": { + "specs": "dom-level-3-xpath", + "exposed": "Window", + "name": "resultType", + "type": "unsigned short", + "type-original": "unsigned short", + "read-only": 1 + } + } + }, + "constants": { + "constant": { + "FIRST_ORDERED_NODE_TYPE": { + "specs": "dom-level-3-xpath", + "value": "9", + "exposed": "Window", + "name": "FIRST_ORDERED_NODE_TYPE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "UNORDERED_NODE_ITERATOR_TYPE": { + "specs": "dom-level-3-xpath", + "value": "4", + "exposed": "Window", + "name": "UNORDERED_NODE_ITERATOR_TYPE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "ORDERED_NODE_SNAPSHOT_TYPE": { + "specs": "dom-level-3-xpath", + "value": "7", + "exposed": "Window", + "name": "ORDERED_NODE_SNAPSHOT_TYPE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "NUMBER_TYPE": { + "specs": "dom-level-3-xpath", + "value": "1", + "exposed": "Window", + "name": "NUMBER_TYPE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "ANY_TYPE": { + "specs": "dom-level-3-xpath", + "value": "0", + "exposed": "Window", + "name": "ANY_TYPE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "ORDERED_NODE_ITERATOR_TYPE": { + "specs": "dom-level-3-xpath", + "value": "5", + "exposed": "Window", + "name": "ORDERED_NODE_ITERATOR_TYPE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "ANY_UNORDERED_NODE_TYPE": { + "specs": "dom-level-3-xpath", + "value": "8", + "exposed": "Window", + "name": "ANY_UNORDERED_NODE_TYPE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "STRING_TYPE": { + "specs": "dom-level-3-xpath", + "value": "2", + "exposed": "Window", + "name": "STRING_TYPE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "BOOLEAN_TYPE": { + "specs": "dom-level-3-xpath", + "value": "3", + "exposed": "Window", + "name": "BOOLEAN_TYPE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "UNORDERED_NODE_SNAPSHOT_TYPE": { + "specs": "dom-level-3-xpath", + "value": "6", + "exposed": "Window", + "name": "UNORDERED_NODE_SNAPSHOT_TYPE", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "exposed": "Window", + "methods": { + "method": { + "snapshotItem": { + "signature": [ + { + "param-min-required": 1, + "type": "Node", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "Node" + } + ], + "specs": "dom-level-3-xpath", + "exposed": "Window", + "name": "snapshotItem" + }, + "iterateNext": { + "signature": [ + { + "type": "Node", + "type-original": "Node" + } + ], + "specs": "dom-level-3-xpath", + "exposed": "Window", + "name": "iterateNext" + } + } + }, + "extends": "Object" + }, + "ScopedCredentialInfo": { + "specs": "webauthn", + "anonymous-methods": { + "method": [] + }, + "name": "ScopedCredentialInfo", + "properties": { + "property": { + "publicKey": { + "specs": "WD-webauthn-20160928", + "exposed": "Window", + "name": "publicKey", + "type": "CryptoKey", + "type-original": "CryptoKey", + "read-only": 1 + }, + "credential": { + "specs": "WD-webauthn-20161207", + "exposed": "Window", + "name": "credential", + "type": "ScopedCredential", + "type-original": "ScopedCredential", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "Object", + "secure-context": 1 + }, + "SpeechSynthesisUtterance": { + "specs": "speech-api", + "constructor": { + "specs": "speech-api", + "signature": [ + { + "type": "SpeechSynthesisUtterance", + "type-original": "SpeechSynthesisUtterance" + }, + { + "param-min-required": 1, + "type": "SpeechSynthesisUtterance", + "param": [ + { + "name": "text", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "SpeechSynthesisUtterance" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "SpeechSynthesisUtterance", + "properties": { + "property": { + "volume": { + "specs": "speech-api", + "exposed": "Window", + "name": "volume", + "type": "float", + "type-original": "float" + }, + "lang": { + "specs": "speech-api", + "exposed": "Window", + "name": "lang", + "type": "DOMString", + "type-original": "DOMString" + }, + "onmark": { + "specs": "speech-api", + "name": "onmark", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "mark" + }, + "onpause": { + "specs": "speech-api", + "name": "onpause", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "pause" + }, + "onresume": { + "specs": "speech-api", + "name": "onresume", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "resume" + }, + "voice": { + "specs": "speech-api", + "exposed": "Window", + "name": "voice", + "type": "SpeechSynthesisVoice", + "type-original": "SpeechSynthesisVoice" + }, + "rate": { + "specs": "speech-api", + "exposed": "Window", + "name": "rate", + "type": "float", + "type-original": "float" + }, + "onboundary": { + "specs": "speech-api", + "name": "onboundary", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "boundary" + }, + "text": { + "specs": "speech-api", + "exposed": "Window", + "name": "text", + "type": "DOMString", + "type-original": "DOMString" + }, + "onend": { + "specs": "speech-api", + "name": "onend", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "end" + }, + "onerror": { + "specs": "speech-api", + "name": "onerror", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "error" + }, + "pitch": { + "specs": "speech-api", + "exposed": "Window", + "name": "pitch", + "type": "float", + "type-original": "float" + }, + "onstart": { + "specs": "speech-api", + "name": "onstart", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "start" + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "Speech", + "name": "start", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "Speech", + "name": "pause", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "Speech", + "name": "resume", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "Speech", + "name": "end", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "Speech", + "name": "error", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "Speech", + "name": "mark", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "Speech", + "name": "boundary", + "type": "Event", + "skips-window": 1 + } + ] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "EventTarget" + }, + "SVGFEFuncAElement": { + "specs": "filter-effects", + "anonymous-methods": { + "method": [] + }, + "name": "SVGFEFuncAElement", + "properties": { + "property": {} + }, + "element": [ + { + "specs": "filter-effects", + "namespace": "SVG", + "name": "feFuncA" + } + ], + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "SVGComponentTransferFunctionElement" + }, + "SVGFETileElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "linearRGB auto sRGB inherit", + "value-syntax": "enum", + "name": "color-interpolation-filters" + } + ] + }, + "specs": "filter-effects", + "anonymous-methods": { + "method": [] + }, + "name": "SVGFETileElement", + "properties": { + "property": { + "in1": { + "content-attribute-enum-values": "SourceGraphic SourceAlpha BackgroundImage BackgroundAlpha FillPaint StrokePaint", + "specs": "filter-effects", + "name": "in1", + "constant": 1, + "content-attribute": "in", + "type-original": "SVGAnimatedString", + "exposed": "Window", + "content-attribute-value-syntax": "filter_result_ref", + "type": "SVGAnimatedString", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "filter-effects", + "namespace": "SVG", + "name": "feTile" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGElement", + "implements": [ + "SVGFilterPrimitiveStandardAttributes" + ] + }, + "SVGFEBlendElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "linearRGB auto sRGB inherit", + "value-syntax": "enum", + "name": "color-interpolation-filters" + } + ] + }, + "specs": "filter-effects", + "anonymous-methods": { + "method": [] + }, + "name": "SVGFEBlendElement", + "properties": { + "property": { + "in2": { + "content-attribute-enum-values": "SourceGraphic SourceAlpha BackgroundImage BackgroundAlpha FillPaint StrokePaint", + "specs": "filter-effects", + "name": "in2", + "constant": 1, + "content-attribute": "in2", + "type-original": "SVGAnimatedString", + "exposed": "Window", + "content-attribute-value-syntax": "filter_result_ref", + "type": "SVGAnimatedString", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "mode": { + "content-attribute-enum-values": "normal multiply screen darken lighten", + "specs": "filter-effects", + "name": "mode", + "constant": 1, + "content-attribute": "mode", + "type-original": "SVGAnimatedEnumeration", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "SVGAnimatedEnumeration", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "in1": { + "content-attribute-enum-values": "SourceGraphic SourceAlpha BackgroundImage BackgroundAlpha FillPaint StrokePaint", + "specs": "filter-effects", + "name": "in1", + "constant": 1, + "content-attribute": "in", + "type-original": "SVGAnimatedString", + "exposed": "Window", + "content-attribute-value-syntax": "filter_result_ref", + "type": "SVGAnimatedString", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "filter-effects", + "namespace": "SVG", + "name": "feBlend" + } + ], + "constants": { + "constant": { + "SVG_FEBLEND_MODE_HUE": { + "specs": "filter-effects", + "value": "13", + "exposed": "Window", + "name": "SVG_FEBLEND_MODE_HUE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_FEBLEND_MODE_LUMINOSITY": { + "specs": "filter-effects", + "value": "16", + "exposed": "Window", + "name": "SVG_FEBLEND_MODE_LUMINOSITY", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_FEBLEND_MODE_UNKNOWN": { + "specs": "filter-effects", + "value": "0", + "exposed": "Window", + "name": "SVG_FEBLEND_MODE_UNKNOWN", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_FEBLEND_MODE_NORMAL": { + "specs": "filter-effects", + "value": "1", + "exposed": "Window", + "name": "SVG_FEBLEND_MODE_NORMAL", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_FEBLEND_MODE_EXCLUSION": { + "specs": "filter-effects", + "value": "12", + "exposed": "Window", + "name": "SVG_FEBLEND_MODE_EXCLUSION", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_FEBLEND_MODE_SOFT_LIGHT": { + "specs": "filter-effects", + "value": "10", + "exposed": "Window", + "name": "SVG_FEBLEND_MODE_SOFT_LIGHT", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_FEBLEND_MODE_SATURATION": { + "specs": "filter-effects", + "value": "14", + "exposed": "Window", + "name": "SVG_FEBLEND_MODE_SATURATION", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_FEBLEND_MODE_COLOR_DODGE": { + "specs": "filter-effects", + "value": "7", + "exposed": "Window", + "name": "SVG_FEBLEND_MODE_COLOR_DODGE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_FEBLEND_MODE_LIGHTEN": { + "specs": "filter-effects", + "value": "5", + "exposed": "Window", + "name": "SVG_FEBLEND_MODE_LIGHTEN", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_FEBLEND_MODE_DIFFERENCE": { + "specs": "filter-effects", + "value": "11", + "exposed": "Window", + "name": "SVG_FEBLEND_MODE_DIFFERENCE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_FEBLEND_MODE_DARKEN": { + "specs": "filter-effects", + "value": "4", + "exposed": "Window", + "name": "SVG_FEBLEND_MODE_DARKEN", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_FEBLEND_MODE_COLOR_BURN": { + "specs": "filter-effects", + "value": "8", + "exposed": "Window", + "name": "SVG_FEBLEND_MODE_COLOR_BURN", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_FEBLEND_MODE_COLOR": { + "specs": "filter-effects", + "value": "15", + "exposed": "Window", + "name": "SVG_FEBLEND_MODE_COLOR", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_FEBLEND_MODE_OVERLAY": { + "specs": "filter-effects", + "value": "6", + "exposed": "Window", + "name": "SVG_FEBLEND_MODE_OVERLAY", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_FEBLEND_MODE_MULTIPLY": { + "specs": "filter-effects", + "value": "2", + "exposed": "Window", + "name": "SVG_FEBLEND_MODE_MULTIPLY", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_FEBLEND_MODE_SCREEN": { + "specs": "filter-effects", + "value": "3", + "exposed": "Window", + "name": "SVG_FEBLEND_MODE_SCREEN", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_FEBLEND_MODE_HARD_LIGHT": { + "specs": "filter-effects", + "value": "9", + "exposed": "Window", + "name": "SVG_FEBLEND_MODE_HARD_LIGHT", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGElement", + "implements": [ + "SVGFilterPrimitiveStandardAttributes" + ] + }, + "DynamicsCompressorNode": { + "constants": { + "constant": {} + }, + "specs": "webaudio", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "DynamicsCompressorNode", + "extends": "AudioNode", + "properties": { + "property": { + "ratio": { + "specs": "webaudio", + "exposed": "Window", + "name": "ratio", + "type": "AudioParam", + "type-original": "AudioParam", + "read-only": 1 + }, + "threshold": { + "specs": "webaudio", + "exposed": "Window", + "name": "threshold", + "type": "AudioParam", + "type-original": "AudioParam", + "read-only": 1 + }, + "attack": { + "specs": "webaudio", + "exposed": "Window", + "name": "attack", + "type": "AudioParam", + "type-original": "AudioParam", + "read-only": 1 + }, + "release": { + "specs": "webaudio", + "exposed": "Window", + "name": "release", + "type": "AudioParam", + "type-original": "AudioParam", + "read-only": 1 + }, + "reduction": { + "specs": "webaudio", + "exposed": "Window", + "name": "reduction", + "type": "float", + "type-original": "float", + "read-only": 1 + }, + "knee": { + "specs": "webaudio", + "exposed": "Window", + "name": "knee", + "type": "AudioParam", + "type-original": "AudioParam", + "read-only": 1 + } + } + } + }, + "HTMLTimeElement": { + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLTimeElement", + "properties": { + "property": { + "dateTime": { + "specs": "html5", + "ce-reactions": 1, + "name": "dateTime", + "content-attribute": "datetime", + "type-original": "DOMString", + "content-attribute-value-syntax": "date_time", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "time" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "CSSStyleDeclaration": { + "specs": "cssom dom-level-2-style", + "anonymous-methods": { + "method": [] + }, + "name": "CSSStyleDeclaration", + "properties": { + "property": { + "textAlignLast": { + "css-property-initial": "auto", + "specs": "css-text", + "ce-reactions": 1, + "name": "textAlignLast", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "text-align-last", + "exposed": "Window", + "css-property-enum-values": "auto center inherit justify left right inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "backgroundAttachment": { + "css-property-initial": "scroll", + "specs": "css-background", + "ce-reactions": 1, + "name": "backgroundAttachment", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "background-attachment", + "exposed": "Window", + "css-property-enum-values": "scroll fixed local inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_enums" + }, + "animationIterationCount": { + "css-property-initial": "1", + "specs": "css-animation", + "ce-reactions": 1, + "name": "animationIterationCount", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "animation-iteration-count", + "exposed": "Window", + "css-property-enum-values": "infinite inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_non_negative_integer" + }, + "orphans": { + "css-property-initial": "2", + "specs": "css-break", + "ce-reactions": 1, + "name": "orphans", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "orphans", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_or_greater_integer" + }, + "counterIncrement": { + "css-property-initial": "none", + "specs": "css-lists", + "ce-reactions": 1, + "name": "counterIncrement", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "counter-increment", + "exposed": "Window", + "css-property-enum-values": "none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "space_separated_token_and_optional_signed_integer" + }, + "animationDelay": { + "css-property-initial": "0", + "specs": "css-animation", + "ce-reactions": 1, + "name": "animationDelay", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "animation-delay", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_css_times" + }, + "cssText": { + "specs": "cssom dom-level-2-style", + "ce-reactions": 1, + "name": "cssText", + "tags": "CSSOM", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString" + }, + "gridTemplate": { + "specs": "css-grid", + "ce-reactions": 1, + "name": "gridTemplate", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "grid-template", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "none inherit initial", + "css-property-subproperties": "grid-template-areas grid-template-columns grid-template-rows", + "type": "DOMString", + "css-property-value-syntax": "slash_separated_grid_dimension_lists_or_grid_area_list_with_line_names" + }, + "layoutGridLine": { + "css-property-initial": "none", + "specs": "css-text", + "ce-reactions": 1, + "name": "layoutGridLine", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "layout-grid-line", + "exposed": "Window", + "css-property-enum-values": "none auto inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length" + }, + "columnRuleWidth": { + "css-property-initial": "medium", + "specs": "css-multicol", + "ce-reactions": 1, + "name": "columnRuleWidth", + "tags": "CSSOM", + "type-original": "any", + "css-property": "column-rule-width", + "exposed": "Window", + "css-property-enum-values": "thin medium thick inherit initial", + "type": "any", + "css-property-value-syntax": "css_length" + }, + "webkitUserModify": { + "css-property-initial": "read-only", + "specs": "none", + "ce-reactions": 1, + "name": "webkitUserModify", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-user-modify", + "exposed": "Window", + "css-property-enum-values": "read-only read-write read-write-plaintext-only inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "webkitAppearance": { + "css-property-initial": "none", + "specs": "none", + "ce-reactions": 1, + "name": "webkitAppearance", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-appearance", + "exposed": "Window", + "css-property-enum-values": "none button textfield inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "pointerEvents": { + "css-property-initial": "auto", + "specs": "svg11 pointer-events", + "ce-reactions": 1, + "name": "pointerEvents", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "pointer-events", + "exposed": "Window", + "css-property-enum-values": "auto none visiblePainted visibleFill visibleStroke visible painted fill stroke all inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "rotate": { + "css-property-initial": "0deg 0 0 1", + "specs": "css-transform", + "ce-reactions": 1, + "name": "rotate", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "css-property": "rotate", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_css_angle_followed_by_optional_3_space_separated_floating_point_number" + }, + "webkitTransitionDuration": { + "css-property-initial": "0", + "specs": "none css-transition", + "ce-reactions": 1, + "name": "webkitTransitionDuration", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-transition-duration", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_css_times" + }, + "webkitAnimationName": { + "css-property-initial": "none", + "specs": "none css-animation", + "ce-reactions": 1, + "name": "webkitAnimationName", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-animation-name", + "exposed": "Window", + "css-property-enum-values": "none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_keyframes_refs" + }, + "msGridRowAlign": { + "css-property-initial": "stretch", + "specs": "css-grid none", + "ce-reactions": 1, + "name": "msGridRowAlign", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-ms-grid-row-align", + "exposed": "Window", + "css-property-enum-values": "stretch start end center inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "msGridColumn": { + "css-property-initial": "1", + "specs": "css-grid none", + "ce-reactions": 1, + "name": "msGridColumn", + "tags": "CSSOM", + "type-original": "any", + "css-property": "-ms-grid-column", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "any", + "css-property-value-syntax": "1_or_greater_integer" + }, + "webkitColumnWidth": { + "css-property-initial": "auto", + "specs": "none css-multicol", + "ce-reactions": 1, + "name": "webkitColumnWidth", + "tags": "CSSOM", + "type-original": "any", + "css-property": "-webkit-column-width", + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "type": "any", + "css-property-value-syntax": "css_length" + }, + "cursor": { + "css-property-initial": "auto", + "specs": "css-ui", + "ce-reactions": 1, + "name": "cursor", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "cursor", + "exposed": "Window", + "css-property-enum-values": "auto default none context-menu help pointer progress wait cell crosshair text vertical-text alias copy move no-drop not-allowed e-resize n-resize ne-resize nw-resize s-resize se-resize sw-resize w-resize ew-resize ns-resize nesw-resize nwse-resize col-resize row-resize all-scroll zoom-in zoom-out inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_css_url_with_optional_x_y_offset_followed_by_enum" + }, + "webkitBoxFlex": { + "css-property-initial": "0", + "specs": "none css-flexbox", + "ce-reactions": 1, + "name": "webkitBoxFlex", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-box-flex", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "non_negative_integer" + }, + "listStylePosition": { + "css-property-initial": "outside", + "specs": "css-lists", + "ce-reactions": 1, + "name": "listStylePosition", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "list-style-position", + "exposed": "Window", + "css-property-enum-values": "inside outside inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "wordWrap": { + "css-property-initial": "normal", + "specs": "css-text", + "ce-reactions": 1, + "name": "wordWrap", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "word-wrap", + "exposed": "Window", + "css-property-enum-values": "normal break-word inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "webkitAnimationFillMode": { + "css-property-initial": "none", + "specs": "none css-animation", + "ce-reactions": 1, + "name": "webkitAnimationFillMode", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-animation-fill-mode", + "exposed": "Window", + "css-property-enum-values": "none forwards backwards both inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_enums" + }, + "borderImageWidth": { + "css-property-initial": "1px", + "specs": "css-background", + "ce-reactions": 1, + "name": "borderImageWidth", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "border-image-width", + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_to_4_space_separated_css_percentage_or_length_or_non_negative_integer" + }, + "webkitTransition": { + "specs": "none css-transition", + "ce-reactions": 1, + "name": "webkitTransition", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "-webkit-transition", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "css-property-subproperties": "-webkit-transition-property -webkit-transition-duration -webkit-transition-timing-function -webkit-transition-delay", + "type": "DOMString", + "css-property-value-syntax": "css_transition" + }, + "webkitTransformOrigin": { + "css-property-initial": "50% 50%", + "specs": "none css-transform", + "ce-reactions": 1, + "name": "webkitTransformOrigin", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-transform-origin", + "exposed": "Window", + "css-property-enum-values": "left center right top bottom inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_transform_origin" + }, + "direction": { + "css-property-initial": "ltr", + "specs": "css-writing-modes", + "ce-reactions": 1, + "name": "direction", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "direction", + "exposed": "Window", + "css-property-enum-values": "ltr rtl inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "alignmentBaseline": { + "css-property-initial": "auto", + "specs": "svg11", + "ce-reactions": 1, + "name": "alignmentBaseline", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "alignment-baseline", + "exposed": "Window", + "css-property-enum-values": "auto baseline before-edge text-before-edge middle central after-edge text-after-edge ideographic alphabetic hanging mathematical inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "strokeMiterlimit": { + "css-property-initial": "4", + "specs": "svg11", + "ce-reactions": 1, + "name": "strokeMiterlimit", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "stroke-miterlimit", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_or_greater_floating_point_number" + }, + "msScrollSnapY": { + "specs": "none", + "ce-reactions": 1, + "name": "msScrollSnapY", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "-ms-scroll-snap-y", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "none proximity mandatory inherit initial", + "css-property-subproperties": "-ms-scroll-snap-type -ms-scroll-snap-points-y", + "type": "DOMString", + "css-property-value-syntax": "css_snap_type_and_points" + }, + "verticalAlign": { + "css-property-initial": "baseline", + "specs": "css21", + "ce-reactions": 1, + "name": "verticalAlign", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "vertical-align", + "exposed": "Window", + "css-property-enum-values": "baseline auto sub super top middle bottom text-top text-bottom inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "msImeAlign": { + "css-property-initial": "auto", + "specs": "none", + "ce-reactions": 1, + "name": "msImeAlign", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-ms-ime-align", + "exposed": "Window", + "css-property-enum-values": "auto after inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "overflow": { + "css-property-initial": "visible", + "specs": "css-box", + "ce-reactions": 1, + "name": "overflow", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "overflow", + "exposed": "Window", + "css-property-enum-values": "visible hidden scroll auto inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "flexShrink": { + "css-property-initial": "1", + "specs": "css-flexbox", + "ce-reactions": 1, + "name": "flexShrink", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "flex-shrink", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_or_greater_integer" + }, + "webkitFlexBasis": { + "css-property-initial": "auto", + "specs": "none css-flexbox", + "ce-reactions": 1, + "name": "webkitFlexBasis", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-flex-basis", + "exposed": "Window", + "css-property-enum-values": "auto content inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length" + }, + "borderLeftStyle": { + "css-property-initial": "none", + "specs": "css-background", + "ce-reactions": 1, + "name": "borderLeftStyle", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "border-left-style", + "exposed": "Window", + "css-property-enum-values": "none hidden dotted dashed solid double groove ridge inset outset inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "emptyCells": { + "css-property-initial": "show", + "specs": "css21", + "ce-reactions": 1, + "name": "emptyCells", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "empty-cells", + "exposed": "Window", + "css-property-enum-values": "show hide inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "stopOpacity": { + "css-property-initial": "1", + "specs": "svg11", + "ce-reactions": 1, + "name": "stopOpacity", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "stop-opacity", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "0_to_1_floating_point_number" + }, + "paddingRight": { + "css-property-initial": "0", + "specs": "css-box", + "ce-reactions": 1, + "name": "paddingRight", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "padding-right", + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length" + }, + "background": { + "specs": "css-background", + "ce-reactions": 1, + "name": "background", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "css-property": "background", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "none left center right top bottom scroll fixed local repeat-x repeat-y repeat space round no-repeat inherit initial", + "css-property-subproperties": "background-attachment background-clip background-color background-image background-origin background-position background-repeat background-size", + "type": "DOMString", + "css-property-value-syntax": "css_background" + }, + "webkitTextFillColor": { + "css-property-initial": "currentColor", + "specs": "none", + "ce-reactions": 1, + "name": "webkitTextFillColor", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "-webkit-text-fill-color", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_color" + }, + "animationPlayState": { + "css-property-initial": "running", + "specs": "css-animation", + "ce-reactions": 1, + "name": "animationPlayState", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "animation-play-state", + "exposed": "Window", + "css-property-enum-values": "running paused inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_enums" + }, + "transformOrigin": { + "css-property-aliases": "-ms-transform-origin", + "css-property-initial": "50% 50%", + "specs": "css-transform", + "ce-reactions": 1, + "name": "transformOrigin", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "transform-origin", + "exposed": "Window", + "css-property-enum-values": "left center right top bottom inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_transform_origin" + }, + "left": { + "css-property-initial": "auto", + "specs": "css21", + "ce-reactions": 1, + "name": "left", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "left", + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length" + }, + "glyphOrientationHorizontal": { + "css-property-initial": "0", + "specs": "svg11", + "ce-reactions": 1, + "name": "glyphOrientationHorizontal", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "glyph-orientation-horizontal", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_angle" + }, + "display": { + "css-property-initial": "inline", + "specs": "css-grid css-ruby css-flexbox css21", + "ce-reactions": 1, + "name": "display", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "display", + "exposed": "Window", + "css-property-enum-values": "inline block inline-block list-item table inline-table table-header-group table-footer-group table-row-group table-column-group table-row table-column table-cell table-caption run-in ruby ruby-base ruby-text ruby-base-container flex inline-flex grid line-grid -ms-grid -ms-inline-grid none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "breakBefore": { + "css-property-initial": "auto", + "specs": "css-break css-multicol", + "ce-reactions": 1, + "name": "breakBefore", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "break-before", + "exposed": "Window", + "css-property-enum-values": "auto always avoid left right page column avoid-page avoid-column inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "order": { + "css-property-initial": "0", + "specs": "css-flexbox", + "ce-reactions": 1, + "name": "order", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "order", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "signed_integer" + }, + "cssFloat": { + "css-property-initial": "none", + "specs": "css-box", + "ce-reactions": 1, + "name": "cssFloat", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "float", + "exposed": "Window", + "css-property-enum-values": "left right none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "strokeDasharray": { + "css-property-initial": "none", + "specs": "svg11", + "ce-reactions": 1, + "name": "strokeDasharray", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "stroke-dasharray", + "exposed": "Window", + "css-property-enum-values": "none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_or_space_separated_css_percentage_or_length" + }, + "webkitPerspective": { + "css-property-initial": "none", + "specs": "none css-transform", + "ce-reactions": 1, + "name": "webkitPerspective", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-perspective", + "exposed": "Window", + "css-property-enum-values": "none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_length" + }, + "webkitJustifyContent": { + "css-property-initial": "normal", + "specs": "none css-align-3", + "ce-reactions": 1, + "name": "webkitJustifyContent", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-justify-content", + "exposed": "Window", + "css-property-enum-values": "normal first last baseline space-between space-around space-evenly stretch unsafe safe center start end flex-start flex-end left right inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_to_4_space_separated_enums" + }, + "animationDirection": { + "css-property-initial": "normal", + "specs": "css-animation", + "ce-reactions": 1, + "name": "animationDirection", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "animation-direction", + "exposed": "Window", + "css-property-enum-values": "normal reverse alternate alternate-reverse inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_enums" + }, + "animationDuration": { + "css-property-initial": "0", + "specs": "css-animation", + "ce-reactions": 1, + "name": "animationDuration", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "animation-duration", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_css_times" + }, + "rubyAlign": { + "css-property-initial": "auto", + "specs": "css-ruby", + "ce-reactions": 1, + "name": "rubyAlign", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "ruby-align", + "exposed": "Window", + "css-property-enum-values": "auto left center right distribute-letter distribute-space line-edge inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "webkitTransformStyle": { + "css-property-initial": "flat", + "specs": "none css-transform", + "ce-reactions": 1, + "name": "webkitTransformStyle", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-transform-style", + "exposed": "Window", + "css-property-enum-values": "flat preserve-3d inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "webkitPerspectiveOrigin": { + "css-property-initial": "50% 50%", + "specs": "none css-transform", + "ce-reactions": 1, + "name": "webkitPerspectiveOrigin", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-perspective-origin", + "exposed": "Window", + "css-property-enum-values": "left right center top bottom inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_or_2_space_separated_css_percentage_or_length" + }, + "fontSizeAdjust": { + "css-property-initial": "none", + "specs": "css-fonts", + "ce-reactions": 1, + "name": "fontSizeAdjust", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "font-size-adjust", + "exposed": "Window", + "css-property-enum-values": "none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "floating_point_number" + }, + "borderLeftColor": { + "css-property-initial": "currentColor", + "specs": "css-background", + "ce-reactions": 1, + "name": "borderLeftColor", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "border-left-color", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_color" + }, + "msGridRow": { + "css-property-initial": "1", + "specs": "css-grid none", + "ce-reactions": 1, + "name": "msGridRow", + "tags": "CSSOM", + "type-original": "any", + "css-property": "-ms-grid-row", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "any", + "css-property-value-syntax": "1_or_greater_integer" + }, + "webkitBorderTopLeftRadius": { + "css-property-initial": "0", + "specs": "none css-background", + "ce-reactions": 1, + "name": "webkitBorderTopLeftRadius", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-border-top-left-radius", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_or_2_space_separated_css_percentage_or_length" + }, + "borderImage": { + "specs": "css-background", + "ce-reactions": 1, + "name": "borderImage", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "border-image", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "none fill auto stretch repeat round space inherit initial", + "css-property-subproperties": "border-image-source border-image-slice border-image-width border-image-outset border-image-repeat", + "type": "DOMString", + "css-property-value-syntax": "css_border_image" + }, + "webkitTransitionProperty": { + "css-property-initial": "all", + "specs": "none css-transition", + "ce-reactions": 1, + "name": "webkitTransitionProperty", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-transition-property", + "exposed": "Window", + "css-property-enum-values": "none all inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_tokens" + }, + "msTextCombineHorizontal": { + "css-property-initial": "none", + "specs": "none css-writing-modes", + "ce-reactions": 1, + "name": "msTextCombineHorizontal", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-ms-text-combine-horizontal", + "exposed": "Window", + "css-property-enum-values": "none all digits inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_text_combine_enum_and_digit" + }, + "webkitBackgroundClip": { + "css-property-initial": "border-box", + "specs": "none css-background", + "ce-reactions": 1, + "name": "webkitBackgroundClip", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-background-clip", + "exposed": "Window", + "css-property-enum-values": "border-box padding-box content-box inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_enums" + }, + "textOverflow": { + "css-property-initial": "clip", + "specs": "css-ui", + "ce-reactions": 1, + "name": "textOverflow", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "text-overflow", + "exposed": "Window", + "css-property-enum-values": "clip ellipsis inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "webkitTextStrokeColor": { + "css-property-initial": "black", + "specs": "none", + "ce-reactions": 1, + "name": "webkitTextStrokeColor", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "-webkit-text-stroke-color", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_color" + }, + "columnSpan": { + "css-property-initial": "none", + "specs": "css-multicol", + "ce-reactions": 1, + "name": "columnSpan", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "column-span", + "exposed": "Window", + "css-property-enum-values": "none all inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "msContentZooming": { + "css-property-initial": "none", + "specs": "none", + "ce-reactions": 1, + "name": "msContentZooming", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-ms-content-zooming", + "exposed": "Window", + "css-property-enum-values": "none zoom inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "msScrollSnapPointsX": { + "css-property-initial": "snapInterval(0, 100%)", + "specs": "none css-snappoints", + "ce-reactions": 1, + "name": "msScrollSnapPointsX", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-ms-scroll-snap-points-x", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "snap_interval_or_snap_list" + }, + "listStyle": { + "specs": "css-lists", + "ce-reactions": 1, + "name": "listStyle", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "list-style", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "none inside outside disc circle square decimal decimal-leading-zero lower-roman upper-roman lower-greek lower-latin upper-latin armenian georgian lower-alpha upper-alpha none inherit initial", + "css-property-subproperties": "list-style-type list-style-position list-style-image", + "type": "DOMString", + "css-property-value-syntax": "css_list_style" + }, + "dominantBaseline": { + "css-property-initial": "auto", + "specs": "svg11", + "ce-reactions": 1, + "name": "dominantBaseline", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "dominant-baseline", + "exposed": "Window", + "css-property-enum-values": "auto use-script no-change reset-size ideographic alphabetic hanging mathematical central middle text-after-edge text-before-edge inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "overflowY": { + "css-property-initial": "visible", + "specs": "css-box", + "ce-reactions": 1, + "name": "overflowY", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "overflow-y", + "exposed": "Window", + "css-property-enum-values": "visible scroll hidden auto inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "captionSide": { + "css-property-initial": "top", + "specs": "css-writing-modes css21", + "ce-reactions": 1, + "name": "captionSide", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "caption-side", + "exposed": "Window", + "css-property-enum-values": "top bottom left right inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "boxShadow": { + "css-property-initial": "none", + "specs": "css-background", + "ce-reactions": 1, + "name": "boxShadow", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "box-shadow", + "exposed": "Window", + "css-property-enum-values": "none inset inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_2_or_4_css_lengths_with_optional_css_color" + }, + "borderCollapse": { + "css-property-initial": "separate", + "specs": "css21", + "ce-reactions": 1, + "name": "borderCollapse", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "border-collapse", + "exposed": "Window", + "css-property-enum-values": "separate collapse inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "grid": { + "specs": "css-grid", + "ce-reactions": 1, + "name": "grid", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "grid", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "css-property-subproperties": "grid-auto-columns grid-auto-flow grid-auto-rows grid-template-areas grid-template-columns grid-template-rows", + "type": "DOMString", + "css-property-value-syntax": "grid_template_or_slash_separated_grid_dimension_lists_with_auto_flow_specifications" + }, + "backgroundSize": { + "css-property-initial": "auto", + "specs": "css-background", + "ce-reactions": 1, + "name": "backgroundSize", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "background-size", + "exposed": "Window", + "css-property-enum-values": "auto cover contain inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_1_or_2_space_separated_css_percentage_or_length" + }, + "transitionDuration": { + "css-property-aliases": "-ms-transition-duration", + "css-property-initial": "0", + "specs": "css-transition", + "ce-reactions": 1, + "name": "transitionDuration", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "transition-duration", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_css_times" + }, + "textDecoration": { + "css-property-initial": "none", + "specs": "css-text-decor", + "ce-reactions": 1, + "name": "textDecoration", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "text-decoration", + "exposed": "Window", + "css-property-enum-values": "none underline overline line-through blink inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "strokeDashoffset": { + "css-property-initial": "0", + "specs": "svg11", + "ce-reactions": 1, + "name": "strokeDashoffset", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "stroke-dashoffset", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length" + }, + "webkitFlexShrink": { + "css-property-initial": "1", + "specs": "none css-flexbox", + "ce-reactions": 1, + "name": "webkitFlexShrink", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-flex-shrink", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_or_greater_integer" + }, + "webkitColumnRule": { + "specs": "none css-multicol", + "ce-reactions": 1, + "name": "webkitColumnRule", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "-webkit-column-rule", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "transparent thin medium thick inherit initial", + "css-property-subproperties": "-webkit-column-rule-color -webkit-column-rule-style -webkit-column-rule-width", + "type": "DOMString", + "css-property-value-syntax": "1_to_3_space_separated_of_css_length_css_color_and_enum" + }, + "webkitColumnCount": { + "css-property-initial": "auto", + "specs": "none css-multicol", + "ce-reactions": 1, + "name": "webkitColumnCount", + "tags": "CSSOM", + "type-original": "any", + "css-property": "-webkit-column-count", + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "type": "any", + "css-property-value-syntax": "css_length" + }, + "webkitTextStrokeWidth": { + "css-property-initial": "0", + "specs": "none", + "ce-reactions": 1, + "name": "webkitTextStrokeWidth", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "-webkit-text-stroke-width", + "exposed": "Window", + "css-property-enum-values": "inherit initial unset thin medium thick", + "type": "DOMString", + "css-property-value-syntax": "css_length" + }, + "pageBreakBefore": { + "css-property-initial": "auto", + "specs": "css-break", + "ce-reactions": 1, + "name": "pageBreakBefore", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "page-break-before", + "exposed": "Window", + "css-property-enum-values": "auto always avoid left right inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "border": { + "specs": "css-background", + "ce-reactions": 1, + "name": "border", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "css-property": "border", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "none hidden dotted dashed solid double groove ridge inset outset thin medium thick inherit initial", + "css-property-subproperties": "border-top border-right border-bottom border-left", + "type": "DOMString", + "css-property-value-syntax": "1_to_3_space_separated_of_css_length_css_color_and_enum" + }, + "webkitTransitionDelay": { + "css-property-initial": "0", + "specs": "none css-transition", + "ce-reactions": 1, + "name": "webkitTransitionDelay", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-transition-delay", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_css_times" + }, + "borderTopRightRadius": { + "css-property-initial": "0", + "specs": "css-background", + "ce-reactions": 1, + "name": "borderTopRightRadius", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "border-top-right-radius", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_or_2_space_separated_css_percentage_or_length" + }, + "borderBottomLeftRadius": { + "css-property-initial": "0", + "specs": "css-background", + "ce-reactions": 1, + "name": "borderBottomLeftRadius", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "border-bottom-left-radius", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_or_2_space_separated_css_percentage_or_length" + }, + "alignSelf": { + "css-property-initial": "auto", + "specs": "css-align-3", + "ce-reactions": 1, + "name": "alignSelf", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "align-self", + "exposed": "Window", + "css-property-enum-values": "auto normal stretch baseline last-baseline center start end self-start self-end flex-start flex-end left right unsafe safe inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_or_2_space_separated_enums" + }, + "webkitAnimationDuration": { + "css-property-initial": "0", + "specs": "none css-animation", + "ce-reactions": 1, + "name": "webkitAnimationDuration", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-animation-duration", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_css_times" + }, + "fontFamily": { + "css-property-initial": "serif", + "specs": "css-fonts", + "ce-reactions": 1, + "name": "fontFamily", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "font-family", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_css_font_family_followed_by_generic_family" + }, + "content": { + "css-property-initial": "normal", + "specs": "css21", + "ce-reactions": 1, + "name": "content", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "content", + "exposed": "Window", + "css-property-enum-values": "normal none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_content" + }, + "layoutGridChar": { + "css-property-initial": "none", + "specs": "css-text", + "ce-reactions": 1, + "name": "layoutGridChar", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "layout-grid-char", + "exposed": "Window", + "css-property-enum-values": "none auto inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length" + }, + "backgroundClip": { + "css-property-initial": "border-box", + "specs": "css-background", + "ce-reactions": 1, + "name": "backgroundClip", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "background-clip", + "exposed": "Window", + "css-property-enum-values": "border-box padding-box content-box inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_enums" + }, + "webkitColumnGap": { + "css-property-initial": "normal", + "specs": "none css-align-3", + "ce-reactions": 1, + "name": "webkitColumnGap", + "tags": "CSSOM", + "type-original": "any", + "css-property": "-webkit-column-gap", + "exposed": "Window", + "css-property-enum-values": "normal inherit initial", + "type": "any", + "css-property-value-syntax": "css_percentage_or_length" + }, + "counterReset": { + "css-property-initial": "none", + "specs": "css-lists", + "ce-reactions": 1, + "name": "counterReset", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "counter-reset", + "exposed": "Window", + "css-property-enum-values": "none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "space_separated_token_and_optional_signed_integer" + }, + "msScrollSnapX": { + "specs": "none", + "ce-reactions": 1, + "name": "msScrollSnapX", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "-ms-scroll-snap-x", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "none proximity mandatory inherit initial", + "css-property-subproperties": "-ms-scroll-snap-type -ms-scroll-snap-points-x", + "type": "DOMString", + "css-property-value-syntax": "css_snap_type_and_points" + }, + "alignContent": { + "css-property-initial": "normal", + "specs": "css-align-3", + "ce-reactions": 1, + "name": "alignContent", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "align-content", + "exposed": "Window", + "css-property-enum-values": "normal first last baseline space-between space-around space-evenly stretch unsafe safe center start end flex-start flex-end left right inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_to_4_space_separated_enums" + }, + "columnRuleColor": { + "css-property-initial": "currentColor", + "specs": "css-multicol", + "ce-reactions": 1, + "name": "columnRuleColor", + "tags": "CSSOM", + "type-original": "any", + "css-property": "column-rule-color", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "any", + "css-property-value-syntax": "css_color" + }, + "webkitUserSelect": { + "css-property-initial": "text", + "specs": "none", + "ce-reactions": 1, + "name": "webkitUserSelect", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-user-select", + "exposed": "Window", + "css-property-enum-values": "text none element all inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "outlineWidth": { + "css-property-initial": "medium", + "specs": "css-ui", + "ce-reactions": 1, + "name": "outlineWidth", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "outline-width", + "exposed": "Window", + "css-property-enum-values": "thin medium thick inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_length" + }, + "layoutGrid": { + "specs": "css-text", + "ce-reactions": 1, + "name": "layoutGrid", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "layout-grid", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "none auto line char both loose strict fixed inherit initial", + "css-property-subproperties": "layout-grid-mode layout-grid-type layout-grid-line layout-grid-char", + "type": "DOMString", + "css-property-value-syntax": "css_layout_grid" + }, + "marginRight": { + "css-property-initial": "0", + "specs": "css-box", + "ce-reactions": 1, + "name": "marginRight", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "margin-right", + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length" + }, + "transitionDelay": { + "css-property-aliases": "-ms-transition-delay", + "css-property-initial": "0", + "specs": "css-transition", + "ce-reactions": 1, + "name": "transitionDelay", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "transition-delay", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_css_times" + }, + "wordBreak": { + "css-property-initial": "normal", + "specs": "css-text", + "ce-reactions": 1, + "name": "wordBreak", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "word-break", + "exposed": "Window", + "css-property-enum-values": "normal break-all keep-all inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "msFlowFrom": { + "css-property-initial": "none", + "specs": "none css-regions", + "ce-reactions": 1, + "name": "msFlowFrom", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-ms-flow-from", + "exposed": "Window", + "css-property-enum-values": "none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_tokens" + }, + "msScrollSnapType": { + "css-property-initial": "none", + "specs": "none css-snappoints", + "ce-reactions": 1, + "name": "msScrollSnapType", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-ms-scroll-snap-type", + "exposed": "Window", + "css-property-enum-values": "none proximity mandatory inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "marginTop": { + "css-property-initial": "0", + "specs": "css-box", + "ce-reactions": 1, + "name": "marginTop", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "margin-top", + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length" + }, + "backgroundPositionX": { + "css-property-initial": "0%", + "specs": "none", + "ce-reactions": 1, + "name": "backgroundPositionX", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "background-position-x", + "exposed": "Window", + "css-property-enum-values": "left center right inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length" + }, + "gridRowGap": { + "css-property-initial": "normal", + "specs": "css-align-3", + "ce-reactions": 1, + "name": "gridRowGap", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "grid-row-gap", + "exposed": "Window", + "css-property-enum-values": "normal inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length" + }, + "touchAction": { + "css-property-initial": "auto", + "specs": "pointer-events", + "ce-reactions": 1, + "name": "touchAction", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "touch-action", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "auto none pan-x pan-y manipulation pinch-zoom double-tap-zoom inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "top": { + "css-property-initial": "auto", + "specs": "css21", + "ce-reactions": 1, + "name": "top", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "top", + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length" + }, + "msScrollRails": { + "css-property-initial": "railed", + "specs": "none", + "ce-reactions": 1, + "name": "msScrollRails", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-ms-scroll-rails", + "exposed": "Window", + "css-property-enum-values": "railed none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "borderRight": { + "specs": "css-background", + "ce-reactions": 1, + "name": "borderRight", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "css-property": "border-right", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "none hidden dotted dashed solid double groove ridge inset outset thin medium thick inherit initial", + "css-property-subproperties": "border-right-width border-right-style border-right-color", + "type": "DOMString", + "css-property-value-syntax": "1_to_3_space_separated_of_css_length_css_color_and_enum" + }, + "width": { + "css-property-initial": "auto", + "specs": "css-box", + "ce-reactions": 1, + "name": "width", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "width", + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length" + }, + "webkitFlexDirection": { + "css-property-initial": "row", + "specs": "none css-flexbox", + "ce-reactions": 1, + "name": "webkitFlexDirection", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-flex-direction", + "exposed": "Window", + "css-property-enum-values": "row row-reverse column column-reverse inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "enableBackground": { + "css-property-initial": "accumulate", + "specs": "svg11", + "ce-reactions": 1, + "name": "enableBackground", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "enable-background", + "exposed": "Window", + "css-property-enum-values": "accumulate inherit initial", + "type": "DOMString", + "css-property-value-syntax": "svg_enum_new_followed_by_svg_viewbox" + }, + "webkitBorderRadius": { + "specs": "none css-background", + "ce-reactions": 1, + "name": "webkitBorderRadius", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "-webkit-border-radius", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "css-property-subproperties": "-webkit-border-top-left-radius -webkit-border-top-right-radius -webkit-border-bottom-right-radius -webkit-border-bottom-left-radius", + "type": "DOMString", + "css-property-value-syntax": "0_or_1_slash_separated_1_to_4_css_percentage_or_length" + }, + "webkitBorderImage": { + "specs": "none css-background", + "ce-reactions": 1, + "name": "webkitBorderImage", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "-webkit-border-image", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "none fill auto stretch repeat round space inherit initial", + "css-property-subproperties": "border-image-source border-image-slice border-image-width border-image-outset border-image-repeat", + "type": "DOMString", + "css-property-value-syntax": "css_border_image" + }, + "kerning": { + "css-property-initial": "auto", + "specs": "svg11", + "ce-reactions": 1, + "name": "kerning", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "kerning", + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_length" + }, + "msHyphenateLimitLines": { + "css-property-initial": "no-limit", + "specs": "none", + "ce-reactions": 1, + "name": "msHyphenateLimitLines", + "tags": "CSSOM", + "type-original": "any", + "css-property": "-ms-hyphenate-limit-lines", + "exposed": "Window", + "css-property-enum-values": "no-limit inherit initial", + "type": "any", + "css-property-value-syntax": "non_negative_integer" + }, + "pageBreakAfter": { + "css-property-initial": "auto", + "specs": "css-break", + "ce-reactions": 1, + "name": "pageBreakAfter", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "page-break-after", + "exposed": "Window", + "css-property-enum-values": "auto always avoid left right inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "msScrollLimit": { + "specs": "none", + "ce-reactions": 1, + "name": "msScrollLimit", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "-ms-scroll-limit", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "css-property-subproperties": "-ms-scroll-limit-x-min -ms-scroll-limit-y-min -ms-scroll-limit-x-max -ms-scroll-limit-y-max", + "type": "DOMString", + "css-property-value-syntax": "1_to_4_space_separated_css_lengths" + }, + "animation": { + "specs": "css-animation", + "ce-reactions": 1, + "name": "animation", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "animation", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "css-property-subproperties": "animation-duration animation-timing-function animation-delay animation-iteration-count animation-direction animation-fill-mode animation-play-state animation-name", + "type": "DOMString", + "css-property-value-syntax": "css_animation" + }, + "fontStretch": { + "css-property-initial": "normal", + "specs": "css-fonts", + "ce-reactions": 1, + "name": "fontStretch", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "font-stretch", + "exposed": "Window", + "css-property-enum-values": "normal wider narrower ultra-condensed extra-condensed condensed semi-condensed semi-expanded expanded extra-expanded ultra-expanded inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "borderBottomStyle": { + "css-property-initial": "none", + "specs": "css-background", + "ce-reactions": 1, + "name": "borderBottomStyle", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "border-bottom-style", + "exposed": "Window", + "css-property-enum-values": "none hidden dotted dashed solid double groove ridge inset outset inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "strokeOpacity": { + "css-property-initial": "1", + "specs": "svg11", + "ce-reactions": 1, + "name": "strokeOpacity", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "stroke-opacity", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "0_to_1_floating_point_number" + }, + "textCombineUpright": { + "css-property-aliases": "-ms-text-combine-horizontal", + "css-property-initial": "none", + "specs": "none css-writing-modes", + "ce-reactions": 1, + "name": "textCombineUpright", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "text-combine-upright", + "exposed": "Window", + "css-property-enum-values": "none all digits inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_text_combine_enum_and_digit" + }, + "bottom": { + "css-property-initial": "auto", + "specs": "css21", + "ce-reactions": 1, + "name": "bottom", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "bottom", + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length" + }, + "webkitFilter": { + "css-property-initial": "none", + "specs": "none filter-effects", + "ce-reactions": 1, + "name": "webkitFilter", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-filter", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "space_separated_filter_functions" + }, + "msScrollLimitYMin": { + "css-property-initial": "0", + "specs": "none", + "ce-reactions": 1, + "name": "msScrollLimitYMin", + "tags": "CSSOM", + "type-original": "any", + "css-property": "-ms-scroll-limit-y-min", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "any", + "css-property-value-syntax": "css_length" + }, + "justifyContent": { + "css-property-initial": "normal", + "specs": "css-align-3", + "ce-reactions": 1, + "name": "justifyContent", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "justify-content", + "exposed": "Window", + "css-property-enum-values": "normal first last baseline space-between space-around space-evenly stretch unsafe safe center start end flex-start flex-end left right inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_to_4_space_separated_enums" + }, + "borderLeftWidth": { + "css-property-initial": "medium", + "specs": "css-background", + "ce-reactions": 1, + "name": "borderLeftWidth", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "border-left-width", + "exposed": "Window", + "css-property-enum-values": "thin medium thick inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_length" + }, + "backgroundPosition": { + "specs": "css-background", + "ce-reactions": 1, + "name": "backgroundPosition", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "css-property": "background-position", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "left center right top bottom inherit initial", + "css-property-subproperties": "background-position-x background-position-y", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_0_to_2_css_percentage_or_length" + }, + "strokeLinecap": { + "css-property-initial": "butt", + "specs": "svg11", + "ce-reactions": 1, + "name": "strokeLinecap", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "stroke-linecap", + "exposed": "Window", + "css-property-enum-values": "butt round square inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "outlineStyle": { + "css-property-initial": "none", + "specs": "css-ui", + "ce-reactions": 1, + "name": "outlineStyle", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "outline-style", + "exposed": "Window", + "css-property-enum-values": "auto none dotted dashed solid double groove ridge inset outset inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "webkitColumnRuleStyle": { + "css-property-initial": "none", + "specs": "none css-multicol", + "ce-reactions": 1, + "name": "webkitColumnRuleStyle", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-column-rule-style", + "exposed": "Window", + "css-property-enum-values": "none hidden dotted dashed solid double groove ridge inset outset inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "borderTop": { + "specs": "css-background", + "ce-reactions": 1, + "name": "borderTop", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "css-property": "border-top", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "none hidden dotted dashed solid double groove ridge inset outset thin medium thick inherit initial", + "css-property-subproperties": "border-top-width border-top-style border-top-color", + "type": "DOMString", + "css-property-value-syntax": "1_to_3_space_separated_of_css_length_css_color_and_enum" + }, + "paddingBottom": { + "css-property-initial": "0", + "specs": "css-box", + "ce-reactions": 1, + "name": "paddingBottom", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "padding-bottom", + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length" + }, + "outlineColor": { + "css-property-initial": "invert", + "specs": "css-ui", + "ce-reactions": 1, + "name": "outlineColor", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "outline-color", + "exposed": "Window", + "css-property-enum-values": "invert inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_color" + }, + "font": { + "specs": "css-fonts", + "ce-reactions": 1, + "name": "font", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "css-property": "font", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "caption icon menu message-box small-caption status-bar inherit initial", + "css-property-subproperties": "font-style font-variant font-weight font-stretch font-size line-height font-family", + "type": "DOMString", + "css-property-value-syntax": "css_font" + }, + "flexBasis": { + "css-property-initial": "auto", + "specs": "css-flexbox", + "ce-reactions": 1, + "name": "flexBasis", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "flex-basis", + "exposed": "Window", + "css-property-enum-values": "auto content inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length" + }, + "justifyItems": { + "css-property-initial": "legacy", + "specs": "none css-align-3", + "ce-reactions": 1, + "name": "justifyItems", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "justify-items", + "exposed": "Window", + "css-property-enum-values": "legacy normal stretch first last baseline safe unsafe start end self-start self-end left right flex-start flex-end center inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_or_2_space_separated_enums" + }, + "gap": { + "specs": "css-align-3", + "ce-reactions": 1, + "type-original": "DOMString?", + "css-property-animatable": 1, + "css-property": "gap", + "css-property-initial": "normal normal", + "name": "gap", + "css-property-shorthand": 1, + "tags": "CSSOM", + "nullable": 1, + "css-property-enum-values": "inherit initial", + "exposed": "Window", + "type": "DOMString", + "css-property-subproperties": "row-gap column-gap", + "css-property-value-syntax": "1_or_2_space_separated_css_percentage_or_length" + }, + "justifySelf": { + "css-property-initial": "auto", + "specs": "none css-align-3", + "ce-reactions": 1, + "name": "justifySelf", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "justify-self", + "exposed": "Window", + "css-property-enum-values": "auto normal stretch first last baseline safe unsafe start end self-start self-end left right flex-start flex-end center inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_or_2_space_separated_enums" + }, + "fillOpacity": { + "css-property-initial": "1", + "specs": "svg11", + "ce-reactions": 1, + "name": "fillOpacity", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "fill-opacity", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "0_to_1_floating_point_number" + }, + "letterSpacing": { + "css-property-initial": "normal", + "specs": "css-text", + "ce-reactions": 1, + "name": "letterSpacing", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "letter-spacing", + "exposed": "Window", + "css-property-enum-values": "normal inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_length" + }, + "borderSpacing": { + "css-property-initial": "0", + "specs": "css21", + "ce-reactions": 1, + "name": "borderSpacing", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "border-spacing", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_or_2_space_separated_css_percentage_or_length" + }, + "msUserSelect": { + "css-property-initial": "text", + "specs": "none", + "ce-reactions": 1, + "name": "msUserSelect", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-ms-user-select", + "exposed": "Window", + "css-property-enum-values": "text none element all inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "textKashida": { + "css-property-initial": "0", + "specs": "none", + "ce-reactions": 1, + "name": "textKashida", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "text-kashida", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage" + }, + "webkitBoxOrdinalGroup": { + "css-property-initial": "1", + "specs": "none css-flexbox", + "ce-reactions": 1, + "name": "webkitBoxOrdinalGroup", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-box-ordinal-group", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_or_greater_integer" + }, + "borderImageOutset": { + "css-property-initial": "0", + "specs": "css-background", + "ce-reactions": 1, + "name": "borderImageOutset", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "border-image-outset", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_to_4_space_separated_css_length_or_non_negative_integer" + }, + "animationName": { + "css-property-initial": "none", + "specs": "css-animation", + "ce-reactions": 1, + "name": "animationName", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "animation-name", + "exposed": "Window", + "css-property-enum-values": "none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_keyframes_refs" + }, + "webkitFlexFlow": { + "specs": "none css-flexbox", + "ce-reactions": 1, + "name": "webkitFlexFlow", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "-webkit-flex-flow", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "row row-reverse column column-reverse nowrap wrap wrap-reverse inherit initial", + "css-property-subproperties": "-webkit-flex-direction -webkit-flex-wrap", + "type": "DOMString", + "css-property-value-syntax": "1_or_2_space_separated_enums" + }, + "borderRadius": { + "specs": "css-background", + "ce-reactions": 1, + "name": "borderRadius", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "css-property": "border-radius", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "css-property-subproperties": "border-top-left-radius border-top-right-radius border-bottom-right-radius border-bottom-left-radius", + "type": "DOMString", + "css-property-value-syntax": "0_or_1_slash_separated_1_to_4_css_percentage_or_length" + }, + "msContentZoomLimitMax": { + "css-property-initial": "400%", + "specs": "none", + "ce-reactions": 1, + "name": "msContentZoomLimitMax", + "tags": "CSSOM", + "type-original": "any", + "css-property": "-ms-content-zoom-limit-max", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "any", + "css-property-value-syntax": "css_percentage" + }, + "borderWidth": { + "specs": "css-background", + "ce-reactions": 1, + "name": "borderWidth", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "css-property": "border-width", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "thin medium thick inherit initial", + "css-property-subproperties": "border-top-width border-right-width border-bottom-width border-left-width", + "type": "DOMString", + "css-property-value-syntax": "1_to_4_space_separated_css_lengths" + }, + "objectPosition": { + "css-property-initial": "50% 50%", + "specs": "css-images", + "ce-reactions": 1, + "name": "objectPosition", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "object-position", + "exposed": "Window", + "css-property-enum-values": "left right center top bottom inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_or_2_space_separated_css_percentage_or_length" + }, + "gridTemplateRows": { + "css-property-initial": "none", + "specs": "css-grid-1", + "ce-reactions": 1, + "name": "gridTemplateRows", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "grid-template-rows", + "exposed": "Window", + "css-property-enum-values": "none auto min-content max-content inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_grid_dimension_list" + }, + "borderBottomRightRadius": { + "css-property-initial": "0", + "specs": "css-background", + "ce-reactions": 1, + "name": "borderBottomRightRadius", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "border-bottom-right-radius", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_or_2_space_separated_css_percentage_or_length" + }, + "msScrollChaining": { + "css-property-initial": "chained", + "specs": "none", + "ce-reactions": 1, + "name": "msScrollChaining", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-ms-scroll-chaining", + "exposed": "Window", + "css-property-enum-values": "chained none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "scale": { + "css-property-initial": "0 0 0", + "specs": "css-transform", + "ce-reactions": 1, + "name": "scale", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "css-property": "scale", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_to_3_space_separated_floating_point_number" + }, + "whiteSpace": { + "css-property-initial": "normal", + "specs": "css-text", + "ce-reactions": 1, + "name": "whiteSpace", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "white-space", + "exposed": "Window", + "css-property-enum-values": "normal pre nowrap pre-wrap pre-line inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "msTextSizeAdjust": { + "css-property-initial": "auto", + "specs": "none css-size-adjust", + "ce-reactions": 1, + "name": "msTextSizeAdjust", + "tags": "CSSOM", + "type-original": "any", + "css-property": "-ms-text-size-adjust", + "exposed": "Window", + "css-property-enum-values": "auto none inherit initial", + "type": "any", + "css-property-value-syntax": "css_percentage" + }, + "webkitColumnRuleColor": { + "css-property-initial": "currentColor", + "specs": "none css-multicol", + "ce-reactions": 1, + "name": "webkitColumnRuleColor", + "tags": "CSSOM", + "type-original": "any", + "css-property": "-webkit-column-rule-color", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "any", + "css-property-value-syntax": "css_color" + }, + "borderImageSource": { + "css-property-initial": "none", + "specs": "css-background", + "ce-reactions": 1, + "name": "borderImageSource", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "border-image-source", + "exposed": "Window", + "css-property-enum-values": "none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_url" + }, + "borderColor": { + "specs": "css-background", + "ce-reactions": 1, + "name": "borderColor", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "css-property": "border-color", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "css-property-subproperties": "border-top-color border-right-color border-bottom-color border-left-color", + "type": "DOMString", + "css-property-value-syntax": "1_to_4_space_separated_css_color" + }, + "borderTopLeftRadius": { + "css-property-initial": "0", + "specs": "css-background", + "ce-reactions": 1, + "name": "borderTopLeftRadius", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "border-top-left-radius", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_or_2_space_separated_css_percentage_or_length" + }, + "msGridRowSpan": { + "css-property-initial": "1", + "specs": "css-grid none", + "ce-reactions": 1, + "name": "msGridRowSpan", + "tags": "CSSOM", + "type-original": "any", + "css-property": "-ms-grid-row-span", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "any", + "css-property-value-syntax": "non_negative_integer" + }, + "msContentZoomSnap": { + "specs": "none", + "ce-reactions": 1, + "name": "msContentZoomSnap", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "-ms-content-zoom-snap", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "css-property-subproperties": "-ms-content-zoom-snap-type -ms-content-zoom-snap-points", + "type": "DOMString", + "css-property-value-syntax": "css_snap_type_and_points" + }, + "lineBreak": { + "css-property-initial": "normal", + "specs": "css-text", + "ce-reactions": 1, + "name": "lineBreak", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "line-break", + "exposed": "Window", + "css-property-enum-values": "normal strict inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "markerMid": { + "css-property-initial": "none", + "specs": "svg11", + "ce-reactions": 1, + "name": "markerMid", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "marker-mid", + "exposed": "Window", + "css-property-enum-values": "none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_url_of_local_id_ref" + }, + "gridAutoRows": { + "css-property-initial": "auto", + "specs": "css-grid-1", + "ce-reactions": 1, + "name": "gridAutoRows", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "grid-auto-rows", + "exposed": "Window", + "css-property-enum-values": "auto min-content max-content inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_grid_dimension_list" + }, + "webkitBoxPack": { + "css-property-initial": "start", + "specs": "none css-flexbox", + "ce-reactions": 1, + "name": "webkitBoxPack", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-box-pack", + "exposed": "Window", + "css-property-enum-values": "start center end justify inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "webkitBorderTopRightRadius": { + "css-property-initial": "0", + "specs": "none css-background", + "ce-reactions": 1, + "name": "webkitBorderTopRightRadius", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-border-top-right-radius", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_or_2_space_separated_css_percentage_or_length" + }, + "breakAfter": { + "css-property-initial": "auto", + "specs": "css-break css-multicol", + "ce-reactions": 1, + "name": "breakAfter", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "break-after", + "exposed": "Window", + "css-property-enum-values": "auto always avoid left right page column avoid-page avoid-column inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "flexDirection": { + "css-property-initial": "row", + "specs": "css-flexbox", + "ce-reactions": 1, + "name": "flexDirection", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "flex-direction", + "exposed": "Window", + "css-property-enum-values": "row row-reverse column column-reverse inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "textAlign": { + "css-property-initial": "left", + "specs": "css-text", + "ce-reactions": 1, + "name": "textAlign", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "text-align", + "exposed": "Window", + "css-property-enum-values": "left right center justify inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "webkitColumnBreakBefore": { + "css-property-initial": "auto", + "specs": "none css-multicol", + "ce-reactions": 1, + "name": "webkitColumnBreakBefore", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-column-break-before", + "exposed": "Window", + "css-property-enum-values": "auto always avoid inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "webkitAnimationIterationCount": { + "css-property-initial": "1", + "specs": "none css-animation", + "ce-reactions": 1, + "name": "webkitAnimationIterationCount", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-animation-iteration-count", + "exposed": "Window", + "css-property-enum-values": "infinite inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_non_negative_integer" + }, + "visibility": { + "css-property-initial": "visible", + "specs": "css21 css-box", + "ce-reactions": 1, + "name": "visibility", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "visibility", + "exposed": "Window", + "css-property-enum-values": "visible hidden collapse inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "floodColor": { + "css-property-initial": "black", + "specs": "svg11", + "ce-reactions": 1, + "name": "floodColor", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "flood-color", + "exposed": "Window", + "css-property-enum-values": "currentColor inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_color" + }, + "textShadow": { + "css-property-initial": "none", + "specs": "css-text-decor", + "ce-reactions": 1, + "name": "textShadow", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "text-shadow", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_text_shadow_list" + }, + "borderRightStyle": { + "css-property-initial": "none", + "specs": "css-background", + "ce-reactions": 1, + "name": "borderRightStyle", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "border-right-style", + "exposed": "Window", + "css-property-enum-values": "none hidden dotted dashed solid double groove ridge inset outset inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "backfaceVisibility": { + "css-property-initial": "visible", + "specs": "css-transform", + "ce-reactions": 1, + "name": "backfaceVisibility", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "backface-visibility", + "exposed": "Window", + "css-property-enum-values": "visible hidden inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "alignItems": { + "css-property-initial": "normal", + "specs": "css-align-3", + "ce-reactions": 1, + "name": "alignItems", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "align-items", + "exposed": "Window", + "css-property-enum-values": "normal stretch baseline last-baseline center start end self-start self-end flex-start flex-end left right unsafe safe inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_or_2_space_separated_enums" + }, + "objectFit": { + "css-property-initial": "fill", + "specs": "css-images", + "ce-reactions": 1, + "name": "objectFit", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "object-fit", + "exposed": "Window", + "css-property-enum-values": "fill contain cover none scale-down inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "gridGap": { + "css-property-initial": "normal normal", + "specs": "css-align-3", + "ce-reactions": 1, + "name": "gridGap", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "grid-gap", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "css-property-subproperties": "grid-row-gap grid-column-gap", + "type": "DOMString", + "css-property-value-syntax": "1_or_2_space_separated_css_percentage_or_length" + }, + "borderImageRepeat": { + "css-property-initial": "stretch", + "specs": "css-background", + "ce-reactions": 1, + "name": "borderImageRepeat", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "border-image-repeat", + "exposed": "Window", + "css-property-enum-values": "stretch repeat round space inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_or_2_space_separated_enums" + }, + "borderStyle": { + "specs": "css-background", + "ce-reactions": 1, + "name": "borderStyle", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "border-style", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "none hidden dotted dashed solid double groove ridge inset outset inherit initial", + "css-property-subproperties": "border-top-style border-right-style border-bottom-style border-left-style", + "type": "DOMString", + "css-property-value-syntax": "1_to_4_space_separated_enums" + }, + "webkitColumnBreakInside": { + "css-property-initial": "auto", + "specs": "none css-multicol", + "ce-reactions": 1, + "name": "webkitColumnBreakInside", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-column-break-inside", + "exposed": "Window", + "css-property-enum-values": "auto always avoid inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "borderTopColor": { + "css-property-initial": "currentColor", + "specs": "css-background", + "ce-reactions": 1, + "name": "borderTopColor", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "border-top-color", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_color" + }, + "markerEnd": { + "css-property-initial": "none", + "specs": "svg11", + "ce-reactions": 1, + "name": "markerEnd", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "marker-end", + "exposed": "Window", + "css-property-enum-values": "none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_url_of_local_id_ref" + }, + "translate": { + "css-property-initial": "0px 0px 0px", + "specs": "css-transform", + "ce-reactions": 1, + "name": "translate", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "css-property": "translate", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_to_3_space_separated_css_length_and_first_two_optionally_percentage" + }, + "textIndent": { + "css-property-initial": "0", + "specs": "css-text", + "ce-reactions": 1, + "name": "textIndent", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "text-indent", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length" + }, + "listStyleImage": { + "css-property-initial": "none", + "specs": "css-lists", + "ce-reactions": 1, + "name": "listStyleImage", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "list-style-image", + "exposed": "Window", + "css-property-enum-values": "none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_url" + }, + "webkitTransitionTimingFunction": { + "css-property-initial": "ease", + "specs": "none css-transition", + "ce-reactions": 1, + "name": "webkitTransitionTimingFunction", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-transition-timing-function", + "exposed": "Window", + "css-property-enum-values": "step-start step-end ease ease-in ease-out ease-in-out linear inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_css_timing_functions" + }, + "gridArea": { + "css-property-initial": "auto", + "specs": "css-grid-1", + "ce-reactions": 1, + "name": "gridArea", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "grid-area", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "css-property-subproperties": "grid-row-start grid-column-start grid-row-end grid-column-end", + "type": "DOMString", + "css-property-value-syntax": "1_to_4_slash_separated_css_grid_lines" + }, + "msWrapThrough": { + "css-property-initial": "wrap", + "specs": "none css-exclusions", + "ce-reactions": 1, + "name": "msWrapThrough", + "tags": "CSSOM", + "type-original": "DOMString", + "css-property": "-ms-wrap-through", + "exposed": "Window", + "css-property-enum-values": "wrap none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "borderTopStyle": { + "css-property-initial": "none", + "specs": "css-background", + "ce-reactions": 1, + "name": "borderTopStyle", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "border-top-style", + "exposed": "Window", + "css-property-enum-values": "none hidden dotted dashed solid double groove ridge inset outset inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "columnRuleStyle": { + "css-property-initial": "none", + "specs": "css-multicol", + "ce-reactions": 1, + "name": "columnRuleStyle", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "column-rule-style", + "exposed": "Window", + "css-property-enum-values": "none hidden dotted dashed solid double groove ridge inset outset inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "opacity": { + "css-property-initial": "1", + "specs": "css-color", + "ce-reactions": 1, + "name": "opacity", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "opacity", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "0_to_1_floating_point_number" + }, + "color": { + "css-property-initial": "black", + "specs": "css-color", + "ce-reactions": 1, + "name": "color", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "color", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_color" + }, + "gridTemplateColumns": { + "css-property-initial": "none", + "specs": "css-grid-1", + "ce-reactions": 1, + "name": "gridTemplateColumns", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "grid-template-columns", + "exposed": "Window", + "css-property-enum-values": "none auto min-content max-content inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_grid_dimension_list" + }, + "maxWidth": { + "css-property-initial": "none", + "specs": "css-box", + "ce-reactions": 1, + "name": "maxWidth", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "max-width", + "exposed": "Window", + "css-property-enum-values": "none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length" + }, + "clip": { + "css-property-initial": "auto", + "specs": "css-masking css21", + "ce-reactions": 1, + "name": "clip", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "clip", + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_shape_rect" + }, + "webkitAlignContent": { + "css-property-initial": "normal", + "specs": "none css-align-3", + "ce-reactions": 1, + "name": "webkitAlignContent", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-align-content", + "exposed": "Window", + "css-property-enum-values": "normal first last baseline space-between space-around space-evenly stretch unsafe safe center start end flex-start flex-end left right inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_to_4_space_separated_enums" + }, + "webkitFlex": { + "specs": "none css-flexbox", + "ce-reactions": 1, + "name": "webkitFlex", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "-webkit-flex", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "auto content none inherit initial", + "css-property-subproperties": "-webkit-flex-grow -webkit-flex-shrink -webkit-flex-basis", + "type": "DOMString", + "css-property-value-syntax": "css_flex" + }, + "msTouchAction": { + "css-property-initial": "auto", + "specs": "none pointer-events", + "ce-reactions": 1, + "name": "msTouchAction", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "-ms-touch-action", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "auto none pan-x pan-y manipulation pinch-zoom double-tap-zoom inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "borderRightWidth": { + "css-property-initial": "medium", + "specs": "css-background", + "ce-reactions": 1, + "name": "borderRightWidth", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "border-right-width", + "exposed": "Window", + "css-property-enum-values": "thin medium thick inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_length" + }, + "mask": { + "css-property-initial": "none", + "specs": "svg11", + "ce-reactions": 1, + "name": "mask", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "mask", + "exposed": "Window", + "css-property-enum-values": "none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_url_of_local_id_ref" + }, + "transform": { + "css-property-aliases": "-ms-transform", + "css-property-initial": "none", + "specs": "css-transform", + "ce-reactions": 1, + "name": "transform", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "transform", + "exposed": "Window", + "css-property-enum-values": "none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_transform_list" + }, + "parentRule": { + "specs": "cssom dom-level-2-style", + "name": "parentRule", + "tags": "CSSOM", + "type-original": "CSSRule", + "exposed": "Window", + "type": "CSSRule", + "read-only": 1 + }, + "boxSizing": { + "css-property-initial": "content-box", + "specs": "css-ui", + "ce-reactions": 1, + "name": "boxSizing", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "box-sizing", + "exposed": "Window", + "css-property-enum-values": "content-box border-box inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "textJustify": { + "css-property-initial": "auto", + "specs": "css-text", + "ce-reactions": 1, + "name": "textJustify", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "text-justify", + "exposed": "Window", + "css-property-enum-values": "auto distribute distribute-all-lines distribute-center-last inter-cluster inter-ideograph inter-word kashida newspaper inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "colorInterpolationFilters": { + "css-property-initial": "linearRGB", + "specs": "svg11", + "ce-reactions": 1, + "name": "colorInterpolationFilters", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "color-interpolation-filters", + "exposed": "Window", + "css-property-enum-values": "linearRGB auto sRGB inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "gridRowStart": { + "css-property-initial": "auto", + "specs": "css-grid-1", + "ce-reactions": 1, + "name": "gridRowStart", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "grid-row-start", + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_grid_line" + }, + "height": { + "css-property-initial": "auto", + "specs": "css-box", + "ce-reactions": 1, + "name": "height", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "height", + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length" + }, + "transitionTimingFunction": { + "css-property-aliases": "-ms-transition-timing-function", + "css-property-initial": "ease", + "specs": "css-transition", + "ce-reactions": 1, + "name": "transitionTimingFunction", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "transition-timing-function", + "exposed": "Window", + "css-property-enum-values": "step-start step-end ease ease-in ease-out ease-in-out linear inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_css_timing_functions" + }, + "paddingTop": { + "css-property-initial": "0", + "specs": "css-box", + "ce-reactions": 1, + "name": "paddingTop", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "padding-top", + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length" + }, + "right": { + "css-property-initial": "auto", + "specs": "css21", + "ce-reactions": 1, + "name": "right", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "right", + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length" + }, + "length": { + "specs": "cssom dom-level-2-style", + "name": "length", + "tags": "CSSOM", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + }, + "baselineShift": { + "css-property-initial": "baseline", + "specs": "svg11", + "ce-reactions": 1, + "name": "baselineShift", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "baseline-shift", + "exposed": "Window", + "css-property-enum-values": "baseline sub super inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length" + }, + "borderLeft": { + "specs": "css-background", + "ce-reactions": 1, + "name": "borderLeft", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "css-property": "border-left", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "none hidden dotted dashed solid double groove ridge inset outset thin medium thick inherit initial", + "css-property-subproperties": "border-left-width border-left-style border-left-color", + "type": "DOMString", + "css-property-value-syntax": "1_to_3_space_separated_of_css_length_css_color_and_enum" + }, + "maskImage": { + "css-property-initial": "none", + "specs": "css-masking", + "ce-reactions": 1, + "name": "maskImage", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "mask-image", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_css_urls" + }, + "msContentZoomLimitMin": { + "css-property-initial": "100%", + "specs": "none", + "ce-reactions": 1, + "name": "msContentZoomLimitMin", + "tags": "CSSOM", + "type-original": "any", + "css-property": "-ms-content-zoom-limit-min", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "any", + "css-property-value-syntax": "css_percentage" + }, + "msFontFeatureSettings": { + "css-property-initial": "normal", + "specs": "none css-fonts", + "ce-reactions": 1, + "name": "msFontFeatureSettings", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-ms-font-feature-settings", + "exposed": "Window", + "css-property-enum-values": "normal inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_font_feature_tag" + }, + "widows": { + "css-property-initial": "2", + "specs": "css-break", + "ce-reactions": 1, + "name": "widows", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "widows", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_or_greater_integer" + }, + "webkitColumns": { + "specs": "none css-multicol", + "ce-reactions": 1, + "name": "webkitColumns", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "-webkit-columns", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "css-property-subproperties": "-webkit-column-width -webkit-column-count", + "type": "DOMString", + "css-property-value-syntax": "1_or_2_space_separated_css_length" + }, + "transitionProperty": { + "css-property-aliases": "-ms-transition-property", + "css-property-initial": "all", + "specs": "css-transition", + "ce-reactions": 1, + "name": "transitionProperty", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "transition-property", + "exposed": "Window", + "css-property-enum-values": "none all inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_tokens" + }, + "lineHeight": { + "css-property-initial": "normal", + "specs": "css21", + "ce-reactions": 1, + "name": "lineHeight", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "line-height", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length_or_floating_point_number" + }, + "textUnderlinePosition": { + "css-property-initial": "auto", + "specs": "css-text-decor", + "ce-reactions": 1, + "name": "textUnderlinePosition", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "text-underline-position", + "exposed": "Window", + "css-property-enum-values": "auto above below auto-pos inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "webkitAnimationDelay": { + "css-property-initial": "0", + "specs": "none css-animation", + "ce-reactions": 1, + "name": "webkitAnimationDelay", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-animation-delay", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_css_times" + }, + "textKashidaSpace": { + "css-property-initial": "0", + "specs": "none", + "ce-reactions": 1, + "name": "textKashidaSpace", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "text-kashida-space", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage" + }, + "fontFeatureSettings": { + "css-property-initial": "normal", + "specs": "css-fonts", + "ce-reactions": 1, + "name": "fontFeatureSettings", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "font-feature-settings", + "exposed": "Window", + "css-property-enum-values": "normal inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_font_feature_tag" + }, + "msFlowInto": { + "css-property-initial": "none", + "specs": "none css-regions", + "ce-reactions": 1, + "name": "msFlowInto", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-ms-flow-into", + "exposed": "Window", + "css-property-enum-values": "none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_tokens" + }, + "textAnchor": { + "css-property-initial": "start", + "specs": "svg11", + "ce-reactions": 1, + "name": "textAnchor", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "text-anchor", + "exposed": "Window", + "css-property-enum-values": "start middle end inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "msScrollSnapPointsY": { + "css-property-initial": "snapInterval(0, 100%)", + "specs": "none css-snappoints", + "ce-reactions": 1, + "name": "msScrollSnapPointsY", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-ms-scroll-snap-points-y", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "snap_interval_or_snap_list" + }, + "msOverflowStyle": { + "css-property-initial": "auto", + "specs": "none", + "ce-reactions": 1, + "name": "msOverflowStyle", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-ms-overflow-style", + "exposed": "Window", + "css-property-enum-values": "auto none scrollbar -ms-autohiding-scrollbar inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "msGridColumnSpan": { + "css-property-initial": "1", + "specs": "css-grid none", + "ce-reactions": 1, + "name": "msGridColumnSpan", + "tags": "CSSOM", + "type-original": "any", + "css-property": "-ms-grid-column-span", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "any", + "css-property-value-syntax": "non_negative_integer" + }, + "webkitOrder": { + "css-property-initial": "0", + "specs": "none css-flexbox", + "ce-reactions": 1, + "name": "webkitOrder", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-order", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "signed_integer" + }, + "columnFill": { + "css-property-initial": "balance", + "specs": "css-multicol", + "ce-reactions": 1, + "name": "columnFill", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "column-fill", + "exposed": "Window", + "css-property-enum-values": "auto balance inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "webkitTextStroke": { + "specs": "none", + "ce-reactions": 1, + "name": "webkitTextStroke", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "-webkit-text-stroke", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "thin medium thick unset inherit initial", + "css-property-subproperties": "-webkit-text-stroke-width -webkit-text-stroke-color", + "type": "DOMString", + "css-property-value-syntax": "1_or_2_space_separated_of_css_length_css_color_and_enum" + }, + "msScrollLimitYMax": { + "css-property-initial": "0", + "specs": "none", + "ce-reactions": 1, + "name": "msScrollLimitYMax", + "tags": "CSSOM", + "type-original": "any", + "css-property": "-ms-scroll-limit-y-max", + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "type": "any", + "css-property-value-syntax": "css_length" + }, + "backgroundImage": { + "css-property-initial": "none", + "specs": "css-background", + "ce-reactions": 1, + "name": "backgroundImage", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "background-image", + "exposed": "Window", + "css-property-enum-values": "none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_css_urls" + }, + "msGridColumnAlign": { + "css-property-initial": "stretch", + "specs": "css-grid none", + "ce-reactions": 1, + "name": "msGridColumnAlign", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-ms-grid-column-align", + "exposed": "Window", + "css-property-enum-values": "stretch start end center inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "perspectiveOrigin": { + "css-property-initial": "50% 50%", + "specs": "css-transform", + "ce-reactions": 1, + "name": "perspectiveOrigin", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "perspective-origin", + "exposed": "Window", + "css-property-enum-values": "left right center top bottom inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_or_2_space_separated_css_percentage_or_length" + }, + "webkitTransform": { + "css-property-initial": "none", + "specs": "none css-transform", + "ce-reactions": 1, + "name": "webkitTransform", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-transform", + "exposed": "Window", + "css-property-enum-values": "none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_transform_list" + }, + "columns": { + "specs": "css-multicol", + "ce-reactions": 1, + "name": "columns", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "columns", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "css-property-subproperties": "column-width column-count", + "type": "DOMString", + "css-property-value-syntax": "1_or_2_space_separated_css_length" + }, + "lightingColor": { + "css-property-initial": "white", + "specs": "svg11", + "ce-reactions": 1, + "name": "lightingColor", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "lighting-color", + "exposed": "Window", + "css-property-enum-values": "currentColor inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_color" + }, + "webkitWritingMode": { + "css-property-initial": "horizontal-tb", + "specs": "none css-writing-modes", + "ce-reactions": 1, + "name": "webkitWritingMode", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-writing-mode", + "exposed": "Window", + "css-property-enum-values": "horizontal-tb vertical-lr vertical-rl inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "listStyleType": { + "css-property-initial": "disc", + "specs": "css-lists", + "ce-reactions": 1, + "name": "listStyleType", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "list-style-type", + "exposed": "Window", + "css-property-enum-values": "disc circle square decimal decimal-leading-zero lower-roman upper-roman lower-greek lower-latin upper-latin armenian georgian lower-alpha upper-alpha none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "strokeWidth": { + "css-property-initial": "1", + "specs": "svg11", + "ce-reactions": 1, + "name": "strokeWidth", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "stroke-width", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length" + }, + "gridColumnStart": { + "css-property-initial": "auto", + "specs": "css-grid-1", + "ce-reactions": 1, + "name": "gridColumnStart", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "grid-column-start", + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_grid_line" + }, + "msHyphenateLimitChars": { + "css-property-initial": "auto", + "specs": "none", + "ce-reactions": 1, + "name": "msHyphenateLimitChars", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-ms-hyphenate-limit-chars", + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_to_3_space_separated_non_negative_integer" + }, + "webkitAlignSelf": { + "css-property-initial": "auto", + "specs": "none css-align-3", + "ce-reactions": 1, + "name": "webkitAlignSelf", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-align-self", + "exposed": "Window", + "css-property-enum-values": "auto normal stretch baseline last-baseline center start end self-start self-end flex-start flex-end left right unsafe safe inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_or_2_space_separated_enums" + }, + "fillRule": { + "css-property-initial": "nonzero", + "specs": "svg11", + "ce-reactions": 1, + "name": "fillRule", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "fill-rule", + "exposed": "Window", + "css-property-enum-values": "nonzero evenodd inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "borderBottomColor": { + "css-property-initial": "currentColor", + "specs": "css-background", + "ce-reactions": 1, + "name": "borderBottomColor", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "border-bottom-color", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_color" + }, + "gridAutoColumns": { + "css-property-initial": "auto", + "specs": "css-grid-1", + "ce-reactions": 1, + "name": "gridAutoColumns", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "grid-auto-columns", + "exposed": "Window", + "css-property-enum-values": "auto min-content max-content inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_grid_dimension_list" + }, + "zIndex": { + "css-property-initial": "auto", + "specs": "css21", + "ce-reactions": 1, + "name": "zIndex", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "z-index", + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "type": "DOMString", + "css-property-value-syntax": "signed_integer" + }, + "position": { + "css-property-initial": "static", + "specs": "css21", + "ce-reactions": 1, + "name": "position", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "position", + "exposed": "Window", + "css-property-enum-values": "static relative absolute fixed inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "layoutGridType": { + "css-property-initial": "loose", + "specs": "css-text", + "ce-reactions": 1, + "name": "layoutGridType", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "layout-grid-type", + "exposed": "Window", + "css-property-enum-values": "loose strict fixed inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "msContentZoomSnapPoints": { + "css-property-initial": "snapInterval(0%, 100%)", + "specs": "none", + "ce-reactions": 1, + "name": "msContentZoomSnapPoints", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-ms-content-zoom-snap-points", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "snap_interval_or_snap_list" + }, + "fill": { + "css-property-initial": "black", + "specs": "svg11", + "ce-reactions": 1, + "name": "fill", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "fill", + "exposed": "Window", + "css-property-enum-values": "none currentColor inherit initial", + "type": "DOMString", + "css-property-value-syntax": "svg_paint_or_css_color" + }, + "msScrollLimitXMin": { + "css-property-initial": "0", + "specs": "none", + "ce-reactions": 1, + "name": "msScrollLimitXMin", + "tags": "CSSOM", + "type-original": "any", + "css-property": "-ms-scroll-limit-x-min", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "any", + "css-property-value-syntax": "css_length" + }, + "gridColumn": { + "css-property-initial": "auto", + "specs": "css-grid-1", + "ce-reactions": 1, + "name": "gridColumn", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "grid-column", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "css-property-subproperties": "grid-column-start grid-column-end", + "type": "DOMString", + "css-property-value-syntax": "1_or_2_slash_separated_css_grid_lines" + }, + "webkitBoxSizing": { + "css-property-initial": "content-box", + "specs": "none css-ui", + "ce-reactions": 1, + "name": "webkitBoxSizing", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-box-sizing", + "exposed": "Window", + "css-property-enum-values": "content-box border-box inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "flexGrow": { + "css-property-initial": "0", + "specs": "css-flexbox", + "ce-reactions": 1, + "name": "flexGrow", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "flex-grow", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_or_greater_integer" + }, + "webkitAnimationDirection": { + "css-property-initial": "normal", + "specs": "none css-animation", + "ce-reactions": 1, + "name": "webkitAnimationDirection", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-animation-direction", + "exposed": "Window", + "css-property-enum-values": "normal reverse alternate alternate-reverse inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_enums" + }, + "tableLayout": { + "css-property-initial": "auto", + "specs": "css21", + "ce-reactions": 1, + "name": "tableLayout", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "table-layout", + "exposed": "Window", + "css-property-enum-values": "auto fixed inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "quotes": { + "css-property-initial": "none", + "specs": "css21", + "ce-reactions": 1, + "name": "quotes", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "quotes", + "exposed": "Window", + "css-property-enum-values": "none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "space_separated_strings" + }, + "unicodeBidi": { + "css-property-initial": "normal", + "specs": "css-writing-modes", + "ce-reactions": 1, + "name": "unicodeBidi", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "unicode-bidi", + "exposed": "Window", + "css-property-enum-values": "normal embed bidi-override inherit", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "borderBottomWidth": { + "css-property-initial": "medium", + "specs": "css-background", + "ce-reactions": 1, + "name": "borderBottomWidth", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "border-bottom-width", + "exposed": "Window", + "css-property-enum-values": "thin medium thick inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_length" + }, + "zoom": { + "css-property-aliases": "-ms-zoom", + "css-property-initial": "normal", + "specs": "none css-device-adapt", + "ce-reactions": 1, + "name": "zoom", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "zoom", + "exposed": "Window", + "css-property-enum-values": "normal inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_non_negative_floating_point_number" + }, + "msHyphens": { + "css-property-initial": "manual", + "specs": "css-text", + "ce-reactions": 1, + "name": "msHyphens", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-ms-hyphens", + "exposed": "Window", + "css-property-enum-values": "none manual auto inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "fontSize": { + "css-property-initial": "medium", + "specs": "css-fonts", + "ce-reactions": 1, + "name": "fontSize", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "font-size", + "exposed": "Window", + "css-property-enum-values": "smaller larger xx-small x-small small medium large x-large xx-large inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length" + }, + "msScrollLimitXMax": { + "css-property-initial": "0", + "specs": "none", + "ce-reactions": 1, + "name": "msScrollLimitXMax", + "tags": "CSSOM", + "type-original": "any", + "css-property": "-ms-scroll-limit-x-max", + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "type": "any", + "css-property-value-syntax": "css_length" + }, + "msContentZoomLimit": { + "specs": "none", + "ce-reactions": 1, + "name": "msContentZoomLimit", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "-ms-content-zoom-limit", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "css-property-subproperties": "-ms-content-zoom-limit-min -ms-content-zoom-limit-max", + "type": "DOMString", + "css-property-value-syntax": "1_or_2_space_separated_css_percentage" + }, + "gridRowEnd": { + "css-property-initial": "auto", + "specs": "css-grid-1", + "ce-reactions": 1, + "name": "gridRowEnd", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "grid-row-end", + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_grid_line" + }, + "layoutGridMode": { + "css-property-initial": "both", + "specs": "css-text", + "ce-reactions": 1, + "name": "layoutGridMode", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "layout-grid-mode", + "exposed": "Window", + "css-property-enum-values": "none line char both inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "msWrapMargin": { + "css-property-initial": "0", + "specs": "none css-exclusions", + "ce-reactions": 1, + "name": "msWrapMargin", + "tags": "CSSOM", + "type-original": "any", + "css-property": "-ms-wrap-margin", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "any", + "css-property-value-syntax": "css_length" + }, + "columnCount": { + "css-property-initial": "auto", + "specs": "css-multicol", + "ce-reactions": 1, + "name": "columnCount", + "tags": "CSSOM", + "type-original": "any", + "css-property": "column-count", + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "type": "any", + "css-property-value-syntax": "css_length" + }, + "flexFlow": { + "specs": "css-flexbox", + "ce-reactions": 1, + "name": "flexFlow", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "flex-flow", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "row row-reverse column column-reverse nowrap wrap wrap-reverse inherit initial", + "css-property-subproperties": "flex-direction flex-wrap", + "type": "DOMString", + "css-property-value-syntax": "1_or_2_space_separated_enums" + }, + "msWrapFlow": { + "css-property-initial": "auto", + "specs": "none css-exclusions", + "ce-reactions": 1, + "name": "msWrapFlow", + "tags": "CSSOM", + "type-original": "DOMString", + "css-property": "-ms-wrap-flow", + "exposed": "Window", + "css-property-enum-values": "auto both start end maximum clear inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "transformStyle": { + "css-property-initial": "flat", + "specs": "css-transform", + "ce-reactions": 1, + "name": "transformStyle", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "transform-style", + "exposed": "Window", + "css-property-enum-values": "flat preserve-3d inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "textTransform": { + "css-property-initial": "none", + "specs": "css-text", + "ce-reactions": 1, + "name": "textTransform", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "text-transform", + "exposed": "Window", + "css-property-enum-values": "none capitalize uppercase lowercase inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "rubyPosition": { + "css-property-initial": "above", + "specs": "css-ruby", + "ce-reactions": 1, + "name": "rubyPosition", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "ruby-position", + "exposed": "Window", + "css-property-enum-values": "above inline inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "strokeLinejoin": { + "css-property-initial": "miter", + "specs": "svg11", + "ce-reactions": 1, + "name": "strokeLinejoin", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "stroke-linejoin", + "exposed": "Window", + "css-property-enum-values": "miter round bevel inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "webkitBoxAlign": { + "css-property-initial": "stretch", + "specs": "none css-flexbox", + "ce-reactions": 1, + "name": "webkitBoxAlign", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-box-align", + "exposed": "Window", + "css-property-enum-values": "start center end baseline stretch inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "clipPath": { + "css-property-initial": "none", + "specs": "css-masking svg11", + "ce-reactions": 1, + "name": "clipPath", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "clip-path", + "exposed": "Window", + "css-property-enum-values": "none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_url_of_local_id_ref" + }, + "borderRightColor": { + "css-property-initial": "currentColor", + "specs": "css-background", + "ce-reactions": 1, + "name": "borderRightColor", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "border-right-color", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_color" + }, + "webkitTapHighlightColor": { + "css-property-initial": "rgba(0,0,0,0.180392)", + "specs": "none", + "ce-reactions": 1, + "name": "webkitTapHighlightColor", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-tap-highlight-color", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_color" + }, + "animationFillMode": { + "css-property-initial": "none", + "specs": "css-animation", + "ce-reactions": 1, + "name": "animationFillMode", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "animation-fill-mode", + "exposed": "Window", + "css-property-enum-values": "none forwards backwards both inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_enums" + }, + "clear": { + "css-property-initial": "none", + "specs": "css-box", + "ce-reactions": 1, + "name": "clear", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "clear", + "exposed": "Window", + "css-property-enum-values": "none left right both inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "animationTimingFunction": { + "css-property-initial": "ease", + "specs": "css-animation", + "ce-reactions": 1, + "name": "animationTimingFunction", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "animation-timing-function", + "exposed": "Window", + "css-property-enum-values": "step-start step-end ease ease-in ease-out ease-in-out linear inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_css_timing_functions" + }, + "webkitAlignItems": { + "css-property-initial": "normal", + "specs": "none css-align-3", + "ce-reactions": 1, + "name": "webkitAlignItems", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-align-items", + "exposed": "Window", + "css-property-enum-values": "normal stretch baseline last-baseline center start end self-start self-end flex-start flex-end left right unsafe safe inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_or_2_space_separated_enums" + }, + "marginBottom": { + "css-property-initial": "0", + "specs": "css-box", + "ce-reactions": 1, + "name": "marginBottom", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "margin-bottom", + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length" + }, + "columnWidth": { + "css-property-initial": "auto", + "specs": "css-multicol", + "ce-reactions": 1, + "name": "columnWidth", + "tags": "CSSOM", + "type-original": "any", + "css-property": "column-width", + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "type": "any", + "css-property-value-syntax": "css_length" + }, + "imeMode": { + "css-property-initial": "auto", + "specs": "css-ui", + "ce-reactions": 1, + "name": "imeMode", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "ime-mode", + "exposed": "Window", + "css-property-enum-values": "auto active inactive disabled initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "webkitBoxDirection": { + "css-property-initial": "normal", + "specs": "none css-flexbox", + "ce-reactions": 1, + "name": "webkitBoxDirection", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-box-direction", + "exposed": "Window", + "type": "DOMString", + "css-property-value-syntax": "normal reverse inherit initial" + }, + "webkitAnimationPlayState": { + "css-property-initial": "running", + "specs": "none css-animation", + "ce-reactions": 1, + "name": "webkitAnimationPlayState", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-animation-play-state", + "exposed": "Window", + "css-property-enum-values": "running paused inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_enums" + }, + "transition": { + "css-property-aliases": "-ms-transition", + "specs": "css-transition", + "ce-reactions": 1, + "name": "transition", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "transition", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "css-property-subproperties": "transition-property transition-duration transition-timing-function transition-delay", + "type": "DOMString", + "css-property-value-syntax": "css_transition" + }, + "paddingLeft": { + "css-property-initial": "0", + "specs": "css-box", + "ce-reactions": 1, + "name": "paddingLeft", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "padding-left", + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length" + }, + "borderBottom": { + "specs": "css-background", + "ce-reactions": 1, + "name": "borderBottom", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "css-property": "border-bottom", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "none hidden dotted dashed solid double groove ridge inset outset thin medium thick inherit initial", + "css-property-subproperties": "border-bottom-width border-bottom-style border-bottom-color", + "type": "DOMString", + "css-property-value-syntax": "1_to_3_space_separated_of_css_length_css_color_and_enum" + }, + "webkitBackgroundOrigin": { + "css-property-initial": "padding-box", + "specs": "none css-background", + "ce-reactions": 1, + "name": "webkitBackgroundOrigin", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-background-origin", + "exposed": "Window", + "css-property-enum-values": "border-box padding-box content-box inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_enums" + }, + "msContentZoomSnapType": { + "css-property-initial": "none", + "specs": "none", + "ce-reactions": 1, + "name": "msContentZoomSnapType", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-ms-content-zoom-snap-type", + "exposed": "Window", + "css-property-enum-values": "none proximity mandatory inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "webkitAnimation": { + "specs": "none css-animation", + "ce-reactions": 1, + "name": "webkitAnimation", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "-webkit-animation", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "css-property-subproperties": "-webkit-animation-duration -webkit-animation-timing-function -webkit-animation-delay -webkit-animation-iteration-count -webkit-animation-direction -webkit-animation-fill-mode -webkit-animation-play-state -webkit-animation-name", + "type": "DOMString", + "css-property-value-syntax": "css_animation" + }, + "webkitColumnBreakAfter": { + "css-property-initial": "auto", + "specs": "none css-multicol", + "ce-reactions": 1, + "name": "webkitColumnBreakAfter", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-column-break-after", + "exposed": "Window", + "css-property-enum-values": "auto always avoid inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "msGridColumns": { + "css-property-initial": "auto", + "specs": "css-grid none", + "ce-reactions": 1, + "name": "msGridColumns", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-ms-grid-columns", + "exposed": "Window", + "css-property-enum-values": "none auto min-content max-content inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_grid_dimension_list" + }, + "fontWeight": { + "css-property-initial": "normal", + "specs": "css-fonts", + "ce-reactions": 1, + "name": "fontWeight", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "font-weight", + "exposed": "Window", + "css-property-enum-values": "normal bold bolder lighter 100 200 300 400 500 600 700 800 900 inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "msContentZoomChaining": { + "css-property-initial": "none", + "specs": "none", + "ce-reactions": 1, + "name": "msContentZoomChaining", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-ms-content-zoom-chaining", + "exposed": "Window", + "css-property-enum-values": "none chained inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "msHyphenateLimitZone": { + "css-property-initial": "0", + "specs": "none", + "ce-reactions": 1, + "name": "msHyphenateLimitZone", + "tags": "CSSOM", + "type-original": "any", + "css-property": "-ms-hyphenate-limit-zone", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "any", + "css-property-value-syntax": "css_percentage_or_length" + }, + "webkitColumnRuleWidth": { + "css-property-initial": "medium", + "specs": "none css-multicol", + "ce-reactions": 1, + "name": "webkitColumnRuleWidth", + "tags": "CSSOM", + "type-original": "any", + "css-property": "-webkit-column-rule-width", + "exposed": "Window", + "css-property-enum-values": "thin medium thick inherit initial", + "type": "any", + "css-property-value-syntax": "css_length" + }, + "flex": { + "specs": "css-flexbox", + "ce-reactions": 1, + "name": "flex", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "css-property": "flex", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "auto content none inherit initial", + "css-property-subproperties": "flex-grow flex-shrink flex-basis", + "type": "DOMString", + "css-property-value-syntax": "css_flex" + }, + "flexWrap": { + "css-property-initial": "nowrap", + "specs": "css-flexbox", + "ce-reactions": 1, + "name": "flexWrap", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "flex-wrap", + "exposed": "Window", + "css-property-enum-values": "nowrap wrap wrap-reverse inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "padding": { + "specs": "css-box", + "ce-reactions": 1, + "name": "padding", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "css-property": "padding", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "css-property-subproperties": "padding-top padding-right padding-bottom padding-left", + "type": "DOMString", + "css-property-value-syntax": "1_to_4_space_separated_css_percentage_or_length" + }, + "filter": { + "css-property-initial": "none", + "specs": "filter-effects", + "ce-reactions": 1, + "name": "filter", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "filter", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "space_separated_filter_functions" + }, + "markerStart": { + "css-property-initial": "none", + "specs": "svg11", + "ce-reactions": 1, + "name": "markerStart", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "marker-start", + "exposed": "Window", + "css-property-enum-values": "none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_url_of_local_id_ref" + }, + "clipRule": { + "css-property-initial": "nonzero", + "specs": "svg11", + "ce-reactions": 1, + "name": "clipRule", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "clip-rule", + "exposed": "Window", + "css-property-enum-values": "nonzero evenodd inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "columnGap": { + "css-property-initial": "normal", + "specs": "css-align-3", + "ce-reactions": 1, + "name": "columnGap", + "tags": "CSSOM", + "type-original": "any", + "css-property-animatable": 1, + "css-property": "column-gap", + "exposed": "Window", + "css-property-enum-values": "normal inherit initial", + "type": "any", + "css-property-value-syntax": "css_percentage_or_length" + }, + "backgroundColor": { + "css-property-initial": "transparent", + "specs": "css-background", + "ce-reactions": 1, + "name": "backgroundColor", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "background-color", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_color" + }, + "pageBreakInside": { + "css-property-initial": "auto", + "specs": "css-break", + "ce-reactions": 1, + "name": "pageBreakInside", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "page-break-inside", + "exposed": "Window", + "css-property-enum-values": "auto avoid inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "backgroundOrigin": { + "css-property-initial": "padding-box", + "specs": "css-background", + "ce-reactions": 1, + "name": "backgroundOrigin", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "background-origin", + "exposed": "Window", + "css-property-enum-values": "border-box padding-box content-box inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_enums" + }, + "borderTopWidth": { + "css-property-initial": "medium", + "specs": "css-background", + "ce-reactions": 1, + "name": "borderTopWidth", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "border-top-width", + "exposed": "Window", + "css-property-enum-values": "thin medium thick inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_length" + }, + "gridColumnGap": { + "css-property-initial": "normal", + "specs": "css-align-3", + "ce-reactions": 1, + "name": "gridColumnGap", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "grid-column-gap", + "exposed": "Window", + "css-property-enum-values": "normal inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length" + }, + "wordSpacing": { + "css-property-initial": "normal", + "specs": "css-text", + "ce-reactions": 1, + "name": "wordSpacing", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "word-spacing", + "exposed": "Window", + "css-property-enum-values": "normal inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_length" + }, + "marginLeft": { + "css-property-initial": "0", + "specs": "css-box", + "ce-reactions": 1, + "name": "marginLeft", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "margin-left", + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length" + }, + "outline": { + "specs": "css-ui", + "ce-reactions": 1, + "name": "outline", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "css-property": "outline", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "invert thin medium thick none dotted dashed solid double groove ridge inset outset inherit initial", + "css-property-subproperties": "outline-width outline-style outline-color", + "type": "DOMString", + "css-property-value-syntax": "1_to_3_space_separated_of_css_length_css_color_and_enum" + }, + "webkitTextSizeAdjust": { + "css-property-initial": "auto", + "specs": "none css-size-adjust", + "ce-reactions": 1, + "name": "webkitTextSizeAdjust", + "tags": "CSSOM", + "type-original": "any", + "css-property": "-webkit-text-size-adjust", + "exposed": "Window", + "css-property-enum-values": "auto none inherit initial", + "type": "any", + "css-property-value-syntax": "css_percentage" + }, + "perspective": { + "css-property-initial": "none", + "specs": "css-transform", + "ce-reactions": 1, + "name": "perspective", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "perspective", + "exposed": "Window", + "css-property-enum-values": "none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_length" + }, + "gridColumnEnd": { + "css-property-initial": "auto", + "specs": "css-grid-1", + "ce-reactions": 1, + "name": "gridColumnEnd", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "grid-column-end", + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_grid_line" + }, + "maxHeight": { + "css-property-initial": "none", + "specs": "css-box", + "ce-reactions": 1, + "name": "maxHeight", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "max-height", + "exposed": "Window", + "css-property-enum-values": "none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length" + }, + "webkitFlexGrow": { + "css-property-initial": "0", + "specs": "none css-flexbox", + "ce-reactions": 1, + "name": "webkitFlexGrow", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-flex-grow", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_or_greater_integer" + }, + "webkitFlexWrap": { + "css-property-initial": "nowrap", + "specs": "none css-flexbox", + "ce-reactions": 1, + "name": "webkitFlexWrap", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-flex-wrap", + "exposed": "Window", + "css-property-enum-values": "nowrap wrap wrap-reverse inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "msScrollTranslation": { + "css-property-initial": "inherit", + "specs": "none", + "ce-reactions": 1, + "name": "msScrollTranslation", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-ms-scroll-translation", + "exposed": "Window", + "css-property-enum-values": "inherit none vertical-to-horizontal", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "webkitBoxOrient": { + "css-property-initial": "inline-axis", + "specs": "none css-flexbox", + "ce-reactions": 1, + "name": "webkitBoxOrient", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-box-orient", + "exposed": "Window", + "type": "DOMString", + "css-property-value-syntax": "horizontal vertical inline-axis block-axis inherit initial" + }, + "gridAutoFlow": { + "css-property-initial": "row", + "specs": "css-grid-1", + "ce-reactions": 1, + "name": "gridAutoFlow", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "grid-auto-flow", + "exposed": "Window", + "css-property-enum-values": "row column dense inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_or_2_space_separated_enums" + }, + "columnRule": { + "specs": "css-multicol", + "ce-reactions": 1, + "name": "columnRule", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "column-rule", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "transparent thin medium thick inherit initial", + "css-property-subproperties": "column-rule-width column-rule-style column-rule-color", + "type": "DOMString", + "css-property-value-syntax": "1_to_3_space_separated_of_css_length_css_color_and_enum" + }, + "backgroundRepeat": { + "css-property-initial": "repeat", + "specs": "css-background", + "ce-reactions": 1, + "name": "backgroundRepeat", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "background-repeat", + "exposed": "Window", + "css-property-enum-values": "repeat-x repeat-y repeat space round no-repeat initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_enums" + }, + "outlineOffset": { + "css-property-initial": "0", + "specs": "css-ui", + "ce-reactions": 1, + "name": "outlineOffset", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "outline-offset", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_length" + }, + "rowGap": { + "css-property-initial": "normal", + "specs": "css-align-3", + "ce-reactions": 1, + "name": "rowGap", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "row-gap", + "exposed": "Window", + "css-property-enum-values": "normal inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length" + }, + "msTouchSelect": { + "css-property-initial": "grippers", + "specs": "none", + "ce-reactions": 1, + "name": "msTouchSelect", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-ms-touch-select", + "exposed": "Window", + "css-property-enum-values": "grippers none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "floodOpacity": { + "css-property-initial": "1", + "specs": "svg11", + "ce-reactions": 1, + "name": "floodOpacity", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "flood-opacity", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "0_to_1_floating_point_number" + }, + "fontStyle": { + "css-property-initial": "normal", + "specs": "css-fonts", + "ce-reactions": 1, + "name": "fontStyle", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "font-style", + "exposed": "Window", + "css-property-enum-values": "normal italic oblique inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "webkitAnimationTimingFunction": { + "css-property-initial": "ease", + "specs": "none css-animation", + "ce-reactions": 1, + "name": "webkitAnimationTimingFunction", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-animation-timing-function", + "exposed": "Window", + "css-property-enum-values": "step-start step-end ease ease-in ease-out ease-in-out linear inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_css_timing_functions" + }, + "gridRow": { + "css-property-initial": "auto", + "specs": "css-grid-1", + "ce-reactions": 1, + "name": "gridRow", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "grid-row", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "css-property-subproperties": "grid-row-start grid-row-end", + "type": "DOMString", + "css-property-value-syntax": "1_or_2_slash_separated_css_grid_lines" + }, + "stopColor": { + "css-property-initial": "black", + "specs": "svg11", + "ce-reactions": 1, + "name": "stopColor", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "stop-color", + "exposed": "Window", + "css-property-enum-values": "currentColor inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_color" + }, + "minWidth": { + "css-property-initial": "0", + "specs": "css-box", + "ce-reactions": 1, + "name": "minWidth", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "min-width", + "exposed": "Window", + "css-property-enum-values": "none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length" + }, + "webkitBackgroundSize": { + "css-property-initial": "auto", + "specs": "none css-background", + "ce-reactions": 1, + "name": "webkitBackgroundSize", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-background-size", + "exposed": "Window", + "css-property-enum-values": "auto cover contain inherit initial", + "type": "DOMString", + "css-property-value-syntax": "comma_separated_1_or_2_space_separated_css_percentage_or_length" + }, + "webkitBorderBottomRightRadius": { + "css-property-initial": "0", + "specs": "none css-background", + "ce-reactions": 1, + "name": "webkitBorderBottomRightRadius", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-border-bottom-right-radius", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_or_2_space_separated_css_percentage_or_length" + }, + "writingMode": { + "css-property-initial": "horizontal-tb", + "specs": "css-writing-modes", + "ce-reactions": 1, + "name": "writingMode", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "writing-mode", + "exposed": "Window", + "css-property-enum-values": "lr-tb tb-rl rl-tb bt-rl tb-lr bt-lr lr-bt rl-bt lr rl tb horizontal-tb vertical-lr vertical-rl inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "backgroundPositionY": { + "css-property-initial": "0%", + "specs": "none", + "ce-reactions": 1, + "name": "backgroundPositionY", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "background-position-y", + "exposed": "Window", + "css-property-enum-values": "top center bottom inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length" + }, + "marker": { + "specs": "svg11", + "ce-reactions": 1, + "name": "marker", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "marker", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "none inherit initial", + "css-property-subproperties": "marker-start marker-mid marker-end", + "type": "DOMString", + "css-property-value-syntax": "css_url_of_local_id_ref" + }, + "glyphOrientationVertical": { + "css-property-initial": "auto", + "specs": "svg11", + "ce-reactions": 1, + "name": "glyphOrientationVertical", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "glyph-orientation-vertical", + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_angle" + }, + "breakInside": { + "css-property-initial": "auto", + "specs": "css-break css-multicol", + "ce-reactions": 1, + "name": "breakInside", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "break-inside", + "exposed": "Window", + "css-property-enum-values": "auto avoid avoid-page avoid-column inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "webkitBackfaceVisibility": { + "css-property-initial": "visible", + "specs": "none css-transform", + "ce-reactions": 1, + "name": "webkitBackfaceVisibility", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-backface-visibility", + "exposed": "Window", + "css-property-enum-values": "visible hidden inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "msHighContrastAdjust": { + "css-property-initial": "auto", + "specs": "none", + "ce-reactions": 1, + "name": "msHighContrastAdjust", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-ms-high-contrast-adjust", + "exposed": "Window", + "css-property-enum-values": "auto none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "borderImageSlice": { + "css-property-initial": "0", + "specs": "css-background", + "ce-reactions": 1, + "name": "borderImageSlice", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "border-image-slice", + "exposed": "Window", + "css-property-enum-values": "fill inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_to_4_space_separated_css_percentage_or_non_negative_integer" + }, + "webkitColumnSpan": { + "css-property-initial": "medium", + "specs": "none css-multicol", + "ce-reactions": 1, + "name": "webkitColumnSpan", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-column-span", + "exposed": "Window", + "css-property-enum-values": "none all inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "fontVariant": { + "css-property-initial": "normal", + "specs": "css-fonts", + "ce-reactions": 1, + "name": "fontVariant", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "font-variant", + "exposed": "Window", + "css-property-enum-values": "normal small-caps inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "penAction": { + "css-property-initial": "auto", + "specs": "none", + "ce-reactions": 1, + "name": "penAction", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property": "pen-action", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "auto none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "msGridRows": { + "css-property-initial": "auto", + "specs": "css-grid none", + "ce-reactions": 1, + "name": "msGridRows", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-ms-grid-rows", + "exposed": "Window", + "css-property-enum-values": "none auto min-content max-content inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_grid_dimension_list" + }, + "minHeight": { + "css-property-initial": "0", + "specs": "css-box", + "ce-reactions": 1, + "name": "minHeight", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "min-height", + "exposed": "Window", + "css-property-enum-values": "none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_percentage_or_length" + }, + "stroke": { + "css-property-initial": "none", + "specs": "svg11", + "ce-reactions": 1, + "name": "stroke", + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "nullable": 1, + "css-property": "stroke", + "exposed": "Window", + "css-property-enum-values": "none currentColor inherit initial", + "type": "DOMString", + "css-property-value-syntax": "svg_paint_or_css_color" + }, + "webkitBorderBottomLeftRadius": { + "css-property-initial": "0", + "specs": "none css-background", + "ce-reactions": 1, + "name": "webkitBorderBottomLeftRadius", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "-webkit-border-bottom-left-radius", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "1_or_2_space_separated_css_percentage_or_length" + }, + "rubyOverhang": { + "css-property-initial": "auto", + "specs": "css-ruby", + "ce-reactions": 1, + "name": "rubyOverhang", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "ruby-overhang", + "exposed": "Window", + "css-property-enum-values": "auto whitespace none inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "overflowX": { + "css-property-initial": "visible", + "specs": "css-box", + "ce-reactions": 1, + "name": "overflowX", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "overflow-x", + "exposed": "Window", + "css-property-enum-values": "visible scroll hidden auto inherit initial", + "type": "DOMString", + "css-property-value-syntax": "enum" + }, + "gridTemplateAreas": { + "css-property-initial": "none", + "specs": "css-grid", + "ce-reactions": 1, + "name": "gridTemplateAreas", + "tags": "CSSOM", + "type-original": "DOMString?", + "nullable": 1, + "css-property": "grid-template-areas", + "exposed": "Window", + "css-property-enum-values": "inherit initial", + "type": "DOMString", + "css-property-value-syntax": "css_grid_area_list" + }, + "margin": { + "specs": "css-box", + "ce-reactions": 1, + "name": "margin", + "css-property-shorthand": 1, + "tags": "CSSOM", + "type-original": "DOMString?", + "css-property-animatable": 1, + "css-property": "margin", + "nullable": 1, + "exposed": "Window", + "css-property-enum-values": "auto inherit initial", + "css-property-subproperties": "margin-top margin-right margin-bottom margin-left", + "type": "DOMString", + "css-property-value-syntax": "1_to_4_space_separated_css_percentage_or_length" + } + } + }, + "tags": "CSSOM", + "constants": { + "constant": {} + }, + "methods": { + "method": { + "getPropertyPriority": { + "signature": [ + { + "param-min-required": 1, + "type": "DOMString", + "param": [ + { + "name": "propertyName", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "DOMString" + } + ], + "specs": "cssom dom-level-2-style", + "exposed": "Window", + "name": "getPropertyPriority", + "tags": "CSSOM" + }, + "removeProperty": { + "signature": [ + { + "param-min-required": 1, + "type": "DOMString", + "param": [ + { + "name": "propertyName", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "DOMString" + } + ], + "specs": "cssom dom-level-2-style", + "ce-reactions": 1, + "exposed": "Window", + "name": "removeProperty", + "tags": "CSSOM" + }, + "getPropertyValue": { + "signature": [ + { + "param-min-required": 1, + "type": "DOMString", + "param": [ + { + "name": "propertyName", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "DOMString" + } + ], + "specs": "cssom dom-level-2-style", + "exposed": "Window", + "name": "getPropertyValue", + "tags": "CSSOM" + }, + "item": { + "getter": 1, + "signature": [ + { + "param-min-required": 1, + "type": "DOMString", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "DOMString" + } + ], + "specs": "cssom dom-level-2-style", + "exposed": "Window", + "name": "item", + "tags": "CSSOM" + }, + "setProperty": { + "specs": "cssom dom-level-2-style", + "ce-reactions": 1, + "name": "setProperty", + "tags": "CSSOM", + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "propertyName", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "nullable": 1, + "name": "value", + "type": "DOMString", + "type-original": "DOMString?" + }, + { + "nullable": 1, + "name": "priority", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString?" + } + ], + "type-original": "void" + } + ], + "exposed": "Window" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "VRDisplayEvent": { + "specs": "WebVR", + "constructor": { + "specs": "WebVR", + "signature": [ + { + "param-min-required": 2, + "type": "VRDisplayEvent", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "VRDisplayEventInit", + "type-original": "VRDisplayEventInit" + } + ], + "type-original": "VRDisplayEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "VRDisplayEvent", + "properties": { + "property": { + "reason": { + "specs": "WebVR", + "name": "reason", + "type-original": "VRDisplayEventReason?", + "nullable": 1, + "exposed": "Window", + "type": "VRDisplayEventReason", + "read-only": 1 + }, + "display": { + "specs": "WebVR", + "exposed": "Window", + "name": "display", + "type": "VRDisplay", + "type-original": "VRDisplay", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Event" + }, + "SVGGElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "clip-path" + }, + { + "enum-values": "auto default none context-menu help pointer progress wait cell crosshair text vertical-text alias copy move no-drop not-allowed e-resize n-resize ne-resize nw-resize s-resize se-resize sw-resize w-resize ew-resize ns-resize nesw-resize nwse-resize col-resize row-resize all-scroll zoom-in zoom-out inherit", + "value-syntax": "comma_separated_css_url_with_optional_x_y_offset_followed_by_enum", + "name": "cursor" + }, + { + "enum-values": "inline block inline-block list-item table inline-table table-header-group table-footer-group table-row-group table-column-group table-row table-column table-cell table-caption run-in ruby ruby-base ruby-text ruby-base-container flex inline-flex -ms-grid -ms-inline-grid none inherit initial", + "value-syntax": "enum", + "name": "display" + }, + { + "enum-values": "accumulate inherit", + "value-syntax": "svg_enum_new_followed_by_svg_viewbox", + "name": "enable-background" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "filter" + } + ] + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGGElement", + "properties": { + "property": {} + }, + "element": [ + { + "specs": "svg2", + "namespace": "SVG", + "name": "g" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGGraphicsElement" + }, + "MessageChannel": { + "specs": "html5", + "constructor": { + "specs": "html5", + "signature": [ + { + "type": "MessageChannel", + "type-original": "MessageChannel" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "MessageChannel", + "properties": { + "property": { + "port2": { + "specs": "html5", + "exposed": "Window Worker", + "name": "port2", + "type": "MessagePort", + "type-original": "MessagePort", + "read-only": 1 + }, + "port1": { + "specs": "html5", + "exposed": "Window Worker", + "name": "port1", + "type": "MessagePort", + "type-original": "MessagePort", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window Worker", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "Navigator": { + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "name": "Navigator", + "properties": { + "property": { + "cookieEnabled": { + "specs": "html5", + "exposed": "Window", + "name": "cookieEnabled", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "plugins": { + "specs": "html5", + "exposed": "Window", + "name": "plugins", + "type": "PluginArray", + "type-original": "PluginArray", + "read-only": 1 + }, + "msMaxTouchPoints": { + "specs": "html5", + "name": "msMaxTouchPoints", + "type-original": "long", + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "maxTouchPoints": { + "specs": "pointer-events", + "name": "maxTouchPoints", + "type-original": "long", + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "msPointerEnabled": { + "specs": "html5", + "name": "msPointerEnabled", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "read-only": 1 + }, + "msManipulationViewsEnabled": { + "specs": "html5", + "exposed": "Window", + "name": "msManipulationViewsEnabled", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "geolocation": { + "specs": "geolocation-api", + "name": "geolocation", + "type-original": "Geolocation", + "exposed": "Window", + "type": "Geolocation", + "read-only": 1 + }, + "authentication": { + "specs": "webauthn", + "name": "authentication", + "type-original": "WebAuthentication", + "exposed": "Window", + "type": "WebAuthentication", + "read-only": 1 + }, + "serviceWorker": { + "specs": "service-workers", + "same-object": 1, + "name": "serviceWorker", + "type-original": "ServiceWorkerContainer", + "exposed": "Window", + "type": "ServiceWorkerContainer", + "secure-context": 1, + "read-only": 1 + }, + "gamepadInputEmulation": { + "specs": "html5", + "exposed": "Window", + "name": "gamepadInputEmulation", + "type": "GamepadInputEmulationType", + "type-original": "GamepadInputEmulationType" + }, + "webdriver": { + "specs": "webdriver", + "exposed": "Window", + "name": "webdriver", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "mimeTypes": { + "specs": "html5", + "name": "mimeTypes", + "tags": "NetworkAccess", + "type-original": "MimeTypeArray", + "exposed": "Window", + "type": "MimeTypeArray", + "read-only": 1 + }, + "activeVRDisplays": { + "pure": 1, + "specs": "html5", + "name": "activeVRDisplays", + "type-original": "FrozenArray", + "subtype": { + "type": "VRDisplay" + }, + "exposed": "Window", + "type": "FrozenArray", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "getVRDisplays": { + "signature": [ + { + "subtype": { + "subtype": { + "type": "VRDisplay" + }, + "type": "sequence" + }, + "type": "Promise", + "type-original": "Promise>" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "getVRDisplays" + }, + "getGamepads": { + "specs": "gamepad", + "signature": [ + { + "subtype": { + "nullable": 1, + "type": "Gamepad" + }, + "type": "sequence", + "type-original": "sequence" + } + ], + "name": "getGamepads", + "exposed": "Window" + }, + "javaEnabled": { + "signature": [ + { + "type": "boolean", + "type-original": "boolean" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "javaEnabled" + }, + "requestMediaKeySystemAccess": { + "signature": [ + { + "subtype": { + "type": "MediaKeySystemAccess" + }, + "param-min-required": 2, + "type": "Promise", + "param": [ + { + "name": "keySystem", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "subtype": { + "type": "MediaKeySystemConfiguration" + }, + "name": "supportedConfigurations", + "type": "sequence", + "type-original": "sequence" + } + ], + "type-original": "Promise" + } + ], + "specs": "encrypted-media", + "exposed": "Window", + "name": "requestMediaKeySystemAccess" + }, + "msLaunchUri": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "uri", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "successCallback", + "default": "0", + "type": "MSLaunchUriCallback", + "optional": 1, + "type-original": "MSLaunchUriCallback" + }, + { + "name": "noHandlerCallback", + "default": "0", + "type": "MSLaunchUriCallback", + "optional": 1, + "type-original": "MSLaunchUriCallback" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "msLaunchUri" + } + } + }, + "exposed": "Window", + "extends": "Object", + "implements": [ + "NavigatorID", + "NavigatorOnLine", + "NavigatorContentUtils", + "NavigatorStorageUtils", + "MSNavigatorDoNotTrack", + "MSFileSaver", + "NavigatorBeacon", + "NavigatorConcurrentHardware", + "NavigatorUserMedia", + "NavigatorLanguage" + ] + }, + "MediaQueryList": { + "specs": "cssom-view", + "anonymous-methods": { + "method": [] + }, + "name": "MediaQueryList", + "properties": { + "property": { + "matches": { + "specs": "cssom-view", + "name": "matches", + "tags": "CSSOM", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "read-only": 1 + }, + "media": { + "specs": "cssom-view", + "name": "media", + "tags": "CSSOM", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + } + } + }, + "tags": "CSSOM", + "constants": { + "constant": {} + }, + "methods": { + "method": { + "removeListener": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "listener", + "type": "MediaQueryListListener", + "type-original": "MediaQueryListListener" + } + ], + "type-original": "void" + } + ], + "specs": "cssom-view", + "exposed": "Window", + "name": "removeListener", + "tags": "CSSOM" + }, + "addListener": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "listener", + "type": "MediaQueryListListener", + "type-original": "MediaQueryListListener" + } + ], + "type-original": "void" + } + ], + "specs": "cssom-view", + "exposed": "Window", + "name": "addListener", + "tags": "CSSOM" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "GamepadPose": { + "constants": { + "constant": {} + }, + "specs": "gamepad extension", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "GamepadPose", + "extends": "Object", + "properties": { + "property": { + "angularVelocity": { + "specs": "gamepad extension", + "name": "angularVelocity", + "constant": 1, + "type-original": "Float32Array?", + "nullable": 1, + "exposed": "Window", + "type": "Float32Array", + "read-only": 1 + }, + "linearAcceleration": { + "specs": "gamepad extension", + "name": "linearAcceleration", + "constant": 1, + "type-original": "Float32Array?", + "nullable": 1, + "exposed": "Window", + "type": "Float32Array", + "read-only": 1 + }, + "hasPosition": { + "specs": "gamepad extension", + "exposed": "Window", + "name": "hasPosition", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "linearVelocity": { + "specs": "gamepad extension", + "name": "linearVelocity", + "constant": 1, + "type-original": "Float32Array?", + "nullable": 1, + "exposed": "Window", + "type": "Float32Array", + "read-only": 1 + }, + "orientation": { + "specs": "gamepad extension", + "name": "orientation", + "constant": 1, + "type-original": "Float32Array?", + "nullable": 1, + "exposed": "Window", + "type": "Float32Array", + "read-only": 1 + }, + "position": { + "specs": "gamepad extension", + "name": "position", + "constant": 1, + "type-original": "Float32Array?", + "nullable": 1, + "exposed": "Window", + "type": "Float32Array", + "read-only": 1 + }, + "hasOrientation": { + "specs": "gamepad extension", + "exposed": "Window", + "name": "hasOrientation", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "angularAcceleration": { + "specs": "gamepad extension", + "name": "angularAcceleration", + "constant": 1, + "type-original": "Float32Array?", + "nullable": 1, + "exposed": "Window", + "type": "Float32Array", + "read-only": 1 + } + } + } + }, + "SVGFEPointLightElement": { + "specs": "filter-effects", + "anonymous-methods": { + "method": [] + }, + "name": "SVGFEPointLightElement", + "properties": { + "property": { + "y": { + "specs": "filter-effects", + "name": "y", + "constant": 1, + "content-attribute": "y", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "x": { + "specs": "filter-effects", + "name": "x", + "constant": 1, + "content-attribute": "x", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "z": { + "specs": "filter-effects", + "name": "z", + "constant": 1, + "content-attribute": "z", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "filter-effects", + "namespace": "SVG", + "name": "fePointLight" + } + ], + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "SVGElement" + }, + "CloseEvent": { + "specs": "html5", + "constructor": { + "specs": "html5", + "signature": [ + { + "param-min-required": 1, + "type": "CloseEvent", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "CloseEventInit", + "optional": 1, + "type-original": "CloseEventInit" + } + ], + "type-original": "CloseEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "CloseEvent", + "properties": { + "property": { + "wasClean": { + "specs": "html5", + "name": "wasClean", + "type-original": "boolean", + "exposed": "Window Worker", + "type": "boolean", + "read-only": 1 + }, + "reason": { + "specs": "html5", + "name": "reason", + "type-original": "USVString", + "exposed": "Window Worker", + "type": "USVString", + "read-only": 1 + }, + "code": { + "specs": "html5", + "name": "code", + "type-original": "unsigned short", + "exposed": "Window Worker", + "type": "unsigned short", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window Worker", + "methods": { + "method": { + "initCloseEvent": { + "deprecated": 1, + "specs": "websockets-20110419", + "signature": [ + { + "param-min-required": 6, + "type": "void", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "canBubbleArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "cancelableArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "wasCleanArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "codeArg", + "type": "unsigned short", + "type-original": "unsigned short" + }, + { + "name": "reasonArg", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "name": "initCloseEvent", + "exposed": "Window Worker" + } + } + }, + "extends": "Event" + }, + "SVGZoomEvent": { + "constants": { + "constant": {} + }, + "specs": "svg11", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "SVGZoomEvent", + "extends": "UIEvent", + "properties": { + "property": { + "zoomRectScreen": { + "specs": "svg11", + "name": "zoomRectScreen", + "type-original": "SVGRect", + "exposed": "Window", + "type": "SVGRect", + "read-only": 1 + }, + "previousScale": { + "specs": "svg11", + "name": "previousScale", + "type-original": "float", + "exposed": "Window", + "type": "float", + "read-only": 1 + }, + "newScale": { + "specs": "svg11", + "name": "newScale", + "type-original": "float", + "exposed": "Window", + "type": "float", + "read-only": 1 + }, + "newTranslate": { + "specs": "svg11", + "name": "newTranslate", + "type-original": "SVGPoint", + "exposed": "Window", + "type": "SVGPoint", + "read-only": 1 + }, + "previousTranslate": { + "specs": "svg11", + "name": "previousTranslate", + "type-original": "SVGPoint", + "exposed": "Window", + "type": "SVGPoint", + "read-only": 1 + } + } + } + }, + "ProgressEvent": { + "specs": "progress-events", + "constructor": { + "specs": "progress-events", + "signature": [ + { + "param-min-required": 1, + "type": "ProgressEvent", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "ProgressEventInit", + "optional": 1, + "type-original": "ProgressEventInit" + } + ], + "type-original": "ProgressEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "ProgressEvent", + "properties": { + "property": { + "loaded": { + "specs": "progress-events", + "name": "loaded", + "type-original": "unsigned long long", + "exposed": "Window", + "type": "unsigned long long", + "read-only": 1 + }, + "lengthComputable": { + "specs": "progress-events", + "name": "lengthComputable", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "read-only": 1 + }, + "total": { + "specs": "progress-events", + "name": "total", + "type-original": "unsigned long long", + "exposed": "Window", + "type": "unsigned long long", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "initProgressEvent": { + "signature": [ + { + "param-min-required": 6, + "type": "void", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "canBubbleArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "cancelableArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "lengthComputableArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "loadedArg", + "type": "unsigned long long", + "type-original": "unsigned long long" + }, + { + "name": "totalArg", + "type": "unsigned long long", + "type-original": "unsigned long long" + } + ], + "type-original": "void" + } + ], + "specs": "progress-events", + "exposed": "Window", + "name": "initProgressEvent" + } + } + }, + "exposed": "Window", + "extends": "Event" + }, + "VRPose": { + "constants": { + "constant": {} + }, + "specs": "WebVR", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "VRPose", + "extends": "Object", + "properties": { + "property": { + "angularVelocity": { + "specs": "WebVR", + "name": "angularVelocity", + "type-original": "Float32Array?", + "nullable": 1, + "exposed": "Window", + "type": "Float32Array", + "read-only": 1 + }, + "linearAcceleration": { + "specs": "WebVR", + "name": "linearAcceleration", + "type-original": "Float32Array?", + "nullable": 1, + "exposed": "Window", + "type": "Float32Array", + "read-only": 1 + }, + "timestamp": { + "specs": "WebVR", + "exposed": "Window", + "name": "timestamp", + "type": "double", + "type-original": "DOMHighResTimeStamp", + "read-only": 1 + }, + "linearVelocity": { + "specs": "WebVR", + "name": "linearVelocity", + "type-original": "Float32Array?", + "nullable": 1, + "exposed": "Window", + "type": "Float32Array", + "read-only": 1 + }, + "orientation": { + "specs": "WebVR", + "name": "orientation", + "type-original": "Float32Array?", + "nullable": 1, + "exposed": "Window", + "type": "Float32Array", + "read-only": 1 + }, + "position": { + "specs": "WebVR", + "name": "position", + "type-original": "Float32Array?", + "nullable": 1, + "exposed": "Window", + "type": "Float32Array", + "read-only": 1 + }, + "angularAcceleration": { + "specs": "WebVR", + "name": "angularAcceleration", + "type-original": "Float32Array?", + "nullable": 1, + "exposed": "Window", + "type": "Float32Array", + "read-only": 1 + } + } + } + }, + "HTMLBaseElement": { + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLBaseElement", + "properties": { + "property": { + "target": { + "content-attribute-enum-values": "_blank _self _parent _top", + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "target", + "content-attribute": "target", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "name_ref", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "href": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "href", + "content-attribute": "href", + "type-original": "USVString", + "exposed": "Window", + "content-attribute-value-syntax": "url", + "type": "USVString", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "base", + "html-self-closing": 1 + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "ClientRect": { + "specs": "cssom-view", + "anonymous-methods": { + "method": [] + }, + "name": "ClientRect", + "properties": { + "property": { + "width": { + "specs": "cssom-view", + "name": "width", + "tags": "CSSOM", + "type-original": "float", + "exposed": "Window", + "type": "float", + "read-only": 1 + }, + "left": { + "specs": "cssom-view", + "exposed": "Window", + "name": "left", + "type": "long", + "tags": "CSSOM", + "type-original": "long" + }, + "right": { + "specs": "cssom-view", + "exposed": "Window", + "name": "right", + "type": "long", + "tags": "CSSOM", + "type-original": "long" + }, + "top": { + "specs": "cssom-view", + "exposed": "Window", + "name": "top", + "type": "long", + "tags": "CSSOM", + "type-original": "long" + }, + "height": { + "specs": "cssom-view", + "name": "height", + "tags": "CSSOM", + "type-original": "float", + "exposed": "Window", + "type": "float", + "read-only": 1 + }, + "bottom": { + "specs": "cssom-view", + "exposed": "Window", + "name": "bottom", + "type": "long", + "tags": "CSSOM", + "type-original": "long" + } + } + }, + "tags": "CSSOM", + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "DOMImplementation": { + "constants": { + "constant": {} + }, + "specs": "dom4", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "createDocumentType": { + "specs": "dom4", + "name": "createDocumentType", + "tags": "TreeMutation", + "signature": [ + { + "param-min-required": 3, + "type": "DocumentType", + "param": [ + { + "name": "qualifiedName", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "publicId", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "systemId", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "DocumentType" + } + ], + "exposed": "Window" + }, + "createDocument": { + "specs": "dom4", + "name": "createDocument", + "tags": "TreeMutation", + "signature": [ + { + "param-min-required": 3, + "type": "Document", + "param": [ + { + "nullable": 1, + "name": "namespaceURI", + "type": "DOMString", + "type-original": "DOMString?" + }, + { + "nullable": 1, + "name": "qualifiedName", + "type": "DOMString", + "type-original": "DOMString?" + }, + { + "name": "doctype", + "type": "DocumentType", + "type-original": "DocumentType" + } + ], + "type-original": "Document" + } + ], + "exposed": "Window" + }, + "hasFeature": { + "signature": [ + { + "type": "boolean", + "type-original": "boolean" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "hasFeature" + }, + "createHTMLDocument": { + "specs": "dom4", + "name": "createHTMLDocument", + "tags": "TreeMutation", + "signature": [ + { + "param-min-required": 0, + "type": "Document", + "param": [ + { + "name": "title", + "default": "\"\"", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + } + ], + "type-original": "Document" + } + ], + "exposed": "Window" + } + } + }, + "name": "DOMImplementation", + "extends": "Object", + "properties": { + "property": {} + } + }, + "SVGUnitTypes": { + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGUnitTypes", + "static": 1, + "properties": { + "property": {} + }, + "constants": { + "constant": { + "SVG_UNIT_TYPE_OBJECTBOUNDINGBOX": { + "specs": "svg2", + "value": "2", + "exposed": "Window", + "name": "SVG_UNIT_TYPE_OBJECTBOUNDINGBOX", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_UNIT_TYPE_UNKNOWN": { + "specs": "svg2", + "value": "0", + "exposed": "Window", + "name": "SVG_UNIT_TYPE_UNKNOWN", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_UNIT_TYPE_USERSPACEONUSE": { + "specs": "svg2", + "value": "1", + "exposed": "Window", + "name": "SVG_UNIT_TYPE_USERSPACEONUSE", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "ConvolverNode": { + "constants": { + "constant": {} + }, + "specs": "webaudio", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "ConvolverNode", + "extends": "AudioNode", + "properties": { + "property": { + "normalize": { + "specs": "webaudio", + "exposed": "Window", + "name": "normalize", + "type": "boolean", + "type-original": "boolean" + }, + "buffer": { + "specs": "webaudio", + "nullable": 1, + "exposed": "Window", + "name": "buffer", + "type": "AudioBuffer", + "type-original": "AudioBuffer?" + } + } + } + }, + "WebAuthnAssertion": { + "specs": "WD-webauthn-20160531", + "anonymous-methods": { + "method": [] + }, + "name": "WebAuthnAssertion", + "properties": { + "property": { + "signature": { + "specs": "WD-webauthn-20160531", + "exposed": "Window", + "name": "signature", + "type": "ArrayBuffer", + "type-original": "ArrayBuffer", + "read-only": 1 + }, + "authenticatorData": { + "specs": "WD-webauthn-20160531", + "exposed": "Window", + "name": "authenticatorData", + "type": "ArrayBuffer", + "type-original": "ArrayBuffer", + "read-only": 1 + }, + "clientData": { + "specs": "WD-webauthn-20160531", + "exposed": "Window", + "name": "clientData", + "type": "ArrayBuffer", + "type-original": "ArrayBuffer", + "read-only": 1 + }, + "credential": { + "specs": "WD-webauthn-20160531", + "exposed": "Window", + "name": "credential", + "type": "ScopedCredential", + "type-original": "ScopedCredential", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "Object", + "secure-context": 1 + }, + "SpeechSynthesis": { + "specs": "speech-api", + "anonymous-methods": { + "method": [] + }, + "name": "SpeechSynthesis", + "properties": { + "property": { + "pending": { + "specs": "speech-api", + "exposed": "Window", + "name": "pending", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "onvoiceschanged": { + "specs": "speech-api", + "name": "onvoiceschanged", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "voiceschanged" + }, + "paused": { + "specs": "speech-api", + "exposed": "Window", + "name": "paused", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "speaking": { + "specs": "speech-api", + "exposed": "Window", + "name": "speaking", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "Speech", + "name": "voiceschanged", + "type": "Event", + "skips-window": 1 + } + ] + }, + "methods": { + "method": { + "resume": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "speech-api", + "exposed": "Window", + "name": "resume" + }, + "pause": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "speech-api", + "exposed": "Window", + "name": "pause" + }, + "speak": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "utterance", + "type": "SpeechSynthesisUtterance", + "type-original": "SpeechSynthesisUtterance" + } + ], + "type-original": "void" + } + ], + "specs": "speech-api", + "exposed": "Window", + "name": "speak" + }, + "getVoices": { + "signature": [ + { + "subtype": { + "type": "SpeechSynthesisVoice" + }, + "type": "sequence", + "type-original": "sequence" + } + ], + "specs": "speech-api", + "exposed": "Window", + "name": "getVoices" + }, + "cancel": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "speech-api", + "exposed": "Window", + "name": "cancel" + } + } + }, + "exposed": "Window", + "extends": "EventTarget" + }, + "Element": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "name": "title" + }, + { + "name": "xml:id" + }, + { + "value-syntax": "url", + "name": "xml:base" + }, + { + "name": "xml:lang" + }, + { + "value-syntax": "id_ref", + "name": "aria-activedescendant" + }, + { + "enum-values": "false true", + "value-syntax": "enum", + "name": "aria-atomic" + }, + { + "enum-values": "none inline list both", + "value-syntax": "enum", + "name": "aria-autocomplete" + }, + { + "enum-values": "false true", + "value-syntax": "enum", + "name": "aria-busy" + }, + { + "enum-values": "true false mixed", + "value-syntax": "enum", + "name": "aria-checked" + }, + { + "value-syntax": "space_separated_id_refs", + "name": "aria-controls" + }, + { + "value-syntax": "space_separated_id_refs", + "name": "aria-describedby" + }, + { + "enum-values": "false true", + "value-syntax": "enum", + "name": "aria-disabled" + }, + { + "enum-values": "none copy move link execute popup", + "value-syntax": "space_separated_enums", + "name": "aria-dropeffect" + }, + { + "enum-values": "undefined true false", + "value-syntax": "enum", + "name": "aria-expanded" + }, + { + "value-syntax": "space_separated_id_refs", + "name": "aria-flowto" + }, + { + "enum-values": "undefined true false", + "value-syntax": "enum", + "name": "aria-grabbed" + }, + { + "enum-values": "false true", + "value-syntax": "enum", + "name": "aria-haspopup" + }, + { + "enum-values": "false true", + "value-syntax": "enum", + "name": "aria-hidden" + }, + { + "enum-values": "false grammar spelling true", + "value-syntax": "enum", + "name": "aria-invalid" + }, + { + "name": "aria-label" + }, + { + "value-syntax": "space_separated_id_refs", + "name": "aria-labelledby" + }, + { + "value-syntax": "non_negative_integer", + "name": "aria-level" + }, + { + "enum-values": "off polite assertive", + "value-syntax": "enum", + "name": "aria-live" + }, + { + "enum-values": "false true", + "value-syntax": "enum", + "name": "aria-multiline" + }, + { + "enum-values": "false true", + "value-syntax": "enum", + "name": "aria-multiselectable" + }, + { + "enum-values": "horizontal vertical", + "value-syntax": "enum", + "name": "aria-orientation" + }, + { + "value-syntax": "space_separated_id_refs", + "name": "aria-owns" + }, + { + "value-syntax": "non_negative_integer", + "name": "aria-posinset" + }, + { + "enum-values": "true false mixed", + "value-syntax": "enum", + "name": "aria-pressed" + }, + { + "enum-values": "false true", + "value-syntax": "enum", + "name": "aria-readonly" + }, + { + "enum-values": "additions removals text all", + "value-syntax": "space_separated_enums", + "name": "aria-relevant" + }, + { + "enum-values": "false true", + "value-syntax": "enum", + "name": "aria-required" + }, + { + "enum-values": "undefined true false", + "value-syntax": "enum", + "name": "aria-selected" + }, + { + "value-syntax": "non_negative_integer", + "name": "aria-setsize" + }, + { + "enum-values": "none ascending descending other", + "value-syntax": "enum", + "name": "aria-sort" + }, + { + "value-syntax": "floating_point_number", + "name": "aria-valuemax" + }, + { + "value-syntax": "floating_point_number", + "name": "aria-valuemin" + }, + { + "value-syntax": "floating_point_number", + "name": "aria-valuenow" + }, + { + "value-syntax": "space_separated_id_refs", + "name": "x-ms-aria-flowfrom" + }, + { + "enum-values": "alert alertdialog application article banner button checkbox columnheader combobox complementary contentinfo definition dialog directory document form grid gridcell group heading img link list listbox listitem log main marquee math menu menubar menuitem menuitemcheckbox menuitemradio navigation note option presentation progressbar radio radiogroup region row rowgroup rowheader scrollbar search separator slider spinbutton status tab tablist tabpanel textbox timer toolbar tooltip tree treegrid treeitem", + "value-syntax": "enum", + "name": "role" + } + ] + }, + "specs": "dom4", + "anonymous-methods": { + "method": [] + }, + "name": "Element", + "properties": { + "property": { + "onmsgotpointercapture": { + "specs": "dom4", + "name": "onmsgotpointercapture", + "content-attribute": "onmsgotpointercapture", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "javascript", + "type": "EventHandlerNonNull", + "event-handler": "MSGotPointerCapture" + }, + "onmspointerdown": { + "specs": "dom4", + "name": "onmspointerdown", + "content-attribute": "onmspointerdown", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "javascript", + "type": "EventHandlerNonNull", + "event-handler": "MSPointerDown" + }, + "msRegionOverflow": { + "specs": "css-regions", + "name": "msRegionOverflow", + "tags": "CSSOM", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "onmsgesturedoubletap": { + "specs": "dom4", + "name": "onmsgesturedoubletap", + "content-attribute": "onmsgesturedoubletap", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSGestureDoubleTap" + }, + "scrollLeft": { + "specs": "cssom-view", + "exposed": "Window", + "name": "scrollLeft", + "type": "long", + "type-original": "long" + }, + "classList": { + "specs": "dom4", + "ce-reactions": 1, + "name": "classList", + "constant": 1, + "content-attribute": "class", + "type-original": "DOMTokenList", + "exposed": "Window", + "content-attribute-value-syntax": "space_separated_tokens", + "type": "DOMTokenList", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "onwebkitfullscreenerror": { + "specs": "dom4", + "name": "onwebkitfullscreenerror", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "webkitfullscreenerror" + }, + "onmsgesturehold": { + "specs": "dom4", + "name": "onmsgesturehold", + "content-attribute": "onmsgesturehold", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSGestureHold" + }, + "onmspointermove": { + "specs": "dom4", + "name": "onmspointermove", + "content-attribute": "onmspointermove", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "javascript", + "type": "EventHandlerNonNull", + "event-handler": "MSPointerMove" + }, + "scrollWidth": { + "specs": "cssom-view", + "exposed": "Window", + "name": "scrollWidth", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "onmsgesturechange": { + "specs": "dom4", + "name": "onmsgesturechange", + "content-attribute": "onmsgesturechange", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSGestureChange" + }, + "id": { + "pure": 1, + "specs": "dom4", + "ce-reactions": 1, + "name": "id", + "content-attribute": "id", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "onmsgesturestart": { + "specs": "dom4", + "name": "onmsgesturestart", + "content-attribute": "onmsgesturestart", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSGestureStart" + }, + "innerHTML": { + "pure": 1, + "specs": "dom4", + "ce-reactions": 1, + "name": "innerHTML", + "tags": "TreeMutation", + "type-original": "DOMString", + "treat-null-as": "EmptyString", + "exposed": "Window", + "type": "DOMString" + }, + "onmspointercancel": { + "specs": "dom4", + "name": "onmspointercancel", + "content-attribute": "onmspointercancel", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "javascript", + "type": "EventHandlerNonNull", + "event-handler": "MSPointerCancel" + }, + "clientLeft": { + "specs": "cssom-view", + "exposed": "Window", + "name": "clientLeft", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "onmsgestureend": { + "specs": "dom4", + "name": "onmsgestureend", + "content-attribute": "onmsgestureend", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSGestureEnd" + }, + "className": { + "pure": 1, + "specs": "dom4", + "ce-reactions": 1, + "name": "className", + "content-attribute": "class", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "space_separated_tokens", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "msContentZoomFactor": { + "specs": "dom4", + "name": "msContentZoomFactor", + "tags": "CSSOM", + "type-original": "float", + "exposed": "Window", + "type": "float" + }, + "clientHeight": { + "specs": "cssom-view", + "exposed": "Window", + "name": "clientHeight", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "ontouchstart": { + "specs": "dom4", + "name": "ontouchstart", + "content-attribute": "ontouchstart", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "javascript", + "type": "EventHandlerNonNull", + "event-handler": "touchstart" + }, + "attributes": { + "specs": "dom4", + "name": "attributes", + "tags": "TreeNavigation", + "type-original": "NamedNodeMap", + "exposed": "Window", + "type": "NamedNodeMap", + "read-only": 1 + }, + "onmspointerup": { + "specs": "dom4", + "name": "onmspointerup", + "content-attribute": "onmspointerup", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "javascript", + "type": "EventHandlerNonNull", + "event-handler": "MSPointerUp" + }, + "scrollTop": { + "specs": "cssom-view", + "exposed": "Window", + "name": "scrollTop", + "type": "long", + "type-original": "long" + }, + "outerHTML": { + "pure": 1, + "specs": "dom4", + "ce-reactions": 1, + "name": "outerHTML", + "tags": "TreeMutation", + "type-original": "DOMString", + "treat-null-as": "EmptyString", + "exposed": "Window", + "type": "DOMString" + }, + "ontouchmove": { + "specs": "dom4", + "name": "ontouchmove", + "content-attribute": "ontouchmove", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "javascript", + "type": "EventHandlerNonNull", + "event-handler": "touchmove" + }, + "clientWidth": { + "specs": "cssom-view", + "exposed": "Window", + "name": "clientWidth", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "ontouchend": { + "specs": "dom4", + "name": "ontouchend", + "content-attribute": "ontouchend", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "javascript", + "type": "EventHandlerNonNull", + "event-handler": "touchend" + }, + "clientTop": { + "specs": "cssom-view", + "exposed": "Window", + "name": "clientTop", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "onlostpointercapture": { + "specs": "dom4", + "name": "onlostpointercapture", + "content-attribute": "onlostpointercapture", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "javascript", + "type": "EventHandlerNonNull", + "event-handler": "lostpointercapture" + }, + "oncommand": { + "specs": "dom4", + "name": "oncommand", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "command" + }, + "onariarequest": { + "specs": "dom4", + "name": "onariarequest", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "ariarequest" + }, + "ontouchcancel": { + "specs": "dom4", + "name": "ontouchcancel", + "content-attribute": "ontouchcancel", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "javascript", + "type": "EventHandlerNonNull", + "event-handler": "touchcancel" + }, + "onmsgesturetap": { + "specs": "dom4", + "name": "onmsgesturetap", + "content-attribute": "onmsgesturetap", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSGestureTap" + }, + "onmspointerout": { + "specs": "dom4", + "name": "onmspointerout", + "content-attribute": "onmspointerout", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "javascript", + "type": "EventHandlerNonNull", + "event-handler": "MSPointerOut" + }, + "onmsinertiastart": { + "specs": "dom4", + "name": "onmsinertiastart", + "content-attribute": "onmsinertiastart", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSInertiaStart" + }, + "tagName": { + "pure": 1, + "specs": "dom4", + "name": "tagName", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "onmslostpointercapture": { + "specs": "dom4", + "name": "onmslostpointercapture", + "content-attribute": "onmslostpointercapture", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "javascript", + "type": "EventHandlerNonNull", + "event-handler": "MSLostPointerCapture" + }, + "onmspointerover": { + "specs": "dom4", + "name": "onmspointerover", + "content-attribute": "onmspointerover", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "javascript", + "type": "EventHandlerNonNull", + "event-handler": "MSPointerOver" + }, + "onwebkitfullscreenchange": { + "specs": "dom4", + "name": "onwebkitfullscreenchange", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "webkitfullscreenchange" + }, + "onmspointerenter": { + "specs": "dom4", + "name": "onmspointerenter", + "content-attribute": "onmspointerenter", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "javascript", + "type": "EventHandlerNonNull", + "event-handler": "MSPointerEnter" + }, + "scrollHeight": { + "specs": "cssom-view", + "exposed": "Window", + "name": "scrollHeight", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "onmspointerleave": { + "specs": "dom4", + "name": "onmspointerleave", + "content-attribute": "onmspointerleave", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "javascript", + "type": "EventHandlerNonNull", + "event-handler": "MSPointerLeave" + }, + "ongotpointercapture": { + "specs": "dom4", + "name": "ongotpointercapture", + "content-attribute": "ongotpointercapture", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "javascript", + "type": "EventHandlerNonNull", + "event-handler": "gotpointercapture" + }, + "prefix": { + "specs": "dom4", + "name": "prefix", + "constant": 1, + "tags": "Namespaces", + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "precedes": "dblclick", + "dispatch": "sync", + "specs": "UIEvents", + "name": "click", + "follows": "mouseup pointerup MSPointerUp", + "cancelable": 1, + "type": "MouseEvent", + "bubbles": 1 + }, + { + "dispatch": "sync", + "specs": "UIEvents", + "name": "dblclick", + "follows": "click", + "type": "MouseEvent", + "cancelable": 1, + "bubbles": 1 + }, + { + "dispatch": "sync", + "specs": "UIEvents", + "name": "mousemove", + "type": "MouseEvent", + "cancelable": 1, + "bubbles": 1 + }, + { + "precedes": "mouseout", + "dispatch": "sync", + "specs": "UIEvents", + "name": "mouseover", + "type": "MouseEvent", + "cancelable": 1, + "bubbles": 1 + }, + { + "dispatch": "sync", + "specs": "UIEvents", + "name": "mouseout", + "follows": "mouseover", + "type": "MouseEvent", + "cancelable": 1, + "bubbles": 1 + }, + { + "precedes": "mouseup", + "dispatch": "sync", + "specs": "UIEvents", + "name": "mousedown", + "type": "MouseEvent", + "cancelable": 1, + "bubbles": 1 + }, + { + "precedes": "click", + "dispatch": "sync", + "specs": "UIEvents", + "name": "mouseup", + "follows": "mousedown", + "cancelable": 1, + "type": "MouseEvent", + "bubbles": 1 + }, + { + "precedes": "mouseleave", + "dispatch": "sync", + "specs": "UIEvents", + "name": "mouseenter", + "type": "MouseEvent" + }, + { + "dispatch": "sync", + "specs": "UIEvents", + "name": "mouseleave", + "follows": "mouseenter", + "type": "MouseEvent" + }, + { + "dispatch": "sync", + "specs": "UIEvents", + "name": "wheel", + "type": "WheelEvent", + "cancelable": 1, + "bubbles": 1 + }, + { + "dispatch": "sync", + "specs": "none", + "name": "mousewheel", + "type": "WheelEvent", + "cancelable": 1, + "bubbles": 1 + }, + { + "precedes": "pointerleave", + "dispatch": "sync", + "specs": "PtrEvents", + "name": "pointerenter", + "aliases": "MSPointerEnter", + "type": "PointerEvent" + }, + { + "dispatch": "sync", + "specs": "PtrEvents", + "name": "pointerleave", + "follows": "pointerenter", + "aliases": "MSPointerLeave", + "type": "PointerEvent" + }, + { + "precedes": "pointermove", + "dispatch": "sync", + "specs": "PtrEvents", + "aliases": "MSPointerDown", + "name": "pointerdown", + "cancelable": 1, + "type": "PointerEvent", + "bubbles": 1 + }, + { + "precedes": "pointerup pointercancel", + "dispatch": "sync", + "specs": "PtrEvents", + "name": "pointermove", + "follows": "pointerdown", + "aliases": "MSPointerMove", + "type": "PointerEvent", + "cancelable": 1, + "bubbles": 1 + }, + { + "precedes": "click", + "dispatch": "sync", + "specs": "PtrEvents", + "name": "pointerup", + "follows": "pointermove", + "aliases": "MSPointerUp", + "type": "PointerEvent", + "cancelable": 1, + "bubbles": 1 + }, + { + "precedes": "pointerout", + "dispatch": "sync", + "specs": "PtrEvents", + "aliases": "MSPointerOver", + "name": "pointerover", + "cancelable": 1, + "type": "PointerEvent", + "bubbles": 1 + }, + { + "dispatch": "sync", + "specs": "PtrEvents", + "aliases": "MSPointerOut", + "name": "pointerout", + "follows": "pointerover", + "cancelable": 1, + "type": "PointerEvent", + "bubbles": 1 + }, + { + "dispatch": "sync", + "specs": "PtrEvents", + "name": "pointercancel", + "follows": "pointermove", + "aliases": "MSPointerCancel", + "type": "PointerEvent", + "bubbles": 1 + }, + { + "precedes": "lostpointercapture", + "dispatch": "sync", + "specs": "PtrEvents", + "name": "gotpointercapture", + "aliases": "MSGotPointerCapture", + "type": "PointerEvent", + "bubbles": 1 + }, + { + "dispatch": "sync", + "specs": "PtrEvents", + "name": "lostpointercapture", + "follows": "gotpointercapture", + "aliases": "MSLostPointerCapture", + "type": "PointerEvent", + "bubbles": 1 + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "contextmenu", + "type": "PointerEvent", + "cancelable": 1, + "bubbles": 1 + }, + { + "dispatch": "sync", + "specs": "UIEvents", + "name": "select", + "follows": "selectstart selectionchange", + "type": "UIEvent", + "bubbles": 1 + }, + { + "dispatch": "sync", + "specs": "UIEvents", + "name": "keyup", + "follows": "keydown keypress", + "type": "KeyboardEvent", + "cancelable": 1, + "bubbles": 1 + }, + { + "precedes": "keyup keypress", + "dispatch": "sync", + "specs": "UIEvents", + "name": "keydown", + "type": "KeyboardEvent", + "cancelable": 1, + "bubbles": 1 + }, + { + "precedes": "keyup", + "dispatch": "sync", + "specs": "UIEvents", + "name": "keypress", + "follows": "keydown", + "cancelable": 1, + "type": "KeyboardEvent", + "bubbles": 1 + }, + { + "dispatch": "sync", + "specs": "none", + "name": "textInput", + "type": "TextEvent", + "cancelable": 1, + "bubbles": 1 + }, + { + "precedes": "compositionupdate compositionend", + "dispatch": "sync", + "specs": "UIEvents", + "name": "compositionstart", + "type": "CompositionEvent", + "cancelable": 1, + "bubbles": 1 + }, + { + "precedes": "compositionend", + "dispatch": "sync", + "specs": "UIEvents", + "name": "compositionupdate", + "follows": "compositionstart", + "type": "CompositionEvent", + "bubbles": 1 + }, + { + "dispatch": "sync", + "specs": "UIEvents", + "name": "compositionend", + "follows": "compositionstart compositionupdate", + "type": "CompositionEvent", + "bubbles": 1 + }, + { + "precedes": "dragend", + "dispatch": "sync", + "specs": "HTML5_1", + "name": "drag", + "follows": "dragstart", + "cancelable": 1, + "type": "DragEvent", + "bubbles": 1 + }, + { + "precedes": "drag", + "dispatch": "sync", + "specs": "HTML5_1", + "name": "dragstart", + "type": "DragEvent", + "cancelable": 1, + "bubbles": 1 + }, + { + "precedes": "dragover drop", + "dispatch": "sync", + "specs": "HTML5_1", + "name": "dragenter", + "follows": "drag", + "cancelable": 1, + "type": "DragEvent", + "bubbles": 1 + }, + { + "precedes": "dragleave drop", + "dispatch": "sync", + "specs": "HTML5_1", + "name": "dragover", + "follows": "dragenter", + "cancelable": 1, + "type": "DragEvent", + "bubbles": 1 + }, + { + "precedes": "drag", + "dispatch": "sync", + "specs": "HTML5_1", + "name": "dragleave", + "follows": "dragover", + "type": "DragEvent", + "bubbles": 1 + }, + { + "dispatch": "sync", + "specs": "HTML5_1", + "name": "dragend", + "follows": "drag", + "type": "DragEvent", + "cancelable": 1, + "bubbles": 1 + }, + { + "dispatch": "sync", + "specs": "HTML5_1", + "name": "drop", + "follows": "dragenter dragover", + "type": "DragEvent", + "bubbles": 1 + }, + { + "dispatch": "sync", + "specs": "Clipboard", + "name": "copy", + "follows": "beforecopy", + "type": "ClipboardEvent", + "cancelable": 1, + "bubbles": 1 + }, + { + "dispatch": "sync", + "specs": "Clipboard", + "name": "cut", + "follows": "beforecut", + "type": "ClipboardEvent", + "cancelable": 1, + "bubbles": 1 + }, + { + "dispatch": "sync", + "specs": "Clipboard", + "name": "paste", + "follows": "beforepaste", + "type": "ClipboardEvent", + "cancelable": 1, + "bubbles": 1 + }, + { + "precedes": "blur", + "dispatch": "sync", + "specs": "HTML5", + "name": "focus", + "type": "FocusEvent" + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "blur", + "follows": "focus", + "type": "FocusEvent" + }, + { + "precedes": "focusout", + "dispatch": "sync", + "specs": "UIEvents", + "name": "focusin", + "aliases": "DOMFocusIn", + "type": "FocusEvent", + "bubbles": 1 + }, + { + "dispatch": "sync", + "specs": "UIEvents", + "name": "focusout", + "follows": "focusin", + "aliases": "DOMFocusOut", + "type": "FocusEvent", + "bubbles": 1 + }, + { + "dispatch": "async", + "specs": "UIEvents", + "name": "scroll", + "type": "UIEvent" + }, + { + "precedes": "transitionend", + "dispatch": "async", + "specs": "CSSTransition", + "aliases": "MSTransitionStart webkitTransitionStart", + "name": "transitionstart", + "cancelable": 1, + "type": "TransitionEvent", + "bubbles": 1 + }, + { + "dispatch": "async", + "specs": "CSSTransition", + "aliases": "MSTransitionEnd webkitTransitionEnd", + "name": "transitionend", + "follows": "transitionstart", + "cancelable": 1, + "type": "TransitionEvent", + "bubbles": 1 + }, + { + "precedes": "animationend animationiteration", + "dispatch": "async", + "specs": "CSSAnim", + "aliases": "MSAnimationStart webkitAnimationStart", + "name": "animationstart", + "cancelable": 1, + "type": "AnimationEvent", + "bubbles": 1 + }, + { + "dispatch": "async", + "specs": "CSSAnim", + "aliases": "MSAnimationEnd webkitAnimationEnd", + "name": "animationend", + "follows": "animationstart animationiteration", + "cancelable": 1, + "type": "AnimationEvent", + "bubbles": 1 + }, + { + "precedes": "animationend", + "dispatch": "async", + "specs": "CSSAnim", + "name": "animationiteration", + "follows": "animationstart", + "aliases": "MSAnimationIteration webkitAnimationIteration", + "type": "AnimationEvent", + "cancelable": 1, + "bubbles": 1 + }, + { + "dispatch": "sync", + "specs": "UIEvents", + "name": "DOMAttrModified", + "type": "MutationEvent", + "bubbles": 1 + }, + { + "dispatch": "sync", + "specs": "UIEvents", + "name": "DOMNodeInserted", + "type": "MutationEvent", + "bubbles": 1 + }, + { + "dispatch": "sync", + "specs": "UIEvents", + "name": "DOMNodeRemoved", + "type": "MutationEvent", + "bubbles": 1 + }, + { + "dispatch": "async-and-combine", + "specs": "UIEvents", + "name": "DOMSubtreeModified", + "type": "MutationEvent", + "bubbles": 1 + }, + { + "dispatch": "async", + "specs": "none", + "name": "overflowchanged", + "type": "OverflowEvent" + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "webkitRequestFullscreen": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "fullscreen", + "exposed": "Window", + "name": "webkitRequestFullscreen" + }, + "getElementsByTagNameNS": { + "pure": 1, + "signature": [ + { + "param-min-required": 2, + "type": "NodeList", + "param": [ + { + "nullable": 1, + "name": "namespaceURI", + "type": "DOMString", + "type-original": "DOMString?" + }, + { + "name": "localName", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "NodeList" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "getElementsByTagNameNS", + "tags": "TreeNavigation Namespaces" + }, + "requestFullscreen": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "fullscreen", + "exposed": "Window", + "name": "requestFullscreen" + }, + "getBoundingClientRect": { + "signature": [ + { + "type": "ClientRect", + "type-original": "ClientRect" + } + ], + "specs": "cssom-view", + "exposed": "Window", + "name": "getBoundingClientRect" + }, + "getAttributeNodeNS": { + "signature": [ + { + "param-min-required": 2, + "type": "Attr", + "param": [ + { + "treat-null-as": "EmptyString", + "name": "namespaceURI", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "localName", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "Attr" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "getAttributeNodeNS", + "tags": "TreeNavigation Namespaces" + }, + "msMatchesSelector": { + "pure": 1, + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "selectors", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "boolean" + } + ], + "specs": "selectors-api", + "exposed": "Window", + "name": "msMatchesSelector" + }, + "releasePointerCapture": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "pointerId", + "type": "long", + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "releasePointerCapture" + }, + "msGetUntransformedBounds": { + "signature": [ + { + "type": "ClientRect", + "type-original": "ClientRect" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "msGetUntransformedBounds" + }, + "webkitMatchesSelector": { + "pure": 1, + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "selectors", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "boolean" + } + ], + "specs": "selectors-api", + "exposed": "Window", + "name": "webkitMatchesSelector" + }, + "setAttributeNode": { + "signature": [ + { + "param-min-required": 1, + "type": "Attr", + "param": [ + { + "name": "newAttr", + "type": "Attr", + "type-original": "Attr" + } + ], + "type-original": "Attr" + } + ], + "specs": "dom4", + "ce-reactions": 1, + "exposed": "Window", + "name": "setAttributeNode", + "tags": "TreeMutation" + }, + "msReleasePointerCapture": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "pointerId", + "type": "long", + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "msReleasePointerCapture" + }, + "setAttribute": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "qualifiedName", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "value", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "dom4", + "ce-reactions": 1, + "exposed": "Window", + "name": "setAttribute", + "tags": "TreeMutation" + }, + "hasAttributes": { + "pure": 1, + "signature": [ + { + "type": "boolean", + "type-original": "boolean" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "hasAttributes", + "tags": "TreeNavigation" + }, + "msGetRegionContent": { + "signature": [ + { + "type": "MSRangeCollection", + "type-original": "MSRangeCollection" + } + ], + "specs": "css-regions", + "exposed": "Window", + "name": "msGetRegionContent", + "tags": "CSSOM" + }, + "requestPointerLock": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "pointerlock", + "exposed": "Window", + "name": "requestPointerLock" + }, + "setPointerCapture": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "pointerId", + "type": "long", + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "setPointerCapture" + }, + "getAttribute": { + "pure": 1, + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "DOMString", + "param": [ + { + "name": "qualifiedName", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "DOMString?" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "getAttribute", + "tags": "TreeNavigation" + }, + "closest": { + "pure": 1, + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "Element", + "param": [ + { + "name": "selectors", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "Element?" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "closest", + "tags": "TreeNavigation" + }, + "hasAttributeNS": { + "pure": 1, + "signature": [ + { + "param-min-required": 2, + "type": "boolean", + "param": [ + { + "treat-null-as": "EmptyString", + "name": "namespaceURI", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "localName", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "boolean" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "hasAttributeNS", + "tags": "TreeNavigation Namespaces" + }, + "getAttributeNS": { + "pure": 1, + "signature": [ + { + "param-min-required": 2, + "type": "DOMString", + "param": [ + { + "treat-null-as": "EmptyString", + "name": "namespaceURI", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "localName", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "DOMString" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "getAttributeNS", + "tags": "TreeNavigation Namespaces" + }, + "setAttributeNodeNS": { + "specs": "dom4", + "ce-reactions": 1, + "name": "setAttributeNodeNS", + "tags": "Namespaces TreeMutation", + "signature": [ + { + "param-min-required": 1, + "type": "Attr", + "param": [ + { + "name": "newAttr", + "type": "Attr", + "type-original": "Attr" + } + ], + "type-original": "Attr" + } + ], + "exposed": "Window" + }, + "getElementsByClassName": { + "pure": 1, + "signature": [ + { + "param-min-required": 1, + "type": "NodeList", + "param": [ + { + "name": "classNames", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "NodeList" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "getElementsByClassName" + }, + "hasAttribute": { + "pure": 1, + "specs": "dom4", + "name": "hasAttribute", + "tags": "TreeNavigation", + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "boolean" + } + ], + "exposed": "Window" + }, + "removeAttribute": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "qualifiedName", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "dom4", + "ce-reactions": 1, + "exposed": "Window", + "name": "removeAttribute", + "tags": "TreeMutation" + }, + "setAttributeNS": { + "signature": [ + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "treat-null-as": "EmptyString", + "name": "namespaceURI", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "qualifiedName", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "treat-null-as": "EmptyString", + "name": "value", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "dom4", + "ce-reactions": 1, + "exposed": "Window", + "name": "setAttributeNS", + "tags": "Namespaces TreeMutation" + }, + "msZoomTo": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "args", + "type": "MsZoomToOptions", + "type-original": "MsZoomToOptions" + } + ], + "type-original": "void" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "msZoomTo" + }, + "getAttributeNode": { + "signature": [ + { + "param-min-required": 1, + "type": "Attr", + "param": [ + { + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "Attr" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "getAttributeNode", + "tags": "TreeNavigation" + }, + "matches": { + "pure": 1, + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "selectors", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "boolean" + } + ], + "specs": "selectors-api", + "exposed": "Window", + "name": "matches" + }, + "getElementsByTagName": { + "pure": 1, + "signature": [ + { + "param-min-required": 1, + "type": "NodeList", + "param": [ + { + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "NodeList" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "getElementsByTagName", + "tags": "TreeNavigation" + }, + "webkitRequestFullScreen": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "fullscreen", + "exposed": "Window", + "name": "webkitRequestFullScreen" + }, + "getClientRects": { + "signature": [ + { + "type": "ClientRectList", + "type-original": "ClientRectList" + } + ], + "specs": "cssom-view", + "exposed": "Window", + "name": "getClientRects" + }, + "removeAttributeNode": { + "signature": [ + { + "param-min-required": 1, + "type": "Attr", + "param": [ + { + "name": "oldAttr", + "type": "Attr", + "type-original": "Attr" + } + ], + "type-original": "Attr" + } + ], + "specs": "dom4", + "ce-reactions": 1, + "exposed": "Window", + "name": "removeAttributeNode", + "tags": "TreeMutation" + }, + "removeAttributeNS": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "treat-null-as": "EmptyString", + "name": "namespaceURI", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "localName", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "dom4", + "ce-reactions": 1, + "exposed": "Window", + "name": "removeAttributeNS", + "tags": "Namespaces TreeMutation" + }, + "msSetPointerCapture": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "pointerId", + "type": "long", + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "msSetPointerCapture" + } + } + }, + "extends": "Node", + "implements": [ + "GlobalEventHandlers", + "ElementTraversal", + "ParentNode", + "ChildNode" + ] + }, + "WebKitFileSystem": { + "constants": { + "constant": {} + }, + "specs": "file-system-api", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "WebKitFileSystem", + "extends": "Object", + "properties": { + "property": { + "name": { + "specs": "file-system-api", + "exposed": "Window", + "name": "name", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "root": { + "specs": "file-system-api", + "exposed": "Window", + "name": "root", + "type": "WebKitDirectoryEntry", + "type-original": "WebKitDirectoryEntry", + "read-only": 1 + } + } + } + }, + "WindowClient": { + "specs": "service-workers", + "anonymous-methods": { + "method": [] + }, + "name": "WindowClient", + "properties": { + "property": { + "visibilityState": { + "specs": "service-workers", + "exposed": "Worker", + "name": "visibilityState", + "type": "VisibilityState", + "type-original": "VisibilityState", + "read-only": 1 + }, + "focused": { + "specs": "service-workers", + "exposed": "Worker", + "name": "focused", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "ancestorOrigins": { + "specs": "service-workers", + "same-object": 1, + "name": "ancestorOrigins", + "type-original": "FrozenArray", + "subtype": { + "type": "USVString" + }, + "exposed": "Worker", + "type": "FrozenArray", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Worker", + "methods": { + "method": { + "navigate": { + "signature": [ + { + "new-object": 1, + "subtype": { + "type": "WindowClient" + }, + "param-min-required": 1, + "type": "Promise", + "param": [ + { + "name": "url", + "type": "USVString", + "type-original": "USVString" + } + ], + "type-original": "Promise" + } + ], + "specs": "service-workers", + "exposed": "Worker", + "name": "navigate" + }, + "focus": { + "signature": [ + { + "new-object": 1, + "subtype": { + "type": "WindowClient" + }, + "type": "Promise", + "type-original": "Promise" + } + ], + "specs": "service-workers", + "exposed": "Worker", + "name": "focus" + } + } + }, + "extends": "Client" + }, + "ExtendableMessageEvent": { + "specs": "service-workers", + "constructor": { + "specs": "service-workers", + "signature": [ + { + "param-min-required": 1, + "type": "ExtendableMessageEvent", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "ExtendableMessageEventInit", + "optional": 1, + "type-original": "ExtendableMessageEventInit" + } + ], + "type-original": "ExtendableMessageEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "ExtendableMessageEvent", + "properties": { + "property": { + "source": { + "specs": "service-workers", + "same-object": 1, + "name": "source", + "type-original": "(Client or ServiceWorker or MessagePort)?", + "exposed": "Worker", + "type": [ + { + "nullable": 1, + "type": "Client" + }, + { + "nullable": 1, + "type": "ServiceWorker" + }, + { + "nullable": 1, + "type": "MessagePort" + } + ], + "read-only": 1 + }, + "ports": { + "specs": "service-workers", + "name": "ports", + "type-original": "FrozenArray?", + "subtype": { + "type": "MessagePort" + }, + "nullable": 1, + "exposed": "Worker", + "type": "FrozenArray", + "read-only": 1 + }, + "lastEventId": { + "specs": "service-workers", + "exposed": "Worker", + "name": "lastEventId", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "origin": { + "specs": "service-workers", + "exposed": "Worker", + "name": "origin", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "data": { + "specs": "service-workers", + "exposed": "Worker", + "name": "data", + "type": "any", + "type-original": "any", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Worker", + "methods": { + "method": {} + }, + "extends": "ExtendableEvent" + }, + "FileList": { + "constants": { + "constant": {} + }, + "specs": "fileapi", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": { + "item": { + "getter": 1, + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "File", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "File?" + } + ], + "specs": "fileapi", + "exposed": "Window Worker", + "name": "item" + } + } + }, + "exposed": "Window Worker", + "name": "FileList", + "extends": "Object", + "properties": { + "property": { + "length": { + "specs": "fileapi", + "exposed": "Window Worker", + "name": "length", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + } + } + } + }, + "SVGLineElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "clip-path" + }, + { + "enum-values": "nonzero evenodd inherit", + "value-syntax": "enum", + "name": "clip-rule" + }, + { + "enum-values": "inherit initial", + "value-syntax": "css_color", + "name": "color" + }, + { + "enum-values": "auto default none context-menu help pointer progress wait cell crosshair text vertical-text alias copy move no-drop not-allowed e-resize n-resize ne-resize nw-resize s-resize se-resize sw-resize w-resize ew-resize ns-resize nesw-resize nwse-resize col-resize row-resize all-scroll zoom-in zoom-out inherit", + "value-syntax": "comma_separated_css_url_with_optional_x_y_offset_followed_by_enum", + "name": "cursor" + }, + { + "enum-values": "inline block inline-block list-item table inline-table table-header-group table-footer-group table-row-group table-column-group table-row table-column table-cell table-caption run-in ruby ruby-base ruby-text ruby-base-container flex inline-flex -ms-grid -ms-inline-grid none inherit initial", + "value-syntax": "enum", + "name": "display" + }, + { + "enum-values": "none currentColor inherit", + "value-syntax": "svg_paint_or_css_color", + "name": "fill" + }, + { + "enum-values": "inherit", + "value-syntax": "0_to_1_floating_point_number", + "name": "fill-opacity" + }, + { + "enum-values": "nonzero evenodd inherit", + "value-syntax": "enum", + "name": "fill-rule" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "filter" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "marker" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "marker-end" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "marker-mid" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "marker-start" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "mask" + }, + { + "enum-values": "inherit initial", + "value-syntax": "0_to_1_floating_point_number", + "name": "opacity" + }, + { + "enum-values": "auto none visiblePainted visibleFill visibleStroke visible painted fill stroke all inherit initial", + "value-syntax": "enum", + "name": "pointer-events" + }, + { + "enum-values": "none currentColor inherit", + "value-syntax": "svg_paint_or_css_color", + "name": "stroke" + }, + { + "enum-values": "none inherit", + "value-syntax": "comma_or_space_separated_css_percentage_or_length", + "name": "stroke-dasharray" + }, + { + "enum-values": "inherit", + "value-syntax": "css_percentage_or_length", + "name": "stroke-dashoffset" + }, + { + "enum-values": "butt round square inherit", + "value-syntax": "enum", + "name": "stroke-linecap" + }, + { + "enum-values": "miter round bevel inherit", + "value-syntax": "enum", + "name": "stroke-linejoin" + }, + { + "enum-values": "inherit", + "value-syntax": "1_or_greater_floating_point_number", + "name": "stroke-miterlimit" + }, + { + "enum-values": "inherit", + "value-syntax": "0_to_1_floating_point_number", + "name": "stroke-opacity" + }, + { + "enum-values": "inherit", + "value-syntax": "css_percentage_or_length", + "name": "stroke-width" + }, + { + "enum-values": "visible hidden collapse inherit initial", + "value-syntax": "enum", + "name": "visibility" + } + ] + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGLineElement", + "properties": { + "property": { + "y1": { + "specs": "svg2", + "same-object": 1, + "name": "y1", + "constant": 1, + "content-attribute": "y1", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + }, + "x2": { + "specs": "svg2", + "same-object": 1, + "name": "x2", + "constant": 1, + "content-attribute": "x2", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + }, + "y2": { + "specs": "svg2", + "same-object": 1, + "name": "y2", + "constant": 1, + "content-attribute": "y2", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + }, + "x1": { + "specs": "svg2", + "same-object": 1, + "name": "x1", + "constant": 1, + "content-attribute": "x1", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "svg2", + "namespace": "SVG", + "name": "line" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGGraphicsElement" + }, + "HTMLParagraphElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLParagraphElement", + "properties": { + "property": { + "align": { + "content-attribute-enum-values": "center justify left right", + "specs": "html5", + "ce-reactions": 1, + "name": "align", + "type-original": "DOMString", + "content-attribute": "align", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "clear": { + "content-attribute-enum-values": "all left right none", + "extension": 1, + "specs": "none", + "ce-reactions": 1, + "name": "clear", + "type-original": "DOMString", + "content-attribute": "clear", + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "p" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "Plugin": { + "constants": { + "constant": {} + }, + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "item": { + "getter": 1, + "signature": [ + { + "param-min-required": 1, + "type": "MimeType", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "MimeType" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "item" + }, + "namedItem": { + "getter": 1, + "signature": [ + { + "param-min-required": 1, + "type": "MimeType", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "MimeType" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "namedItem" + } + } + }, + "name": "Plugin", + "extends": "Object", + "properties": { + "property": { + "length": { + "specs": "html5", + "exposed": "Window", + "name": "length", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + }, + "filename": { + "specs": "html5", + "exposed": "Window", + "name": "filename", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "version": { + "specs": "html5", + "exposed": "Window", + "name": "version", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "name": { + "specs": "html5", + "exposed": "Window", + "name": "name", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "description": { + "specs": "html5", + "exposed": "Window", + "name": "description", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + } + } + } + }, + "ReadableStream": { + "constants": { + "constant": {} + }, + "specs": "whatwg-streams", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "getReader": { + "signature": [ + { + "type": "ReadableStreamReader", + "type-original": "ReadableStreamReader" + } + ], + "specs": "whatwg-streams", + "exposed": "Window", + "name": "getReader" + }, + "cancel": { + "signature": [ + { + "subtype": { + "type": "void" + }, + "type": "Promise", + "type-original": "Promise" + } + ], + "specs": "whatwg-streams", + "exposed": "Window", + "name": "cancel" + } + } + }, + "name": "ReadableStream", + "extends": "Object", + "properties": { + "property": { + "locked": { + "specs": "whatwg-streams", + "exposed": "Window", + "name": "locked", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + } + } + } + }, + "HTMLAreasCollection": { + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "name": "HTMLAreasCollection", + "properties": { + "property": {} + }, + "tags": "TreeMutation", + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "HTMLCollection" + }, + "Node": { + "specs": "dom4", + "anonymous-methods": { + "method": [] + }, + "name": "Node", + "properties": { + "property": { + "nodeType": { + "specs": "dom4", + "name": "nodeType", + "constant": 1, + "store-in-slot": "lazy-type", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short", + "read-only": 1 + }, + "localName": { + "specs": "dom4", + "name": "localName", + "tags": "Namespaces", + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "previousSibling": { + "pure": 1, + "specs": "dom4", + "name": "previousSibling", + "tags": "TreeNavigation", + "type-original": "Node?", + "nullable": 1, + "exposed": "Window", + "type": "Node", + "read-only": 1 + }, + "textContent": { + "pure": 1, + "specs": "dom4", + "ce-reactions": 1, + "name": "textContent", + "tags": "TreeMutation", + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "type": "DOMString" + }, + "baseURI": { + "pure": 1, + "specs": "dom4", + "name": "baseURI", + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "namespaceURI": { + "specs": "dom4", + "name": "namespaceURI", + "tags": "Namespaces", + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "parentNode": { + "pure": 1, + "specs": "dom4", + "name": "parentNode", + "tags": "TreeNavigation", + "type-original": "Node", + "exposed": "Window", + "type": "Node", + "read-only": 1 + }, + "parentElement": { + "pure": 1, + "specs": "dom4", + "name": "parentElement", + "tags": "TreeNavigation", + "type-original": "HTMLElement", + "exposed": "Window", + "type": "HTMLElement", + "read-only": 1 + }, + "nodeValue": { + "pure": 1, + "specs": "dom4", + "ce-reactions": 1, + "name": "nodeValue", + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "type": "DOMString" + }, + "lastChild": { + "pure": 1, + "specs": "dom4", + "name": "lastChild", + "tags": "TreeNavigation", + "type-original": "Node?", + "nullable": 1, + "exposed": "Window", + "type": "Node", + "read-only": 1 + }, + "nextSibling": { + "pure": 1, + "specs": "dom4", + "name": "nextSibling", + "tags": "TreeNavigation", + "type-original": "Node?", + "nullable": 1, + "exposed": "Window", + "type": "Node", + "read-only": 1 + }, + "childNodes": { + "specs": "dom4", + "same-object": 1, + "name": "childNodes", + "tags": "TreeNavigation", + "type-original": "NodeList", + "exposed": "Window", + "type": "NodeList", + "read-only": 1 + }, + "ownerDocument": { + "pure": 1, + "specs": "dom4", + "name": "ownerDocument", + "tags": "TreeNavigation", + "type-original": "Document", + "exposed": "Window", + "type": "Document", + "read-only": 1 + }, + "nodeName": { + "pure": 1, + "specs": "dom4", + "name": "nodeName", + "store-in-slot": "lazy-instance", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "firstChild": { + "pure": 1, + "specs": "dom4", + "name": "firstChild", + "tags": "TreeNavigation", + "type-original": "Node?", + "nullable": 1, + "exposed": "Window", + "type": "Node", + "read-only": 1 + } + } + }, + "constants": { + "constant": { + "ENTITY_REFERENCE_NODE": { + "specs": "dom4", + "value": "5", + "exposed": "Window", + "name": "ENTITY_REFERENCE_NODE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "ATTRIBUTE_NODE": { + "specs": "dom4", + "value": "2", + "exposed": "Window", + "name": "ATTRIBUTE_NODE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "DOCUMENT_FRAGMENT_NODE": { + "specs": "dom4", + "value": "11", + "exposed": "Window", + "name": "DOCUMENT_FRAGMENT_NODE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "TEXT_NODE": { + "specs": "dom4", + "value": "3", + "exposed": "Window", + "name": "TEXT_NODE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "ELEMENT_NODE": { + "specs": "dom4", + "value": "1", + "exposed": "Window", + "name": "ELEMENT_NODE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "COMMENT_NODE": { + "specs": "dom4", + "value": "8", + "exposed": "Window", + "name": "COMMENT_NODE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "DOCUMENT_POSITION_DISCONNECTED": { + "specs": "dom4", + "value": "0x01", + "exposed": "Window", + "name": "DOCUMENT_POSITION_DISCONNECTED", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "DOCUMENT_POSITION_CONTAINED_BY": { + "specs": "dom4", + "value": "0x10", + "exposed": "Window", + "name": "DOCUMENT_POSITION_CONTAINED_BY", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "DOCUMENT_POSITION_CONTAINS": { + "specs": "dom4", + "value": "0x08", + "exposed": "Window", + "name": "DOCUMENT_POSITION_CONTAINS", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "DOCUMENT_TYPE_NODE": { + "specs": "dom4", + "value": "10", + "exposed": "Window", + "name": "DOCUMENT_TYPE_NODE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC": { + "specs": "dom4", + "value": "0x20", + "exposed": "Window", + "name": "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "DOCUMENT_NODE": { + "specs": "dom4", + "value": "9", + "exposed": "Window", + "name": "DOCUMENT_NODE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "ENTITY_NODE": { + "specs": "dom4", + "value": "6", + "exposed": "Window", + "name": "ENTITY_NODE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "PROCESSING_INSTRUCTION_NODE": { + "specs": "dom4", + "value": "7", + "exposed": "Window", + "name": "PROCESSING_INSTRUCTION_NODE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "CDATA_SECTION_NODE": { + "specs": "dom4", + "value": "4", + "exposed": "Window", + "name": "CDATA_SECTION_NODE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "NOTATION_NODE": { + "specs": "dom4", + "value": "12", + "exposed": "Window", + "name": "NOTATION_NODE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "DOCUMENT_POSITION_PRECEDING": { + "specs": "dom4", + "value": "0x02", + "exposed": "Window", + "name": "DOCUMENT_POSITION_PRECEDING", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "DOCUMENT_POSITION_FOLLOWING": { + "specs": "dom4", + "value": "0x04", + "exposed": "Window", + "name": "DOCUMENT_POSITION_FOLLOWING", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "methods": { + "method": { + "removeChild": { + "signature": [ + { + "param-min-required": 1, + "type": "Node", + "param": [ + { + "name": "oldChild", + "type": "Node", + "type-original": "Node" + } + ], + "type-original": "Node" + } + ], + "specs": "dom4", + "ce-reactions": 1, + "exposed": "Window", + "name": "removeChild", + "tags": "TreeMutation" + }, + "appendChild": { + "signature": [ + { + "param-min-required": 1, + "type": "Node", + "param": [ + { + "name": "newChild", + "type": "Node", + "type-original": "Node" + } + ], + "type-original": "Node" + } + ], + "specs": "dom4", + "ce-reactions": 1, + "exposed": "Window", + "name": "appendChild", + "tags": "TreeMutation" + }, + "isEqualNode": { + "pure": 1, + "specs": "dom4", + "name": "isEqualNode", + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "arg", + "type": "Node", + "type-original": "Node" + } + ], + "type-original": "boolean" + } + ], + "exposed": "Window" + }, + "lookupPrefix": { + "pure": 1, + "specs": "dom4", + "name": "lookupPrefix", + "tags": "Namespaces", + "signature": [ + { + "param-min-required": 1, + "type-original": "DOMString?", + "nullable": 1, + "type": "DOMString", + "param": [ + { + "nullable": 1, + "name": "namespaceURI", + "type": "DOMString", + "type-original": "DOMString?" + } + ] + } + ], + "exposed": "Window" + }, + "contains": { + "pure": 1, + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "child", + "type": "Node", + "type-original": "Node" + } + ], + "type-original": "boolean" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "contains" + }, + "isDefaultNamespace": { + "pure": 1, + "specs": "dom4", + "name": "isDefaultNamespace", + "tags": "Namespaces", + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "nullable": 1, + "name": "namespaceURI", + "type": "DOMString", + "type-original": "DOMString?" + } + ], + "type-original": "boolean" + } + ], + "exposed": "Window" + }, + "compareDocumentPosition": { + "pure": 1, + "signature": [ + { + "param-min-required": 1, + "type": "unsigned short", + "param": [ + { + "name": "other", + "type": "Node", + "type-original": "Node" + } + ], + "type-original": "unsigned short" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "compareDocumentPosition" + }, + "isSameNode": { + "pure": 1, + "specs": "dom4", + "name": "isSameNode", + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "other", + "type": "Node", + "type-original": "Node" + } + ], + "type-original": "boolean" + } + ], + "exposed": "Window" + }, + "normalize": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "dom4", + "ce-reactions": 1, + "exposed": "Window", + "name": "normalize", + "tags": "TreeMutation" + }, + "lookupNamespaceURI": { + "pure": 1, + "specs": "dom4", + "name": "lookupNamespaceURI", + "tags": "Namespaces", + "signature": [ + { + "param-min-required": 1, + "type-original": "DOMString?", + "nullable": 1, + "type": "DOMString", + "param": [ + { + "nullable": 1, + "name": "prefix", + "type": "DOMString", + "type-original": "DOMString?" + } + ] + } + ], + "exposed": "Window" + }, + "hasChildNodes": { + "pure": 1, + "signature": [ + { + "type": "boolean", + "type-original": "boolean" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "hasChildNodes" + }, + "cloneNode": { + "signature": [ + { + "param-min-required": 0, + "type": "Node", + "param": [ + { + "name": "deep", + "default": "false", + "type": "boolean", + "optional": 1, + "type-original": "boolean" + } + ], + "type-original": "Node" + } + ], + "specs": "dom4", + "ce-reactions": 1, + "exposed": "Window", + "name": "cloneNode", + "tags": "TreeMutation" + }, + "replaceChild": { + "signature": [ + { + "param-min-required": 2, + "type": "Node", + "param": [ + { + "name": "newChild", + "type": "Node", + "type-original": "Node" + }, + { + "name": "oldChild", + "type": "Node", + "type-original": "Node" + } + ], + "type-original": "Node" + } + ], + "specs": "dom4", + "ce-reactions": 1, + "exposed": "Window", + "name": "replaceChild", + "tags": "TreeMutation" + }, + "insertBefore": { + "signature": [ + { + "param-min-required": 2, + "type": "Node", + "param": [ + { + "name": "newChild", + "type": "Node", + "type-original": "Node" + }, + { + "nullable": 1, + "name": "refChild", + "type": "Node", + "type-original": "Node?" + } + ], + "type-original": "Node" + } + ], + "specs": "dom4", + "ce-reactions": 1, + "exposed": "Window", + "name": "insertBefore", + "tags": "TreeMutation" + } + } + }, + "exposed": "Window", + "extends": "EventTarget" + }, + "File": { + "constants": { + "constant": {} + }, + "specs": "fileapi", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window Worker", + "name": "File", + "extends": "Blob", + "properties": { + "property": { + "lastModifiedDate": { + "specs": "fileapi-20121025", + "name": "lastModifiedDate", + "type-original": "any", + "deprecated": 1, + "interop": 1, + "exposed": "Window Worker", + "type": "any", + "read-only": 1 + }, + "name": { + "specs": "fileapi", + "exposed": "Window Worker", + "name": "name", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "webkitRelativePath": { + "extension": 1, + "specs": "none", + "name": "webkitRelativePath", + "type-original": "DOMString", + "interop": 1, + "exposed": "Window Worker", + "type": "DOMString", + "read-only": 1 + } + } + } + }, + "WEBGL_depth_texture": { + "specs": "webgl", + "anonymous-methods": { + "method": [] + }, + "name": "WEBGL_depth_texture", + "properties": { + "property": {} + }, + "constants": { + "constant": { + "UNSIGNED_INT_24_8_WEBGL": { + "specs": "webgl", + "value": "0x84FA", + "exposed": "Window", + "name": "UNSIGNED_INT_24_8_WEBGL", + "type": "unsigned long", + "type-original": "GLenum" + } + } + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "WebKitEntry": { + "constants": { + "constant": {} + }, + "specs": "file-system-api", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "WebKitEntry", + "extends": "Object", + "properties": { + "property": { + "isDirectory": { + "specs": "file-system-api", + "exposed": "Window", + "name": "isDirectory", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "filesystem": { + "specs": "file-system-api", + "exposed": "Window", + "name": "filesystem", + "type": "WebKitFileSystem", + "type-original": "WebKitFileSystem", + "read-only": 1 + }, + "name": { + "specs": "file-system-api", + "exposed": "Window", + "name": "name", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "isFile": { + "specs": "file-system-api", + "exposed": "Window", + "name": "isFile", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "fullPath": { + "specs": "file-system-api", + "exposed": "Window", + "name": "fullPath", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + } + } + } + }, + "SVGPathSegCurvetoQuadraticSmoothRel": { + "specs": "svg11", + "anonymous-methods": { + "method": [] + }, + "name": "SVGPathSegCurvetoQuadraticSmoothRel", + "properties": { + "property": { + "y": { + "specs": "svg11", + "exposed": "Window", + "name": "y", + "type": "float", + "type-original": "float" + }, + "x": { + "specs": "svg11", + "exposed": "Window", + "name": "x", + "type": "float", + "type-original": "float" + } + } + }, + "constants": { + "constant": {} + }, + "interop": 1, + "deprecated": 1, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGPathSeg" + }, + "URL": { + "constants": { + "constant": {} + }, + "specs": "url", + "constructor": { + "specs": "url", + "signature": [ + { + "param-min-required": 1, + "type": "URL", + "param": [ + { + "name": "url", + "type": "USVString", + "type-original": "USVString" + }, + { + "name": "base", + "type": "USVString", + "optional": 1, + "type-original": "USVString" + } + ], + "type-original": "URL" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": { + "revokeObjectURL": { + "specs": "fileapi", + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "url", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "name": "revokeObjectURL", + "exposed": "Window Worker", + "static": 1 + }, + "createObjectURL": { + "specs": "fileapi", + "signature": [ + { + "param-min-required": 1, + "type": "DOMString", + "param": [ + { + "name": "object", + "type": "any", + "type-original": "any" + }, + { + "name": "options", + "optional": 1, + "type": "ObjectURLOptions", + "default": "0", + "type-original": "ObjectURLOptions" + } + ], + "type-original": "DOMString" + } + ], + "name": "createObjectURL", + "exposed": "Window Worker", + "static": 1 + }, + "toString": { + "signature": [ + { + "type": "USVString", + "type-original": "USVString" + } + ], + "specs": "url", + "exposed": "Window Worker", + "name": "toString", + "stringifier": 1 + } + } + }, + "exposed": "Window Worker", + "name": "URL", + "extends": "Object", + "properties": { + "property": { + "protocol": { + "specs": "url", + "exposed": "Window Worker", + "name": "protocol", + "type": "USVString", + "type-original": "USVString" + }, + "search": { + "specs": "url", + "exposed": "Window Worker", + "name": "search", + "type": "USVString", + "type-original": "USVString" + }, + "origin": { + "specs": "url", + "exposed": "Window Worker", + "name": "origin", + "type": "USVString", + "type-original": "USVString", + "read-only": 1 + }, + "hostname": { + "specs": "url", + "exposed": "Window Worker", + "name": "hostname", + "type": "USVString", + "type-original": "USVString" + }, + "pathname": { + "specs": "url", + "exposed": "Window Worker", + "name": "pathname", + "type": "USVString", + "type-original": "USVString" + }, + "port": { + "specs": "url", + "exposed": "Window Worker", + "name": "port", + "type": "USVString", + "type-original": "USVString" + }, + "host": { + "specs": "url", + "exposed": "Window Worker", + "name": "host", + "type": "USVString", + "type-original": "USVString" + }, + "username": { + "specs": "url", + "exposed": "Window Worker", + "name": "username", + "type": "USVString", + "type-original": "USVString" + }, + "hash": { + "specs": "url", + "exposed": "Window Worker", + "name": "hash", + "type": "USVString", + "type-original": "USVString" + }, + "password": { + "specs": "url", + "exposed": "Window Worker", + "name": "password", + "type": "USVString", + "type-original": "USVString" + }, + "href": { + "specs": "url", + "exposed": "Window Worker", + "name": "href", + "type": "USVString", + "stringifier": 1, + "type-original": "USVString" + } + } + } + }, + "MouseEvent": { + "specs": "uievents", + "constructor": { + "specs": "uievents", + "signature": [ + { + "param-min-required": 1, + "type": "MouseEvent", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "MouseEventInit", + "optional": 1, + "type-original": "MouseEventInit" + } + ], + "type-original": "MouseEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "MouseEvent", + "properties": { + "property": { + "toElement": { + "specs": "uievents", + "name": "toElement", + "type-original": "Element", + "deprecated": 1, + "exposed": "Window", + "type": "Element", + "read-only": 1 + }, + "pageX": { + "specs": "cssom-view", + "name": "pageX", + "tags": "CSSOM", + "type-original": "long", + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "which": { + "specs": "uievents", + "name": "which", + "type-original": "unsigned short", + "deprecated": 1, + "exposed": "Window", + "type": "unsigned short", + "read-only": 1 + }, + "fromElement": { + "specs": "uievents", + "name": "fromElement", + "type-original": "Element", + "deprecated": 1, + "exposed": "Window", + "type": "Element", + "read-only": 1 + }, + "layerY": { + "specs": "uievents", + "exposed": "Window", + "name": "layerY", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "offsetY": { + "specs": "cssom-view", + "name": "offsetY", + "tags": "CSSOM", + "type-original": "long", + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "x": { + "specs": "cssom-view", + "name": "x", + "tags": "CSSOM", + "type-original": "long", + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "y": { + "specs": "cssom-view", + "name": "y", + "tags": "CSSOM", + "type-original": "long", + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "altKey": { + "specs": "uievents", + "exposed": "Window", + "name": "altKey", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "metaKey": { + "specs": "uievents", + "exposed": "Window", + "name": "metaKey", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "ctrlKey": { + "specs": "uievents", + "exposed": "Window", + "name": "ctrlKey", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "movementY": { + "specs": "pointerlock", + "exposed": "Window", + "name": "movementY", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "offsetX": { + "specs": "cssom-view", + "name": "offsetX", + "tags": "CSSOM", + "type-original": "long", + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "screenX": { + "specs": "cssom-view", + "name": "screenX", + "tags": "CSSOM", + "type-original": "long", + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "clientY": { + "specs": "cssom-view", + "name": "clientY", + "tags": "CSSOM", + "type-original": "long", + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "shiftKey": { + "specs": "uievents", + "exposed": "Window", + "name": "shiftKey", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "layerX": { + "specs": "uievents", + "exposed": "Window", + "name": "layerX", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "movementX": { + "specs": "pointerlock", + "exposed": "Window", + "name": "movementX", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "screenY": { + "specs": "cssom-view", + "name": "screenY", + "tags": "CSSOM", + "type-original": "long", + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "relatedTarget": { + "specs": "uievents", + "name": "relatedTarget", + "type-original": "EventTarget", + "exposed": "Window", + "type": "EventTarget", + "read-only": 1 + }, + "button": { + "specs": "uievents", + "exposed": "Window", + "name": "button", + "type": "unsigned short", + "type-original": "unsigned short", + "read-only": 1 + }, + "pageY": { + "specs": "cssom-view", + "name": "pageY", + "tags": "CSSOM", + "type-original": "long", + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "buttons": { + "specs": "uievents", + "exposed": "Window", + "name": "buttons", + "type": "unsigned short", + "type-original": "unsigned short", + "read-only": 1 + }, + "clientX": { + "specs": "cssom-view", + "name": "clientX", + "tags": "CSSOM", + "type-original": "long", + "exposed": "Window", + "type": "long", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "getModifierState": { + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "keyArg", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "boolean" + } + ], + "specs": "uievents", + "exposed": "Window", + "name": "getModifierState" + }, + "initMouseEvent": { + "signature": [ + { + "param-min-required": 15, + "type": "void", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "canBubbleArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "cancelableArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "viewArg", + "type": "Window", + "type-original": "Window" + }, + { + "name": "detailArg", + "type": "long", + "type-original": "long" + }, + { + "name": "screenXArg", + "type": "long", + "type-original": "long" + }, + { + "name": "screenYArg", + "type": "long", + "type-original": "long" + }, + { + "name": "clientXArg", + "type": "long", + "type-original": "long" + }, + { + "name": "clientYArg", + "type": "long", + "type-original": "long" + }, + { + "name": "ctrlKeyArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "altKeyArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "shiftKeyArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "metaKeyArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "buttonArg", + "type": "unsigned short", + "type-original": "unsigned short" + }, + { + "name": "relatedTargetArg", + "type": "EventTarget", + "type-original": "EventTarget" + } + ], + "type-original": "void" + } + ], + "specs": "uievents", + "exposed": "Window", + "name": "initMouseEvent" + } + } + }, + "exposed": "Window", + "extends": "UIEvent" + }, + "DedicatedWorkerGlobalScope": { + "constants": { + "constant": {} + }, + "specs": "workers", + "global": "Worker", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": { + "close": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "workers", + "exposed": "Worker", + "name": "close" + }, + "postMessage": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "message", + "type": "any", + "type-original": "any" + }, + { + "subtype": { + "type": "object" + }, + "name": "transfer", + "type": "sequence", + "optional": 1, + "type-original": "sequence" + } + ], + "type-original": "void" + } + ], + "specs": "workers", + "exposed": "Worker", + "name": "postMessage" + } + } + }, + "exposed": "Worker", + "name": "DedicatedWorkerGlobalScope", + "extends": "WorkerGlobalScope", + "properties": { + "property": { + "onmessage": { + "specs": "workers", + "name": "onmessage", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Worker", + "type": "EventHandlerNonNull", + "event-handler": "message" + } + } + } + }, + "AudioContext": { + "specs": "webaudio", + "constructor": { + "specs": "webaudio", + "signature": [ + { + "type": "AudioContext", + "type-original": "AudioContext" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "AudioContext", + "properties": { + "property": { + "sampleRate": { + "specs": "webaudio", + "exposed": "Window", + "name": "sampleRate", + "type": "float", + "type-original": "float", + "read-only": 1 + }, + "currentTime": { + "specs": "webaudio", + "exposed": "Window", + "name": "currentTime", + "type": "double", + "type-original": "double", + "read-only": 1 + }, + "onstatechange": { + "specs": "webaudio", + "name": "onstatechange", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "statechange" + }, + "listener": { + "specs": "webaudio", + "exposed": "Window", + "name": "listener", + "type": "AudioListener", + "type-original": "AudioListener", + "read-only": 1 + }, + "destination": { + "specs": "webaudio", + "exposed": "Window", + "name": "destination", + "type": "AudioDestinationNode", + "type-original": "AudioDestinationNode", + "read-only": 1 + }, + "state": { + "specs": "webaudio", + "exposed": "Window", + "name": "state", + "type": "AudioContextState", + "type-original": "AudioContextState", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "createStereoPanner": { + "signature": [ + { + "type": "StereoPannerNode", + "type-original": "StereoPannerNode" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "createStereoPanner" + }, + "createIIRFilter": { + "signature": [ + { + "param-min-required": 2, + "type": "IIRFilterNode", + "param": [ + { + "subtype": { + "type": "double" + }, + "name": "feedforward", + "type": "sequence", + "type-original": "sequence" + }, + { + "subtype": { + "type": "double" + }, + "name": "feedback", + "type": "sequence", + "type-original": "sequence" + } + ], + "type-original": "IIRFilterNode" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "createIIRFilter" + }, + "createBiquadFilter": { + "signature": [ + { + "type": "BiquadFilterNode", + "type-original": "BiquadFilterNode" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "createBiquadFilter" + }, + "createDynamicsCompressor": { + "signature": [ + { + "type": "DynamicsCompressorNode", + "type-original": "DynamicsCompressorNode" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "createDynamicsCompressor" + }, + "close": { + "signature": [ + { + "subtype": { + "type": "void" + }, + "type": "Promise", + "type-original": "Promise" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "close" + }, + "createOscillator": { + "signature": [ + { + "type": "OscillatorNode", + "type-original": "OscillatorNode" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "createOscillator" + }, + "createWaveShaper": { + "signature": [ + { + "type": "WaveShaperNode", + "type-original": "WaveShaperNode" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "createWaveShaper" + }, + "createDelay": { + "signature": [ + { + "param-min-required": 0, + "type": "DelayNode", + "param": [ + { + "name": "maxDelayTime", + "default": "1.0", + "type": "double", + "optional": 1, + "type-original": "double" + } + ], + "type-original": "DelayNode" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "createDelay" + }, + "createAnalyser": { + "signature": [ + { + "type": "AnalyserNode", + "type-original": "AnalyserNode" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "createAnalyser" + }, + "createConvolver": { + "signature": [ + { + "type": "ConvolverNode", + "type-original": "ConvolverNode" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "createConvolver" + }, + "resume": { + "signature": [ + { + "subtype": { + "type": "void" + }, + "type": "Promise", + "type-original": "Promise" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "resume" + }, + "createScriptProcessor": { + "signature": [ + { + "param-min-required": 0, + "type": "ScriptProcessorNode", + "param": [ + { + "name": "bufferSize", + "default": "0", + "type": "unsigned long", + "optional": 1, + "type-original": "unsigned long" + }, + { + "name": "numberOfInputChannels", + "default": "2", + "type": "unsigned long", + "optional": 1, + "type-original": "unsigned long" + }, + { + "name": "numberOfOutputChannels", + "default": "2", + "type": "unsigned long", + "optional": 1, + "type-original": "unsigned long" + } + ], + "type-original": "ScriptProcessorNode" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "createScriptProcessor" + }, + "createPeriodicWave": { + "signature": [ + { + "param-min-required": 2, + "type": "PeriodicWave", + "param": [ + { + "name": "real", + "type": "Float32Array", + "type-original": "Float32Array" + }, + { + "name": "imag", + "type": "Float32Array", + "type-original": "Float32Array" + }, + { + "name": "constraints", + "type": "PeriodicWaveConstraints", + "optional": 1, + "type-original": "PeriodicWaveConstraints" + } + ], + "type-original": "PeriodicWave" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "createPeriodicWave" + }, + "createChannelMerger": { + "signature": [ + { + "param-min-required": 0, + "type": "ChannelMergerNode", + "param": [ + { + "name": "numberOfInputs", + "default": "6", + "type": "unsigned long", + "optional": 1, + "type-original": "unsigned long" + } + ], + "type-original": "ChannelMergerNode" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "createChannelMerger" + }, + "createMediaElementSource": { + "signature": [ + { + "param-min-required": 1, + "type": "MediaElementAudioSourceNode", + "param": [ + { + "name": "mediaElement", + "type": "HTMLMediaElement", + "type-original": "HTMLMediaElement" + } + ], + "type-original": "MediaElementAudioSourceNode" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "createMediaElementSource" + }, + "createBufferSource": { + "signature": [ + { + "type": "AudioBufferSourceNode", + "type-original": "AudioBufferSourceNode" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "createBufferSource" + }, + "createChannelSplitter": { + "signature": [ + { + "param-min-required": 0, + "type": "ChannelSplitterNode", + "param": [ + { + "name": "numberOfOutputs", + "default": "6", + "type": "unsigned long", + "optional": 1, + "type-original": "unsigned long" + } + ], + "type-original": "ChannelSplitterNode" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "createChannelSplitter" + }, + "suspend": { + "signature": [ + { + "subtype": { + "type": "void" + }, + "type": "Promise", + "type-original": "Promise" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "suspend" + }, + "decodeAudioData": { + "signature": [ + { + "subtype": { + "type": "AudioBuffer" + }, + "param-min-required": 1, + "type": "Promise", + "param": [ + { + "name": "audioData", + "type": "ArrayBuffer", + "type-original": "ArrayBuffer" + }, + { + "name": "successCallback", + "type": "DecodeSuccessCallback", + "optional": 1, + "type-original": "DecodeSuccessCallback" + }, + { + "name": "errorCallback", + "type": "DecodeErrorCallback", + "optional": 1, + "type-original": "DecodeErrorCallback" + } + ], + "type-original": "Promise" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "decodeAudioData" + }, + "createGain": { + "signature": [ + { + "type": "GainNode", + "type-original": "GainNode" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "createGain" + }, + "createMediaStreamSource": { + "signature": [ + { + "param-min-required": 1, + "type": "MediaStreamAudioSourceNode", + "param": [ + { + "name": "mediaStream", + "type": "MediaStream", + "type-original": "MediaStream" + } + ], + "type-original": "MediaStreamAudioSourceNode" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "createMediaStreamSource" + }, + "createBuffer": { + "signature": [ + { + "param-min-required": 3, + "type": "AudioBuffer", + "param": [ + { + "name": "numberOfChannels", + "type": "unsigned long", + "type-original": "unsigned long" + }, + { + "name": "length", + "type": "unsigned long", + "type-original": "unsigned long" + }, + { + "name": "sampleRate", + "type": "float", + "type-original": "float" + } + ], + "type-original": "AudioBuffer" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "createBuffer" + }, + "createPanner": { + "signature": [ + { + "type": "PannerNode", + "type-original": "PannerNode" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "createPanner" + } + } + }, + "exposed": "Window", + "extends": "EventTarget" + }, + "SVGTextPositioningElement": { + "constants": { + "constant": {} + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "SVGTextPositioningElement", + "extends": "SVGTextContentElement", + "properties": { + "property": { + "y": { + "specs": "svg2", + "same-object": 1, + "name": "y", + "constant": 1, + "content-attribute": "y", + "type-original": "SVGAnimatedLengthList", + "exposed": "Window", + "content-attribute-value-syntax": "comma_or_space_separated_svg_number_with_optional_units", + "type": "SVGAnimatedLengthList", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "rotate": { + "specs": "svg2", + "same-object": 1, + "name": "rotate", + "constant": 1, + "content-attribute": "rotate", + "type-original": "SVGAnimatedNumberList", + "exposed": "Window", + "content-attribute-value-syntax": "comma_or_space_separated_floating_point_numbers", + "type": "SVGAnimatedNumberList", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "dy": { + "specs": "svg2", + "same-object": 1, + "name": "dy", + "constant": 1, + "content-attribute": "dy", + "type-original": "SVGAnimatedLengthList", + "exposed": "Window", + "content-attribute-value-syntax": "comma_or_space_separated_svg_number_with_optional_units", + "type": "SVGAnimatedLengthList", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "dx": { + "specs": "svg2", + "same-object": 1, + "name": "dx", + "constant": 1, + "content-attribute": "dx", + "type-original": "SVGAnimatedLengthList", + "exposed": "Window", + "content-attribute-value-syntax": "comma_or_space_separated_svg_number_with_optional_units", + "type": "SVGAnimatedLengthList", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "x": { + "specs": "svg2", + "same-object": 1, + "name": "x", + "constant": 1, + "content-attribute": "x", + "type-original": "SVGAnimatedLengthList", + "exposed": "Window", + "content-attribute-value-syntax": "comma_or_space_separated_svg_number_with_optional_units", + "type": "SVGAnimatedLengthList", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + } + }, + "ExtensionScriptApis": { + "specs": "none", + "anonymous-methods": { + "method": [] + }, + "name": "ExtensionScriptApis", + "properties": { + "property": {} + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "fireExtensionApiTelemetry": { + "signature": [ + { + "param-min-required": 4, + "type": "void", + "param": [ + { + "name": "functionName", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "isSucceeded", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "isSupported", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "errorString", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "fireExtensionApiTelemetry" + }, + "registerGenericPersistentCallbackHandler": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "callbackHandler", + "type": "Function", + "type-original": "Function" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "registerGenericPersistentCallbackHandler" + }, + "genericSynchronousFunction": { + "signature": [ + { + "param-min-required": 1, + "type": "DOMString", + "param": [ + { + "name": "functionId", + "type": "long", + "type-original": "long" + }, + { + "name": "parameters", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + } + ], + "type-original": "DOMString" + } + ], + "specs": "none", + "exposed": "Window", + "name": "genericSynchronousFunction" + }, + "registerWebRuntimeCallbackHandler": { + "signature": [ + { + "param-min-required": 1, + "type": "object", + "param": [ + { + "name": "handler", + "type": "Function", + "type-original": "Function" + } + ], + "type-original": "object" + } + ], + "specs": "none", + "exposed": "Window", + "name": "registerWebRuntimeCallbackHandler" + }, + "genericWebRuntimeCallout": { + "signature": [ + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "name": "to", + "type": "object", + "type-original": "object" + }, + { + "name": "from", + "type": "object", + "type-original": "object" + }, + { + "name": "payload", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "genericWebRuntimeCallout" + }, + "getExtensionId": { + "signature": [ + { + "type": "DOMString", + "type-original": "DOMString" + } + ], + "specs": "none", + "exposed": "Window", + "name": "getExtensionId" + }, + "registerGenericFunctionCallbackHandler": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "callbackHandler", + "type": "Function", + "type-original": "Function" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "registerGenericFunctionCallbackHandler" + }, + "genericFunction": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "routerAddress", + "type": "object", + "type-original": "object" + }, + { + "name": "parameters", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + }, + { + "name": "callbackId", + "type": "long", + "optional": 1, + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "genericFunction" + }, + "extensionIdToShortId": { + "signature": [ + { + "param-min-required": 1, + "type": "long", + "param": [ + { + "name": "extensionId", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "long" + } + ], + "specs": "none", + "exposed": "Window", + "name": "extensionIdToShortId" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "AudioTrackList": { + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "name": "AudioTrackList", + "properties": { + "property": { + "onremovetrack": { + "specs": "html5", + "name": "onremovetrack", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "removetrack" + }, + "onchange": { + "specs": "html5", + "name": "onchange", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "change" + }, + "length": { + "specs": "html5", + "exposed": "Window", + "name": "length", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + }, + "onaddtrack": { + "specs": "html5", + "name": "onaddtrack", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "addtrack" + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "async", + "specs": "HTML5", + "name": "addtrack", + "type": "TrackEvent", + "skips-window": 1 + }, + { + "dispatch": "async", + "specs": "HTML5", + "name": "removetrack", + "type": "TrackEvent", + "skips-window": 1 + }, + { + "dispatch": "async", + "specs": "HTML5", + "name": "change", + "type": "Event", + "skips-window": 1 + } + ] + }, + "methods": { + "method": { + "getTrackById": { + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "AudioTrack", + "param": [ + { + "name": "id", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "AudioTrack?" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "getTrackById" + }, + "item": { + "getter": 1, + "signature": [ + { + "param-min-required": 1, + "type": "AudioTrack", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "AudioTrack" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "item" + } + } + }, + "exposed": "Window", + "extends": "EventTarget" + }, + "HTMLOListElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLOListElement", + "properties": { + "property": { + "compact": { + "specs": "html5", + "ce-reactions": 1, + "name": "compact", + "type-original": "boolean", + "content-attribute": "compact", + "deprecated": 1, + "interop": 1, + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "type": { + "content-attribute-enum-values": "1 a A i I disc circle square", + "specs": "html5", + "ce-reactions": 1, + "name": "type", + "content-attribute": "type", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "start": { + "specs": "html5", + "ce-reactions": 1, + "name": "start", + "content-attribute": "start", + "type-original": "long", + "exposed": "Window", + "content-attribute-value-syntax": "signed_integer", + "type": "long", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "ol" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "IntersectionObserver": { + "dataslot": [ + { + "name": "callback" + } + ], + "specs": "IntersectionObserver", + "constructor": { + "specs": "IntersectionObserver", + "signature": [ + { + "param-min-required": 1, + "type": "IntersectionObserver", + "param": [ + { + "name": "callback", + "type": "IntersectionObserverCallback", + "type-original": "IntersectionObserverCallback" + }, + { + "name": "options", + "type": "IntersectionObserverInit", + "optional": 1, + "type-original": "IntersectionObserverInit" + } + ], + "type-original": "IntersectionObserver" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "IntersectionObserver", + "properties": { + "property": { + "rootMargin": { + "specs": "IntersectionObserver", + "name": "rootMargin", + "constant": 1, + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "root": { + "specs": "IntersectionObserver", + "name": "root", + "constant": 1, + "type-original": "Element?", + "nullable": 1, + "exposed": "Window", + "type": "Element", + "read-only": 1 + }, + "thresholds": { + "specs": "IntersectionObserver", + "name": "thresholds", + "constant": 1, + "type-original": "sequence", + "subtype": { + "type": "double" + }, + "exposed": "Window", + "type": "sequence", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": { + "observe": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "target", + "type": "Element", + "type-original": "Element" + } + ], + "type-original": "void" + } + ], + "specs": "IntersectionObserver", + "exposed": "Window", + "name": "observe" + }, + "takeRecords": { + "signature": [ + { + "subtype": { + "type": "IntersectionObserverEntry" + }, + "type": "sequence", + "type-original": "sequence" + } + ], + "specs": "IntersectionObserver", + "exposed": "Window", + "name": "takeRecords" + }, + "unobserve": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "target", + "type": "Element", + "type-original": "Element" + } + ], + "type-original": "void" + } + ], + "specs": "IntersectionObserver", + "exposed": "Window", + "name": "unobserve" + }, + "disconnect": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "IntersectionObserver", + "exposed": "Window", + "name": "disconnect" + } + } + }, + "extends": "Object" + }, + "WEBGL_debug_renderer_info": { + "specs": "webgl", + "anonymous-methods": { + "method": [] + }, + "name": "WEBGL_debug_renderer_info", + "properties": { + "property": {} + }, + "constants": { + "constant": { + "UNMASKED_VENDOR_WEBGL": { + "specs": "webgl", + "value": "0x9245", + "exposed": "Window", + "name": "UNMASKED_VENDOR_WEBGL", + "type": "unsigned long", + "type-original": "GLenum" + }, + "UNMASKED_RENDERER_WEBGL": { + "specs": "webgl", + "value": "0x9246", + "exposed": "Window", + "name": "UNMASKED_RENDERER_WEBGL", + "type": "unsigned long", + "type-original": "GLenum" + } + } + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "FetchEvent": { + "specs": "service-workers", + "constructor": { + "specs": "service-workers", + "signature": [ + { + "param-min-required": 2, + "type": "FetchEvent", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "FetchEventInit", + "type-original": "FetchEventInit" + } + ], + "type-original": "FetchEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "FetchEvent", + "properties": { + "property": { + "request": { + "specs": "service-workers", + "same-object": 1, + "name": "request", + "type-original": "Request", + "exposed": "Worker", + "type": "Request", + "read-only": 1 + }, + "clientId": { + "specs": "service-workers", + "exposed": "Worker", + "name": "clientId", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "reservedClientId": { + "specs": "service-workers", + "name": "reservedClientId", + "type-original": "DOMString", + "exposed": "Worker", + "type": "DOMString", + "read-only": 1 + }, + "targetClientId": { + "specs": "service-workers", + "name": "targetClientId", + "type-original": "DOMString", + "exposed": "Worker", + "type": "DOMString", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Worker", + "methods": { + "method": { + "respondWith": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "subtype": { + "type": "Response" + }, + "name": "r", + "type": "Promise", + "type-original": "Promise" + } + ], + "type-original": "void" + } + ], + "specs": "service-workers", + "exposed": "Worker", + "name": "respondWith" + } + } + }, + "extends": "ExtendableEvent" + }, + "StyleMedia": { + "specs": "none", + "anonymous-methods": { + "method": [] + }, + "name": "StyleMedia", + "properties": { + "property": { + "type": { + "specs": "none", + "name": "type", + "tags": "CSSOM", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + } + } + }, + "tags": "CSSOM", + "constants": { + "constant": {} + }, + "deprecated": 1, + "exposed": "Window", + "methods": { + "method": { + "matchMedium": { + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "mediaquery", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "boolean" + } + ], + "specs": "none", + "exposed": "Window", + "name": "matchMedium", + "tags": "CSSOM" + } + } + }, + "extends": "Object" + }, + "MediaStreamTrack": { + "specs": "media-capture-api", + "anonymous-methods": { + "method": [] + }, + "name": "MediaStreamTrack", + "properties": { + "property": { + "onoverconstrained": { + "specs": "media-capture-api", + "name": "onoverconstrained", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "overconstrained" + }, + "onended": { + "specs": "media-capture-api", + "name": "onended", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "ended" + }, + "readyState": { + "specs": "media-capture-api", + "exposed": "Window", + "name": "readyState", + "type": "MediaStreamTrackState", + "type-original": "MediaStreamTrackState", + "read-only": 1 + }, + "muted": { + "specs": "media-capture-api", + "exposed": "Window", + "name": "muted", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "onunmute": { + "specs": "media-capture-api", + "name": "onunmute", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "unmute" + }, + "remote": { + "specs": "media-capture-api", + "exposed": "Window", + "name": "remote", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "onmute": { + "specs": "media-capture-api", + "name": "onmute", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "mute" + }, + "kind": { + "specs": "media-capture-api", + "exposed": "Window", + "name": "kind", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "readonly": { + "specs": "media-capture-api", + "exposed": "Window", + "name": "readonly", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "id": { + "specs": "media-capture-api", + "exposed": "Window", + "name": "id", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "label": { + "specs": "media-capture-api", + "exposed": "Window", + "name": "label", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "enabled": { + "specs": "media-capture-api", + "exposed": "Window", + "name": "enabled", + "type": "boolean", + "type-original": "boolean" + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "MediaCap", + "name": "mute", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "MediaCap", + "name": "unmute", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "MediaCap", + "name": "ended", + "type": "MediaStreamErrorEvent", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "MediaCap", + "name": "overconstrained", + "type": "MediaStreamErrorEvent", + "skips-window": 1 + } + ] + }, + "methods": { + "method": { + "stop": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "media-capture-api", + "exposed": "Window", + "name": "stop" + }, + "clone": { + "signature": [ + { + "type": "MediaStreamTrack", + "type-original": "MediaStreamTrack" + } + ], + "specs": "media-capture-api", + "exposed": "Window", + "name": "clone" + }, + "getSettings": { + "signature": [ + { + "type": "MediaTrackSettings", + "type-original": "MediaTrackSettings" + } + ], + "specs": "media-capture-api", + "exposed": "Window", + "name": "getSettings" + }, + "applyConstraints": { + "signature": [ + { + "subtype": { + "type": "void" + }, + "param-min-required": 1, + "type": "Promise", + "param": [ + { + "name": "constraints", + "type": "MediaTrackConstraints", + "type-original": "MediaTrackConstraints" + } + ], + "type-original": "Promise" + } + ], + "specs": "media-capture-api", + "exposed": "Window", + "name": "applyConstraints" + }, + "getConstraints": { + "signature": [ + { + "type": "MediaTrackConstraints", + "type-original": "MediaTrackConstraints" + } + ], + "specs": "media-capture-api", + "exposed": "Window", + "name": "getConstraints" + }, + "getCapabilities": { + "signature": [ + { + "type": "MediaTrackCapabilities", + "type-original": "MediaTrackCapabilities" + } + ], + "specs": "media-capture-api", + "exposed": "Window", + "name": "getCapabilities" + } + } + }, + "exposed": "Window", + "extends": "EventTarget" + }, + "SVGFEMorphologyElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "linearRGB auto sRGB inherit", + "value-syntax": "enum", + "name": "color-interpolation-filters" + } + ] + }, + "specs": "filter-effects", + "anonymous-methods": { + "method": [] + }, + "name": "SVGFEMorphologyElement", + "properties": { + "property": { + "radiusX": { + "specs": "filter-effects", + "name": "radiusX", + "constant": 1, + "content-attribute": "radius", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "svg_x_y_pair", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "operator": { + "content-attribute-enum-values": "erode dilate", + "specs": "filter-effects", + "name": "operator", + "constant": 1, + "content-attribute": "operator", + "type-original": "SVGAnimatedEnumeration", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "SVGAnimatedEnumeration", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "radiusY": { + "specs": "filter-effects", + "name": "radiusY", + "constant": 1, + "content-attribute": "radius", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "svg_x_y_pair", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "in1": { + "content-attribute-enum-values": "SourceGraphic SourceAlpha BackgroundImage BackgroundAlpha FillPaint StrokePaint", + "specs": "filter-effects", + "name": "in1", + "constant": 1, + "content-attribute": "in", + "type-original": "SVGAnimatedString", + "exposed": "Window", + "content-attribute-value-syntax": "filter_result_ref", + "type": "SVGAnimatedString", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "filter-effects", + "namespace": "SVG", + "name": "feMorphology" + } + ], + "constants": { + "constant": { + "SVG_MORPHOLOGY_OPERATOR_UNKNOWN": { + "specs": "filter-effects", + "value": "0", + "exposed": "Window", + "name": "SVG_MORPHOLOGY_OPERATOR_UNKNOWN", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_MORPHOLOGY_OPERATOR_ERODE": { + "specs": "filter-effects", + "value": "1", + "exposed": "Window", + "name": "SVG_MORPHOLOGY_OPERATOR_ERODE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_MORPHOLOGY_OPERATOR_DILATE": { + "specs": "filter-effects", + "value": "2", + "exposed": "Window", + "name": "SVG_MORPHOLOGY_OPERATOR_DILATE", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGElement", + "implements": [ + "SVGFilterPrimitiveStandardAttributes" + ] + }, + "PerformanceNavigationTiming": { + "constants": { + "constant": {} + }, + "specs": "navigation-timing", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "PerformanceNavigationTiming", + "extends": "PerformanceEntry", + "properties": { + "property": { + "redirectStart": { + "specs": "navigation-timing-2-20150923", + "name": "redirectStart", + "type-original": "DOMHighResTimeStamp", + "deprecated": 1, + "exposed": "Window", + "type": "double", + "read-only": 1 + }, + "domainLookupEnd": { + "specs": "navigation-timing-2-20150923", + "name": "domainLookupEnd", + "type-original": "DOMHighResTimeStamp", + "deprecated": 1, + "exposed": "Window", + "type": "double", + "read-only": 1 + }, + "responseStart": { + "specs": "navigation-timing-2-20150923", + "name": "responseStart", + "type-original": "DOMHighResTimeStamp", + "deprecated": 1, + "exposed": "Window", + "type": "double", + "read-only": 1 + }, + "domComplete": { + "specs": "navigation-timing", + "exposed": "Window", + "name": "domComplete", + "type": "double", + "type-original": "DOMHighResTimeStamp", + "read-only": 1 + }, + "domainLookupStart": { + "specs": "navigation-timing-2-20150923", + "name": "domainLookupStart", + "type-original": "DOMHighResTimeStamp", + "deprecated": 1, + "exposed": "Window", + "type": "double", + "read-only": 1 + }, + "loadEventStart": { + "specs": "navigation-timing", + "exposed": "Window", + "name": "loadEventStart", + "type": "double", + "type-original": "DOMHighResTimeStamp", + "read-only": 1 + }, + "fetchStart": { + "specs": "navigation-timing-2-20150923", + "name": "fetchStart", + "type-original": "DOMHighResTimeStamp", + "deprecated": 1, + "exposed": "Window", + "type": "double", + "read-only": 1 + }, + "requestStart": { + "specs": "navigation-timing-2-20150923", + "name": "requestStart", + "type-original": "DOMHighResTimeStamp", + "deprecated": 1, + "exposed": "Window", + "type": "double", + "read-only": 1 + }, + "domInteractive": { + "specs": "navigation-timing", + "exposed": "Window", + "name": "domInteractive", + "type": "double", + "type-original": "DOMHighResTimeStamp", + "read-only": 1 + }, + "unloadEventEnd": { + "specs": "navigation-timing", + "exposed": "Window", + "name": "unloadEventEnd", + "type": "double", + "type-original": "DOMHighResTimeStamp", + "read-only": 1 + }, + "navigationStart": { + "specs": "navigation-timing-2-20130131", + "name": "navigationStart", + "type-original": "DOMHighResTimeStamp", + "deprecated": 1, + "exposed": "Window", + "type": "double", + "read-only": 1 + }, + "connectEnd": { + "specs": "navigation-timing-2-20150923", + "name": "connectEnd", + "type-original": "DOMHighResTimeStamp", + "deprecated": 1, + "exposed": "Window", + "type": "double", + "read-only": 1 + }, + "loadEventEnd": { + "specs": "navigation-timing", + "exposed": "Window", + "name": "loadEventEnd", + "type": "double", + "type-original": "DOMHighResTimeStamp", + "read-only": 1 + }, + "connectStart": { + "specs": "navigation-timing-2-20150923", + "name": "connectStart", + "type-original": "DOMHighResTimeStamp", + "deprecated": 1, + "exposed": "Window", + "type": "double", + "read-only": 1 + }, + "responseEnd": { + "specs": "navigation-timing-2-20150923", + "name": "responseEnd", + "type-original": "DOMHighResTimeStamp", + "deprecated": 1, + "exposed": "Window", + "type": "double", + "read-only": 1 + }, + "domLoading": { + "specs": "navigation-timing-2-20150923", + "name": "domLoading", + "type-original": "DOMHighResTimeStamp", + "deprecated": 1, + "exposed": "Window", + "type": "double", + "read-only": 1 + }, + "redirectEnd": { + "specs": "navigation-timing-2-20150923", + "name": "redirectEnd", + "type-original": "DOMHighResTimeStamp", + "deprecated": 1, + "exposed": "Window", + "type": "double", + "read-only": 1 + }, + "redirectCount": { + "specs": "navigation-timing", + "exposed": "Window", + "name": "redirectCount", + "type": "unsigned short", + "type-original": "unsigned short", + "read-only": 1 + }, + "unloadEventStart": { + "specs": "navigation-timing", + "exposed": "Window", + "name": "unloadEventStart", + "type": "double", + "type-original": "DOMHighResTimeStamp", + "read-only": 1 + }, + "domContentLoadedEventEnd": { + "specs": "navigation-timing", + "exposed": "Window", + "name": "domContentLoadedEventEnd", + "type": "double", + "type-original": "DOMHighResTimeStamp", + "read-only": 1 + }, + "domContentLoadedEventStart": { + "specs": "navigation-timing", + "exposed": "Window", + "name": "domContentLoadedEventStart", + "type": "double", + "type-original": "DOMHighResTimeStamp", + "read-only": 1 + }, + "type": { + "specs": "navigation-timing", + "exposed": "Window", + "name": "type", + "type": "NavigationType", + "type-original": "NavigationType", + "read-only": 1 + }, + "workerStart": { + "specs": "navigation-timing", + "exposed": "Window", + "name": "workerStart", + "type": "double", + "type-original": "DOMHighResTimeStamp", + "read-only": 1 + } + } + } + }, + "OfflineAudioCompletionEvent": { + "constants": { + "constant": {} + }, + "specs": "webaudio", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "OfflineAudioCompletionEvent", + "extends": "Event", + "properties": { + "property": { + "renderedBuffer": { + "specs": "webaudio", + "exposed": "Window", + "name": "renderedBuffer", + "type": "AudioBuffer", + "type-original": "AudioBuffer", + "read-only": 1 + } + } + } + }, + "BiquadFilterNode": { + "constants": { + "constant": {} + }, + "specs": "webaudio", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "getFrequencyResponse": { + "signature": [ + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "name": "frequencyHz", + "type": "Float32Array", + "type-original": "Float32Array" + }, + { + "name": "magResponse", + "type": "Float32Array", + "type-original": "Float32Array" + }, + { + "name": "phaseResponse", + "type": "Float32Array", + "type-original": "Float32Array" + } + ], + "type-original": "void" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "getFrequencyResponse" + } + } + }, + "name": "BiquadFilterNode", + "extends": "AudioNode", + "properties": { + "property": { + "frequency": { + "specs": "webaudio", + "exposed": "Window", + "name": "frequency", + "type": "AudioParam", + "type-original": "AudioParam", + "read-only": 1 + }, + "Q": { + "specs": "webaudio", + "exposed": "Window", + "name": "Q", + "type": "AudioParam", + "type-original": "AudioParam", + "read-only": 1 + }, + "detune": { + "specs": "webaudio", + "exposed": "Window", + "name": "detune", + "type": "AudioParam", + "type-original": "AudioParam", + "read-only": 1 + }, + "gain": { + "specs": "webaudio", + "exposed": "Window", + "name": "gain", + "type": "AudioParam", + "type-original": "AudioParam", + "read-only": 1 + }, + "type": { + "specs": "webaudio", + "exposed": "Window", + "name": "type", + "type": "BiquadFilterType", + "type-original": "BiquadFilterType" + } + } + } + }, + "SVGPatternElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "auto inherit", + "value-syntax": "css_shape_rect", + "name": "clip" + }, + { + "enum-values": "visible hidden scroll auto inherit", + "value-syntax": "enum", + "name": "overflow" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "clip-path" + }, + { + "enum-values": "auto default none context-menu help pointer progress wait cell crosshair text vertical-text alias copy move no-drop not-allowed e-resize n-resize ne-resize nw-resize s-resize se-resize sw-resize w-resize ew-resize ns-resize nesw-resize nwse-resize col-resize row-resize all-scroll zoom-in zoom-out inherit", + "value-syntax": "comma_separated_css_url_with_optional_x_y_offset_followed_by_enum", + "name": "cursor" + }, + { + "enum-values": "accumulate inherit", + "value-syntax": "svg_enum_new_followed_by_svg_viewbox", + "name": "enable-background" + }, + { + "enum-values": "false true", + "value-syntax": "enum", + "name": "externalResourcesRequired" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "filter" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "mask" + }, + { + "enum-values": "inherit initial", + "value-syntax": "0_to_1_floating_point_number", + "name": "opacity" + }, + { + "enum-values": "default preserve", + "value-syntax": "enum", + "name": "xml:space" + } + ] + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGPatternElement", + "properties": { + "property": { + "width": { + "specs": "svg2", + "name": "width", + "constant": 1, + "content-attribute": "width", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "type": "SVGAnimatedLength", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "y": { + "specs": "svg2", + "name": "y", + "constant": 1, + "content-attribute": "y", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "type": "SVGAnimatedLength", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "patternUnits": { + "content-attribute-enum-values": "objectBoundingBox userSpaceOnUse", + "specs": "svg2", + "name": "patternUnits", + "constant": 1, + "content-attribute": "patternUnits", + "type-original": "SVGAnimatedEnumeration", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "SVGAnimatedEnumeration", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "x": { + "specs": "svg2", + "name": "x", + "constant": 1, + "content-attribute": "x", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "type": "SVGAnimatedLength", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "height": { + "specs": "svg2", + "name": "height", + "constant": 1, + "content-attribute": "height", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "type": "SVGAnimatedLength", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "patternTransform": { + "specs": "svg2", + "name": "patternTransform", + "constant": 1, + "content-attribute": "patternTransform", + "type-original": "SVGAnimatedTransformList", + "exposed": "Window", + "content-attribute-value-syntax": "svg_transform_list", + "type": "SVGAnimatedTransformList", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "patternContentUnits": { + "content-attribute-enum-values": "userSpaceOnUse objectBoundingBox", + "specs": "svg2", + "name": "patternContentUnits", + "constant": 1, + "content-attribute": "patternContentUnits", + "type-original": "SVGAnimatedEnumeration", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "SVGAnimatedEnumeration", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "svg2", + "namespace": "SVG", + "name": "pattern" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGElement", + "implements": [ + "SVGTests", + "SVGUnitTypes", + "SVGFitToViewBox", + "SVGURIReference" + ] + }, + "AnimationEvent": { + "specs": "css-animation", + "constructor": { + "specs": "css-animation", + "signature": [ + { + "param-min-required": 1, + "type": "AnimationEvent", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "AnimationEventInit", + "optional": 1, + "type-original": "AnimationEventInit" + } + ], + "type-original": "AnimationEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "AnimationEvent", + "properties": { + "property": { + "animationName": { + "specs": "css-animation", + "name": "animationName", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "elapsedTime": { + "specs": "css-animation", + "name": "elapsedTime", + "type-original": "float", + "exposed": "Window", + "type": "float", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Event" + }, + "SVGComponentTransferFunctionElement": { + "specs": "filter-effects", + "anonymous-methods": { + "method": [] + }, + "name": "SVGComponentTransferFunctionElement", + "properties": { + "property": { + "tableValues": { + "specs": "filter-effects", + "name": "tableValues", + "constant": 1, + "content-attribute": "tableValues", + "type-original": "SVGAnimatedNumberList", + "exposed": "Window", + "content-attribute-value-syntax": "comma_or_space_separated_floating_point_numbers", + "type": "SVGAnimatedNumberList", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "slope": { + "specs": "filter-effects", + "name": "slope", + "constant": 1, + "content-attribute": "slope", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "exponent": { + "specs": "filter-effects", + "name": "exponent", + "constant": 1, + "content-attribute": "exponent", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "type": { + "content-attribute-enum-values": "identity table discrete linear gamma", + "specs": "filter-effects", + "name": "type", + "constant": 1, + "content-attribute": "type", + "type-original": "SVGAnimatedEnumeration", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "SVGAnimatedEnumeration", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "amplitude": { + "specs": "filter-effects", + "name": "amplitude", + "constant": 1, + "content-attribute": "amplitude", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "offset": { + "specs": "filter-effects", + "name": "offset", + "constant": 1, + "content-attribute": "offset", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "intercept": { + "specs": "filter-effects", + "name": "intercept", + "constant": 1, + "content-attribute": "intercept", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "constants": { + "constant": { + "SVG_FECOMPONENTTRANSFER_TYPE_TABLE": { + "specs": "filter-effects", + "value": "2", + "exposed": "Window", + "name": "SVG_FECOMPONENTTRANSFER_TYPE_TABLE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN": { + "specs": "filter-effects", + "value": "0", + "exposed": "Window", + "name": "SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY": { + "specs": "filter-effects", + "value": "1", + "exposed": "Window", + "name": "SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_FECOMPONENTTRANSFER_TYPE_GAMMA": { + "specs": "filter-effects", + "value": "5", + "exposed": "Window", + "name": "SVG_FECOMPONENTTRANSFER_TYPE_GAMMA", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE": { + "specs": "filter-effects", + "value": "3", + "exposed": "Window", + "name": "SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_FECOMPONENTTRANSFER_TYPE_LINEAR": { + "specs": "filter-effects", + "value": "4", + "exposed": "Window", + "name": "SVG_FECOMPONENTTRANSFER_TYPE_LINEAR", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "SVGElement" + }, + "SVGViewElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "false true", + "value-syntax": "enum", + "name": "externalResourcesRequired" + } + ] + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGViewElement", + "properties": { + "property": { + "viewTarget": { + "specs": "svg11", + "name": "viewTarget", + "type-original": "SVGStringList", + "content-attribute": "viewTarget", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "space_separated_urls", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "SVGStringList", + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "svg2", + "namespace": "SVG", + "name": "view" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGElement", + "implements": [ + "SVGFitToViewBox", + "SVGZoomAndPan" + ] + }, + "HTMLLinkElement": { + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLLinkElement", + "properties": { + "property": { + "rel": { + "content-attribute-enum-values": "alternate appendix bookmark chapter contents copyright dns-prefetch entry-content feedurl glossary help index next offline prefetch preload prev search section start stylesheet subsection shortcut_icon", + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "rel", + "content-attribute": "rel", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "space_separated_enums", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "disabled": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "disabled", + "type-original": "boolean", + "content-attribute": "disabled", + "deprecated": 1, + "interop": 1, + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "boolean", + "content-attribute-boolean": 1 + }, + "charset": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "charset", + "type-original": "DOMString", + "content-attribute": "charset", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "character_encoding", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "hreflang": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "hreflang", + "content-attribute": "hreflang", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "bcp47_lang", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "crossOrigin": { + "content-attribute-enum-values": "anonymous use-credentials", + "specs": "html5", + "ce-reactions": 1, + "name": "crossOrigin", + "content-attribute": "crossorigin", + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "target": { + "specs": "html5", + "ce-reactions": 1, + "type-original": "DOMString", + "content-attribute": "target", + "interop": 1, + "pure": 1, + "content-attribute-enum-values": "_blank _self _parent _top", + "name": "target", + "deprecated": 1, + "content-attribute-value-syntax": "name_ref", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "href": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "href", + "content-attribute": "href", + "type-original": "USVString", + "exposed": "Window", + "content-attribute-value-syntax": "url", + "type": "USVString", + "content-attribute-reflects": 1 + }, + "media": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "media", + "content-attribute": "media", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "media_query", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "rev": { + "specs": "html5", + "ce-reactions": 1, + "type-original": "DOMString", + "content-attribute": "rev", + "interop": 1, + "pure": 1, + "content-attribute-enum-values": "alternate appendix bookmark chapter contents copyright glossary help index next prev section start stylesheet subsection", + "name": "rev", + "deprecated": 1, + "content-attribute-value-syntax": "space_separated_enums", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "type": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "type", + "content-attribute": "type", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "mime_type", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "integrity": { + "specs": "html5", + "ce-reactions": 1, + "name": "integrity", + "content-attribute": "integrity", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "link", + "html-self-closing": 1 + } + ], + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "async", + "specs": "HTML5", + "name": "error", + "type": "Event" + }, + { + "dispatch": "async", + "specs": "HTML5", + "name": "load", + "follows": "readystatechange", + "type": "Event", + "skips-window": 1 + } + ] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement", + "implements": [ + "LinkStyle" + ] + }, + "PermissionRequestedEvent": { + "specs": "none", + "anonymous-methods": { + "method": [] + }, + "name": "PermissionRequestedEvent", + "properties": { + "property": { + "permissionRequest": { + "specs": "none", + "exposed": "Window", + "name": "permissionRequest", + "type": "PermissionRequest", + "type-original": "PermissionRequest", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Event" + }, + "HTMLFontElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLFontElement", + "properties": { + "property": { + "face": { + "specs": "html5", + "ce-reactions": 1, + "name": "face", + "content-attribute": "face", + "type-original": "DOMString", + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "content-attribute-value-syntax": "font_family", + "content-attribute-reflects": 1, + "type": "DOMString" + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "font" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement", + "implements": [ + "DOML2DeprecatedColorProperty", + "DOML2DeprecatedSizeProperty" + ] + }, + "WebGLProgram": { + "constants": { + "constant": {} + }, + "specs": "webgl", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "WebGLProgram", + "extends": "WebGLObject", + "properties": { + "property": {} + } + }, + "SpeechSynthesisEvent": { + "specs": "speech-api", + "constructor": { + "specs": "speech-api", + "signature": [ + { + "param-min-required": 1, + "type": "SpeechSynthesisEvent", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "SpeechSynthesisEventInit", + "optional": 1, + "type-original": "SpeechSynthesisEventInit" + } + ], + "type-original": "SpeechSynthesisEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "SpeechSynthesisEvent", + "properties": { + "property": { + "charLength": { + "extension": 1, + "specs": "none", + "name": "charLength", + "type-original": "unsigned long", + "interop": 1, + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + }, + "utterance": { + "specs": "speech-api", + "exposed": "Window", + "name": "utterance", + "type": "SpeechSynthesisUtterance", + "type-original": "SpeechSynthesisUtterance", + "read-only": 1 + }, + "name": { + "specs": "speech-api", + "exposed": "Window", + "name": "name", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "charIndex": { + "specs": "speech-api", + "exposed": "Window", + "name": "charIndex", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + }, + "elapsedTime": { + "specs": "speech-api", + "exposed": "Window", + "name": "elapsedTime", + "type": "float", + "type-original": "float", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Event" + }, + "WebGLObject": { + "constants": { + "constant": {} + }, + "specs": "webgl", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "WebGLObject", + "extends": "Object", + "properties": { + "property": {} + } + }, + "CSSConditionRule": { + "constants": { + "constant": {} + }, + "specs": "css-conditional", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "CSSConditionRule", + "extends": "CSSGroupingRule", + "properties": { + "property": { + "conditionText": { + "specs": "css-conditional", + "exposed": "Window", + "name": "conditionText", + "type": "DOMString", + "type-original": "DOMString" + } + } + } + }, + "HTMLOptionElement": { + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLOptionElement", + "named-constructor": { + "specs": "html5", + "signature": [ + { + "param-min-required": 0, + "type": "HTMLOptionElement", + "param": [ + { + "name": "text", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + }, + { + "name": "value", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + }, + { + "name": "defaultSelected", + "type": "boolean", + "optional": 1, + "type-original": "boolean" + }, + { + "name": "selected", + "type": "boolean", + "optional": 1, + "type-original": "boolean" + } + ], + "type-original": "HTMLOptionElement" + } + ], + "name": "Option" + }, + "properties": { + "property": { + "disabled": { + "specs": "html5", + "ce-reactions": 1, + "name": "disabled", + "content-attribute": "disabled", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "value": { + "specs": "html5", + "ce-reactions": 1, + "name": "value", + "content-attribute": "value", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "defaultSelected": { + "specs": "html5", + "ce-reactions": 1, + "name": "defaultSelected", + "content-attribute": "selected", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "form": { + "specs": "html5", + "name": "form", + "type-original": "HTMLFormElement?", + "nullable": 1, + "exposed": "Window", + "type": "HTMLFormElement", + "read-only": 1 + }, + "index": { + "specs": "html5", + "exposed": "Window", + "name": "index", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "text": { + "specs": "html5", + "ce-reactions": 1, + "name": "text", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString" + }, + "label": { + "specs": "html5", + "ce-reactions": 1, + "name": "label", + "content-attribute": "label", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "selected": { + "specs": "html5", + "exposed": "Window", + "name": "selected", + "type": "boolean", + "type-original": "boolean" + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "option" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "HTMLMapElement": { + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLMapElement", + "properties": { + "property": { + "name": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "name", + "content-attribute": "name", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "areas": { + "specs": "html5", + "same-object": 1, + "name": "areas", + "constant": 1, + "type-original": "HTMLAreasCollection", + "exposed": "Window", + "type": "HTMLAreasCollection", + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "map" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "HTMLMenuElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLMenuElement", + "properties": { + "property": { + "compact": { + "specs": "html5", + "ce-reactions": 1, + "name": "compact", + "type-original": "boolean", + "content-attribute": "compact", + "deprecated": 1, + "interop": 1, + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "type": { + "content-attribute-enum-values": "1 a A i I disc circle square", + "specs": "html5", + "ce-reactions": 1, + "name": "type", + "content-attribute": "type", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "DOMString", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "menu" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "IDBTransaction": { + "specs": "indexeddb", + "anonymous-methods": { + "method": [] + }, + "name": "IDBTransaction", + "properties": { + "property": { + "oncomplete": { + "specs": "indexeddb", + "name": "oncomplete", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "complete" + }, + "db": { + "specs": "indexeddb", + "exposed": "Window", + "name": "db", + "type": "IDBDatabase", + "type-original": "IDBDatabase", + "read-only": 1 + }, + "mode": { + "specs": "indexeddb", + "exposed": "Window", + "name": "mode", + "type": "IDBTransactionMode", + "type-original": "IDBTransactionMode", + "read-only": 1 + }, + "onerror": { + "specs": "indexeddb", + "name": "onerror", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "error" + }, + "error": { + "specs": "indexeddb", + "exposed": "Window", + "name": "error", + "type": "DOMError", + "type-original": "DOMError", + "read-only": 1 + }, + "onabort": { + "specs": "indexeddb", + "name": "onabort", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "abort" + } + } + }, + "constants": { + "constant": { + "READ_ONLY": { + "specs": "indexeddb", + "value": "readonly", + "exposed": "Window", + "name": "READ_ONLY", + "type": "DOMString", + "type-original": "DOMString" + }, + "VERSION_CHANGE": { + "specs": "indexeddb", + "value": "versionchange", + "exposed": "Window", + "name": "VERSION_CHANGE", + "type": "DOMString", + "type-original": "DOMString" + }, + "READ_WRITE": { + "specs": "indexeddb", + "value": "readwrite", + "exposed": "Window", + "name": "READ_WRITE", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "IDB", + "name": "error", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "IDB", + "name": "abort", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "IDB", + "name": "complete", + "type": "Event", + "skips-window": 1 + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "abort": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "indexeddb", + "exposed": "Window", + "name": "abort" + }, + "objectStore": { + "signature": [ + { + "param-min-required": 1, + "type": "IDBObjectStore", + "param": [ + { + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "IDBObjectStore" + } + ], + "specs": "indexeddb", + "exposed": "Window", + "name": "objectStore" + } + } + }, + "extends": "EventTarget" + }, + "SVGPointList": { + "constants": { + "constant": {} + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "replaceItem": { + "signature": [ + { + "param-min-required": 2, + "type": "SVGPoint", + "param": [ + { + "name": "newItem", + "type": "SVGPoint", + "type-original": "SVGPoint" + }, + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "SVGPoint" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "replaceItem" + }, + "getItem": { + "signature": [ + { + "param-min-required": 1, + "type": "SVGPoint", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "SVGPoint" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "getItem" + }, + "appendItem": { + "signature": [ + { + "param-min-required": 1, + "type": "SVGPoint", + "param": [ + { + "name": "newItem", + "type": "SVGPoint", + "type-original": "SVGPoint" + } + ], + "type-original": "SVGPoint" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "appendItem" + }, + "clear": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "clear" + }, + "removeItem": { + "signature": [ + { + "param-min-required": 1, + "type": "SVGPoint", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "SVGPoint" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "removeItem" + }, + "initialize": { + "signature": [ + { + "param-min-required": 1, + "type": "SVGPoint", + "param": [ + { + "name": "newItem", + "type": "SVGPoint", + "type-original": "SVGPoint" + } + ], + "type-original": "SVGPoint" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "initialize" + }, + "insertItemBefore": { + "signature": [ + { + "param-min-required": 2, + "type": "SVGPoint", + "param": [ + { + "name": "newItem", + "type": "SVGPoint", + "type-original": "SVGPoint" + }, + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "SVGPoint" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "insertItemBefore" + } + } + }, + "name": "SVGPointList", + "extends": "Object", + "properties": { + "property": { + "numberOfItems": { + "specs": "svg2", + "name": "numberOfItems", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + } + } + } + }, + "HTMLTemplateElement": { + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLTemplateElement", + "properties": { + "property": { + "content": { + "specs": "html5", + "exposed": "Window", + "name": "content", + "type": "DocumentFragment", + "type-original": "DocumentFragment", + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "template" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "VideoPlaybackQuality": { + "constants": { + "constant": {} + }, + "specs": "media-source", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "VideoPlaybackQuality", + "extends": "Object", + "properties": { + "property": { + "corruptedVideoFrames": { + "specs": "media-source", + "exposed": "Window", + "name": "corruptedVideoFrames", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + }, + "totalFrameDelay": { + "specs": "media-source", + "exposed": "Window", + "name": "totalFrameDelay", + "type": "double", + "type-original": "double", + "read-only": 1 + }, + "creationTime": { + "specs": "media-source", + "exposed": "Window", + "name": "creationTime", + "type": "double", + "type-original": "DOMHighResTimeStamp", + "read-only": 1 + }, + "totalVideoFrames": { + "specs": "media-source", + "exposed": "Window", + "name": "totalVideoFrames", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + }, + "droppedVideoFrames": { + "specs": "media-source", + "exposed": "Window", + "name": "droppedVideoFrames", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + } + } + } + }, + "TextTrackCueList": { + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "name": "TextTrackCueList", + "properties": { + "property": { + "length": { + "specs": "html5", + "name": "length", + "tags": "Captions", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + } + } + }, + "tags": "Captions", + "constants": { + "constant": {} + }, + "methods": { + "method": { + "item": { + "getter": 1, + "signature": [ + { + "param-min-required": 1, + "type": "TextTrackCue", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "TextTrackCue" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "item", + "tags": "Captions" + }, + "getCueById": { + "signature": [ + { + "param-min-required": 1, + "type": "TextTrackCue", + "param": [ + { + "name": "id", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "TextTrackCue" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "getCueById", + "tags": "Captions" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "SVGAnimatedLengthList": { + "constants": { + "constant": {} + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "SVGAnimatedLengthList", + "extends": "Object", + "properties": { + "property": { + "animVal": { + "specs": "svg2", + "same-object": 1, + "name": "animVal", + "constant": 1, + "type-original": "SVGLengthList", + "exposed": "Window", + "type": "SVGLengthList", + "read-only": 1 + }, + "baseVal": { + "specs": "svg2", + "same-object": 1, + "name": "baseVal", + "constant": 1, + "type-original": "SVGLengthList", + "exposed": "Window", + "type": "SVGLengthList", + "read-only": 1 + } + } + } + }, + "Window": { + "implicit-this": 1, + "specs": "html5", + "anonymous-methods": { + "method": [ + { + "getter": 1, + "signature": [ + { + "param-min-required": 1, + "type": "Window", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "Window" + } + ], + "specs": "html5", + "name": "" + }, + { + "getter": 1, + "deprecated": 1, + "signature": [ + { + "param-min-required": 1, + "type": [ + { + "type": "Window" + }, + { + "type": "Element" + }, + { + "type": "HTMLCollection" + } + ], + "param": [ + { + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "(Window or Element or HTMLCollection)" + } + ], + "specs": "html5", + "name": "" + } + ] + }, + "name": "Window", + "properties": { + "property": { + "onmouseleave": { + "specs": "html5", + "name": "onmouseleave", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "mouseleave" + }, + "onmsgesturedoubletap": { + "specs": "html5", + "name": "onmsgesturedoubletap", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSGestureDoubleTap" + }, + "devicePixelRatio": { + "specs": "cssom-view", + "name": "devicePixelRatio", + "type-original": "double", + "replaceable": 1, + "exposed": "Window", + "type": "double", + "read-only": 1 + }, + "oncompassneedscalibration": { + "specs": "html5", + "name": "oncompassneedscalibration", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "compassneedscalibration" + }, + "isSecureContext": { + "specs": "SecureContext", + "exposed": "Window", + "name": "isSecureContext", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "onvrdisplaydeactivate": { + "specs": "html5", + "name": "onvrdisplaydeactivate", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "vrdisplaydeactivate" + }, + "defaultStatus": { + "specs": "html5", + "exposed": "Window", + "name": "defaultStatus", + "type": "DOMString", + "store-in-slot": "instance", + "type-original": "DOMString" + }, + "onkeydown": { + "specs": "html5", + "name": "onkeydown", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "keydown" + }, + "onkeyup": { + "specs": "html5", + "name": "onkeyup", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "keyup" + }, + "onreset": { + "specs": "html5", + "name": "onreset", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "reset" + }, + "onpagehide": { + "specs": "html5", + "name": "onpagehide", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "pagehide" + }, + "onmsgesturestart": { + "specs": "html5", + "name": "onmsgesturestart", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSGestureStart" + }, + "onvrdisplaypresentchange": { + "specs": "html5", + "name": "onvrdisplaypresentchange", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "vrdisplaypresentchange" + }, + "ondragleave": { + "specs": "html5", + "name": "ondragleave", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "dragleave" + }, + "history": { + "specs": "html5", + "exposed": "Window", + "name": "history", + "type": "History", + "type-original": "History", + "read-only": 1 + }, + "pageXOffset": { + "specs": "cssom-view", + "name": "pageXOffset", + "type-original": "long", + "replaceable": 1, + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "msContentScript": { + "specs": "html5", + "name": "msContentScript", + "type-original": "ExtensionScriptApis", + "exposed": "Window", + "type": "ExtensionScriptApis", + "read-only": 1 + }, + "name": { + "specs": "html5", + "exposed": "Window", + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + }, + "onvrdisplaydisconnect": { + "specs": "html5", + "name": "onvrdisplaydisconnect", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "vrdisplaydisconnect" + }, + "ondeviceorientation": { + "specs": "html5", + "name": "ondeviceorientation", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "deviceorientation" + }, + "onseeked": { + "specs": "html5", + "name": "onseeked", + "tags": "Media", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "seeked" + }, + "ontouchstart": { + "specs": "html5", + "name": "ontouchstart", + "store-in-slot": "instance", + "type-original": "any", + "exposed": "Window", + "type": "any", + "event-handler": "touchstart" + }, + "onvrdisplayconnect": { + "specs": "webvr", + "name": "onvrdisplayconnect", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "vrdisplayconnect" + }, + "ononline": { + "specs": "html5", + "name": "ononline", + "tags": "Offline", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "online" + }, + "ondevicemotion": { + "specs": "html5", + "name": "ondevicemotion", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "devicemotion" + }, + "ondurationchange": { + "specs": "html5", + "name": "ondurationchange", + "tags": "Media", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "durationchange" + }, + "frames": { + "specs": "html5", + "do-not-check-domain-security": 1, + "name": "frames", + "store-in-slot": "instance", + "type-original": "Window", + "replaceable": 1, + "exposed": "Window", + "type": "Window", + "read-only": 1 + }, + "onblur": { + "specs": "html5", + "name": "onblur", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "blur" + }, + "onemptied": { + "specs": "html5", + "name": "onemptied", + "tags": "Media", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "emptied" + }, + "onseeking": { + "specs": "html5", + "name": "onseeking", + "tags": "Media", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "seeking" + }, + "oncanplay": { + "specs": "html5", + "name": "oncanplay", + "tags": "Media", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "canplay" + }, + "onmspointerout": { + "specs": "html5", + "name": "onmspointerout", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSPointerOut" + }, + "onoffline": { + "specs": "html5", + "name": "onoffline", + "tags": "Offline", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "offline" + }, + "length": { + "specs": "html5", + "do-not-check-domain-security": 1, + "name": "length", + "type-original": "unsigned long", + "replaceable": 1, + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + }, + "ondevicelight": { + "specs": "html5", + "name": "ondevicelight", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "devicelight" + }, + "onmspointerover": { + "specs": "html5", + "name": "onmspointerover", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSPointerOver" + }, + "onstorage": { + "specs": "html5", + "name": "onstorage", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "storage" + }, + "onloadstart": { + "specs": "html5", + "name": "onloadstart", + "tags": "Media", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "loadstart" + }, + "onmspointerdown": { + "specs": "html5", + "name": "onmspointerdown", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSPointerDown" + }, + "ondragenter": { + "specs": "html5", + "name": "ondragenter", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "dragenter" + }, + "onsubmit": { + "specs": "html5", + "name": "onsubmit", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "submit" + }, + "screenLeft": { + "specs": "html5", + "exposed": "Window", + "name": "screenLeft", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "scrollX": { + "specs": "cssom-view", + "name": "scrollX", + "type-original": "long", + "replaceable": 1, + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "onchange": { + "specs": "html5", + "name": "onchange", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "change" + }, + "onmsgesturehold": { + "specs": "html5", + "name": "onmsgesturehold", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSGestureHold" + }, + "onmspointercancel": { + "specs": "html5", + "name": "onmspointercancel", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSPointerCancel" + }, + "parent": { + "specs": "html5", + "do-not-check-domain-security": 1, + "name": "parent", + "type-original": "Window", + "replaceable": 1, + "exposed": "Window", + "type": "Window", + "read-only": 1 + }, + "onvrdisplayactivate": { + "specs": "html5", + "name": "onvrdisplayactivate", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "vrdisplayactivate" + }, + "oncanplaythrough": { + "specs": "html5", + "name": "oncanplaythrough", + "tags": "Media", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "canplaythrough" + }, + "outerHeight": { + "specs": "cssom-view", + "name": "outerHeight", + "type-original": "long", + "replaceable": 1, + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "locationbar": { + "specs": "html5", + "name": "locationbar", + "type-original": "BarProp", + "replaceable": 1, + "exposed": "Window", + "type": "BarProp", + "read-only": 1 + }, + "onsuspend": { + "specs": "html5", + "name": "onsuspend", + "tags": "Media", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "suspend" + }, + "status": { + "specs": "html5", + "exposed": "Window", + "name": "status", + "type": "DOMString", + "store-in-slot": "instance", + "type-original": "DOMString" + }, + "ontouchmove": { + "specs": "html5", + "name": "ontouchmove", + "store-in-slot": "instance", + "type-original": "any", + "exposed": "Window", + "type": "any", + "event-handler": "touchmove" + }, + "onmouseenter": { + "specs": "html5", + "name": "onmouseenter", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "mouseenter" + }, + "crypto": { + "specs": "html5", + "exposed": "Window", + "name": "crypto", + "type": "Crypto", + "type-original": "Crypto", + "read-only": 1 + }, + "doNotTrack": { + "specs": "tracking-dnt", + "exposed": "Window", + "name": "doNotTrack", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "caches": { + "specs": "service-workers", + "same-object": 1, + "name": "caches", + "type-original": "CacheStorage", + "exposed": "Window", + "type": "CacheStorage", + "secure-context": 1, + "read-only": 1 + }, + "onvrdisplaypointerrestricted": { + "specs": "html5", + "name": "onvrdisplaypointerrestricted", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "vrdisplaypointerrestricted" + }, + "closed": { + "specs": "html5", + "do-not-check-domain-security": 1, + "name": "closed", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "read-only": 1 + }, + "ontouchcancel": { + "specs": "html5", + "name": "ontouchcancel", + "store-in-slot": "instance", + "type-original": "any", + "exposed": "Window", + "type": "any", + "event-handler": "touchcancel" + }, + "onmsgesturetap": { + "specs": "html5", + "name": "onmsgesturetap", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSGestureTap" + }, + "onmouseout": { + "specs": "html5", + "name": "onmouseout", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "mouseout" + }, + "screenTop": { + "specs": "html5", + "exposed": "Window", + "name": "screenTop", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "onunload": { + "specs": "html5", + "name": "onunload", + "tags": "NetworkAccess", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "unload" + }, + "screenY": { + "specs": "cssom-view", + "name": "screenY", + "type-original": "long", + "replaceable": 1, + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "onmousewheel": { + "specs": "html5", + "name": "onmousewheel", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "mousewheel" + }, + "onvolumechange": { + "specs": "html5", + "name": "onvolumechange", + "tags": "Media", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "volumechange" + }, + "personalbar": { + "specs": "html5", + "name": "personalbar", + "type-original": "BarProp", + "replaceable": 1, + "exposed": "Window", + "type": "BarProp", + "read-only": 1 + }, + "ondragend": { + "specs": "html5", + "name": "ondragend", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "dragend" + }, + "ondragover": { + "specs": "html5", + "name": "ondragover", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "dragover" + }, + "clientInformation": { + "specs": "html5", + "exposed": "Window", + "name": "clientInformation", + "type": "Navigator", + "type-original": "Navigator", + "read-only": 1 + }, + "ondragstart": { + "specs": "html5", + "name": "ondragstart", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "dragstart" + }, + "onmouseup": { + "specs": "html5", + "name": "onmouseup", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "mouseup" + }, + "onmsgesturechange": { + "specs": "html5", + "name": "onmsgesturechange", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSGestureChange" + }, + "ondrag": { + "specs": "html5", + "name": "ondrag", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "drag" + }, + "screenX": { + "specs": "cssom-view", + "name": "screenX", + "type-original": "long", + "replaceable": 1, + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "onvrdisplayblur": { + "specs": "html5", + "name": "onvrdisplayblur", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "vrdisplayblur" + }, + "onmouseover": { + "specs": "html5", + "name": "onmouseover", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "mouseover" + }, + "toolbar": { + "specs": "html5", + "name": "toolbar", + "type-original": "BarProp", + "replaceable": 1, + "exposed": "Window", + "type": "BarProp", + "read-only": 1 + }, + "onpause": { + "specs": "html5", + "name": "onpause", + "tags": "Media", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "pause" + }, + "top": { + "property-descriptor-not-configurable": 1, + "specs": "html5", + "do-not-check-domain-security": 1, + "name": "top", + "type-original": "Window", + "exposed": "Window", + "type": "Window", + "read-only": 1 + }, + "onmousedown": { + "specs": "html5", + "name": "onmousedown", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "mousedown" + }, + "opener": { + "specs": "html5", + "do-not-check-domain-security": 1, + "name": "opener", + "type-original": "Window", + "replaceable": 1, + "exposed": "Window", + "type": "Window", + "read-only": 1 + }, + "innerHeight": { + "specs": "cssom-view", + "name": "innerHeight", + "type-original": "long", + "replaceable": 1, + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "onclick": { + "specs": "html5", + "name": "onclick", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "click" + }, + "onwaiting": { + "specs": "html5", + "name": "onwaiting", + "tags": "Media", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "waiting" + }, + "msCredentials": { + "specs": "webauthn", + "name": "msCredentials", + "type-original": "MSCredentials", + "exposed": "Window", + "type": "MSCredentials", + "read-only": 1 + }, + "onpageshow": { + "specs": "html5", + "name": "onpageshow", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "pageshow" + }, + "outerWidth": { + "specs": "cssom-view", + "name": "outerWidth", + "type-original": "long", + "replaceable": 1, + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "onstalled": { + "specs": "html5", + "name": "onstalled", + "tags": "Media", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "stalled" + }, + "onmousemove": { + "specs": "html5", + "name": "onmousemove", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "mousemove" + }, + "external": { + "specs": "html5", + "name": "external", + "type-original": "External", + "replaceable": 1, + "exposed": "Window", + "type": "External", + "read-only": 1 + }, + "innerWidth": { + "specs": "cssom-view", + "name": "innerWidth", + "type-original": "long", + "replaceable": 1, + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "onmsinertiastart": { + "specs": "html5", + "name": "onmsinertiastart", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSInertiaStart" + }, + "statusbar": { + "specs": "html5", + "name": "statusbar", + "type-original": "BarProp", + "replaceable": 1, + "exposed": "Window", + "type": "BarProp", + "read-only": 1 + }, + "screen": { + "specs": "cssom-view", + "exposed": "Window", + "name": "screen", + "type": "Screen", + "type-original": "Screen", + "read-only": 1 + }, + "onbeforeunload": { + "specs": "html5", + "name": "onbeforeunload", + "tags": "NetworkAccess", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "beforeunload" + }, + "onmspointerenter": { + "specs": "html5", + "name": "onmspointerenter", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSPointerEnter" + }, + "onratechange": { + "specs": "html5", + "name": "onratechange", + "tags": "Media", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "ratechange" + }, + "onpopstate": { + "specs": "html5", + "name": "onpopstate", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "popstate" + }, + "onmspointerleave": { + "specs": "html5", + "name": "onmspointerleave", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSPointerLeave" + }, + "browser": { + "specs": "none", + "name": "browser", + "type-original": "BhxBrowser", + "replaceable": 1, + "exposed": "Window", + "type": "BhxBrowser", + "read-only": 1 + }, + "document": { + "property-descriptor-not-configurable": 1, + "pure": 1, + "specs": "html5", + "name": "document", + "store-in-slot": "instance", + "type-original": "Document", + "unforgeable": 1, + "exposed": "Window", + "type": "Document", + "read-only": 1 + }, + "self": { + "specs": "html5", + "do-not-check-domain-security": 1, + "name": "self", + "constant": 1, + "store-in-slot": "instance", + "type-original": "Window", + "replaceable": 1, + "exposed": "Window", + "type": "Window", + "read-only": 1 + }, + "onprogress": { + "specs": "html5", + "name": "onprogress", + "tags": "Media", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "progress" + }, + "oninvalid": { + "specs": "html5", + "name": "oninvalid", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "invalid" + }, + "ondblclick": { + "specs": "html5", + "name": "ondblclick", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "dblclick" + }, + "pageYOffset": { + "specs": "cssom-view", + "name": "pageYOffset", + "type-original": "long", + "replaceable": 1, + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "oncontextmenu": { + "specs": "html5", + "name": "oncontextmenu", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "contextmenu" + }, + "onloadedmetadata": { + "specs": "html5", + "name": "onloadedmetadata", + "tags": "Media", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "loadedmetadata" + }, + "onmspointermove": { + "specs": "html5", + "name": "onmspointermove", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSPointerMove" + }, + "scrollY": { + "specs": "cssom-view", + "name": "scrollY", + "type-original": "long", + "replaceable": 1, + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "onerror": { + "specs": "html5", + "name": "onerror", + "tags": "Exceptions", + "type-original": "ErrorEventHandler", + "exposed": "Window", + "type": "ErrorEventHandler", + "event-handler": "error" + }, + "onplay": { + "specs": "html5", + "name": "onplay", + "tags": "Media", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "play" + }, + "onplaying": { + "specs": "html5", + "name": "onplaying", + "tags": "Media", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "playing" + }, + "menubar": { + "specs": "html5", + "name": "menubar", + "type-original": "BarProp", + "replaceable": 1, + "exposed": "Window", + "type": "BarProp", + "read-only": 1 + }, + "location": { + "property-descriptor-not-configurable": 1, + "put-forwards": "href", + "specs": "html5", + "do-not-check-domain-security": 1, + "name": "location", + "type-original": "Location", + "unforgeable": 1, + "exposed": "Window", + "type": "Location", + "read-only": 1 + }, + "onmsgestureend": { + "specs": "html5", + "name": "onmsgestureend", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSGestureEnd" + }, + "event": { + "specs": "html5", + "exposed": "Window", + "name": "event", + "type": "Event", + "store-in-slot": "instance", + "type-original": "Event" + }, + "onabort": { + "specs": "html5", + "name": "onabort", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "abort" + }, + "onorientationchange": { + "specs": "html5", + "name": "onorientationchange", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "orientationchange" + }, + "onreadystatechange": { + "specs": "html5", + "name": "onreadystatechange", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "readystatechange" + }, + "onkeypress": { + "specs": "html5", + "name": "onkeypress", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "keypress" + }, + "frameElement": { + "specs": "html5", + "name": "frameElement", + "tags": "TreeNavigation", + "type-original": "Element", + "exposed": "Window", + "type": "Element", + "read-only": 1 + }, + "onvrdisplaypointerunrestricted": { + "specs": "html5", + "name": "onvrdisplaypointerunrestricted", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "vrdisplaypointerunrestricted" + }, + "onmspointerup": { + "specs": "html5", + "name": "onmspointerup", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSPointerUp" + }, + "onloadeddata": { + "specs": "html5", + "name": "onloadeddata", + "tags": "Media", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "loadeddata" + }, + "window": { + "property-descriptor-not-configurable": 1, + "specs": "html5", + "do-not-check-domain-security": 1, + "name": "window", + "constant": 1, + "store-in-slot": "instance", + "type-original": "Window", + "unforgeable": 1, + "exposed": "Window", + "type": "Window", + "read-only": 1 + }, + "orientation": { + "specs": "html5", + "name": "orientation", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "offscreenBuffering": { + "specs": "html5", + "exposed": "Window", + "name": "offscreenBuffering", + "type": [ + { + "type": "DOMString" + }, + { + "type": "boolean" + } + ], + "type-original": "(DOMString or boolean)" + }, + "onfocus": { + "specs": "html5", + "name": "onfocus", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "focus" + }, + "ontouchend": { + "specs": "html5", + "name": "ontouchend", + "store-in-slot": "instance", + "type-original": "any", + "exposed": "Window", + "type": "any", + "event-handler": "touchend" + }, + "onmessage": { + "specs": "html5", + "name": "onmessage", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "message" + }, + "ontimeupdate": { + "specs": "html5", + "name": "ontimeupdate", + "tags": "Media", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "timeupdate" + }, + "onresize": { + "specs": "html5", + "name": "onresize", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "resize" + }, + "navigator": { + "specs": "html5", + "exposed": "Window", + "name": "navigator", + "type": "Navigator", + "type-original": "Navigator", + "read-only": 1 + }, + "styleMedia": { + "specs": "none", + "exposed": "Window", + "name": "styleMedia", + "type": "StyleMedia", + "type-original": "StyleMedia", + "read-only": 1 + }, + "onselect": { + "specs": "html5", + "name": "onselect", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "select" + }, + "ondrop": { + "specs": "html5", + "name": "ondrop", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "drop" + }, + "scrollbars": { + "specs": "html5", + "name": "scrollbars", + "type-original": "BarProp", + "replaceable": 1, + "exposed": "Window", + "type": "BarProp", + "read-only": 1 + }, + "onended": { + "specs": "html5", + "name": "onended", + "tags": "Media", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "ended" + }, + "applicationCache": { + "specs": "html5", + "name": "applicationCache", + "tags": "Offline", + "type-original": "ApplicationCache", + "exposed": "Window", + "type": "ApplicationCache", + "read-only": 1 + }, + "onhashchange": { + "specs": "html5", + "name": "onhashchange", + "tags": "Offline", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "hashchange" + }, + "onvrdisplayfocus": { + "specs": "html5", + "name": "onvrdisplayfocus", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "vrdisplayfocus" + }, + "onscroll": { + "specs": "html5", + "name": "onscroll", + "tags": "CSSOM", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "scroll" + }, + "speechSynthesis": { + "specs": "speech-api", + "exposed": "Window", + "name": "speechSynthesis", + "type": "SpeechSynthesis", + "type-original": "SpeechSynthesis", + "read-only": 1 + }, + "onload": { + "specs": "html5", + "name": "onload", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "load" + }, + "oninput": { + "specs": "html5", + "name": "oninput", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "input" + }, + "performance": { + "pure": 1, + "specs": "html5", + "name": "performance", + "type-original": "Performance", + "replaceable": 1, + "exposed": "Window", + "type": "Performance", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "primary-global": "Window", + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "HTML5", + "alternate-target": "Document", + "name": "load", + "follows": "DOMContentLoaded readystatechange", + "type": "Event" + }, + { + "dispatch": "sync", + "specs": "svg11", + "name": "SVGUnload", + "type": "Event" + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "unload", + "follows": "beforeunload", + "type": "Event" + }, + { + "precedes": "unload", + "dispatch": "sync", + "specs": "HTML5", + "name": "beforeunload", + "type": "BeforeUnloadEvent", + "cancelable": 1 + }, + { + "dispatch": "async", + "specs": "HTML5", + "name": "hashchange", + "type": "HashChangeEvent" + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "popstate", + "type": "PopStateEvent" + }, + { + "dispatch": "sync", + "specs": "svg11", + "name": "SVGResize", + "type": "Event" + }, + { + "dispatch": "async", + "specs": "HTML5", + "name": "resize", + "type": "UIEvent" + }, + { + "precedes": "afterprint", + "dispatch": "sync", + "specs": "HTML5", + "name": "beforeprint", + "type": "Event" + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "afterprint", + "follows": "beforeprint", + "type": "Event" + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "focus", + "type": "FocusEvent" + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "blur", + "type": "FocusEvent" + }, + { + "dispatch": "sync", + "specs": "Storage", + "name": "storage", + "type": "StorageEvent" + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "error", + "type": "ErrorEvent" + }, + { + "dispatch": "async", + "specs": "PostMsg", + "name": "message", + "type": "MessageEvent" + }, + { + "dispatch": "async", + "specs": "Orient", + "name": "orientationchange", + "type": "Event" + }, + { + "dispatch": "sync", + "specs": "Orient", + "name": "deviceorientation", + "type": "DeviceOrientationEvent", + "tags": "NotOnWin7" + }, + { + "dispatch": "sync", + "specs": "Orient", + "name": "devicemotion", + "type": "DeviceMotionEvent", + "tags": "NotOnWin7" + }, + { + "dispatch": "sync", + "specs": "Light", + "name": "devicelight", + "type": "DeviceLightEvent", + "tags": "NotOnWin7" + }, + { + "dispatch": "async", + "specs": "Orient", + "name": "compassneedscalibration", + "type": "Event", + "tags": "NotOnWin7" + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "pageshow", + "type": "PageTransitionEvent" + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "pagehide", + "type": "PageTransitionEvent" + }, + { + "dispatch": "sync", + "specs": "GamePad", + "name": "gamepadconnected", + "type": "GamepadEvent" + }, + { + "dispatch": "sync", + "specs": "GamePad", + "name": "gamepaddisconnected", + "type": "GamepadEvent" + }, + { + "dispatch": "sync", + "specs": "none", + "name": "navigatingfocus", + "type": "FocusNavigationEvent" + }, + { + "dispatch": "sync", + "specs": "WebVR", + "name": "onvrdisplayconnected", + "type": "VRDisplayEvent " + }, + { + "dispatch": "sync", + "specs": "WebVR", + "name": "onvrdisplaydisconnected", + "type": "VRDisplayEvent " + }, + { + "dispatch": "sync", + "specs": "WebVR", + "name": "onvrdisplaypresentchange", + "type": "VRDisplayEvent " + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "scroll": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "x", + "default": "0", + "type": "long", + "optional": 1, + "type-original": "long" + }, + { + "name": "y", + "default": "0", + "type": "long", + "optional": 1, + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "cssom-view", + "exposed": "Window", + "name": "scroll" + }, + "captureEvents": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "captureEvents" + }, + "scrollTo": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "x", + "default": "0", + "type": "long", + "optional": 1, + "type-original": "long" + }, + { + "name": "y", + "default": "0", + "type": "long", + "optional": 1, + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "cssom-view", + "exposed": "Window", + "name": "scrollTo" + }, + "focus": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "html5", + "do-not-check-domain-security": 1, + "exposed": "Window", + "name": "focus" + }, + "releaseEvents": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "releaseEvents" + }, + "resizeTo": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "x", + "default": "0", + "type": "long", + "optional": 1, + "type-original": "long" + }, + { + "name": "y", + "default": "0", + "type": "long", + "optional": 1, + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "cssom-view", + "exposed": "Window", + "name": "resizeTo" + }, + "scrollBy": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "x", + "default": "0", + "type": "long", + "optional": 1, + "type-original": "long" + }, + { + "name": "y", + "default": "0", + "type": "long", + "optional": 1, + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "cssom-view", + "exposed": "Window", + "name": "scrollBy" + }, + "close": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "html5", + "do-not-check-domain-security": 1, + "exposed": "Window", + "name": "close" + }, + "confirm": { + "signature": [ + { + "param-min-required": 0, + "type": "boolean", + "param": [ + { + "name": "message", + "default": "\"\"", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + } + ], + "type-original": "boolean" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "confirm" + }, + "matchMedia": { + "signature": [ + { + "param-min-required": 1, + "type": "MediaQueryList", + "param": [ + { + "name": "mediaQuery", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "MediaQueryList" + } + ], + "specs": "cssom-view", + "exposed": "Window", + "name": "matchMedia" + }, + "cancelAnimationFrame": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "handle", + "type": "long", + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "animation-timing", + "exposed": "Window", + "name": "cancelAnimationFrame", + "tags": "Timers" + }, + "webkitConvertPointFromNodeToPage": { + "signature": [ + { + "param-min-required": 2, + "type": "WebKitPoint", + "param": [ + { + "name": "node", + "type": "Node", + "type-original": "Node" + }, + { + "name": "pt", + "type": "WebKitPoint", + "type-original": "WebKitPoint" + } + ], + "type-original": "WebKitPoint" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "webkitConvertPointFromNodeToPage", + "tags": "CSSOM" + }, + "moveTo": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "x", + "default": "0", + "type": "long", + "optional": 1, + "type-original": "long" + }, + { + "name": "y", + "default": "0", + "type": "long", + "optional": 1, + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "cssom-view", + "exposed": "Window", + "name": "moveTo" + }, + "webkitRequestAnimationFrame": { + "signature": [ + { + "param-min-required": 1, + "type": "long", + "param": [ + { + "name": "callback", + "type": "FrameRequestCallback", + "type-original": "FrameRequestCallback" + } + ], + "type-original": "long" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "webkitRequestAnimationFrame" + }, + "blur": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "html5", + "do-not-check-domain-security": 1, + "exposed": "Window", + "name": "blur" + }, + "moveBy": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "x", + "default": "0", + "type": "long", + "optional": 1, + "type-original": "long" + }, + { + "name": "y", + "default": "0", + "type": "long", + "optional": 1, + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "cssom-view", + "exposed": "Window", + "name": "moveBy" + }, + "alert": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "message", + "default": "\"\"", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "alert" + }, + "resizeBy": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "x", + "default": "0", + "type": "long", + "optional": 1, + "type-original": "long" + }, + { + "name": "y", + "default": "0", + "type": "long", + "optional": 1, + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "cssom-view", + "exposed": "Window", + "name": "resizeBy" + }, + "stop": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "stop" + }, + "getMatchedCSSRules": { + "signature": [ + { + "param-min-required": 1, + "type": "CSSRuleList", + "param": [ + { + "name": "elt", + "type": "Element", + "type-original": "Element" + }, + { + "nullable": 1, + "name": "pseudoElt", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString?" + } + ], + "type-original": "CSSRuleList" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "getMatchedCSSRules" + }, + "requestAnimationFrame": { + "signature": [ + { + "param-min-required": 1, + "type": "long", + "param": [ + { + "name": "callback", + "type": "FrameRequestCallback", + "type-original": "FrameRequestCallback" + } + ], + "type-original": "long" + } + ], + "specs": "animation-timing", + "exposed": "Window", + "name": "requestAnimationFrame", + "tags": "Timers" + }, + "prompt": { + "signature": [ + { + "nullable": 1, + "param-min-required": 0, + "type": "DOMString", + "param": [ + { + "name": "message", + "default": "\"\"", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + }, + { + "name": "default", + "default": "\"\"", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + } + ], + "type-original": "DOMString?" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "prompt" + }, + "msWriteProfilerMark": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "profilerMarkName", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "msWriteProfilerMark" + }, + "open": { + "signature": [ + { + "param-min-required": 0, + "type": "Window", + "param": [ + { + "name": "url", + "default": "\"about:blank\"", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + }, + { + "name": "target", + "default": "\"_blank\"", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + }, + { + "name": "features", + "default": "\"\"", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + }, + { + "name": "replace", + "default": "false", + "type": "boolean", + "optional": 1, + "type-original": "boolean" + } + ], + "type-original": "Window" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "open" + }, + "webkitConvertPointFromPageToNode": { + "signature": [ + { + "param-min-required": 2, + "type": "WebKitPoint", + "param": [ + { + "name": "node", + "type": "Node", + "type-original": "Node" + }, + { + "name": "pt", + "type": "WebKitPoint", + "type-original": "WebKitPoint" + } + ], + "type-original": "WebKitPoint" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "webkitConvertPointFromPageToNode", + "tags": "CSSOM" + }, + "departFocus": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "navigationReason", + "type": "NavigationReason", + "type-original": "NavigationReason" + }, + { + "name": "origin", + "type": "FocusNavigationOrigin", + "type-original": "FocusNavigationOrigin" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "departFocus" + }, + "postMessage": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "message", + "type": "any", + "type-original": "any" + }, + { + "name": "targetOrigin", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "subtype": { + "type": "object" + }, + "name": "transfer", + "type": "sequence", + "optional": 1, + "type-original": "sequence" + } + ], + "type-original": "void" + } + ], + "specs": "webmessaging", + "do-not-check-domain-security": 1, + "exposed": "Window", + "name": "postMessage" + }, + "webkitCancelAnimationFrame": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "handle", + "type": "long", + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "webkitCancelAnimationFrame" + }, + "getSelection": { + "signature": [ + { + "type": "Selection", + "type-original": "Selection" + } + ], + "specs": "selection-api", + "exposed": "Window", + "name": "getSelection" + }, + "getComputedStyle": { + "specs": "cssom", + "signature": [ + { + "new-object": 1, + "param-min-required": 1, + "type": "CSSStyleDeclaration", + "param": [ + { + "name": "elt", + "type": "Element", + "type-original": "Element" + }, + { + "nullable": 1, + "name": "pseudoElt", + "optional": 1, + "type": "DOMString", + "type-original": "DOMString?" + } + ], + "type-original": "CSSStyleDeclaration" + } + ], + "name": "getComputedStyle", + "exposed": "Window" + } + } + }, + "extends": "EventTarget", + "implements": [ + "WindowTimers", + "WindowSessionStorage", + "WindowLocalStorage", + "WindowConsole", + "GlobalEventHandlers", + "IDBEnvironment", + "WindowBase64", + "GlobalFetch" + ] + }, + "SVGFETurbulenceElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "linearRGB auto sRGB inherit", + "value-syntax": "enum", + "name": "color-interpolation-filters" + } + ] + }, + "specs": "filter-effects", + "anonymous-methods": { + "method": [] + }, + "name": "SVGFETurbulenceElement", + "properties": { + "property": { + "baseFrequencyX": { + "specs": "filter-effects", + "name": "baseFrequencyX", + "constant": 1, + "content-attribute": "baseFrequency", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "svg_x_y_pair", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "numOctaves": { + "specs": "filter-effects", + "name": "numOctaves", + "constant": 1, + "content-attribute": "numOctaves", + "type-original": "SVGAnimatedInteger", + "exposed": "Window", + "content-attribute-value-syntax": "signed_integer", + "type": "SVGAnimatedInteger", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "type": { + "content-attribute-enum-values": "turbulence fractalNoise", + "specs": "filter-effects", + "name": "type", + "constant": 1, + "content-attribute": "type", + "type-original": "SVGAnimatedEnumeration", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "SVGAnimatedEnumeration", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "stitchTiles": { + "content-attribute-enum-values": "noStitch stitch", + "specs": "filter-effects", + "name": "stitchTiles", + "constant": 1, + "content-attribute": "stitchTiles", + "type-original": "SVGAnimatedEnumeration", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "SVGAnimatedEnumeration", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "baseFrequencyY": { + "specs": "filter-effects", + "name": "baseFrequencyY", + "constant": 1, + "content-attribute": "baseFrequency", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "svg_x_y_pair", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "seed": { + "specs": "filter-effects", + "name": "seed", + "constant": 1, + "content-attribute": "seed", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "filter-effects", + "namespace": "SVG", + "name": "feTurbulence" + } + ], + "constants": { + "constant": { + "SVG_STITCHTYPE_UNKNOWN": { + "specs": "filter-effects", + "value": "0", + "exposed": "Window", + "name": "SVG_STITCHTYPE_UNKNOWN", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_STITCHTYPE_NOSTITCH": { + "specs": "filter-effects", + "value": "2", + "exposed": "Window", + "name": "SVG_STITCHTYPE_NOSTITCH", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_TURBULENCE_TYPE_UNKNOWN": { + "specs": "filter-effects", + "value": "0", + "exposed": "Window", + "name": "SVG_TURBULENCE_TYPE_UNKNOWN", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_TURBULENCE_TYPE_TURBULENCE": { + "specs": "filter-effects", + "value": "2", + "exposed": "Window", + "name": "SVG_TURBULENCE_TYPE_TURBULENCE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_STITCHTYPE_STITCH": { + "specs": "filter-effects", + "value": "1", + "exposed": "Window", + "name": "SVG_STITCHTYPE_STITCH", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_TURBULENCE_TYPE_FRACTALNOISE": { + "specs": "filter-effects", + "value": "1", + "exposed": "Window", + "name": "SVG_TURBULENCE_TYPE_FRACTALNOISE", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGElement", + "implements": [ + "SVGFilterPrimitiveStandardAttributes" + ] + }, + "SVGAnimatedPreserveAspectRatio": { + "constants": { + "constant": {} + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "SVGAnimatedPreserveAspectRatio", + "extends": "Object", + "properties": { + "property": { + "animVal": { + "specs": "svg2", + "same-object": 1, + "name": "animVal", + "constant": 1, + "type-original": "SVGPreserveAspectRatio", + "exposed": "Window", + "type": "SVGPreserveAspectRatio", + "read-only": 1 + }, + "baseVal": { + "specs": "svg2", + "same-object": 1, + "name": "baseVal", + "constant": 1, + "type-original": "SVGPreserveAspectRatio", + "exposed": "Window", + "type": "SVGPreserveAspectRatio", + "read-only": 1 + } + } + } + }, + "PushSubscriptionChangeEvent": { + "specs": "push-api", + "constructor": { + "specs": "push-api", + "signature": [ + { + "param-min-required": 1, + "type": "PushSubscriptionChangeEvent", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "PushSubscriptionChangeInit", + "optional": 1, + "type-original": "PushSubscriptionChangeInit" + } + ], + "type-original": "PushSubscriptionChangeEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "PushSubscriptionChangeEvent", + "properties": { + "property": { + "newSubscription": { + "specs": "push-api", + "name": "newSubscription", + "type-original": "PushSubscription?", + "nullable": 1, + "exposed": "Worker", + "type": "PushSubscription", + "read-only": 1 + }, + "oldSubscription": { + "specs": "push-api", + "name": "oldSubscription", + "type-original": "PushSubscription?", + "nullable": 1, + "exposed": "Worker", + "type": "PushSubscription", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Worker", + "methods": { + "method": {} + }, + "extends": "ExtendableEvent" + }, + "Console": { + "constants": { + "constant": {} + }, + "specs": "whatwg-console", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": { + "profile": { + "extension": 1, + "interop": 1, + "specs": "none-console", + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "reportName", + "optional": 1, + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "name": "profile", + "exposed": "Window Worker Worklet" + }, + "groupEnd": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "whatwg-console", + "exposed": "Window Worker Worklet", + "name": "groupEnd" + }, + "assert": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "condition", + "default": "false", + "type": "boolean", + "optional": 1, + "type-original": "boolean" + }, + { + "name": "message", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + }, + { + "variadic": 1, + "name": "data", + "type": "any", + "type-original": "any" + } + ], + "type-original": "void" + } + ], + "specs": "whatwg-console", + "exposed": "Window Worker Worklet", + "name": "assert" + }, + "timeEnd": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "label", + "default": "\"default\"", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "whatwg-console", + "exposed": "Window Worker Worklet", + "name": "timeEnd" + }, + "time": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "label", + "default": "\"default\"", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "whatwg-console", + "exposed": "Window Worker Worklet", + "name": "time" + }, + "table": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "variadic": 1, + "name": "tabularData", + "type": "any", + "type-original": "any" + } + ], + "type-original": "void" + } + ], + "specs": "whatwg-console", + "exposed": "Window Worker Worklet", + "name": "table" + }, + "clear": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "whatwg-console", + "exposed": "Window Worker Worklet", + "name": "clear" + }, + "timeStamp": { + "extension": 1, + "interop": 1, + "specs": "none-console", + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "label", + "optional": 1, + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "name": "timeStamp", + "exposed": "Window Worker Worklet" + }, + "timelineEnd": { + "extension": 1, + "interop": 1, + "specs": "none-console", + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "label", + "optional": 1, + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "name": "timelineEnd", + "exposed": "Window Worker Worklet" + }, + "timeline": { + "extension": 1, + "interop": 1, + "specs": "none-console", + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "label", + "optional": 1, + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "name": "timeline", + "exposed": "Window Worker Worklet" + }, + "dir": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "item", + "type": "any", + "optional": 1, + "type-original": "any" + }, + { + "variadic": 1, + "name": "options", + "type": "any", + "type-original": "any" + } + ], + "type-original": "void" + } + ], + "specs": "whatwg-console", + "exposed": "Window Worker Worklet", + "name": "dir" + }, + "trace": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "whatwg-console", + "exposed": "Window Worker Worklet", + "name": "trace" + }, + "group": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "groupTitle", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "whatwg-console", + "exposed": "Window Worker Worklet", + "name": "group" + }, + "markTimeline": { + "extension": 1, + "interop": 1, + "specs": "none-console", + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "label", + "optional": 1, + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "name": "markTimeline", + "exposed": "Window Worker Worklet" + }, + "warn": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "message", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + }, + { + "variadic": 1, + "name": "data", + "type": "any", + "type-original": "any" + } + ], + "type-original": "void" + } + ], + "specs": "whatwg-console", + "exposed": "Window Worker Worklet", + "name": "warn" + }, + "dirxml": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "data", + "type": "any", + "type-original": "any" + } + ], + "type-original": "void" + } + ], + "specs": "whatwg-console", + "exposed": "Window Worker Worklet", + "name": "dirxml" + }, + "debug": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "message", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + }, + { + "variadic": 1, + "name": "data", + "type": "any", + "type-original": "any" + } + ], + "type-original": "void" + } + ], + "specs": "whatwg-console", + "exposed": "Window Worker Worklet", + "name": "debug" + }, + "error": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "message", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + }, + { + "variadic": 1, + "name": "data", + "type": "any", + "type-original": "any" + } + ], + "type-original": "void" + } + ], + "specs": "whatwg-console", + "exposed": "Window Worker Worklet", + "name": "error" + }, + "log": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "message", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + }, + { + "variadic": 1, + "name": "data", + "type": "any", + "type-original": "any" + } + ], + "type-original": "void" + } + ], + "specs": "whatwg-console", + "exposed": "Window Worker Worklet", + "name": "log" + }, + "select": { + "extension": 1, + "specs": "none-ms-console", + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "element", + "type": "Element", + "type-original": "Element" + } + ], + "type-original": "void" + } + ], + "name": "select", + "exposed": "Window Worker Worklet" + }, + "profileEnd": { + "extension": 1, + "interop": 1, + "specs": "none-console", + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "name": "profileEnd", + "exposed": "Window Worker Worklet" + }, + "info": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "message", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + }, + { + "variadic": 1, + "name": "data", + "type": "any", + "type-original": "any" + } + ], + "type-original": "void" + } + ], + "specs": "whatwg-console", + "exposed": "Window Worker Worklet", + "name": "info" + }, + "count": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "label", + "default": "\"default\"", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "whatwg-console", + "exposed": "Window Worker Worklet", + "name": "count" + }, + "msIsIndependentlyComposed": { + "extension": 1, + "specs": "none-ms-console", + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "element", + "type": "Element", + "type-original": "Element" + } + ], + "type-original": "boolean" + } + ], + "name": "msIsIndependentlyComposed", + "exposed": "Window Worker Worklet" + }, + "exception": { + "extension": 1, + "interop": 1, + "specs": "none-console", + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "message", + "optional": 1, + "type": "DOMString", + "type-original": "DOMString" + }, + { + "variadic": 1, + "name": "optionalParams", + "type": "any", + "type-original": "any" + } + ], + "type-original": "void" + } + ], + "name": "exception", + "exposed": "Window Worker Worklet" + }, + "groupCollapsed": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "groupTitle", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "whatwg-console", + "exposed": "Window Worker Worklet", + "name": "groupCollapsed" + } + } + }, + "exposed": "Window Worker Worklet", + "name": "Console", + "extends": "Object", + "properties": { + "property": { + "memory": { + "extension": 1, + "specs": "none-console", + "name": "memory", + "exposed": "Window Worker Worklet", + "type": "object", + "type-original": "object" + } + } + } + }, + "SVGFESpotLightElement": { + "specs": "filter-effects", + "anonymous-methods": { + "method": [] + }, + "name": "SVGFESpotLightElement", + "properties": { + "property": { + "pointsAtZ": { + "specs": "filter-effects", + "name": "pointsAtZ", + "constant": 1, + "content-attribute": "pointsAtZ", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "x": { + "specs": "filter-effects", + "name": "x", + "constant": 1, + "content-attribute": "x", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "pointsAtX": { + "specs": "filter-effects", + "name": "pointsAtX", + "constant": 1, + "content-attribute": "pointsAtX", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "y": { + "specs": "filter-effects", + "name": "y", + "constant": 1, + "content-attribute": "y", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "pointsAtY": { + "specs": "filter-effects", + "name": "pointsAtY", + "constant": 1, + "content-attribute": "pointsAtY", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "specularExponent": { + "specs": "filter-effects", + "name": "specularExponent", + "constant": 1, + "content-attribute": "specularExponent", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "limitingConeAngle": { + "specs": "filter-effects", + "name": "limitingConeAngle", + "constant": 1, + "content-attribute": "limitingConeAngle", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "z": { + "specs": "filter-effects", + "name": "z", + "constant": 1, + "content-attribute": "z", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "filter-effects", + "namespace": "SVG", + "name": "feSpotLight" + } + ], + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "SVGElement" + }, + "HTMLImageElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLImageElement", + "named-constructor": { + "specs": "html5", + "signature": [ + { + "param-min-required": 0, + "type": "HTMLImageElement", + "param": [ + { + "name": "width", + "type": "unsigned long", + "optional": 1, + "type-original": "unsigned long" + }, + { + "name": "height", + "type": "unsigned long", + "optional": 1, + "type-original": "unsigned long" + } + ], + "type-original": "HTMLImageElement" + } + ], + "name": "Image" + }, + "properties": { + "property": { + "width": { + "specs": "html5", + "ce-reactions": 1, + "name": "width", + "content-attribute": "width", + "type-original": "unsigned long", + "exposed": "Window", + "content-attribute-value-syntax": "non_negative_integer", + "type": "unsigned long", + "content-attribute-reflects": 1 + }, + "msPlayToPrimary": { + "extension": 1, + "specs": "none", + "ce-reactions": 1, + "name": "msPlayToPrimary", + "type-original": "boolean", + "content-attribute": "x-ms-playtoprimary", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "boolean", + "content-attribute-boolean": 1 + }, + "currentSrc": { + "specs": "html5", + "exposed": "Window", + "name": "currentSrc", + "type": "USVString", + "type-original": "USVString", + "read-only": 1 + }, + "msPlayToDisabled": { + "extension": 1, + "specs": "none", + "ce-reactions": 1, + "name": "msPlayToDisabled", + "type-original": "boolean", + "content-attribute": "x-ms-playtodisabled", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "boolean", + "content-attribute-boolean": 1 + }, + "x": { + "specs": "cssom-view-1", + "name": "x", + "exposed": "Window", + "type": "long", + "read-only": 1, + "type-original": "long" + }, + "y": { + "specs": "cssom-view-1", + "name": "y", + "exposed": "Window", + "type": "long", + "read-only": 1, + "type-original": "long" + }, + "msPlayToSource": { + "extension": 1, + "specs": "none", + "name": "msPlayToSource", + "type-original": "any", + "exposed": "Window", + "type": "any", + "read-only": 1 + }, + "lowsrc": { + "specs": "html5", + "ce-reactions": 1, + "name": "lowsrc", + "type-original": "USVString", + "content-attribute": "lowsrc", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "url", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "USVString" + }, + "vspace": { + "specs": "html5", + "ce-reactions": 1, + "name": "vspace", + "type-original": "unsigned long", + "content-attribute": "vspace", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "non_negative_integer", + "exposed": "Window", + "type": "unsigned long", + "content-attribute-reflects": 1 + }, + "msPlayToPreferredSourceUri": { + "extension": 1, + "specs": "none", + "ce-reactions": 1, + "name": "msPlayToPreferredSourceUri", + "type-original": "DOMString", + "content-attribute": "x-ms-playtopreferredsourceuri", + "content-attribute-value-syntax": "url", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "naturalHeight": { + "specs": "html5", + "name": "naturalHeight", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + }, + "alt": { + "specs": "html5", + "ce-reactions": 1, + "name": "alt", + "content-attribute": "alt", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "srcset": { + "specs": "html5", + "ce-reactions": 1, + "name": "srcset", + "content-attribute": "srcset", + "type-original": "USVString", + "content-attribute-value-syntax": "image_candidates", + "exposed": "Window", + "type": "USVString", + "content-attribute-reflects": 1 + }, + "align": { + "content-attribute-enum-values": "absbottom absmiddle baseline bottom left middle right texttop top", + "specs": "html5", + "ce-reactions": 1, + "name": "align", + "type-original": "DOMString", + "content-attribute": "align", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "src": { + "specs": "html5", + "ce-reactions": 1, + "name": "src", + "content-attribute": "src", + "type-original": "USVString", + "exposed": "Window", + "content-attribute-value-syntax": "url", + "type": "USVString", + "content-attribute-reflects": 1 + }, + "name": { + "specs": "html5", + "ce-reactions": 1, + "name": "name", + "type-original": "DOMString", + "content-attribute": "name", + "deprecated": 1, + "interop": 1, + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "useMap": { + "specs": "html5", + "ce-reactions": 1, + "name": "useMap", + "content-attribute": "usemap", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "hash_name_ref", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "naturalWidth": { + "specs": "html5", + "name": "naturalWidth", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + }, + "sizes": { + "specs": "html5", + "ce-reactions": 1, + "name": "sizes", + "content-attribute": "sizes", + "type-original": "DOMString", + "content-attribute-value-syntax": "image_sizes", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "height": { + "specs": "html5", + "ce-reactions": 1, + "name": "height", + "content-attribute": "height", + "type-original": "unsigned long", + "exposed": "Window", + "content-attribute-value-syntax": "non_negative_integer", + "type": "unsigned long", + "content-attribute-reflects": 1 + }, + "border": { + "specs": "html5", + "ce-reactions": 1, + "name": "border", + "type-original": "DOMString", + "content-attribute": "border", + "deprecated": 1, + "interop": 1, + "treat-null-as": "EmptyString", + "content-attribute-value-syntax": "non_negative_integer", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "crossOrigin": { + "content-attribute-enum-values": "anonymous use-credentials", + "specs": "html5", + "ce-reactions": 1, + "name": "crossOrigin", + "content-attribute": "crossorigin", + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "longDesc": { + "specs": "html-longdesc", + "ce-reactions": 1, + "name": "longDesc", + "type-original": "USVString", + "content-attribute": "longdesc", + "content-attribute-value-syntax": "url", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "USVString" + }, + "hspace": { + "specs": "html5", + "ce-reactions": 1, + "name": "hspace", + "type-original": "unsigned long", + "content-attribute": "hspace", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "non_negative_integer", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "unsigned long" + }, + "isMap": { + "specs": "html5", + "ce-reactions": 1, + "name": "isMap", + "content-attribute": "ismap", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "complete": { + "specs": "html5", + "name": "complete", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "img", + "html-self-closing": 1 + } + ], + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "HTML5", + "name": "error", + "type": "Event" + } + ] + }, + "methods": { + "method": { + "msGetAsCastingSource": { + "extension": 1, + "specs": "none", + "signature": [ + { + "type": "any", + "type-original": "any" + } + ], + "name": "msGetAsCastingSource", + "exposed": "Window" + } + } + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "CanvasGradient": { + "constants": { + "constant": {} + }, + "specs": "2dcontext", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "addColorStop": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "offset", + "type": "float", + "type-original": "float" + }, + { + "name": "color", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "addColorStop" + } + } + }, + "name": "CanvasGradient", + "extends": "Object", + "properties": { + "property": {} + } + }, + "ANGLE_instanced_arrays": { + "constants": { + "constant": { + "VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE": { + "specs": "webgl", + "value": "0x88FE", + "exposed": "Window", + "name": "VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE", + "type": "unsigned long", + "type-original": "GLenum" + } + } + }, + "specs": "webgl", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "vertexAttribDivisorANGLE": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "GLuint" + }, + { + "name": "divisor", + "type": "unsigned long", + "type-original": "GLuint" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "vertexAttribDivisorANGLE" + }, + "drawArraysInstancedANGLE": { + "signature": [ + { + "param-min-required": 4, + "type": "void", + "param": [ + { + "name": "mode", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "first", + "type": "long", + "type-original": "GLint" + }, + { + "name": "count", + "type": "long", + "type-original": "GLsizei" + }, + { + "name": "primcount", + "type": "long", + "type-original": "GLsizei" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "drawArraysInstancedANGLE" + }, + "drawElementsInstancedANGLE": { + "signature": [ + { + "param-min-required": 5, + "type": "void", + "param": [ + { + "name": "mode", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "count", + "type": "long", + "type-original": "GLsizei" + }, + { + "name": "type", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "offset", + "type": "long long", + "type-original": "GLintptr" + }, + { + "name": "primcount", + "type": "long", + "type-original": "GLsizei" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "drawElementsInstancedANGLE" + } + } + }, + "name": "ANGLE_instanced_arrays", + "extends": "Object", + "properties": { + "property": {} + } + }, + "MediaStream": { + "specs": "media-capture-api", + "constructor": { + "specs": "media-capture-api", + "signature": [ + { + "type": "MediaStream", + "type-original": "MediaStream" + }, + { + "param-min-required": 1, + "type": "MediaStream", + "param": [ + { + "name": "stream", + "type": "MediaStream", + "type-original": "MediaStream" + } + ], + "type-original": "MediaStream" + }, + { + "param-min-required": 1, + "type": "MediaStream", + "param": [ + { + "subtype": { + "type": "MediaStreamTrack" + }, + "name": "tracks", + "type": "sequence", + "type-original": "sequence" + } + ], + "type-original": "MediaStream" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "MediaStream", + "properties": { + "property": { + "oninactive": { + "specs": "media-capture-api", + "name": "oninactive", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "inactive" + }, + "onremovetrack": { + "specs": "media-capture-api", + "name": "onremovetrack", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "removetrack" + }, + "onaddtrack": { + "specs": "media-capture-api", + "name": "onaddtrack", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "addtrack" + }, + "onactive": { + "specs": "media-capture-api", + "name": "onactive", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "active" + }, + "active": { + "specs": "media-capture-api", + "exposed": "Window", + "name": "active", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "id": { + "specs": "media-capture-api", + "exposed": "Window", + "name": "id", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "MediaCap", + "name": "active", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "MediaCap", + "name": "inactive", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "MediaCap", + "name": "addtrack", + "type": "MediaStreamTrackEvent", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "MediaCap", + "name": "removetrack", + "type": "MediaStreamTrackEvent", + "skips-window": 1 + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "addTrack": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "track", + "type": "MediaStreamTrack", + "type-original": "MediaStreamTrack" + } + ], + "type-original": "void" + } + ], + "specs": "media-capture-api", + "exposed": "Window", + "name": "addTrack" + }, + "stop": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "media-capture-api", + "exposed": "Window", + "name": "stop" + }, + "getTrackById": { + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "MediaStreamTrack", + "param": [ + { + "name": "trackId", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "MediaStreamTrack?" + } + ], + "specs": "media-capture-api", + "exposed": "Window", + "name": "getTrackById" + }, + "getVideoTracks": { + "signature": [ + { + "subtype": { + "type": "MediaStreamTrack" + }, + "type": "sequence", + "type-original": "sequence" + } + ], + "specs": "media-capture-api", + "exposed": "Window", + "name": "getVideoTracks" + }, + "clone": { + "signature": [ + { + "type": "MediaStream", + "type-original": "MediaStream" + } + ], + "specs": "media-capture-api", + "exposed": "Window", + "name": "clone" + }, + "removeTrack": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "track", + "type": "MediaStreamTrack", + "type-original": "MediaStreamTrack" + } + ], + "type-original": "void" + } + ], + "specs": "media-capture-api", + "exposed": "Window", + "name": "removeTrack" + }, + "getAudioTracks": { + "signature": [ + { + "subtype": { + "type": "MediaStreamTrack" + }, + "type": "sequence", + "type-original": "sequence" + } + ], + "specs": "media-capture-api", + "exposed": "Window", + "name": "getAudioTracks" + }, + "getTracks": { + "signature": [ + { + "subtype": { + "type": "MediaStreamTrack" + }, + "type": "sequence", + "type-original": "sequence" + } + ], + "specs": "media-capture-api", + "exposed": "Window", + "name": "getTracks" + } + } + }, + "extends": "EventTarget" + }, + "Cache": { + "constants": { + "constant": {} + }, + "specs": "service-workers", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "keys": { + "signature": [ + { + "new-object": 1, + "subtype": { + "subtype": { + "type": "Request" + }, + "type": "sequence" + }, + "param-min-required": 0, + "type": "Promise", + "param": [ + { + "name": "request", + "type": [ + { + "type": "Request" + }, + { + "type": "USVString" + } + ], + "optional": 1, + "type-original": "RequestInfo" + }, + { + "name": "options", + "type": "CacheQueryOptions", + "optional": 1, + "type-original": "CacheQueryOptions" + } + ], + "type-original": "Promise>" + } + ], + "specs": "service-workers", + "exposed": "Window", + "name": "keys" + }, + "add": { + "signature": [ + { + "new-object": 1, + "subtype": { + "type": "void" + }, + "param-min-required": 1, + "type": "Promise", + "param": [ + { + "name": "request", + "type": [ + { + "type": "Request" + }, + { + "type": "USVString" + } + ], + "type-original": "RequestInfo" + } + ], + "type-original": "Promise" + } + ], + "specs": "service-workers", + "exposed": "Window", + "name": "add" + }, + "delete": { + "signature": [ + { + "new-object": 1, + "subtype": { + "type": "boolean" + }, + "param-min-required": 1, + "type": "Promise", + "param": [ + { + "name": "request", + "type": [ + { + "type": "Request" + }, + { + "type": "USVString" + } + ], + "type-original": "RequestInfo" + }, + { + "name": "options", + "type": "CacheQueryOptions", + "optional": 1, + "type-original": "CacheQueryOptions" + } + ], + "type-original": "Promise" + } + ], + "specs": "service-workers", + "exposed": "Window", + "name": "delete" + }, + "match": { + "signature": [ + { + "new-object": 1, + "subtype": { + "type": "Response" + }, + "param-min-required": 1, + "type": "Promise", + "param": [ + { + "name": "request", + "type": [ + { + "type": "Request" + }, + { + "type": "USVString" + } + ], + "type-original": "RequestInfo" + }, + { + "name": "options", + "type": "CacheQueryOptions", + "optional": 1, + "type-original": "CacheQueryOptions" + } + ], + "type-original": "Promise" + } + ], + "specs": "service-workers", + "exposed": "Window", + "name": "match" + }, + "put": { + "signature": [ + { + "new-object": 1, + "subtype": { + "type": "void" + }, + "param-min-required": 2, + "type": "Promise", + "param": [ + { + "name": "request", + "type": [ + { + "type": "Request" + }, + { + "type": "USVString" + } + ], + "type-original": "RequestInfo" + }, + { + "name": "response", + "type": "Response", + "type-original": "Response" + } + ], + "type-original": "Promise" + } + ], + "specs": "service-workers", + "exposed": "Window", + "name": "put" + }, + "addAll": { + "signature": [ + { + "new-object": 1, + "subtype": { + "type": "void" + }, + "param-min-required": 1, + "type": "Promise", + "param": [ + { + "subtype": { + "type": [ + { + "type": "Request" + }, + { + "type": "USVString" + } + ] + }, + "name": "requests", + "type": "sequence", + "type-original": "sequence" + } + ], + "type-original": "Promise" + } + ], + "specs": "service-workers", + "exposed": "Window", + "name": "addAll" + }, + "matchAll": { + "signature": [ + { + "new-object": 1, + "subtype": { + "subtype": { + "type": "Response" + }, + "type": "sequence" + }, + "param-min-required": 0, + "type": "Promise", + "param": [ + { + "name": "request", + "type": [ + { + "type": "Request" + }, + { + "type": "USVString" + } + ], + "optional": 1, + "type-original": "RequestInfo" + }, + { + "name": "options", + "type": "CacheQueryOptions", + "optional": 1, + "type-original": "CacheQueryOptions" + } + ], + "type-original": "Promise>" + } + ], + "specs": "service-workers", + "exposed": "Window", + "name": "matchAll" + } + } + }, + "name": "Cache", + "extends": "Object", + "properties": { + "property": {} + } + }, + "Document": { + "specs": "dom4", + "anonymous-methods": { + "method": [ + { + "getter": 1, + "signature": [ + { + "param-min-required": 1, + "type": [ + { + "type": "Window" + }, + { + "type": "Element" + }, + { + "type": "HTMLCollection" + } + ], + "param": [ + { + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "(Window or Element or HTMLCollection)" + } + ], + "specs": "dom4", + "name": "" + } + ] + }, + "name": "Document", + "properties": { + "property": { + "webkitFullscreenElement": { + "specs": "fullscreen", + "name": "webkitFullscreenElement", + "type-original": "Element?", + "nullable": 1, + "exposed": "Window", + "type": "Element", + "read-only": 1 + }, + "onmsgesturedoubletap": { + "specs": "dom4", + "name": "onmsgesturedoubletap", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSGestureDoubleTap" + }, + "fullscreenEnabled": { + "specs": "fullscreen", + "name": "fullscreenEnabled", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "read-only": 1 + }, + "onkeydown": { + "specs": "dom4", + "name": "onkeydown", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "keydown" + }, + "onkeyup": { + "specs": "dom4", + "name": "onkeyup", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "keyup" + }, + "implementation": { + "specs": "dom4", + "name": "implementation", + "type-original": "DOMImplementation", + "exposed": "Window", + "type": "DOMImplementation", + "read-only": 1 + }, + "onreset": { + "specs": "dom4", + "name": "onreset", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "reset" + }, + "scripts": { + "specs": "dom4", + "name": "scripts", + "tags": "TreeNavigation", + "type-original": "HTMLCollection", + "exposed": "Window", + "type": "HTMLCollection", + "read-only": 1 + }, + "onmsgesturestart": { + "specs": "dom4", + "name": "onmsgesturestart", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSGestureStart" + }, + "ondragleave": { + "specs": "dom4", + "name": "ondragleave", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "dragleave" + }, + "charset": { + "specs": "dom4", + "name": "charset", + "tags": "Parsing", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString" + }, + "webkitCurrentFullScreenElement": { + "specs": "fullscreen", + "name": "webkitCurrentFullScreenElement", + "type-original": "Element?", + "nullable": 1, + "exposed": "Window", + "type": "Element", + "read-only": 1 + }, + "vlinkColor": { + "specs": "dom4", + "ce-reactions": 1, + "name": "vlinkColor", + "tags": "CSSOM", + "type-original": "DOMString", + "treat-null-as": "EmptyString", + "exposed": "Window", + "type": "DOMString" + }, + "onseeked": { + "specs": "dom4", + "name": "onseeked", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "seeked" + }, + "ontouchstart": { + "specs": "dom4", + "name": "ontouchstart", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "touchstart" + }, + "title": { + "pure": 1, + "specs": "dom4", + "ce-reactions": 1, + "name": "title", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString" + }, + "embeds": { + "specs": "dom4", + "name": "embeds", + "tags": "TreeNavigation", + "type-original": "HTMLCollection", + "exposed": "Window", + "type": "HTMLCollection", + "read-only": 1 + }, + "styleSheets": { + "specs": "cssom", + "same-object": 1, + "name": "styleSheets", + "constant": 1, + "type-original": "StyleSheetList", + "exposed": "Window", + "type": "StyleSheetList", + "read-only": 1 + }, + "ondurationchange": { + "specs": "dom4", + "name": "ondurationchange", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "durationchange" + }, + "all": { + "specs": "dom4", + "name": "all", + "tags": "TreeNavigation", + "type-original": "HTMLAllCollection", + "exposed": "Window", + "type": "HTMLAllCollection", + "read-only": 1 + }, + "forms": { + "specs": "dom4", + "name": "forms", + "tags": "TreeNavigation", + "type-original": "HTMLCollection", + "exposed": "Window", + "type": "HTMLCollection", + "read-only": 1 + }, + "onblur": { + "specs": "dom4", + "name": "onblur", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "blur" + }, + "dir": { + "pure": 1, + "specs": "dom4", + "ce-reactions": 1, + "name": "dir", + "tags": "CSSOM", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString" + }, + "onmscontentzoom": { + "specs": "dom4", + "name": "onmscontentzoom", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSContentZoom" + }, + "onemptied": { + "specs": "dom4", + "name": "onemptied", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "emptied" + }, + "designMode": { + "specs": "dom4", + "ce-reactions": 1, + "exposed": "Window", + "name": "designMode", + "type": "DOMString", + "type-original": "DOMString" + }, + "onseeking": { + "specs": "dom4", + "name": "onseeking", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "seeking" + }, + "ondeactivate": { + "specs": "dom4", + "name": "ondeactivate", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "deactivate" + }, + "oncanplay": { + "specs": "dom4", + "name": "oncanplay", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "canplay" + }, + "onmspointerout": { + "specs": "dom4", + "name": "onmspointerout", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSPointerOut" + }, + "onmspointerover": { + "specs": "dom4", + "name": "onmspointerover", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSPointerOver" + }, + "URLUnencoded": { + "property-descriptor-not-configurable": 1, + "specs": "dom4", + "name": "URLUnencoded", + "tags": "NetworkAccess", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "onloadstart": { + "specs": "dom4", + "name": "onloadstart", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "loadstart" + }, + "onmspointerdown": { + "specs": "dom4", + "name": "onmspointerdown", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSPointerDown" + }, + "defaultView": { + "pure": 1, + "specs": "dom4", + "name": "defaultView", + "type-original": "Window", + "exposed": "Window", + "type": "Window", + "read-only": 1 + }, + "ondragenter": { + "specs": "dom4", + "name": "ondragenter", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "dragenter" + }, + "onsubmit": { + "specs": "dom4", + "name": "onsubmit", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "submit" + }, + "inputEncoding": { + "specs": "dom4", + "name": "inputEncoding", + "tags": "Parsing", + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "activeElement": { + "specs": "dom4", + "exposed": "Window", + "name": "activeElement", + "type": "Element", + "type-original": "Element", + "read-only": 1 + }, + "onchange": { + "specs": "dom4", + "name": "onchange", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "change" + }, + "onmsgesturehold": { + "specs": "dom4", + "name": "onmsgesturehold", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSGestureHold" + }, + "links": { + "specs": "dom4", + "name": "links", + "tags": "TreeNavigation", + "type-original": "HTMLCollection", + "exposed": "Window", + "type": "HTMLCollection", + "read-only": 1 + }, + "URL": { + "property-descriptor-not-configurable": 1, + "pure": 1, + "specs": "dom4", + "name": "URL", + "tags": "NetworkAccess", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "onmspointercancel": { + "specs": "dom4", + "name": "onmspointercancel", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSPointerCancel" + }, + "onbeforeactivate": { + "specs": "dom4", + "name": "onbeforeactivate", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "beforeactivate" + }, + "head": { + "specs": "dom4", + "name": "head", + "tags": "TreeNavigation", + "type-original": "HTMLHeadElement", + "exposed": "Window", + "type": "HTMLHeadElement", + "read-only": 1 + }, + "cookie": { + "specs": "dom4", + "name": "cookie", + "tags": "NetworkAccess", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString" + }, + "xmlEncoding": { + "specs": "dom4", + "name": "xmlEncoding", + "tags": "Parsing", + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "oncanplaythrough": { + "specs": "dom4", + "name": "oncanplaythrough", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "canplaythrough" + }, + "characterSet": { + "pure": 1, + "specs": "dom4", + "name": "characterSet", + "tags": "Parsing", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "anchors": { + "specs": "dom4", + "name": "anchors", + "tags": "TreeNavigation", + "type-original": "HTMLCollection", + "exposed": "Window", + "type": "HTMLCollection", + "read-only": 1 + }, + "fullscreenElement": { + "specs": "fullscreen", + "name": "fullscreenElement", + "type-original": "Element?", + "nullable": 1, + "exposed": "Window", + "type": "Element", + "read-only": 1 + }, + "plugins": { + "specs": "dom4", + "name": "plugins", + "tags": "TreeNavigation", + "type-original": "HTMLCollection", + "exposed": "Window", + "type": "HTMLCollection", + "read-only": 1 + }, + "onsuspend": { + "specs": "dom4", + "name": "onsuspend", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "suspend" + }, + "rootElement": { + "specs": "dom4", + "name": "rootElement", + "type-original": "SVGSVGElement", + "exposed": "Window", + "type": "SVGSVGElement", + "read-only": 1 + }, + "readyState": { + "specs": "dom4", + "exposed": "Window", + "name": "readyState", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "referrer": { + "property-descriptor-not-configurable": 1, + "specs": "dom4", + "name": "referrer", + "tags": "NetworkAccess", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "alinkColor": { + "specs": "dom4", + "ce-reactions": 1, + "name": "alinkColor", + "tags": "CSSOM", + "type-original": "DOMString", + "treat-null-as": "EmptyString", + "exposed": "Window", + "type": "DOMString" + }, + "ontouchmove": { + "specs": "dom4", + "name": "ontouchmove", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "touchmove" + }, + "ontouchcancel": { + "specs": "dom4", + "name": "ontouchcancel", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "touchcancel" + }, + "onmsgesturetap": { + "specs": "dom4", + "name": "onmsgesturetap", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSGestureTap" + }, + "onmouseout": { + "specs": "dom4", + "name": "onmouseout", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "mouseout" + }, + "onmsthumbnailclick": { + "specs": "dom4", + "name": "onmsthumbnailclick", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "msthumbnailclick" + }, + "onmousewheel": { + "specs": "dom4", + "name": "onmousewheel", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "mousewheel" + }, + "onvolumechange": { + "specs": "dom4", + "name": "onvolumechange", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "volumechange" + }, + "hidden": { + "specs": "page-visibility", + "exposed": "Window", + "name": "hidden", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "scrollingElement": { + "specs": "cssom-view", + "name": "scrollingElement", + "type-original": "Element?", + "nullable": 1, + "exposed": "Window", + "type": "Element", + "read-only": 1 + }, + "xmlVersion": { + "specs": "dom4", + "name": "xmlVersion", + "tags": "Parsing", + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "type": "DOMString" + }, + "msCapsLockWarningOff": { + "specs": "dom4", + "exposed": "Window", + "name": "msCapsLockWarningOff", + "type": "boolean", + "type-original": "boolean" + }, + "ondragend": { + "specs": "dom4", + "name": "ondragend", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "dragend" + }, + "doctype": { + "specs": "dom4", + "name": "doctype", + "tags": "TreeNavigation", + "type-original": "DocumentType", + "exposed": "Window", + "type": "DocumentType", + "read-only": 1 + }, + "ondragover": { + "specs": "dom4", + "name": "ondragover", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "dragover" + }, + "onwebkitfullscreenerror": { + "specs": "fullscreen", + "name": "onwebkitfullscreenerror", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "webkitfullscreenerror" + }, + "bgColor": { + "specs": "dom4", + "ce-reactions": 1, + "name": "bgColor", + "tags": "CSSOM", + "type-original": "DOMString", + "treat-null-as": "EmptyString", + "exposed": "Window", + "type": "DOMString" + }, + "onpointerlockchange": { + "specs": "pointerlock", + "name": "onpointerlockchange", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "pointerlockchange" + }, + "ondragstart": { + "specs": "dom4", + "name": "ondragstart", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "dragstart" + }, + "onmouseup": { + "specs": "dom4", + "name": "onmouseup", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "mouseup" + }, + "onmsgesturechange": { + "specs": "dom4", + "name": "onmsgesturechange", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSGestureChange" + }, + "ondrag": { + "specs": "dom4", + "name": "ondrag", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "drag" + }, + "onmouseover": { + "specs": "dom4", + "name": "onmouseover", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "mouseover" + }, + "linkColor": { + "specs": "dom4", + "ce-reactions": 1, + "name": "linkColor", + "tags": "CSSOM", + "type-original": "DOMString", + "treat-null-as": "EmptyString", + "exposed": "Window", + "type": "DOMString" + }, + "onpause": { + "specs": "dom4", + "name": "onpause", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "pause" + }, + "onpointerlockerror": { + "specs": "pointerlock", + "name": "onpointerlockerror", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "pointerlockerror" + }, + "onmousedown": { + "specs": "dom4", + "name": "onmousedown", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "mousedown" + }, + "onclick": { + "specs": "dom4", + "name": "onclick", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "click" + }, + "onwaiting": { + "specs": "dom4", + "name": "onwaiting", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "waiting" + }, + "currentScript": { + "pure": 1, + "specs": "dom4", + "name": "currentScript", + "type-original": "(HTMLScriptElement? or SVGScriptElement?)", + "exposed": "Window", + "type": [ + { + "nullable": 1, + "type": "HTMLScriptElement" + }, + { + "nullable": 1, + "type": "SVGScriptElement" + } + ], + "read-only": 1 + }, + "onfullscreenchange": { + "specs": "fullscreen", + "name": "onfullscreenchange", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "fullscreenchange" + }, + "onstop": { + "specs": "dom4", + "name": "onstop", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "stop" + }, + "onmssitemodejumplistitemremoved": { + "specs": "dom4", + "name": "onmssitemodejumplistitemremoved", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "mssitemodejumplistitemremoved" + }, + "applets": { + "specs": "dom4", + "name": "applets", + "tags": "TreeNavigation", + "type-original": "HTMLCollection", + "exposed": "Window", + "type": "HTMLCollection", + "read-only": 1 + }, + "body": { + "specs": "dom4", + "ce-reactions": 1, + "name": "body", + "tags": "TreeNavigation", + "type-original": "HTMLElement", + "exposed": "Window", + "type": "HTMLElement" + }, + "domain": { + "property-descriptor-not-configurable": 1, + "specs": "dom4", + "name": "domain", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString" + }, + "xmlStandalone": { + "specs": "dom4", + "name": "xmlStandalone", + "tags": "Parsing", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean" + }, + "onstalled": { + "specs": "dom4", + "name": "onstalled", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "stalled" + }, + "onmousemove": { + "specs": "dom4", + "name": "onmousemove", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "mousemove" + }, + "documentElement": { + "pure": 1, + "specs": "dom4", + "name": "documentElement", + "tags": "TreeNavigation", + "type-original": "Element", + "exposed": "Window", + "type": "Element", + "read-only": 1 + }, + "onmsinertiastart": { + "specs": "dom4", + "name": "onmsinertiastart", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSInertiaStart" + }, + "webkitIsFullScreen": { + "specs": "fullscreen", + "exposed": "Window", + "name": "webkitIsFullScreen", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "onmspointerenter": { + "specs": "dom4", + "name": "onmspointerenter", + "content-attribute": "onmspointerenter", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "javascript", + "type": "EventHandlerNonNull", + "event-handler": "MSPointerEnter" + }, + "onratechange": { + "specs": "dom4", + "name": "onratechange", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "ratechange" + }, + "onmspointerleave": { + "specs": "dom4", + "name": "onmspointerleave", + "content-attribute": "onmspointerleave", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "javascript", + "type": "EventHandlerNonNull", + "event-handler": "MSPointerLeave" + }, + "visibilityState": { + "specs": "page-visibility", + "exposed": "Window", + "name": "visibilityState", + "type": "VisibilityState", + "type-original": "VisibilityState", + "read-only": 1 + }, + "onprogress": { + "specs": "dom4", + "name": "onprogress", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "progress" + }, + "oninvalid": { + "specs": "dom4", + "name": "oninvalid", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "invalid" + }, + "ondblclick": { + "specs": "dom4", + "name": "ondblclick", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "dblclick" + }, + "oncontextmenu": { + "specs": "dom4", + "name": "oncontextmenu", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "contextmenu" + }, + "onloadedmetadata": { + "specs": "dom4", + "name": "onloadedmetadata", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "loadedmetadata" + }, + "onmspointermove": { + "specs": "dom4", + "name": "onmspointermove", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSPointerMove" + }, + "onerror": { + "specs": "dom4", + "name": "onerror", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "error" + }, + "onplay": { + "specs": "dom4", + "name": "onplay", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "play" + }, + "onplaying": { + "specs": "dom4", + "name": "onplaying", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "playing" + }, + "images": { + "specs": "dom4", + "name": "images", + "tags": "TreeNavigation", + "type-original": "HTMLCollection", + "exposed": "Window", + "type": "HTMLCollection", + "read-only": 1 + }, + "location": { + "put-forwards": "href", + "specs": "dom4", + "name": "location", + "tags": "NetworkAccess", + "type-original": "Location", + "exposed": "Window", + "type": "Location", + "read-only": 1 + }, + "onmsgestureend": { + "specs": "dom4", + "name": "onmsgestureend", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSGestureEnd" + }, + "onabort": { + "specs": "dom4", + "name": "onabort", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "abort" + }, + "onselectionchange": { + "specs": "selection-api", + "name": "onselectionchange", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "selectionchange" + }, + "msCSSOMElementFloatMetrics": { + "specs": "dom4", + "name": "msCSSOMElementFloatMetrics", + "tags": "CSSOM", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean" + }, + "pointerLockElement": { + "specs": "pointerlock", + "exposed": "Window", + "name": "pointerLockElement", + "type": "Element", + "type-original": "Element", + "read-only": 1 + }, + "onreadystatechange": { + "specs": "dom4", + "name": "onreadystatechange", + "type-original": "EventHandler", + "lenient-this": 1, + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "readystatechange" + }, + "lastModified": { + "specs": "dom4", + "name": "lastModified", + "tags": "NetworkAccess", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "onkeypress": { + "specs": "dom4", + "name": "onkeypress", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "keypress" + }, + "onmspointerup": { + "specs": "dom4", + "name": "onmspointerup", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSPointerUp" + }, + "onloadeddata": { + "specs": "dom4", + "name": "onloadeddata", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "loadeddata" + }, + "onbeforedeactivate": { + "specs": "dom4", + "name": "onbeforedeactivate", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "beforedeactivate" + }, + "onactivate": { + "specs": "dom4", + "name": "onactivate", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "activate" + }, + "onmsmanipulationstatechanged": { + "specs": "dom4", + "name": "onmsmanipulationstatechanged", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSManipulationStateChanged" + }, + "onselectstart": { + "specs": "selection-api", + "name": "onselectstart", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "selectstart" + }, + "onfocus": { + "specs": "dom4", + "name": "onfocus", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "focus" + }, + "ontouchend": { + "specs": "dom4", + "name": "ontouchend", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "touchend" + }, + "onfullscreenerror": { + "specs": "fullscreen", + "name": "onfullscreenerror", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "fullscreenerror" + }, + "fgColor": { + "specs": "dom4", + "ce-reactions": 1, + "name": "fgColor", + "tags": "CSSOM", + "type-original": "DOMString", + "treat-null-as": "EmptyString", + "exposed": "Window", + "type": "DOMString" + }, + "ontimeupdate": { + "specs": "dom4", + "name": "ontimeupdate", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "timeupdate" + }, + "webkitFullscreenEnabled": { + "specs": "fullscreen", + "exposed": "Window", + "name": "webkitFullscreenEnabled", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "onselect": { + "specs": "dom4", + "name": "onselect", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "select" + }, + "ondrop": { + "specs": "dom4", + "name": "ondrop", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "drop" + }, + "onended": { + "specs": "dom4", + "name": "onended", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "ended" + }, + "compatMode": { + "pure": 1, + "specs": "dom4", + "name": "compatMode", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "onscroll": { + "specs": "dom4", + "name": "onscroll", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "scroll" + }, + "onwebkitfullscreenchange": { + "specs": "fullscreen", + "name": "onwebkitfullscreenchange", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "webkitfullscreenchange" + }, + "onload": { + "specs": "dom4", + "name": "onload", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "load" + }, + "oninput": { + "specs": "dom4", + "name": "oninput", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "input" + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "precedes": "load", + "dispatch": "sync", + "specs": "HTML5", + "name": "DOMContentLoaded", + "follows": "readystatechange", + "type": "Event", + "bubbles": 1 + }, + { + "precedes": "load DOMContentLoaded", + "dispatch": "sync", + "specs": "HTML5", + "name": "readystatechange", + "type": "Event" + }, + { + "dispatch": "sync", + "specs": "none", + "name": "stop", + "type": "Event" + }, + { + "dispatch": "async", + "specs": "PageVis", + "name": "visibilitychanged", + "type": "Event" + }, + { + "dispatch": "async", + "specs": "csp", + "name": "securitypolicyviolation", + "type": "SecurityPolicyViolationEvent" + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "queryCommandValue": { + "signature": [ + { + "param-min-required": 1, + "type": "DOMString", + "param": [ + { + "name": "commandId", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "DOMString" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "queryCommandValue" + }, + "captureEvents": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "captureEvents" + }, + "queryCommandIndeterm": { + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "commandId", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "boolean" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "queryCommandIndeterm" + }, + "adoptNode": { + "specs": "dom4", + "ce-reactions": 1, + "name": "adoptNode", + "tags": "TreeMutation", + "signature": [ + { + "param-min-required": 1, + "type": "Node", + "param": [ + { + "name": "source", + "type": "Node", + "type-original": "Node" + } + ], + "type-original": "Node" + } + ], + "exposed": "Window" + }, + "clear": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "clear", + "tags": "TreeMutation" + }, + "getElementsByTagNameNS": { + "pure": 1, + "signature": [ + { + "param-min-required": 2, + "type": "NodeList", + "param": [ + { + "nullable": 1, + "name": "namespaceURI", + "type": "DOMString", + "type-original": "DOMString?" + }, + { + "name": "localName", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "NodeList" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "getElementsByTagNameNS", + "tags": "TreeNavigation Namespaces" + }, + "execCommand": { + "specs": "dom4", + "ce-reactions": 1, + "name": "execCommand", + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "commandId", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "showUI", + "default": "false", + "type": "boolean", + "optional": 1, + "type-original": "boolean" + }, + { + "name": "value", + "type": "any", + "optional": 1, + "type-original": "any" + } + ], + "type-original": "boolean" + } + ], + "exposed": "Window" + }, + "createProcessingInstruction": { + "signature": [ + { + "param-min-required": 2, + "type": "ProcessingInstruction", + "param": [ + { + "name": "target", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "data", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "ProcessingInstruction" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "createProcessingInstruction", + "tags": "TreeMutation" + }, + "webkitExitFullscreen": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "fullscreen", + "exposed": "Window", + "name": "webkitExitFullscreen" + }, + "webkitCancelFullScreen": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "fullscreen", + "exposed": "Window", + "name": "webkitCancelFullScreen" + }, + "elementFromPoint": { + "signature": [ + { + "param-min-required": 2, + "type": "Element", + "param": [ + { + "name": "x", + "type": "long", + "type-original": "long" + }, + { + "name": "y", + "type": "long", + "type-original": "long" + } + ], + "type-original": "Element" + } + ], + "specs": "cssom-view", + "exposed": "Window", + "name": "elementFromPoint" + }, + "createNSResolver": { + "signature": [ + { + "param-min-required": 1, + "type": "XPathNSResolver", + "param": [ + { + "name": "nodeResolver", + "type": "Node", + "type-original": "Node" + } + ], + "type-original": "XPathNSResolver" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "createNSResolver" + }, + "createCDATASection": { + "signature": [ + { + "param-min-required": 1, + "type": "CDATASection", + "param": [ + { + "name": "data", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "CDATASection" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "createCDATASection", + "tags": "TreeMutation" + }, + "queryCommandText": { + "signature": [ + { + "param-min-required": 1, + "type": "DOMString", + "param": [ + { + "name": "commandId", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "DOMString" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "queryCommandText" + }, + "write": { + "specs": "dom4", + "ce-reactions": 1, + "name": "write", + "tags": "TreeMutation", + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "variadic": 1, + "name": "content", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "exposed": "Window" + }, + "caretRangeFromPoint": { + "signature": [ + { + "param-min-required": 2, + "type": "Range", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + } + ], + "type-original": "Range" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "caretRangeFromPoint" + }, + "createElement": { + "signature": [ + { + "param-min-required": 1, + "type": "Element", + "param": [ + { + "name": "tagName", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "Element" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "createElement", + "tags": "TreeMutation" + }, + "writeln": { + "specs": "dom4", + "ce-reactions": 1, + "name": "writeln", + "tags": "TreeMutation", + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "variadic": 1, + "name": "content", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "exposed": "Window" + }, + "createElementNS": { + "specs": "dom4", + "name": "createElementNS", + "tags": "Namespaces", + "signature": [ + { + "param-min-required": 2, + "type": "Element", + "param": [ + { + "nullable": 1, + "name": "namespaceURI", + "type": "DOMString", + "type-original": "DOMString?" + }, + { + "name": "qualifiedName", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "Element" + } + ], + "exposed": "Window" + }, + "exitPointerLock": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "pointerlock", + "exposed": "Window", + "name": "exitPointerLock" + }, + "open": { + "specs": "dom4", + "ce-reactions": 1, + "name": "open", + "tags": "NetworkAccess Parsing", + "signature": [ + { + "param-min-required": 0, + "type": [ + { + "type": "Document" + }, + { + "type": "Window" + } + ], + "param": [ + { + "name": "url", + "default": "\"text/html\"", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + }, + { + "name": "name", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + }, + { + "name": "features", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + }, + { + "name": "replace", + "type": "boolean", + "optional": 1, + "type-original": "boolean" + } + ], + "type-original": "(Document or Window)" + } + ], + "exposed": "Window" + }, + "queryCommandSupported": { + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "commandId", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "boolean" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "queryCommandSupported" + }, + "createTreeWalker": { + "signature": [ + { + "param-min-required": 1, + "type": "TreeWalker", + "param": [ + { + "name": "root", + "type": "Node", + "type-original": "Node" + }, + { + "name": "whatToShow", + "default": "0xFFFFFFFF", + "type": "unsigned long", + "optional": 1, + "type-original": "unsigned long" + }, + { + "name": "filter", + "default": "null", + "type": "NodeFilter", + "optional": 1, + "type-original": "NodeFilter" + }, + { + "name": "entityReferenceExpansion", + "default": "false", + "type": "boolean", + "optional": 1, + "type-original": "boolean" + } + ], + "type-original": "TreeWalker" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "createTreeWalker", + "tags": "TreeNavigation" + }, + "exitFullscreen": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "fullscreen", + "exposed": "Window", + "name": "exitFullscreen" + }, + "queryCommandEnabled": { + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "commandId", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "boolean" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "queryCommandEnabled" + }, + "createAttributeNS": { + "specs": "dom4", + "name": "createAttributeNS", + "tags": "Namespaces", + "signature": [ + { + "param-min-required": 2, + "type": "Attr", + "param": [ + { + "nullable": 1, + "name": "namespaceURI", + "type": "DOMString", + "type-original": "DOMString?" + }, + { + "name": "qualifiedName", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "Attr" + } + ], + "exposed": "Window" + }, + "createTouchList": { + "signature": [ + { + "param-min-required": 0, + "type": "TouchList", + "param": [ + { + "variadic": 1, + "name": "touches", + "type": "Touch", + "type-original": "Touch" + } + ], + "type-original": "TouchList" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "createTouchList" + }, + "msElementsFromPoint": { + "signature": [ + { + "param-min-required": 2, + "type": "NodeList", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + } + ], + "type-original": "NodeList" + } + ], + "specs": "cssom-view", + "exposed": "Window", + "name": "msElementsFromPoint" + }, + "msElementsFromRect": { + "specs": "dom4", + "name": "msElementsFromRect", + "tags": "CSSOM", + "signature": [ + { + "param-min-required": 4, + "type": "NodeList", + "param": [ + { + "name": "left", + "type": "float", + "type-original": "float" + }, + { + "name": "top", + "type": "float", + "type-original": "float" + }, + { + "name": "width", + "type": "float", + "type-original": "float" + }, + { + "name": "height", + "type": "float", + "type-original": "float" + } + ], + "type-original": "NodeList" + } + ], + "exposed": "Window" + }, + "evaluate": { + "signature": [ + { + "param-min-required": 5, + "type": "XPathResult", + "param": [ + { + "name": "expression", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "contextNode", + "type": "Node", + "type-original": "Node" + }, + { + "name": "resolver", + "type": "XPathNSResolver", + "type-original": "XPathNSResolver" + }, + { + "name": "type", + "type": "unsigned short", + "type-original": "unsigned short" + }, + { + "name": "result", + "type": "XPathResult", + "type-original": "XPathResult" + } + ], + "type-original": "XPathResult" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "evaluate" + }, + "focus": { + "deprecated": 1, + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "focus" + }, + "releaseEvents": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "releaseEvents" + }, + "close": { + "specs": "dom4", + "ce-reactions": 1, + "name": "close", + "tags": "Parsing", + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "exposed": "Window" + }, + "getElementsByClassName": { + "pure": 1, + "signature": [ + { + "param-min-required": 1, + "type": "NodeList", + "param": [ + { + "name": "classNames", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "NodeList" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "getElementsByClassName", + "tags": "TreeNavigation" + }, + "importNode": { + "specs": "dom4", + "ce-reactions": 1, + "name": "importNode", + "tags": "TreeMutation", + "signature": [ + { + "param-min-required": 2, + "type": "Node", + "param": [ + { + "name": "importedNode", + "type": "Node", + "type-original": "Node" + }, + { + "name": "deep", + "type": "boolean", + "type-original": "boolean" + } + ], + "type-original": "Node" + } + ], + "exposed": "Window" + }, + "createExpression": { + "signature": [ + { + "param-min-required": 2, + "type": "XPathExpression", + "param": [ + { + "name": "expression", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "resolver", + "type": "XPathNSResolver", + "type-original": "XPathNSResolver" + } + ], + "type-original": "XPathExpression" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "createExpression" + }, + "createRange": { + "signature": [ + { + "type": "Range", + "type-original": "Range" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "createRange" + }, + "createComment": { + "specs": "dom4", + "name": "createComment", + "tags": "TreeMutation", + "signature": [ + { + "param-min-required": 1, + "type": "Comment", + "param": [ + { + "name": "data", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "Comment" + } + ], + "exposed": "Window" + }, + "getElementsByTagName": { + "pure": 1, + "signature": [ + { + "param-min-required": 1, + "type": "NodeList", + "param": [ + { + "name": "tagname", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "NodeList" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "getElementsByTagName", + "tags": "TreeNavigation" + }, + "createDocumentFragment": { + "signature": [ + { + "type": "DocumentFragment", + "type-original": "DocumentFragment" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "createDocumentFragment", + "tags": "TreeMutation" + }, + "getElementsByName": { + "pure": 1, + "signature": [ + { + "param-min-required": 1, + "type": "NodeList", + "param": [ + { + "name": "elementName", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "NodeList" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "getElementsByName", + "tags": "TreeNavigation" + }, + "createTouch": { + "signature": [ + { + "param-min-required": 7, + "type": "Touch", + "param": [ + { + "name": "view", + "type": "Window", + "type-original": "Window" + }, + { + "name": "target", + "type": "EventTarget", + "type-original": "EventTarget" + }, + { + "name": "identifier", + "type": "long", + "type-original": "long" + }, + { + "name": "pageX", + "type": "long", + "type-original": "long" + }, + { + "name": "pageY", + "type": "long", + "type-original": "long" + }, + { + "name": "screenX", + "type": "long", + "type-original": "long" + }, + { + "name": "screenY", + "type": "long", + "type-original": "long" + } + ], + "type-original": "Touch" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "createTouch" + }, + "queryCommandState": { + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "commandId", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "boolean" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "queryCommandState" + }, + "execCommandShowHelp": { + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "commandId", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "boolean" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "execCommandShowHelp" + }, + "createAttribute": { + "specs": "dom4", + "name": "createAttribute", + "tags": "TreeMutation", + "signature": [ + { + "param-min-required": 1, + "type": "Attr", + "param": [ + { + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "Attr" + } + ], + "exposed": "Window" + }, + "hasFocus": { + "signature": [ + { + "type": "boolean", + "type-original": "boolean" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "hasFocus" + }, + "createTextNode": { + "signature": [ + { + "param-min-required": 1, + "type": "Text", + "param": [ + { + "name": "data", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "Text" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "createTextNode", + "tags": "TreeMutation" + }, + "createNodeIterator": { + "signature": [ + { + "param-min-required": 1, + "type": "NodeIterator", + "param": [ + { + "name": "root", + "type": "Node", + "type-original": "Node" + }, + { + "name": "whatToShow", + "default": "0xFFFFFFFF", + "type": "unsigned long", + "optional": 1, + "type-original": "unsigned long" + }, + { + "name": "filter", + "default": "null", + "type": "NodeFilter", + "optional": 1, + "type-original": "NodeFilter" + }, + { + "name": "entityReferenceExpansion", + "default": "false", + "type": "boolean", + "optional": 1, + "type-original": "boolean" + } + ], + "type-original": "NodeIterator" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "createNodeIterator", + "tags": "TreeNavigation" + }, + "getSelection": { + "signature": [ + { + "type": "Selection", + "type-original": "Selection" + } + ], + "specs": "selection-api", + "exposed": "Window", + "name": "getSelection" + }, + "getElementById": { + "pure": 1, + "signature": [ + { + "param-min-required": 1, + "type": "Element", + "param": [ + { + "name": "elementId", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "Element" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "getElementById", + "tags": "TreeNavigation" + } + } + }, + "extends": "Node", + "implements": [ + "GlobalEventHandlers", + "ParentNode", + "DocumentEvent" + ] + }, + "MessageEvent": { + "specs": "html5", + "constructor": { + "specs": "html5", + "signature": [ + { + "param-min-required": 1, + "type": "MessageEvent", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "MessageEventInit", + "optional": 1, + "type-original": "MessageEventInit" + } + ], + "type-original": "MessageEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "MessageEvent", + "properties": { + "property": { + "source": { + "specs": "html5", + "name": "source", + "type-original": "Window?", + "nullable": 1, + "exposed": "Window Worker", + "type": "Window", + "read-only": 1 + }, + "ports": { + "pure": 1, + "specs": "html5", + "name": "ports", + "type-original": "FrozenArray", + "subtype": { + "type": "MessagePort" + }, + "exposed": "Window Worker", + "type": "FrozenArray", + "read-only": 1 + }, + "origin": { + "specs": "html5", + "exposed": "Window Worker", + "name": "origin", + "type": "USVString", + "type-original": "USVString", + "read-only": 1 + }, + "data": { + "specs": "html5", + "exposed": "Window Worker", + "name": "data", + "type": "any", + "type-original": "any", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window Worker", + "methods": { + "method": { + "initMessageEvent": { + "signature": [ + { + "param-min-required": 7, + "type": "void", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "bubbles", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "cancelable", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "data", + "type": "any", + "type-original": "any" + }, + { + "name": "origin", + "type": "USVString", + "type-original": "USVString" + }, + { + "name": "lastEventId", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "source", + "type": "Window", + "type-original": "Window" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window Worker", + "name": "initMessageEvent" + } + } + }, + "extends": "Event" + }, + "SVGElement": { + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGElement", + "properties": { + "property": { + "onmouseover": { + "specs": "svg2", + "name": "onmouseover", + "content-attribute": "onmouseover", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "mouseover" + }, + "viewportElement": { + "specs": "svg2", + "name": "viewportElement", + "type-original": "SVGElement?", + "nullable": 1, + "exposed": "Window", + "type": "SVGElement", + "read-only": 1 + }, + "onmouseout": { + "specs": "svg2", + "name": "onmouseout", + "content-attribute": "onmouseout", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "mouseout" + }, + "onmousemove": { + "specs": "svg2", + "name": "onmousemove", + "content-attribute": "onmousemove", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "mousemove" + }, + "ondblclick": { + "specs": "svg2", + "name": "ondblclick", + "content-attribute": "ondblclick", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "dblclick" + }, + "onfocusout": { + "specs": "svg2", + "name": "onfocusout", + "content-attribute": "onfocusout", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "focusout" + }, + "className": { + "specs": "svg2", + "same-object": 1, + "name": "className", + "constant": 1, + "content-attribute": "class", + "type-original": "SVGAnimatedString", + "exposed": "Window", + "content-attribute-value-syntax": "space_separated_tokens", + "type": "SVGAnimatedString", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "onfocusin": { + "specs": "svg2", + "name": "onfocusin", + "content-attribute": "onfocusin", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "focusin" + }, + "xmlbase": { + "specs": "svg11", + "name": "xmlbase", + "type-original": "DOMString", + "deprecated": 1, + "exposed": "Window", + "type": "DOMString" + }, + "onmousedown": { + "specs": "svg2", + "name": "onmousedown", + "content-attribute": "onmousedown", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "mousedown" + }, + "onload": { + "specs": "svg2", + "name": "onload", + "content-attribute": "onload", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "load" + }, + "onmouseup": { + "specs": "svg2", + "name": "onmouseup", + "content-attribute": "onmouseup", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "mouseup" + }, + "ownerSVGElement": { + "specs": "svg2", + "name": "ownerSVGElement", + "type-original": "SVGSVGElement?", + "nullable": 1, + "exposed": "Window", + "type": "SVGSVGElement", + "read-only": 1 + }, + "onclick": { + "specs": "svg2", + "name": "onclick", + "content-attribute": "onclick", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "click" + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "async", + "specs": "svg11", + "name": "SVGLoad", + "type": "Event" + } + ] + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Element", + "implements": [ + "ElementCSSInlineStyle" + ] + }, + "DeferredPermissionRequest": { + "specs": "none", + "anonymous-methods": { + "method": [] + }, + "name": "DeferredPermissionRequest", + "properties": { + "property": { + "type": { + "specs": "none", + "exposed": "Window", + "name": "type", + "type": "MSWebViewPermissionType", + "type-original": "MSWebViewPermissionType", + "read-only": 1 + }, + "id": { + "specs": "none", + "exposed": "Window", + "name": "id", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + }, + "uri": { + "specs": "none", + "exposed": "Window", + "name": "uri", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "deny": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "deny" + }, + "allow": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "allow" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "HTMLScriptElement": { + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLScriptElement", + "properties": { + "property": { + "async": { + "specs": "html5", + "ce-reactions": 1, + "name": "async", + "content-attribute": "async", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "src": { + "specs": "html5", + "ce-reactions": 1, + "name": "src", + "content-attribute": "src", + "type-original": "USVString", + "content-attribute-value-syntax": "url", + "exposed": "Window", + "type": "USVString", + "content-attribute-reflects": 1 + }, + "charset": { + "specs": "html5", + "ce-reactions": 1, + "name": "charset", + "content-attribute": "charset", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "character_encoding", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "event": { + "content-attribute-enum-values": "onload onload()", + "specs": "html5", + "ce-reactions": 1, + "name": "event", + "type-original": "DOMString", + "content-attribute": "event", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "noModule": { + "specs": "html5", + "ce-reactions": 1, + "name": "noModule", + "content-attribute": "nomodule", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1 + }, + "crossOrigin": { + "content-attribute-enum-values": "anonymous use-credentials", + "specs": "html5", + "ce-reactions": 1, + "name": "crossOrigin", + "content-attribute": "crossorigin", + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "defer": { + "specs": "html5", + "ce-reactions": 1, + "name": "defer", + "content-attribute": "defer", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "htmlFor": { + "content-attribute-enum-values": "window", + "specs": "html5", + "ce-reactions": 1, + "name": "htmlFor", + "type-original": "DOMString", + "content-attribute": "for", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "text": { + "specs": "html5", + "ce-reactions": 1, + "name": "text", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString" + }, + "integrity": { + "specs": "html5", + "ce-reactions": 1, + "name": "integrity", + "content-attribute": "integrity", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "type": { + "specs": "html5", + "ce-reactions": 1, + "name": "type", + "content-attribute": "type", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "mime_type", + "type": "DOMString", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "script" + } + ], + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "HTML5", + "name": "error", + "type": "Event" + }, + { + "dispatch": "async", + "specs": "HTML5", + "name": "load", + "type": "Event", + "skips-window": 1 + } + ] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "TextTrack": { + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "name": "TextTrack", + "properties": { + "property": { + "language": { + "specs": "html5", + "name": "language", + "tags": "Captions", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "mode": { + "specs": "html5", + "exposed": "Window", + "name": "mode", + "type": [ + { + "type": "TextTrackMode" + }, + { + "type": "unsigned short" + } + ], + "tags": "Captions", + "type-original": "(TextTrackMode or unsigned short)" + }, + "activeCues": { + "specs": "html5", + "name": "activeCues", + "tags": "Captions", + "type-original": "TextTrackCueList", + "exposed": "Window", + "type": "TextTrackCueList", + "read-only": 1 + }, + "readyState": { + "specs": "html5", + "name": "readyState", + "tags": "Captions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short", + "read-only": 1 + }, + "cues": { + "specs": "html5", + "name": "cues", + "tags": "Captions", + "type-original": "TextTrackCueList", + "exposed": "Window", + "type": "TextTrackCueList", + "read-only": 1 + }, + "inBandMetadataTrackDispatchType": { + "specs": "html5", + "name": "inBandMetadataTrackDispatchType", + "tags": "Captions", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "kind": { + "specs": "html5", + "name": "kind", + "tags": "Captions", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "oncuechange": { + "specs": "html5", + "name": "oncuechange", + "tags": "Captions", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "cuechange" + }, + "onload": { + "specs": "html5", + "name": "onload", + "tags": "Captions", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "load" + }, + "onerror": { + "specs": "html5", + "name": "onerror", + "tags": "Captions", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "error" + }, + "label": { + "specs": "html5", + "name": "label", + "tags": "Captions", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + } + } + }, + "tags": "Captions", + "constants": { + "constant": { + "SHOWING": { + "specs": "html5", + "value": "2", + "name": "SHOWING", + "tags": "Captions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "ERROR": { + "specs": "html5", + "value": "3", + "name": "ERROR", + "tags": "Captions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "LOADED": { + "specs": "html5", + "value": "2", + "name": "LOADED", + "tags": "Captions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "LOADING": { + "specs": "html5", + "value": "1", + "name": "LOADING", + "tags": "Captions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "HIDDEN": { + "specs": "html5", + "value": "1", + "name": "HIDDEN", + "tags": "Captions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "NONE": { + "specs": "html5", + "value": "0", + "name": "NONE", + "tags": "Captions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "DISABLED": { + "specs": "html5", + "value": "0", + "name": "DISABLED", + "tags": "Captions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + } + } + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "HTML5", + "name": "cuechange", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "error", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "load", + "type": "Event", + "skips-window": 1 + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "addCue": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "cue", + "type": "TextTrackCue", + "type-original": "TextTrackCue" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "addCue", + "tags": "Captions" + }, + "removeCue": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "cue", + "type": "TextTrackCue", + "type-original": "TextTrackCue" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "removeCue", + "tags": "Captions" + } + } + }, + "extends": "EventTarget" + }, + "HTMLTableRowElement": { + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLTableRowElement", + "properties": { + "property": { + "rowIndex": { + "specs": "html5", + "exposed": "Window", + "name": "rowIndex", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "align": { + "content-attribute-enum-values": "center justify left right", + "specs": "html5", + "ce-reactions": 1, + "name": "align", + "type-original": "DOMString", + "content-attribute": "align", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "bgColor": { + "specs": "html5", + "ce-reactions": 1, + "name": "bgColor", + "type-original": "DOMString", + "content-attribute": "bgcolor", + "deprecated": 1, + "interop": 1, + "treat-null-as": "EmptyString", + "content-attribute-value-syntax": "simple_color", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "cells": { + "specs": "html5", + "same-object": 1, + "name": "cells", + "type-original": "HTMLCollection", + "exposed": "Window", + "type": "HTMLCollection", + "read-only": 1 + }, + "ch": { + "specs": "html5", + "ce-reactions": 1, + "name": "ch", + "type-original": "DOMString", + "content-attribute": "char", + "deprecated": 1, + "interop": 1, + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "vAlign": { + "content-attribute-enum-values": "middle baseline bottom top", + "specs": "html5", + "ce-reactions": 1, + "name": "vAlign", + "type-original": "DOMString", + "content-attribute": "valign", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "sectionRowIndex": { + "specs": "html5", + "exposed": "Window", + "name": "sectionRowIndex", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "chOff": { + "specs": "html5", + "ce-reactions": 1, + "name": "chOff", + "type-original": "DOMString", + "content-attribute": "charoff", + "deprecated": 1, + "interop": 1, + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString" + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "tr" + } + ], + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": { + "deleteCell": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "index", + "default": "-1", + "type": "long", + "optional": 1, + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "ce-reactions": 1, + "exposed": "Window", + "name": "deleteCell" + }, + "insertCell": { + "signature": [ + { + "param-min-required": 0, + "type": "HTMLTableCellElement", + "param": [ + { + "name": "index", + "default": "-1", + "type": "long", + "optional": 1, + "type-original": "long" + } + ], + "type-original": "HTMLTableCellElement" + } + ], + "specs": "html5", + "ce-reactions": 1, + "exposed": "Window", + "name": "insertCell" + } + } + }, + "extends": "HTMLElement" + }, + "VRDisplay": { + "constants": { + "constant": {} + }, + "specs": "WebVR", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "getLayers": { + "signature": [ + { + "subtype": { + "type": "VRLayer" + }, + "type": "sequence", + "type-original": "sequence" + } + ], + "specs": "WebVR", + "exposed": "Window", + "name": "getLayers" + }, + "getPose": { + "deprecated": 1, + "signature": [ + { + "new-object": 1, + "type": "VRPose", + "type-original": "VRPose" + } + ], + "specs": "WebVR", + "exposed": "Window", + "name": "getPose" + }, + "getEyeParameters": { + "signature": [ + { + "param-min-required": 1, + "type": "VREyeParameters", + "param": [ + { + "name": "whichEye", + "type": "DOMString", + "type-original": "VREye" + } + ], + "type-original": "VREyeParameters" + } + ], + "specs": "WebVR", + "exposed": "Window", + "name": "getEyeParameters" + }, + "requestAnimationFrame": { + "signature": [ + { + "param-min-required": 1, + "type": "long", + "param": [ + { + "name": "callback", + "type": "FrameRequestCallback", + "type-original": "FrameRequestCallback" + } + ], + "type-original": "long" + } + ], + "specs": "WebVR", + "exposed": "Window", + "name": "requestAnimationFrame" + }, + "submitFrame": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "pose", + "type": "VRPose", + "optional": 1, + "type-original": "VRPose" + } + ], + "type-original": "void" + } + ], + "specs": "WebVR", + "exposed": "Window", + "name": "submitFrame" + }, + "exitPresent": { + "signature": [ + { + "subtype": { + "type": "void" + }, + "type": "Promise", + "type-original": "Promise" + } + ], + "specs": "WebVR", + "exposed": "Window", + "name": "exitPresent" + }, + "getFrameData": { + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "frameData", + "type": "VRFrameData", + "type-original": "VRFrameData" + } + ], + "type-original": "boolean" + } + ], + "specs": "WebVR", + "exposed": "Window", + "name": "getFrameData" + }, + "cancelAnimationFrame": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "handle", + "type": "long", + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "WebVR", + "exposed": "Window", + "name": "cancelAnimationFrame" + }, + "requestPresent": { + "signature": [ + { + "subtype": { + "type": "void" + }, + "param-min-required": 1, + "type": "Promise", + "param": [ + { + "subtype": { + "type": "VRLayer" + }, + "name": "layers", + "type": "sequence", + "type-original": "sequence" + } + ], + "type-original": "Promise" + } + ], + "specs": "WebVR", + "exposed": "Window", + "name": "requestPresent" + }, + "resetPose": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "WebVR", + "exposed": "Window", + "name": "resetPose" + } + } + }, + "name": "VRDisplay", + "extends": "EventTarget", + "properties": { + "property": { + "displayId": { + "specs": "WebVR", + "name": "displayId", + "constant": 1, + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + }, + "isConnected": { + "specs": "WebVR", + "exposed": "Window", + "name": "isConnected", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "depthNear": { + "specs": "WebVR", + "exposed": "Window", + "name": "depthNear", + "type": "double", + "type-original": "double" + }, + "capabilities": { + "specs": "WebVR", + "name": "capabilities", + "constant": 1, + "type-original": "VRDisplayCapabilities", + "exposed": "Window", + "type": "VRDisplayCapabilities", + "read-only": 1 + }, + "depthFar": { + "specs": "WebVR", + "exposed": "Window", + "name": "depthFar", + "type": "double", + "type-original": "double" + }, + "isPresenting": { + "specs": "WebVR", + "exposed": "Window", + "name": "isPresenting", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "displayName": { + "specs": "WebVR", + "name": "displayName", + "constant": 1, + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "stageParameters": { + "specs": "WebVR", + "name": "stageParameters", + "type-original": "VRStageParameters?", + "nullable": 1, + "exposed": "Window", + "type": "VRStageParameters", + "read-only": 1 + } + } + } + }, + "IDBRequest": { + "dataslot": [ + { + "name": "result" + } + ], + "specs": "indexeddb", + "anonymous-methods": { + "method": [] + }, + "name": "IDBRequest", + "properties": { + "property": { + "onsuccess": { + "specs": "indexeddb", + "name": "onsuccess", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "success" + }, + "source": { + "specs": "indexeddb", + "name": "source", + "type-original": "(IDBObjectStore or IDBIndex or IDBCursor)?", + "exposed": "Window", + "type": [ + { + "nullable": 1, + "type": "IDBObjectStore" + }, + { + "nullable": 1, + "type": "IDBIndex" + }, + { + "nullable": 1, + "type": "IDBCursor" + } + ], + "read-only": 1 + }, + "onerror": { + "specs": "indexeddb", + "name": "onerror", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "error" + }, + "transaction": { + "specs": "indexeddb", + "exposed": "Window", + "name": "transaction", + "type": "IDBTransaction", + "type-original": "IDBTransaction", + "read-only": 1 + }, + "error": { + "specs": "indexeddb", + "exposed": "Window", + "name": "error", + "type": "DOMError", + "type-original": "DOMError", + "read-only": 1 + }, + "readyState": { + "specs": "indexeddb", + "exposed": "Window", + "name": "readyState", + "type": "IDBRequestReadyState", + "type-original": "IDBRequestReadyState", + "read-only": 1 + }, + "result": { + "specs": "indexeddb", + "exposed": "Window", + "name": "result", + "type": "any", + "type-original": "any", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "IDB", + "name": "error", + "type": "Event", + "bubbles": 1, + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "IDB", + "name": "success", + "type": "Event", + "bubbles": 1, + "skips-window": 1 + } + ] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "EventTarget" + }, + "AnalyserNode": { + "constants": { + "constant": {} + }, + "specs": "webaudio", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "getByteTimeDomainData": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "array", + "type": "Uint8Array", + "type-original": "Uint8Array" + } + ], + "type-original": "void" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "getByteTimeDomainData" + }, + "getByteFrequencyData": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "array", + "type": "Uint8Array", + "type-original": "Uint8Array" + } + ], + "type-original": "void" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "getByteFrequencyData" + }, + "getFloatFrequencyData": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "array", + "type": "Float32Array", + "type-original": "Float32Array" + } + ], + "type-original": "void" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "getFloatFrequencyData" + }, + "getFloatTimeDomainData": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "array", + "type": "Float32Array", + "type-original": "Float32Array" + } + ], + "type-original": "void" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "getFloatTimeDomainData" + } + } + }, + "name": "AnalyserNode", + "extends": "AudioNode", + "properties": { + "property": { + "minDecibels": { + "pure": 1, + "specs": "webaudio", + "exposed": "Window", + "name": "minDecibels", + "type": "double", + "type-original": "double" + }, + "maxDecibels": { + "pure": 1, + "specs": "webaudio", + "exposed": "Window", + "name": "maxDecibels", + "type": "double", + "type-original": "double" + }, + "frequencyBinCount": { + "pure": 1, + "specs": "webaudio", + "name": "frequencyBinCount", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + }, + "smoothingTimeConstant": { + "pure": 1, + "specs": "webaudio", + "exposed": "Window", + "name": "smoothingTimeConstant", + "type": "double", + "type-original": "double" + }, + "fftSize": { + "pure": 1, + "specs": "webaudio", + "exposed": "Window", + "name": "fftSize", + "type": "unsigned long", + "type-original": "unsigned long" + } + } + } + }, + "VRFieldOfView": { + "specs": "WebVR", + "anonymous-methods": { + "method": [] + }, + "name": "VRFieldOfView", + "properties": { + "property": { + "upDegrees": { + "specs": "WebVR", + "exposed": "Window", + "name": "upDegrees", + "type": "double", + "type-original": "double", + "read-only": 1 + }, + "leftDegrees": { + "specs": "WebVR", + "exposed": "Window", + "name": "leftDegrees", + "type": "double", + "type-original": "double", + "read-only": 1 + }, + "downDegrees": { + "specs": "WebVR", + "exposed": "Window", + "name": "downDegrees", + "type": "double", + "type-original": "double", + "read-only": 1 + }, + "rightDegrees": { + "specs": "WebVR", + "exposed": "Window", + "name": "rightDegrees", + "type": "double", + "type-original": "double", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "deprecated": 1, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "MSMediaKeyMessageEvent": { + "constants": { + "constant": {} + }, + "specs": "encrypted-media-20130510", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "MSMediaKeyMessageEvent", + "extends": "Event", + "properties": { + "property": { + "destinationURL": { + "specs": "encrypted-media-20130510", + "name": "destinationURL", + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "message": { + "specs": "encrypted-media-20130510", + "exposed": "Window", + "name": "message", + "type": "Uint8Array", + "type-original": "Uint8Array", + "read-only": 1 + } + } + } + }, + "HTMLFrameElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLFrameElement", + "properties": { + "property": { + "width": { + "extension": 1, + "specs": "none", + "ce-reactions": 1, + "name": "width", + "type-original": "(DOMString or unsigned long)", + "content-attribute": "width", + "interop": 1, + "content-attribute-value-syntax": "non_negative_integer", + "exposed": "Window", + "type": [ + { + "type": "DOMString" + }, + { + "type": "unsigned long" + } + ], + "content-attribute-reflects": 1 + }, + "scrolling": { + "content-attribute-enum-values": "auto no yes", + "specs": "html5", + "ce-reactions": 1, + "name": "scrolling", + "content-attribute": "scrolling", + "type-original": "DOMString", + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "marginHeight": { + "specs": "html5", + "ce-reactions": 1, + "content-attribute": "marginheight", + "type-original": "DOMString", + "interop": 1, + "name": "marginHeight", + "deprecated": 1, + "treat-null-as": "EmptyString", + "content-attribute-value-syntax": "signed_integer", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "borderColor": { + "extension": 1, + "specs": "none", + "ce-reactions": 1, + "name": "borderColor", + "type-original": "any", + "content-attribute": "bordercolor", + "content-attribute-value-syntax": "simple_color", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "any" + }, + "marginWidth": { + "specs": "html5", + "ce-reactions": 1, + "content-attribute": "marginwidth", + "type-original": "DOMString", + "interop": 1, + "name": "marginWidth", + "deprecated": 1, + "treat-null-as": "EmptyString", + "content-attribute-value-syntax": "signed_integer", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "frameSpacing": { + "extension": 1, + "specs": "none", + "ce-reactions": 1, + "name": "frameSpacing", + "type-original": "any", + "content-attribute": "framespacing", + "content-attribute-value-syntax": "signed_integer", + "exposed": "Window", + "type": "any", + "content-attribute-reflects": 1 + }, + "frameBorder": { + "specs": "html5", + "ce-reactions": 1, + "name": "frameBorder", + "content-attribute": "frameborder", + "type-original": "DOMString", + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "content-attribute-value-syntax": "non_negative_integer", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "noResize": { + "specs": "html5", + "ce-reactions": 1, + "name": "noResize", + "content-attribute": "noresize", + "type-original": "boolean", + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "boolean", + "content-attribute-boolean": 1 + }, + "contentWindow": { + "specs": "html5", + "name": "contentWindow", + "type-original": "Window?", + "interop": 1, + "deprecated": 1, + "nullable": 1, + "exposed": "Window", + "type": "Window", + "read-only": 1 + }, + "src": { + "specs": "html5", + "ce-reactions": 1, + "name": "src", + "content-attribute": "src", + "type-original": "USVString", + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "content-attribute-value-syntax": "url", + "type": "USVString", + "content-attribute-reflects": 1 + }, + "name": { + "content-attribute-enum-values": "_blank _self _parent _top", + "specs": "html5", + "ce-reactions": 1, + "name": "name", + "content-attribute": "name", + "type-original": "DOMString", + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "content-attribute-value-syntax": "name_ref", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "height": { + "extension": 1, + "specs": "none", + "ce-reactions": 1, + "name": "height", + "type-original": "(DOMString or unsigned long)", + "content-attribute": "height", + "interop": 1, + "content-attribute-value-syntax": "non_negative_integer", + "exposed": "Window", + "type": [ + { + "type": "DOMString" + }, + { + "type": "unsigned long" + } + ], + "content-attribute-reflects": 1 + }, + "contentDocument": { + "specs": "html5", + "name": "contentDocument", + "type-original": "Document?", + "interop": 1, + "deprecated": 1, + "nullable": 1, + "exposed": "Window", + "type": "Document", + "read-only": 1 + }, + "border": { + "extension": 1, + "specs": "none", + "ce-reactions": 1, + "name": "border", + "type-original": "DOMString", + "content-attribute": "border", + "content-attribute-value-syntax": "non_negative_integer", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "longDesc": { + "specs": "html5", + "ce-reactions": 1, + "name": "longDesc", + "content-attribute": "longdesc", + "type-original": "USVString", + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "content-attribute-value-syntax": "url", + "type": "USVString", + "content-attribute-reflects": 1 + }, + "onload": { + "specs": "html5", + "name": "onload", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "load" + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "frame", + "html-self-closing": 1 + } + ], + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "async", + "specs": "HTML5", + "name": "load", + "type": "Event", + "skips-window": 1 + } + ] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement", + "implements": [ + "GetSVGDocument" + ] + }, + "Touch": { + "specs": "touch-events", + "anonymous-methods": { + "method": [] + }, + "name": "Touch", + "properties": { + "property": { + "target": { + "specs": "touch-events", + "exposed": "Window", + "name": "target", + "type": "EventTarget", + "type-original": "EventTarget", + "read-only": 1 + }, + "identifier": { + "specs": "touch-events", + "exposed": "Window", + "name": "identifier", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "clientY": { + "specs": "touch-events", + "exposed": "Window", + "name": "clientY", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "screenY": { + "specs": "touch-events", + "exposed": "Window", + "name": "screenY", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "pageX": { + "specs": "touch-events", + "exposed": "Window", + "name": "pageX", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "pageY": { + "specs": "touch-events", + "exposed": "Window", + "name": "pageY", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "clientX": { + "specs": "touch-events", + "exposed": "Window", + "name": "clientX", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "screenX": { + "specs": "touch-events", + "exposed": "Window", + "name": "screenX", + "type": "long", + "type-original": "long", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "CSSMediaRule": { + "constants": { + "constant": {} + }, + "specs": "css-conditional", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "CSSMediaRule", + "extends": "CSSConditionRule", + "properties": { + "property": { + "media": { + "put-forwards": "mediaText", + "specs": "css-conditional", + "same-object": 1, + "name": "media", + "type-original": "MediaList", + "exposed": "Window", + "type": "MediaList", + "read-only": 1 + } + } + } + }, + "MediaDevices": { + "specs": "media-capture-api", + "anonymous-methods": { + "method": [] + }, + "name": "MediaDevices", + "properties": { + "property": { + "ondevicechange": { + "specs": "media-capture-api", + "name": "ondevicechange", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "devicechange" + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "MediaCap", + "name": "devicechange", + "type": "Event", + "skips-window": 1 + } + ] + }, + "methods": { + "method": { + "getUserMedia": { + "signature": [ + { + "subtype": { + "type": "MediaStream" + }, + "param-min-required": 1, + "type": "Promise", + "param": [ + { + "name": "constraints", + "type": "MediaStreamConstraints", + "type-original": "MediaStreamConstraints" + } + ], + "type-original": "Promise" + } + ], + "specs": "media-capture-api", + "exposed": "Window", + "name": "getUserMedia" + }, + "enumerateDevices": { + "signature": [ + { + "subtype": { + "subtype": { + "type": "MediaDeviceInfo" + }, + "type": "sequence" + }, + "type": "Promise", + "type-original": "Promise>" + } + ], + "specs": "media-capture-api", + "exposed": "Window", + "name": "enumerateDevices" + }, + "getSupportedConstraints": { + "signature": [ + { + "type": "MediaTrackSupportedConstraints", + "type-original": "MediaTrackSupportedConstraints" + } + ], + "specs": "media-capture-api", + "exposed": "Window", + "name": "getSupportedConstraints" + } + } + }, + "exposed": "Window", + "extends": "EventTarget" + }, + "BarProp": { + "constants": { + "constant": {} + }, + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "BarProp", + "extends": "Object", + "properties": { + "property": { + "visible": { + "specs": "html5", + "exposed": "Window", + "name": "visible", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + } + } + } + }, + "DeviceLightEvent": { + "specs": "ambient-light", + "constructor": { + "specs": "ambient-light", + "signature": [ + { + "param-min-required": 1, + "type": "DeviceLightEvent", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "DeviceLightEventInit", + "optional": 1, + "type-original": "DeviceLightEventInit" + } + ], + "type-original": "DeviceLightEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "DeviceLightEvent", + "properties": { + "property": { + "value": { + "specs": "ambient-light", + "exposed": "Window", + "name": "value", + "type": "double", + "type-original": "double", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Event" + }, + "SourceBuffer": { + "specs": "media-source", + "anonymous-methods": { + "method": [] + }, + "name": "SourceBuffer", + "properties": { + "property": { + "videoTracks": { + "specs": "media-source", + "exposed": "Window", + "name": "videoTracks", + "type": "VideoTrackList", + "type-original": "VideoTrackList", + "read-only": 1 + }, + "appendWindowEnd": { + "specs": "media-source", + "exposed": "Window", + "name": "appendWindowEnd", + "type": "double", + "type-original": "double" + }, + "mode": { + "specs": "media-source", + "exposed": "Window", + "name": "mode", + "type": "AppendMode", + "type-original": "AppendMode" + }, + "timestampOffset": { + "specs": "media-source", + "exposed": "Window", + "name": "timestampOffset", + "type": "double", + "type-original": "double" + }, + "audioTracks": { + "specs": "media-source", + "exposed": "Window", + "name": "audioTracks", + "type": "AudioTrackList", + "type-original": "AudioTrackList", + "read-only": 1 + }, + "updating": { + "specs": "media-source", + "exposed": "Window", + "name": "updating", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "appendWindowStart": { + "specs": "media-source", + "exposed": "Window", + "name": "appendWindowStart", + "type": "double", + "type-original": "double" + }, + "buffered": { + "specs": "media-source", + "exposed": "Window", + "name": "buffered", + "type": "TimeRanges", + "type-original": "TimeRanges", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "MSE", + "name": "error", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "MSE", + "name": "abort", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "MSE", + "name": "updatestart", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "MSE", + "name": "update", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "MSE", + "name": "updateend", + "type": "Event", + "skips-window": 1 + } + ] + }, + "methods": { + "method": { + "appendBuffer": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "data", + "type": [ + { + "type": "ArrayBuffer" + }, + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ], + "type-original": "(ArrayBuffer or ArrayBufferView)" + } + ], + "type-original": "void" + } + ], + "specs": "media-source", + "exposed": "Window", + "name": "appendBuffer" + }, + "remove": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "start", + "type": "double", + "type-original": "double" + }, + { + "name": "end", + "type": "double", + "type-original": "double" + } + ], + "type-original": "void" + } + ], + "specs": "media-source", + "exposed": "Window", + "name": "remove" + }, + "abort": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "media-source", + "exposed": "Window", + "name": "abort" + }, + "appendStream": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "stream", + "type": "MSStream", + "type-original": "MSStream" + }, + { + "name": "maxSize", + "type": "unsigned long long", + "optional": 1, + "type-original": "unsigned long long" + } + ], + "type-original": "void" + } + ], + "specs": "media-source", + "exposed": "Window", + "name": "appendStream" + } + } + }, + "exposed": "Window", + "extends": "EventTarget" + }, + "PaymentAddress": { + "specs": "payment-request", + "anonymous-methods": { + "method": [] + }, + "name": "PaymentAddress", + "properties": { + "property": { + "languageCode": { + "specs": "payment-request", + "exposed": "Window", + "name": "languageCode", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "country": { + "specs": "payment-request", + "exposed": "Window", + "name": "country", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "recipient": { + "specs": "payment-request", + "exposed": "Window", + "name": "recipient", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "region": { + "specs": "payment-request", + "exposed": "Window", + "name": "region", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "addressLine": { + "specs": "payment-request", + "name": "addressLine", + "type-original": "sequence", + "subtype": { + "type": "DOMString" + }, + "exposed": "Window", + "type": "sequence", + "read-only": 1 + }, + "phone": { + "specs": "payment-request", + "exposed": "Window", + "name": "phone", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "dependentLocality": { + "specs": "payment-request", + "exposed": "Window", + "name": "dependentLocality", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "city": { + "specs": "payment-request", + "exposed": "Window", + "name": "city", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "sortingCode": { + "specs": "payment-request", + "exposed": "Window", + "name": "sortingCode", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "organization": { + "specs": "payment-request", + "exposed": "Window", + "name": "organization", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "postalCode": { + "specs": "payment-request", + "exposed": "Window", + "name": "postalCode", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "toJSON": { + "serializer": 1, + "signature": [ + { + "type": "any", + "type-original": "any" + } + ], + "specs": "payment-request", + "exposed": "Window", + "serializer-info": "attribute", + "name": "toJSON" + } + } + }, + "exposed": "Window", + "extends": "Object", + "secure-context": 1 + }, + "SVGPathSegLinetoHorizontalRel": { + "specs": "svg11", + "anonymous-methods": { + "method": [] + }, + "name": "SVGPathSegLinetoHorizontalRel", + "properties": { + "property": { + "x": { + "specs": "svg11", + "exposed": "Window", + "name": "x", + "type": "float", + "type-original": "float" + } + } + }, + "constants": { + "constant": {} + }, + "interop": 1, + "deprecated": 1, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGPathSeg" + }, + "SVGEllipseElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "clip-path" + }, + { + "enum-values": "nonzero evenodd inherit", + "value-syntax": "enum", + "name": "clip-rule" + }, + { + "enum-values": "inherit initial", + "value-syntax": "css_color", + "name": "color" + }, + { + "enum-values": "auto default none context-menu help pointer progress wait cell crosshair text vertical-text alias copy move no-drop not-allowed e-resize n-resize ne-resize nw-resize s-resize se-resize sw-resize w-resize ew-resize ns-resize nesw-resize nwse-resize col-resize row-resize all-scroll zoom-in zoom-out inherit", + "value-syntax": "comma_separated_css_url_with_optional_x_y_offset_followed_by_enum", + "name": "cursor" + }, + { + "enum-values": "inline block inline-block list-item table inline-table table-header-group table-footer-group table-row-group table-column-group table-row table-column table-cell table-caption run-in ruby ruby-base ruby-text ruby-base-container flex inline-flex -ms-grid -ms-inline-grid none inherit initial", + "value-syntax": "enum", + "name": "display" + }, + { + "enum-values": "none currentColor inherit", + "value-syntax": "svg_paint_or_css_color", + "name": "fill" + }, + { + "enum-values": "inherit", + "value-syntax": "0_to_1_floating_point_number", + "name": "fill-opacity" + }, + { + "enum-values": "nonzero evenodd inherit", + "value-syntax": "enum", + "name": "fill-rule" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "filter" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "mask" + }, + { + "enum-values": "inherit initial", + "value-syntax": "0_to_1_floating_point_number", + "name": "opacity" + }, + { + "enum-values": "auto none visiblePainted visibleFill visibleStroke visible painted fill stroke all inherit initial", + "value-syntax": "enum", + "name": "pointer-events" + }, + { + "enum-values": "none currentColor inherit", + "value-syntax": "svg_paint_or_css_color", + "name": "stroke" + }, + { + "enum-values": "none inherit", + "value-syntax": "comma_or_space_separated_css_percentage_or_length", + "name": "stroke-dasharray" + }, + { + "enum-values": "inherit", + "value-syntax": "css_percentage_or_length", + "name": "stroke-dashoffset" + }, + { + "enum-values": "butt round square inherit", + "value-syntax": "enum", + "name": "stroke-linecap" + }, + { + "enum-values": "miter round bevel inherit", + "value-syntax": "enum", + "name": "stroke-linejoin" + }, + { + "enum-values": "inherit", + "value-syntax": "1_or_greater_floating_point_number", + "name": "stroke-miterlimit" + }, + { + "enum-values": "inherit", + "value-syntax": "0_to_1_floating_point_number", + "name": "stroke-opacity" + }, + { + "enum-values": "inherit", + "value-syntax": "css_percentage_or_length", + "name": "stroke-width" + }, + { + "enum-values": "visible hidden collapse inherit initial", + "value-syntax": "enum", + "name": "visibility" + } + ] + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGEllipseElement", + "properties": { + "property": { + "ry": { + "specs": "svg2", + "same-object": 1, + "name": "ry", + "constant": 1, + "content-attribute": "ry", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + }, + "cx": { + "specs": "svg2", + "same-object": 1, + "name": "cx", + "constant": 1, + "content-attribute": "cx", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + }, + "rx": { + "specs": "svg2", + "same-object": 1, + "name": "rx", + "constant": 1, + "content-attribute": "rx", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + }, + "cy": { + "specs": "svg2", + "same-object": 1, + "name": "cy", + "constant": 1, + "content-attribute": "cy", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "svg2", + "namespace": "SVG", + "name": "ellipse" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGGraphicsElement" + }, + "MSDCCEvent": { + "specs": "ortc", + "constructor": { + "specs": "ortc", + "signature": [ + { + "param-min-required": 2, + "type": "MSDCCEvent", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "MSDCCEventInit", + "type-original": "MSDCCEventInit" + } + ], + "type-original": "MSDCCEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "MSDCCEvent", + "properties": { + "property": { + "maxFr": { + "specs": "ortc", + "exposed": "Window", + "name": "maxFr", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + }, + "maxFs": { + "specs": "ortc", + "exposed": "Window", + "name": "maxFs", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "Event" + }, + "MSBlobBuilder": { + "constants": { + "constant": {} + }, + "specs": "none", + "constructor": { + "specs": "none", + "signature": [ + { + "type": "MSBlobBuilder", + "type-original": "MSBlobBuilder" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "append": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "data", + "type": "any", + "type-original": "any" + }, + { + "name": "endings", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "append" + }, + "getBlob": { + "signature": [ + { + "param-min-required": 0, + "type": "Blob", + "param": [ + { + "name": "contentType", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + } + ], + "type-original": "Blob" + } + ], + "specs": "none", + "exposed": "Window", + "name": "getBlob" + } + } + }, + "name": "MSBlobBuilder", + "extends": "Object", + "properties": { + "property": {} + } + }, + "DataTransfer": { + "constants": { + "constant": {} + }, + "specs": "html51", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "clearData": { + "signature": [ + { + "param-min-required": 0, + "type": "boolean", + "param": [ + { + "name": "format", + "default": "\"null\"", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + } + ], + "type-original": "boolean" + } + ], + "specs": "html51", + "exposed": "Window", + "name": "clearData" + }, + "setData": { + "signature": [ + { + "param-min-required": 2, + "type": "boolean", + "param": [ + { + "name": "format", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "data", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "boolean" + } + ], + "specs": "html51", + "exposed": "Window", + "name": "setData" + }, + "getData": { + "signature": [ + { + "param-min-required": 1, + "type": "DOMString", + "param": [ + { + "name": "format", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "DOMString" + } + ], + "specs": "html51", + "exposed": "Window", + "name": "getData" + } + } + }, + "name": "DataTransfer", + "extends": "Object", + "properties": { + "property": { + "types": { + "pure": 1, + "specs": "html51", + "same-object": 1, + "name": "types", + "type-original": "DOMStringList", + "exposed": "Window", + "type": "DOMStringList", + "read-only": 1 + }, + "effectAllowed": { + "specs": "html51", + "exposed": "Window", + "name": "effectAllowed", + "type": "DOMString", + "type-original": "DOMString" + }, + "files": { + "specs": "html51", + "same-object": 1, + "name": "files", + "type-original": "FileList", + "exposed": "Window", + "type": "FileList", + "read-only": 1 + }, + "dropEffect": { + "specs": "html51", + "exposed": "Window", + "name": "dropEffect", + "type": "DOMString", + "type-original": "DOMString" + }, + "items": { + "specs": "html51", + "exposed": "Window", + "name": "items", + "type": "DataTransferItemList", + "type-original": "DataTransferItemList", + "read-only": 1 + } + } + } + }, + "MutationObserver": { + "dataslot": [ + { + "name": "callback" + } + ], + "specs": "dom4", + "constructor": { + "specs": "dom4", + "signature": [ + { + "param-min-required": 1, + "type": "MutationObserver", + "param": [ + { + "name": "callback", + "type": "MutationCallback", + "type-original": "MutationCallback" + } + ], + "type-original": "MutationObserver" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "MutationObserver", + "properties": { + "property": {} + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "observe": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "target", + "type": "Node", + "type-original": "Node" + }, + { + "name": "options", + "type": "MutationObserverInit", + "type-original": "MutationObserverInit" + } + ], + "type-original": "void" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "observe" + }, + "takeRecords": { + "signature": [ + { + "subtype": { + "type": "MutationRecord" + }, + "type": "sequence", + "type-original": "sequence" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "takeRecords" + }, + "disconnect": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "disconnect" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "MSDSHEvent": { + "specs": "ortc", + "constructor": { + "specs": "ortc", + "signature": [ + { + "param-min-required": 2, + "type": "MSDSHEvent", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "MSDSHEventInit", + "type-original": "MSDSHEventInit" + } + ], + "type-original": "MSDSHEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "MSDSHEvent", + "properties": { + "property": { + "sources": { + "specs": "ortc", + "name": "sources", + "type-original": "sequence", + "subtype": { + "type": "unsigned long" + }, + "exposed": "Window", + "type": "sequence", + "read-only": 1 + }, + "timestamp": { + "specs": "ortc", + "exposed": "Window", + "name": "timestamp", + "type": "double", + "type-original": "DOMHighResTimeStamp", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "Event" + }, + "IDBFactory": { + "constants": { + "constant": {} + }, + "specs": "indexeddb", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "open": { + "signature": [ + { + "param-min-required": 1, + "type": "IDBOpenDBRequest", + "param": [ + { + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "version", + "enforce-range": 1, + "type": "unsigned long long", + "optional": 1, + "type-original": "unsigned long long" + } + ], + "type-original": "IDBOpenDBRequest" + } + ], + "specs": "indexeddb", + "exposed": "Window", + "name": "open" + }, + "cmp": { + "signature": [ + { + "param-min-required": 2, + "type": "short", + "param": [ + { + "name": "first", + "type": "any", + "type-original": "any" + }, + { + "name": "second", + "type": "any", + "type-original": "any" + } + ], + "type-original": "short" + } + ], + "specs": "indexeddb", + "exposed": "Window", + "name": "cmp" + }, + "deleteDatabase": { + "signature": [ + { + "param-min-required": 1, + "type": "IDBOpenDBRequest", + "param": [ + { + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "IDBOpenDBRequest" + } + ], + "specs": "indexeddb", + "exposed": "Window", + "name": "deleteDatabase" + } + } + }, + "name": "IDBFactory", + "extends": "Object", + "properties": { + "property": {} + } + }, + "WebGLShaderPrecisionFormat": { + "constants": { + "constant": {} + }, + "specs": "webgl", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "WebGLShaderPrecisionFormat", + "extends": "Object", + "properties": { + "property": { + "rangeMax": { + "specs": "webgl", + "exposed": "Window", + "name": "rangeMax", + "type": "long", + "type-original": "GLint", + "read-only": 1 + }, + "rangeMin": { + "specs": "webgl", + "exposed": "Window", + "name": "rangeMin", + "type": "long", + "type-original": "GLint", + "read-only": 1 + }, + "precision": { + "specs": "webgl", + "exposed": "Window", + "name": "precision", + "type": "long", + "type-original": "GLint", + "read-only": 1 + } + } + } + }, + "SVGAnimatedNumberList": { + "constants": { + "constant": {} + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "SVGAnimatedNumberList", + "extends": "Object", + "properties": { + "property": { + "animVal": { + "specs": "svg2", + "same-object": 1, + "name": "animVal", + "constant": 1, + "type-original": "SVGNumberList", + "exposed": "Window", + "type": "SVGNumberList", + "read-only": 1 + }, + "baseVal": { + "specs": "svg2", + "same-object": 1, + "name": "baseVal", + "constant": 1, + "type-original": "SVGNumberList", + "exposed": "Window", + "type": "SVGNumberList", + "read-only": 1 + } + } + } + }, + "MSAssertion": { + "specs": "webauthn", + "anonymous-methods": { + "method": [] + }, + "name": "MSAssertion", + "properties": { + "property": { + "id": { + "specs": "webauthn", + "exposed": "Window", + "name": "id", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "type": { + "specs": "webauthn", + "exposed": "Window", + "name": "type", + "type": "MSCredentialType", + "type-original": "MSCredentialType", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "PushManager": { + "specs": "push-api", + "anonymous-methods": { + "method": [] + }, + "name": "PushManager", + "properties": { + "property": { + "supportedContentEncodings": { + "specs": "push-api", + "name": "supportedContentEncodings", + "static": 1, + "type-original": "FrozenArray", + "subtype": { + "type": "DOMString" + }, + "exposed": "Window", + "type": "FrozenArray", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "subscribe": { + "signature": [ + { + "subtype": { + "type": "PushSubscription" + }, + "param-min-required": 0, + "type": "Promise", + "param": [ + { + "name": "options", + "type": "PushSubscriptionOptionsInit", + "optional": 1, + "type-original": "PushSubscriptionOptionsInit" + } + ], + "type-original": "Promise" + } + ], + "specs": "push-api", + "exposed": "Window", + "name": "subscribe" + }, + "permissionState": { + "signature": [ + { + "subtype": { + "type": "PushPermissionState" + }, + "param-min-required": 0, + "type": "Promise", + "param": [ + { + "name": "options", + "type": "PushSubscriptionOptionsInit", + "optional": 1, + "type-original": "PushSubscriptionOptionsInit" + } + ], + "type-original": "Promise" + } + ], + "specs": "push-api", + "exposed": "Window", + "name": "permissionState" + }, + "getSubscription": { + "signature": [ + { + "subtype": { + "nullable": 1, + "type": "PushSubscription" + }, + "type": "Promise", + "type-original": "Promise" + } + ], + "specs": "push-api", + "exposed": "Window", + "name": "getSubscription" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "MediaEncryptedEvent": { + "specs": "encrypted-media", + "constructor": { + "specs": "encrypted-media", + "signature": [ + { + "param-min-required": 1, + "type": "MediaEncryptedEvent", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "MediaEncryptedEventInit", + "optional": 1, + "type-original": "MediaEncryptedEventInit" + } + ], + "type-original": "MediaEncryptedEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "MediaEncryptedEvent", + "properties": { + "property": { + "initDataType": { + "specs": "encrypted-media", + "exposed": "Window", + "name": "initDataType", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "initData": { + "specs": "encrypted-media", + "name": "initData", + "type-original": "ArrayBuffer?", + "nullable": 1, + "exposed": "Window", + "type": "ArrayBuffer", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Event" + }, + "TouchEvent": { + "specs": "touch-events", + "anonymous-methods": { + "method": [] + }, + "name": "TouchEvent", + "properties": { + "property": { + "changedTouches": { + "specs": "touch-events", + "exposed": "Window", + "name": "changedTouches", + "type": "TouchList", + "type-original": "TouchList", + "read-only": 1 + }, + "keyCode": { + "specs": "touch-events", + "exposed": "Window", + "name": "keyCode", + "type": "short", + "type-original": "short", + "read-only": 1 + }, + "which": { + "specs": "touch-events", + "name": "which", + "type-original": "unsigned short", + "deprecated": 1, + "exposed": "Window", + "type": "unsigned short", + "read-only": 1 + }, + "shiftKey": { + "specs": "touch-events", + "exposed": "Window", + "name": "shiftKey", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "targetTouches": { + "specs": "touch-events", + "exposed": "Window", + "name": "targetTouches", + "type": "TouchList", + "type-original": "TouchList", + "read-only": 1 + }, + "altKey": { + "specs": "touch-events", + "exposed": "Window", + "name": "altKey", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "metaKey": { + "specs": "touch-events", + "exposed": "Window", + "name": "metaKey", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "touches": { + "specs": "touch-events", + "exposed": "Window", + "name": "touches", + "type": "TouchList", + "type-original": "TouchList", + "read-only": 1 + }, + "ctrlKey": { + "specs": "touch-events", + "exposed": "Window", + "name": "ctrlKey", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "charCode": { + "specs": "touch-events", + "exposed": "Window", + "name": "charCode", + "type": "short", + "type-original": "short", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "UIEvent" + }, + "WorkerLocation": { + "constants": { + "constant": {} + }, + "specs": "workers", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": { + "toString": { + "signature": [ + { + "type": "DOMString", + "type-original": "DOMString" + } + ], + "specs": "workers", + "exposed": "Worker", + "name": "toString", + "stringifier": 1 + } + } + }, + "exposed": "Worker", + "name": "WorkerLocation", + "extends": "Object", + "properties": { + "property": { + "protocol": { + "specs": "workers", + "exposed": "Worker", + "name": "protocol", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "search": { + "specs": "workers", + "exposed": "Worker", + "name": "search", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "origin": { + "specs": "workers", + "exposed": "Worker", + "name": "origin", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "hostname": { + "specs": "workers", + "exposed": "Worker", + "name": "hostname", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "pathname": { + "specs": "workers", + "exposed": "Worker", + "name": "pathname", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "port": { + "specs": "workers", + "exposed": "Worker", + "name": "port", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "host": { + "specs": "workers", + "exposed": "Worker", + "name": "host", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "hash": { + "specs": "workers", + "exposed": "Worker", + "name": "hash", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "href": { + "specs": "workers", + "name": "href", + "type-original": "DOMString", + "exposed": "Worker", + "type": "DOMString", + "stringifier": 1, + "read-only": 1 + } + } + } + }, + "ServiceWorkerMessageEvent": { + "specs": "service-workers", + "constructor": { + "specs": "service-workers", + "signature": [ + { + "param-min-required": 1, + "type": "ServiceWorkerMessageEvent", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "ServiceWorkerMessageEventInit", + "optional": 1, + "type-original": "ServiceWorkerMessageEventInit" + } + ], + "type-original": "ServiceWorkerMessageEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "ServiceWorkerMessageEvent", + "properties": { + "property": { + "source": { + "specs": "service-workers", + "same-object": 1, + "name": "source", + "type-original": "(ServiceWorker or MessagePort)?", + "exposed": "Window", + "type": [ + { + "nullable": 1, + "type": "ServiceWorker" + }, + { + "nullable": 1, + "type": "MessagePort" + } + ], + "read-only": 1 + }, + "ports": { + "specs": "service-workers", + "name": "ports", + "type-original": "FrozenArray?", + "subtype": { + "type": "MessagePort" + }, + "nullable": 1, + "exposed": "Window", + "type": "FrozenArray", + "read-only": 1 + }, + "lastEventId": { + "specs": "service-workers", + "exposed": "Window", + "name": "lastEventId", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "origin": { + "specs": "service-workers", + "exposed": "Window", + "name": "origin", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "data": { + "specs": "service-workers", + "exposed": "Window", + "name": "data", + "type": "any", + "type-original": "any", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "Event" + }, + "SVGTextElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "clip-path" + }, + { + "enum-values": "nonzero evenodd inherit", + "value-syntax": "enum", + "name": "clip-rule" + }, + { + "enum-values": "inherit initial", + "value-syntax": "css_color", + "name": "color" + }, + { + "enum-values": "auto default none context-menu help pointer progress wait cell crosshair text vertical-text alias copy move no-drop not-allowed e-resize n-resize ne-resize nw-resize s-resize se-resize sw-resize w-resize ew-resize ns-resize nesw-resize nwse-resize col-resize row-resize all-scroll zoom-in zoom-out inherit", + "value-syntax": "comma_separated_css_url_with_optional_x_y_offset_followed_by_enum", + "name": "cursor" + }, + { + "enum-values": "inline block inline-block list-item table inline-table table-header-group table-footer-group table-row-group table-column-group table-row table-column table-cell table-caption run-in ruby ruby-base ruby-text ruby-base-container flex inline-flex -ms-grid -ms-inline-grid none inherit initial", + "value-syntax": "enum", + "name": "display" + }, + { + "enum-values": "ltr rtl inherit", + "value-syntax": "enum", + "name": "direction" + }, + { + "enum-values": "auto use-script no-change reset-size ideographic alphabetic hanging mathematical central middle text-after-edge text-before-edge inherit", + "value-syntax": "enum", + "name": "dominant-baseline" + }, + { + "enum-values": "none currentColor inherit", + "value-syntax": "svg_paint_or_css_color", + "name": "fill" + }, + { + "enum-values": "inherit", + "value-syntax": "0_to_1_floating_point_number", + "name": "fill-opacity" + }, + { + "enum-values": "nonzero evenodd inherit", + "value-syntax": "enum", + "name": "fill-rule" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "filter" + }, + { + "enum-values": "caption icon menu message-box small-caption status-bar inherit", + "value-syntax": "css_font", + "name": "font" + }, + { + "enum-values": "inherit", + "value-syntax": "comma_separated_css_font_family_followed_by_generic_family", + "name": "font-family" + }, + { + "enum-values": "smaller larger xx-small x-small small medium large x-large xx-large inherit initial", + "value-syntax": "css_percentage_or_length", + "name": "font-size" + }, + { + "enum-values": "none inherit", + "value-syntax": "floating_point_number", + "name": "font-size-adjust" + }, + { + "enum-values": "normal wider narrower ultra-condensed extra-condensed condensed semi-condensed semi-expanded expanded extra-expanded ultra-expanded inherit", + "value-syntax": "enum", + "name": "font-stretch" + }, + { + "enum-values": "normal italic oblique inherit initial", + "value-syntax": "enum", + "name": "font-style" + }, + { + "enum-values": "normal small-caps inherit initial", + "value-syntax": "enum", + "name": "font-variant" + }, + { + "enum-values": "normal bold bolder lighter 100 200 300 400 500 600 700 800 900 inherit initial", + "value-syntax": "enum", + "name": "font-weight" + }, + { + "enum-values": "inherit", + "value-syntax": "css_angle", + "name": "glyph-orientation-horizontal" + }, + { + "enum-values": "auto inherit", + "value-syntax": "css_angle", + "name": "glyph-orientation-vertical" + }, + { + "enum-values": "auto inherit", + "value-syntax": "css_length", + "name": "kerning" + }, + { + "enum-values": "normal inherit initial", + "value-syntax": "css_length", + "name": "letter-spacing" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "mask" + }, + { + "enum-values": "inherit initial", + "value-syntax": "0_to_1_floating_point_number", + "name": "opacity" + }, + { + "enum-values": "auto none visiblePainted visibleFill visibleStroke visible painted fill stroke all inherit initial", + "value-syntax": "enum", + "name": "pointer-events" + }, + { + "enum-values": "none currentColor inherit", + "value-syntax": "svg_paint_or_css_color", + "name": "stroke" + }, + { + "enum-values": "none inherit", + "value-syntax": "comma_or_space_separated_css_percentage_or_length", + "name": "stroke-dasharray" + }, + { + "enum-values": "inherit", + "value-syntax": "css_percentage_or_length", + "name": "stroke-dashoffset" + }, + { + "enum-values": "butt round square inherit", + "value-syntax": "enum", + "name": "stroke-linecap" + }, + { + "enum-values": "miter round bevel inherit", + "value-syntax": "enum", + "name": "stroke-linejoin" + }, + { + "enum-values": "inherit", + "value-syntax": "1_or_greater_floating_point_number", + "name": "stroke-miterlimit" + }, + { + "enum-values": "inherit", + "value-syntax": "0_to_1_floating_point_number", + "name": "stroke-opacity" + }, + { + "enum-values": "inherit", + "value-syntax": "css_percentage_or_length", + "name": "stroke-width" + }, + { + "enum-values": "start middle end inherit", + "value-syntax": "enum", + "name": "text-anchor" + }, + { + "enum-values": "none underline overline line-through blink inherit", + "value-syntax": "enum", + "name": "text-decoration" + }, + { + "enum-values": "normal embed bidi-override inherit", + "value-syntax": "enum", + "name": "unicode-bidi" + }, + { + "enum-values": "visible hidden collapse inherit initial", + "value-syntax": "enum", + "name": "visibility" + }, + { + "enum-values": "normal inherit initial", + "value-syntax": "css_length", + "name": "word-spacing" + }, + { + "enum-values": "lr-tb tb-rl rl-tb bt-rl tb-lr bt-lr lr-bt rl-bt lr rl tb horizontal-tb vertical-lr vertical-rl inherit", + "value-syntax": "enum", + "name": "writing-mode" + } + ] + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGTextElement", + "properties": { + "property": {} + }, + "element": [ + { + "specs": "svg2", + "namespace": "SVG", + "name": "text" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGTextPositioningElement" + }, + "ValidityState": { + "constants": { + "constant": {} + }, + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "ValidityState", + "extends": "Object", + "properties": { + "property": { + "customError": { + "specs": "html5", + "exposed": "Window", + "name": "customError", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "valueMissing": { + "specs": "html5", + "exposed": "Window", + "name": "valueMissing", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "badInput": { + "specs": "html5", + "exposed": "Window", + "name": "badInput", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "tooLong": { + "specs": "html5", + "exposed": "Window", + "name": "tooLong", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "valid": { + "specs": "html5", + "exposed": "Window", + "name": "valid", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "stepMismatch": { + "specs": "html5", + "exposed": "Window", + "name": "stepMismatch", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "rangeUnderflow": { + "specs": "html5", + "exposed": "Window", + "name": "rangeUnderflow", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "rangeOverflow": { + "specs": "html5", + "exposed": "Window", + "name": "rangeOverflow", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "typeMismatch": { + "specs": "html5", + "exposed": "Window", + "name": "typeMismatch", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "patternMismatch": { + "specs": "html5", + "exposed": "Window", + "name": "patternMismatch", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + } + } + } + }, + "Storage": { + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "name": "Storage", + "properties": { + "property": { + "length": { + "specs": "html5", + "name": "length", + "property-descriptor-not-enumerable": 1, + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "override-builtins": 1, + "methods": { + "method": { + "getItem": { + "specs": "html5", + "name": "getItem", + "property-descriptor-not-enumerable": 1, + "getter": 1, + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "any", + "param": [ + { + "name": "key", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "any?" + } + ], + "exposed": "Window" + }, + "setItem": { + "specs": "html5", + "name": "setItem", + "property-descriptor-not-enumerable": 1, + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "key", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "value", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "exposed": "Window", + "setter": 1 + }, + "clear": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "clear", + "property-descriptor-not-enumerable": 1 + }, + "removeItem": { + "specs": "html5", + "name": "removeItem", + "property-descriptor-not-enumerable": 1, + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "key", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "exposed": "Window", + "deleter": 1 + }, + "key": { + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "DOMString", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "DOMString?" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "key", + "property-descriptor-not-enumerable": 1 + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "HTMLIFrameElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLIFrameElement", + "properties": { + "property": { + "width": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "width", + "content-attribute": "width", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "non_negative_integer", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "align": { + "specs": "html5", + "ce-reactions": 1, + "type-original": "DOMString", + "content-attribute": "align", + "interop": 1, + "pure": 1, + "content-attribute-enum-values": "absbottom absmiddle baseline bottom left middle right texttop top", + "name": "align", + "deprecated": 1, + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "scrolling": { + "specs": "html5", + "ce-reactions": 1, + "type-original": "DOMString", + "content-attribute": "scrolling", + "interop": 1, + "pure": 1, + "content-attribute-enum-values": "auto no yes", + "name": "scrolling", + "deprecated": 1, + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "contentWindow": { + "specs": "html5", + "name": "contentWindow", + "type-original": "Window?", + "nullable": 1, + "exposed": "Window", + "type": "Window", + "read-only": 1 + }, + "marginHeight": { + "specs": "html5", + "ce-reactions": 1, + "type-original": "DOMString", + "content-attribute": "marginheight", + "interop": 1, + "pure": 1, + "name": "marginHeight", + "deprecated": 1, + "treat-null-as": "EmptyString", + "content-attribute-value-syntax": "signed_integer", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "allowPaymentRequest": { + "specs": "html5", + "ce-reactions": 1, + "name": "allowPaymentRequest", + "content-attribute": "allowpaymentrequest", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "src": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "src", + "content-attribute": "src", + "type-original": "USVString", + "exposed": "Window", + "content-attribute-value-syntax": "url", + "type": "USVString", + "content-attribute-reflects": 1 + }, + "name": { + "content-attribute-enum-values": "_blank _self _parent _top", + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "name", + "content-attribute": "name", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "name_ref", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "marginWidth": { + "specs": "html5", + "ce-reactions": 1, + "type-original": "DOMString", + "content-attribute": "marginwidth", + "interop": 1, + "pure": 1, + "name": "marginWidth", + "deprecated": 1, + "treat-null-as": "EmptyString", + "content-attribute-value-syntax": "signed_integer", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "height": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "height", + "content-attribute": "height", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "non_negative_integer", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "contentDocument": { + "specs": "html5", + "name": "contentDocument", + "type-original": "Document?", + "nullable": 1, + "exposed": "Window", + "type": "Document", + "read-only": 1 + }, + "allowFullscreen": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "allowFullscreen", + "content-attribute": "allowfullscreen", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "longDesc": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "longDesc", + "type-original": "DOMString", + "content-attribute": "longdesc", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "url", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "onload": { + "specs": "html5", + "name": "onload", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "load" + }, + "sandbox": { + "content-attribute-enum-values": "allow-scripts allow-forms allow-same-origin allow-top-navigation allow-popups allow-pointer-lock", + "put-forwards": "value", + "specs": "html5", + "same-object": 1, + "name": "sandbox", + "content-attribute": "sandbox", + "type-original": "DOMTokenList", + "exposed": "Window", + "content-attribute-value-syntax": "space_separated_enums", + "type": "DOMTokenList", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "frameBorder": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "frameBorder", + "type-original": "DOMString", + "content-attribute": "frameborder", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "non_negative_integer", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "iframe" + } + ], + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "async", + "specs": "HTML5", + "name": "load", + "type": "Event", + "skips-window": 1 + } + ] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement", + "implements": [ + "GetSVGDocument" + ] + }, + "PaymentRequestUpdateEvent": { + "specs": "payment-request", + "constructor": { + "specs": "payment-request", + "signature": [ + { + "param-min-required": 1, + "type": "PaymentRequestUpdateEvent", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "PaymentRequestUpdateEventInit", + "optional": 1, + "type-original": "PaymentRequestUpdateEventInit" + } + ], + "type-original": "PaymentRequestUpdateEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "PaymentRequestUpdateEvent", + "properties": { + "property": {} + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": { + "updateWith": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "subtype": { + "type": "PaymentDetailsUpdate" + }, + "name": "detailsPromise", + "type": "Promise", + "type-original": "Promise" + } + ], + "type-original": "void" + } + ], + "specs": "payment-request", + "exposed": "Window", + "name": "updateWith" + } + } + }, + "extends": "Event", + "secure-context": 1 + }, + "HTMLBodyElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLBodyElement", + "properties": { + "property": { + "link": { + "specs": "html5", + "ce-reactions": 1, + "name": "link", + "type-original": "DOMString", + "content-attribute": "link", + "deprecated": 1, + "interop": 1, + "treat-null-as": "EmptyString", + "content-attribute-value-syntax": "simple_color", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "onresize": { + "specs": "html5", + "name": "onresize", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "resize", + "event-handler-map-to-window": 1 + }, + "aLink": { + "specs": "html5", + "ce-reactions": 1, + "name": "aLink", + "type-original": "DOMString", + "content-attribute": "alink", + "deprecated": 1, + "interop": 1, + "treat-null-as": "EmptyString", + "content-attribute-value-syntax": "simple_color", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "background": { + "specs": "html5", + "ce-reactions": 1, + "name": "background", + "type-original": "DOMString", + "content-attribute": "background", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "simple_color", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "vLink": { + "specs": "html5", + "ce-reactions": 1, + "name": "vLink", + "type-original": "DOMString", + "content-attribute": "vlink", + "deprecated": 1, + "interop": 1, + "treat-null-as": "EmptyString", + "content-attribute-value-syntax": "simple_color", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "noWrap": { + "extension": 1, + "specs": "none", + "ce-reactions": 1, + "name": "noWrap", + "type-original": "boolean", + "content-attribute": "nowrap", + "deprecated": 1, + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "onblur": { + "specs": "html5", + "name": "onblur", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "blur", + "event-handler-map-to-window": 1 + }, + "onorientationchange": { + "specs": "whatwg-compat", + "name": "onorientationchange", + "type-original": "EventHandler", + "content-attribute": "onorientationchange", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler-map-to-window": 1, + "event-handler": "orientationchange" + }, + "onfocus": { + "specs": "html5", + "name": "onfocus", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "focus", + "event-handler-map-to-window": 1 + }, + "bgColor": { + "specs": "html5", + "ce-reactions": 1, + "name": "bgColor", + "type-original": "DOMString", + "content-attribute": "bgcolor", + "deprecated": 1, + "interop": 1, + "treat-null-as": "EmptyString", + "content-attribute-value-syntax": "simple_color", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "onscroll": { + "specs": "html5", + "name": "onscroll", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "scroll", + "event-handler-map-to-window": 1 + }, + "text": { + "specs": "html5", + "ce-reactions": 1, + "name": "text", + "type-original": "DOMString", + "content-attribute": "text", + "deprecated": 1, + "interop": 1, + "treat-null-as": "EmptyString", + "content-attribute-value-syntax": "simple_color", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "onerror": { + "specs": "html5", + "name": "onerror", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "error", + "event-handler-map-to-window": 1 + }, + "onload": { + "specs": "html5", + "name": "onload", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "load", + "event-handler-map-to-window": 1 + }, + "bgProperties": { + "extension": 1, + "specs": "none", + "name": "bgProperties", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString" + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "body" + } + ], + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "async", + "specs": "HTML5", + "name": "offline", + "type": "Event", + "bubbles": 1 + }, + { + "dispatch": "async", + "specs": "HTML5", + "name": "online", + "type": "Event", + "bubbles": 1 + } + ] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement", + "implements": [ + "WindowEventHandlers" + ] + }, + "CSS": { + "specs": "cssom", + "anonymous-methods": { + "method": [] + }, + "name": "CSS", + "static": 1, + "properties": { + "property": {} + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": { + "supports": { + "specs": "css-conditional", + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "property", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "value", + "optional": 1, + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "boolean" + } + ], + "name": "supports", + "exposed": "Window", + "static": 1 + } + } + }, + "extends": "Object" + }, + "MutationEvent": { + "specs": "uievents", + "anonymous-methods": { + "method": [] + }, + "name": "MutationEvent", + "properties": { + "property": { + "attrChange": { + "specs": "uievents", + "name": "attrChange", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short", + "read-only": 1 + }, + "newValue": { + "specs": "uievents", + "name": "newValue", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "attrName": { + "specs": "uievents", + "name": "attrName", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "prevValue": { + "specs": "uievents", + "name": "prevValue", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "relatedNode": { + "specs": "uievents", + "name": "relatedNode", + "type-original": "Node", + "exposed": "Window", + "type": "Node", + "read-only": 1 + } + } + }, + "constants": { + "constant": { + "MODIFICATION": { + "specs": "uievents", + "value": "1", + "exposed": "Window", + "name": "MODIFICATION", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "REMOVAL": { + "specs": "uievents", + "value": "3", + "exposed": "Window", + "name": "REMOVAL", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "ADDITION": { + "specs": "uievents", + "value": "2", + "exposed": "Window", + "name": "ADDITION", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "deprecated": 1, + "exposed": "Window", + "methods": { + "method": { + "initMutationEvent": { + "signature": [ + { + "param-min-required": 8, + "type": "void", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "canBubbleArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "cancelableArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "relatedNodeArg", + "type": "Node", + "type-original": "Node" + }, + { + "name": "prevValueArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "newValueArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "attrNameArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "attrChangeArg", + "type": "unsigned short", + "type-original": "unsigned short" + } + ], + "type-original": "void" + } + ], + "specs": "uievents", + "exposed": "Window", + "name": "initMutationEvent" + } + } + }, + "extends": "Event" + }, + "AbortController": { + "specs": "dom", + "constructor": { + "specs": "dom", + "signature": [ + { + "type": "AbortController", + "type-original": "AbortController" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "AbortController", + "properties": { + "property": { + "signal": { + "specs": "dom", + "exposed": "Window", + "name": "signal", + "type": "AbortSignal", + "type-original": "AbortSignal", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "abort": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "dom", + "exposed": "Window", + "name": "abort" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "DragEvent": { + "constants": { + "constant": {} + }, + "specs": "html51", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "initDragEvent": { + "signature": [ + { + "param-min-required": 16, + "type": "void", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "canBubbleArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "cancelableArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "viewArg", + "type": "Window", + "type-original": "Window" + }, + { + "name": "detailArg", + "type": "long", + "type-original": "long" + }, + { + "name": "screenXArg", + "type": "long", + "type-original": "long" + }, + { + "name": "screenYArg", + "type": "long", + "type-original": "long" + }, + { + "name": "clientXArg", + "type": "long", + "type-original": "long" + }, + { + "name": "clientYArg", + "type": "long", + "type-original": "long" + }, + { + "name": "ctrlKeyArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "altKeyArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "shiftKeyArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "metaKeyArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "buttonArg", + "type": "unsigned short", + "type-original": "unsigned short" + }, + { + "name": "relatedTargetArg", + "type": "EventTarget", + "type-original": "EventTarget" + }, + { + "name": "dataTransferArg", + "type": "DataTransfer", + "type-original": "DataTransfer" + } + ], + "type-original": "void" + } + ], + "specs": "html51", + "exposed": "Window", + "name": "initDragEvent" + }, + "msConvertURL": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "file", + "type": "File", + "type-original": "File" + }, + { + "name": "targetType", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "targetURL", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "html51", + "exposed": "Window", + "name": "msConvertURL" + } + } + }, + "name": "DragEvent", + "extends": "MouseEvent", + "properties": { + "property": { + "dataTransfer": { + "specs": "html51", + "name": "dataTransfer", + "type-original": "DataTransfer", + "exposed": "Window", + "type": "DataTransfer", + "read-only": 1 + } + } + } + }, + "Crypto": { + "constants": { + "constant": {} + }, + "specs": "webcryptoapi", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "getRandomValues": { + "signature": [ + { + "param-min-required": 1, + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ], + "param": [ + { + "name": "array", + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ], + "type-original": "ArrayBufferView" + } + ], + "type-original": "ArrayBufferView" + } + ], + "specs": "webcryptoapi", + "exposed": "Window", + "name": "getRandomValues" + } + } + }, + "name": "Crypto", + "extends": "Object", + "properties": { + "property": { + "subtle": { + "specs": "webcryptoapi", + "name": "subtle", + "type-original": "SubtleCrypto", + "exposed": "Window", + "type": "SubtleCrypto", + "secure-context": 1, + "read-only": 1 + } + } + } + }, + "ErrorEvent": { + "specs": "workers", + "constructor": { + "specs": "workers", + "signature": [ + { + "param-min-required": 1, + "type": "ErrorEvent", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "ErrorEventInit", + "optional": 1, + "type-original": "ErrorEventInit" + } + ], + "type-original": "ErrorEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "ErrorEvent", + "properties": { + "property": { + "colno": { + "specs": "workers", + "exposed": "Window", + "name": "colno", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + }, + "filename": { + "specs": "workers", + "exposed": "Window", + "name": "filename", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "error": { + "specs": "workers", + "name": "error", + "type-original": "any?", + "nullable": 1, + "exposed": "Window", + "type": "any", + "read-only": 1 + }, + "lineno": { + "specs": "workers", + "exposed": "Window", + "name": "lineno", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + }, + "message": { + "specs": "workers", + "exposed": "Window", + "name": "message", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "initErrorEvent": { + "signature": [ + { + "param-min-required": 6, + "type": "void", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "canBubbleArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "cancelableArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "messageArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "filenameArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "linenoArg", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "void" + } + ], + "specs": "workers", + "exposed": "Window", + "name": "initErrorEvent" + } + } + }, + "exposed": "Window", + "extends": "Event" + }, + "SVGFilterElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "default preserve", + "value-syntax": "enum", + "name": "xml:space" + }, + { + "enum-values": "false true", + "value-syntax": "enum", + "name": "externalResourcesRequired" + } + ] + }, + "specs": "filter-effects", + "anonymous-methods": { + "method": [] + }, + "name": "SVGFilterElement", + "properties": { + "property": { + "filterResX": { + "specs": "svg11", + "name": "filterResX", + "constant": 1, + "type-original": "SVGAnimatedInteger", + "content-attribute": "filterRes", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "svg_x_y_pair", + "exposed": "Window", + "type": "SVGAnimatedInteger", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "width": { + "specs": "filter-effects", + "name": "width", + "constant": 1, + "content-attribute": "width", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "type": "SVGAnimatedLength", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "y": { + "specs": "filter-effects", + "name": "y", + "constant": 1, + "content-attribute": "y", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "type": "SVGAnimatedLength", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "filterUnits": { + "content-attribute-enum-values": "objectBoundingBox userSpaceOnUse", + "specs": "filter-effects", + "name": "filterUnits", + "constant": 1, + "content-attribute": "filterUnits", + "type-original": "SVGAnimatedEnumeration", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "SVGAnimatedEnumeration", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "primitiveUnits": { + "content-attribute-enum-values": "userSpaceOnUse objectBoundingBox", + "specs": "filter-effects", + "name": "primitiveUnits", + "constant": 1, + "content-attribute": "primitiveUnits", + "type-original": "SVGAnimatedEnumeration", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "SVGAnimatedEnumeration", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "x": { + "specs": "filter-effects", + "name": "x", + "constant": 1, + "content-attribute": "x", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "type": "SVGAnimatedLength", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "height": { + "specs": "filter-effects", + "name": "height", + "constant": 1, + "content-attribute": "height", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "type": "SVGAnimatedLength", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "filterResY": { + "specs": "svg11", + "name": "filterResY", + "constant": 1, + "type-original": "SVGAnimatedInteger", + "content-attribute": "filterRes", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "svg_x_y_pair", + "exposed": "Window", + "type": "SVGAnimatedInteger", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "filter-effects", + "namespace": "SVG", + "name": "filter" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": { + "setFilterRes": { + "interop": 1, + "deprecated": 1, + "specs": "svg11", + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "filterResX", + "type": "unsigned long", + "type-original": "unsigned long" + }, + { + "name": "filterResY", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "void" + } + ], + "name": "setFilterRes", + "exposed": "Window" + } + } + }, + "exposed": "Window", + "extends": "SVGElement", + "implements": [ + "SVGUnitTypes", + "SVGURIReference" + ] + }, + "SVGImageElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "auto inherit", + "value-syntax": "css_shape_rect", + "name": "clip" + }, + { + "enum-values": "visible hidden scroll auto inherit", + "value-syntax": "enum", + "name": "overflow" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "clip-path" + }, + { + "enum-values": "auto default none context-menu help pointer progress wait cell crosshair text vertical-text alias copy move no-drop not-allowed e-resize n-resize ne-resize nw-resize s-resize se-resize sw-resize w-resize ew-resize ns-resize nesw-resize nwse-resize col-resize row-resize all-scroll zoom-in zoom-out inherit", + "value-syntax": "comma_separated_css_url_with_optional_x_y_offset_followed_by_enum", + "name": "cursor" + } + ] + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGImageElement", + "properties": { + "property": { + "width": { + "specs": "svg2", + "same-object": 1, + "name": "width", + "constant": 1, + "content-attribute": "width", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + }, + "y": { + "specs": "svg2", + "same-object": 1, + "name": "y", + "constant": 1, + "content-attribute": "y", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + }, + "preserveAspectRatio": { + "specs": "svg2", + "same-object": 1, + "name": "preserveAspectRatio", + "constant": 1, + "content-attribute": "preserveAspectRatio", + "type-original": "SVGAnimatedPreserveAspectRatio", + "exposed": "Window", + "content-attribute-value-syntax": "svg_aspect_ratio", + "type": "SVGAnimatedPreserveAspectRatio", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "x": { + "specs": "svg2", + "same-object": 1, + "name": "x", + "constant": 1, + "content-attribute": "x", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + }, + "height": { + "specs": "svg2", + "same-object": 1, + "name": "height", + "constant": 1, + "content-attribute": "height", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "svg2", + "namespace": "SVG", + "name": "image" + } + ], + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "svg11", + "name": "SVGAbort", + "type": "Event", + "bubbles": 1 + }, + { + "dispatch": "sync", + "specs": "svg11", + "name": "SVGError", + "type": "Event", + "bubbles": 1 + } + ] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGGraphicsElement", + "implements": [ + "SVGURIReference" + ] + }, + "MSStreamReader": { + "dataslot": [ + { + "name": "result" + } + ], + "specs": "none", + "constructor": { + "specs": "none", + "signature": [ + { + "type": "MSStreamReader", + "type-original": "MSStreamReader" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "MSStreamReader", + "properties": { + "property": { + "onprogress": { + "specs": "none", + "name": "onprogress", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "progress" + }, + "readyState": { + "specs": "none", + "exposed": "Window", + "name": "readyState", + "type": "unsigned short", + "type-original": "unsigned short", + "read-only": 1 + }, + "onabort": { + "specs": "none", + "name": "onabort", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "abort" + }, + "onloadend": { + "specs": "none", + "name": "onloadend", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "loadend" + }, + "error": { + "specs": "none", + "exposed": "Window", + "name": "error", + "type": "DOMError", + "type-original": "DOMError", + "read-only": 1 + }, + "onload": { + "specs": "none", + "name": "onload", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "load" + }, + "onerror": { + "specs": "none", + "name": "onerror", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "error" + }, + "result": { + "specs": "none", + "exposed": "Window", + "name": "result", + "type": "any", + "type-original": "any", + "read-only": 1 + }, + "onloadstart": { + "specs": "none", + "name": "onloadstart", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "loadstart" + } + } + }, + "constants": { + "constant": { + "LOADING": { + "specs": "none", + "value": "1", + "exposed": "Window", + "name": "LOADING", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "DONE": { + "specs": "none", + "value": "2", + "exposed": "Window", + "name": "DONE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "EMPTY": { + "specs": "none", + "value": "0", + "exposed": "Window", + "name": "EMPTY", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "events": { + "event": [] + }, + "exposed": "Window", + "methods": { + "method": { + "readAsArrayBuffer": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "stream", + "type": "MSStream", + "type-original": "MSStream" + }, + { + "name": "size", + "default": "-1", + "type": "long long", + "optional": 1, + "type-original": "long long" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "readAsArrayBuffer" + }, + "abort": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "abort" + }, + "readAsBlob": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "stream", + "type": "MSStream", + "type-original": "MSStream" + }, + { + "name": "size", + "default": "-1", + "type": "long long", + "optional": 1, + "type-original": "long long" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "readAsBlob" + }, + "readAsDataURL": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "stream", + "type": "MSStream", + "type-original": "MSStream" + }, + { + "name": "size", + "default": "-1", + "type": "long long", + "optional": 1, + "type-original": "long long" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "readAsDataURL" + }, + "readAsBinaryString": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "stream", + "type": "MSStream", + "type-original": "MSStream" + }, + { + "name": "size", + "default": "-1", + "type": "long long", + "optional": 1, + "type-original": "long long" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "readAsBinaryString" + }, + "readAsText": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "stream", + "type": "MSStream", + "type-original": "MSStream" + }, + { + "name": "encoding", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + }, + { + "name": "size", + "default": "-1", + "type": "long long", + "optional": 1, + "type-original": "long long" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "readAsText" + } + } + }, + "extends": "EventTarget" + }, + "PerformanceTiming": { + "specs": "navigation-timing", + "anonymous-methods": { + "method": [] + }, + "name": "PerformanceTiming", + "properties": { + "property": { + "responseStart": { + "specs": "navigation-timing", + "name": "responseStart", + "type-original": "unsigned long long", + "exposed": "Window", + "type": "unsigned long long", + "read-only": 1 + }, + "domainLookupEnd": { + "specs": "navigation-timing", + "name": "domainLookupEnd", + "type-original": "unsigned long long", + "exposed": "Window", + "type": "unsigned long long", + "read-only": 1 + }, + "redirectStart": { + "specs": "navigation-timing", + "name": "redirectStart", + "type-original": "unsigned long long", + "exposed": "Window", + "type": "unsigned long long", + "read-only": 1 + }, + "domComplete": { + "specs": "navigation-timing", + "name": "domComplete", + "type-original": "unsigned long long", + "exposed": "Window", + "type": "unsigned long long", + "read-only": 1 + }, + "msFirstPaint": { + "extension": 1, + "specs": "none", + "name": "msFirstPaint", + "type-original": "unsigned long long", + "exposed": "Window", + "type": "unsigned long long", + "read-only": 1 + }, + "loadEventStart": { + "specs": "navigation-timing", + "name": "loadEventStart", + "type-original": "unsigned long long", + "exposed": "Window", + "type": "unsigned long long", + "read-only": 1 + }, + "domainLookupStart": { + "specs": "navigation-timing", + "name": "domainLookupStart", + "type-original": "unsigned long long", + "exposed": "Window", + "type": "unsigned long long", + "read-only": 1 + }, + "domInteractive": { + "specs": "navigation-timing", + "name": "domInteractive", + "type-original": "unsigned long long", + "exposed": "Window", + "type": "unsigned long long", + "read-only": 1 + }, + "requestStart": { + "specs": "navigation-timing", + "name": "requestStart", + "type-original": "unsigned long long", + "exposed": "Window", + "type": "unsigned long long", + "read-only": 1 + }, + "fetchStart": { + "specs": "navigation-timing", + "name": "fetchStart", + "type-original": "unsigned long long", + "exposed": "Window", + "type": "unsigned long long", + "read-only": 1 + }, + "unloadEventEnd": { + "specs": "navigation-timing", + "name": "unloadEventEnd", + "type-original": "unsigned long long", + "exposed": "Window", + "type": "unsigned long long", + "read-only": 1 + }, + "navigationStart": { + "specs": "navigation-timing", + "name": "navigationStart", + "type-original": "unsigned long long", + "exposed": "Window", + "type": "unsigned long long", + "read-only": 1 + }, + "loadEventEnd": { + "specs": "navigation-timing", + "name": "loadEventEnd", + "type-original": "unsigned long long", + "exposed": "Window", + "type": "unsigned long long", + "read-only": 1 + }, + "connectEnd": { + "specs": "navigation-timing", + "name": "connectEnd", + "type-original": "unsigned long long", + "exposed": "Window", + "type": "unsigned long long", + "read-only": 1 + }, + "connectStart": { + "specs": "navigation-timing", + "name": "connectStart", + "type-original": "unsigned long long", + "exposed": "Window", + "type": "unsigned long long", + "read-only": 1 + }, + "domLoading": { + "specs": "navigation-timing", + "name": "domLoading", + "type-original": "unsigned long long", + "exposed": "Window", + "type": "unsigned long long", + "read-only": 1 + }, + "responseEnd": { + "specs": "navigation-timing", + "name": "responseEnd", + "type-original": "unsigned long long", + "exposed": "Window", + "type": "unsigned long long", + "read-only": 1 + }, + "redirectEnd": { + "specs": "navigation-timing", + "name": "redirectEnd", + "type-original": "unsigned long long", + "exposed": "Window", + "type": "unsigned long long", + "read-only": 1 + }, + "unloadEventStart": { + "specs": "navigation-timing", + "name": "unloadEventStart", + "type-original": "unsigned long long", + "exposed": "Window", + "type": "unsigned long long", + "read-only": 1 + }, + "domContentLoadedEventEnd": { + "specs": "navigation-timing", + "name": "domContentLoadedEventEnd", + "type-original": "unsigned long long", + "exposed": "Window", + "type": "unsigned long long", + "read-only": 1 + }, + "domContentLoadedEventStart": { + "specs": "navigation-timing", + "name": "domContentLoadedEventStart", + "type-original": "unsigned long long", + "exposed": "Window", + "type": "unsigned long long", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "methods": { + "method": { + "toJSON": { + "signature": [ + { + "type": "any", + "type-original": "any" + } + ], + "specs": "navigation-timing", + "exposed": "Window", + "name": "toJSON" + } + } + }, + "extends": "Object" + }, + "WebGLFramebuffer": { + "constants": { + "constant": {} + }, + "specs": "webgl", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "WebGLFramebuffer", + "extends": "WebGLObject", + "properties": { + "property": {} + } + }, + "SVGPathSegArcRel": { + "specs": "svg11", + "anonymous-methods": { + "method": [] + }, + "name": "SVGPathSegArcRel", + "properties": { + "property": { + "y": { + "specs": "svg11", + "exposed": "Window", + "name": "y", + "type": "float", + "type-original": "float" + }, + "sweepFlag": { + "specs": "svg11", + "exposed": "Window", + "name": "sweepFlag", + "type": "boolean", + "type-original": "boolean" + }, + "r2": { + "specs": "svg11", + "exposed": "Window", + "name": "r2", + "type": "float", + "type-original": "float" + }, + "angle": { + "specs": "svg11", + "exposed": "Window", + "name": "angle", + "type": "float", + "type-original": "float" + }, + "x": { + "specs": "svg11", + "exposed": "Window", + "name": "x", + "type": "float", + "type-original": "float" + }, + "largeArcFlag": { + "specs": "svg11", + "exposed": "Window", + "name": "largeArcFlag", + "type": "boolean", + "type-original": "boolean" + }, + "r1": { + "specs": "svg11", + "exposed": "Window", + "name": "r1", + "type": "float", + "type-original": "float" + } + } + }, + "constants": { + "constant": {} + }, + "interop": 1, + "deprecated": 1, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGPathSeg" + }, + "SpeechSynthesisVoice": { + "constants": { + "constant": {} + }, + "specs": "speech-api", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "SpeechSynthesisVoice", + "extends": "Object", + "properties": { + "property": { + "localService": { + "specs": "speech-api", + "exposed": "Window", + "name": "localService", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "lang": { + "specs": "speech-api", + "exposed": "Window", + "name": "lang", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "voiceURI": { + "specs": "speech-api", + "exposed": "Window", + "name": "voiceURI", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "name": { + "specs": "speech-api", + "exposed": "Window", + "name": "name", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "default": { + "specs": "speech-api", + "exposed": "Window", + "name": "default", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + } + } + } + }, + "SVGStringList": { + "constants": { + "constant": {} + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "replaceItem": { + "signature": [ + { + "param-min-required": 2, + "type": "DOMString", + "param": [ + { + "name": "newItem", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "DOMString" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "replaceItem" + }, + "getItem": { + "signature": [ + { + "param-min-required": 1, + "type": "DOMString", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "DOMString" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "getItem" + }, + "appendItem": { + "signature": [ + { + "param-min-required": 1, + "type": "DOMString", + "param": [ + { + "name": "newItem", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "DOMString" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "appendItem" + }, + "clear": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "clear" + }, + "removeItem": { + "signature": [ + { + "param-min-required": 1, + "type": "DOMString", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "DOMString" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "removeItem" + }, + "initialize": { + "signature": [ + { + "param-min-required": 1, + "type": "DOMString", + "param": [ + { + "name": "newItem", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "DOMString" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "initialize" + }, + "insertItemBefore": { + "signature": [ + { + "param-min-required": 2, + "type": "DOMString", + "param": [ + { + "name": "newItem", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "DOMString" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "insertItemBefore" + } + } + }, + "name": "SVGStringList", + "extends": "Object", + "properties": { + "property": { + "numberOfItems": { + "specs": "svg2", + "name": "numberOfItems", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + } + } + } + }, + "CSSGroupingRule": { + "constants": { + "constant": {} + }, + "specs": "css-conditional cssom", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "insertRule": { + "signature": [ + { + "param-min-required": 2, + "type": "unsigned long", + "param": [ + { + "name": "rule", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "unsigned long" + } + ], + "specs": "css-conditional cssom", + "exposed": "Window", + "name": "insertRule" + }, + "deleteRule": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "void" + } + ], + "specs": "css-conditional cssom", + "exposed": "Window", + "name": "deleteRule" + } + } + }, + "name": "CSSGroupingRule", + "extends": "CSSRule", + "properties": { + "property": { + "cssRules": { + "specs": "css-conditional cssom", + "same-object": 1, + "name": "cssRules", + "type-original": "CSSRuleList", + "exposed": "Window", + "type": "CSSRuleList", + "read-only": 1 + } + } + } + }, + "MutationRecord": { + "constants": { + "constant": {} + }, + "specs": "dom4", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "MutationRecord", + "extends": "Object", + "properties": { + "property": { + "oldValue": { + "specs": "dom4", + "name": "oldValue", + "constant": 1, + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "previousSibling": { + "specs": "dom4", + "name": "previousSibling", + "constant": 1, + "type-original": "Node?", + "nullable": 1, + "exposed": "Window", + "type": "Node", + "read-only": 1 + }, + "target": { + "specs": "dom4", + "name": "target", + "constant": 1, + "type-original": "Node", + "exposed": "Window", + "type": "Node", + "read-only": 1 + }, + "nextSibling": { + "specs": "dom4", + "name": "nextSibling", + "constant": 1, + "type-original": "Node?", + "nullable": 1, + "exposed": "Window", + "type": "Node", + "read-only": 1 + }, + "addedNodes": { + "specs": "dom4", + "name": "addedNodes", + "constant": 1, + "type-original": "NodeList", + "exposed": "Window", + "type": "NodeList", + "read-only": 1 + }, + "attributeNamespace": { + "specs": "dom4", + "name": "attributeNamespace", + "constant": 1, + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "attributeName": { + "specs": "dom4", + "name": "attributeName", + "constant": 1, + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "removedNodes": { + "specs": "dom4", + "name": "removedNodes", + "constant": 1, + "type-original": "NodeList", + "exposed": "Window", + "type": "NodeList", + "read-only": 1 + }, + "type": { + "specs": "dom4", + "name": "type", + "constant": 1, + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + } + } + } + }, + "ScopedCredential": { + "specs": "webauthn", + "anonymous-methods": { + "method": [] + }, + "name": "ScopedCredential", + "properties": { + "property": { + "id": { + "specs": "webauthn", + "exposed": "Window", + "name": "id", + "type": "ArrayBuffer", + "type-original": "ArrayBuffer", + "read-only": 1 + }, + "type": { + "specs": "webauthn", + "exposed": "Window", + "name": "type", + "type": "ScopedCredentialType", + "type-original": "ScopedCredentialType", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "Object", + "secure-context": 1 + }, + "SVGLength": { + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGLength", + "properties": { + "property": { + "valueAsString": { + "specs": "svg2", + "exposed": "Window", + "name": "valueAsString", + "type": "DOMString", + "type-original": "DOMString" + }, + "valueInSpecifiedUnits": { + "specs": "svg2", + "exposed": "Window", + "name": "valueInSpecifiedUnits", + "type": "float", + "type-original": "float" + }, + "value": { + "specs": "svg2", + "exposed": "Window", + "name": "value", + "type": "float", + "type-original": "float" + }, + "unitType": { + "specs": "svg2", + "name": "unitType", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short", + "read-only": 1 + } + } + }, + "constants": { + "constant": { + "SVG_LENGTHTYPE_NUMBER": { + "specs": "svg2", + "value": "1", + "exposed": "Window", + "name": "SVG_LENGTHTYPE_NUMBER", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_LENGTHTYPE_PC": { + "specs": "svg2", + "value": "10", + "exposed": "Window", + "name": "SVG_LENGTHTYPE_PC", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_LENGTHTYPE_CM": { + "specs": "svg2", + "value": "6", + "exposed": "Window", + "name": "SVG_LENGTHTYPE_CM", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_LENGTHTYPE_PERCENTAGE": { + "specs": "svg2", + "value": "2", + "exposed": "Window", + "name": "SVG_LENGTHTYPE_PERCENTAGE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_LENGTHTYPE_MM": { + "specs": "svg2", + "value": "7", + "exposed": "Window", + "name": "SVG_LENGTHTYPE_MM", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_LENGTHTYPE_PT": { + "specs": "svg2", + "value": "9", + "exposed": "Window", + "name": "SVG_LENGTHTYPE_PT", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_LENGTHTYPE_IN": { + "specs": "svg2", + "value": "8", + "exposed": "Window", + "name": "SVG_LENGTHTYPE_IN", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_LENGTHTYPE_EMS": { + "specs": "svg2", + "value": "3", + "exposed": "Window", + "name": "SVG_LENGTHTYPE_EMS", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_LENGTHTYPE_UNKNOWN": { + "specs": "svg2", + "value": "0", + "exposed": "Window", + "name": "SVG_LENGTHTYPE_UNKNOWN", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_LENGTHTYPE_PX": { + "specs": "svg2", + "value": "5", + "exposed": "Window", + "name": "SVG_LENGTHTYPE_PX", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_LENGTHTYPE_EXS": { + "specs": "svg2", + "value": "4", + "exposed": "Window", + "name": "SVG_LENGTHTYPE_EXS", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "methods": { + "method": { + "newValueSpecifiedUnits": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "unitType", + "type": "unsigned short", + "type-original": "unsigned short" + }, + { + "name": "valueInSpecifiedUnits", + "type": "float", + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "newValueSpecifiedUnits" + }, + "convertToSpecifiedUnits": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "unitType", + "type": "unsigned short", + "type-original": "unsigned short" + } + ], + "type-original": "void" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "convertToSpecifiedUnits" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "WebAuthentication": { + "specs": "WD-webauthn-20160902", + "anonymous-methods": { + "method": [] + }, + "name": "WebAuthentication", + "properties": { + "property": {} + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "getAssertion": { + "signature": [ + { + "subtype": { + "type": "WebAuthnAssertion" + }, + "param-min-required": 1, + "type": "Promise", + "param": [ + { + "name": "assertionChallenge", + "type": [ + { + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ] + }, + { + "nullable": 1, + "type": "ArrayBuffer" + } + ], + "type-original": "BufferSource" + }, + { + "name": "options", + "type": "AssertionOptions", + "optional": 1, + "type-original": "AssertionOptions" + } + ], + "type-original": "Promise" + } + ], + "specs": "WD-webauthn-20160902", + "exposed": "Window", + "name": "getAssertion" + }, + "makeCredential": { + "signature": [ + { + "subtype": { + "type": "ScopedCredentialInfo" + }, + "param-min-required": 3, + "type": "Promise", + "param": [ + { + "name": "accountInformation", + "type": "Account", + "type-original": "Account" + }, + { + "subtype": { + "type": "ScopedCredentialParameters" + }, + "name": "cryptoParameters", + "type": "sequence", + "type-original": "sequence" + }, + { + "name": "attestationChallenge", + "type": [ + { + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ] + }, + { + "nullable": 1, + "type": "ArrayBuffer" + } + ], + "type-original": "BufferSource" + }, + { + "name": "options", + "type": "ScopedCredentialOptions", + "optional": 1, + "type-original": "ScopedCredentialOptions" + } + ], + "type-original": "Promise" + } + ], + "specs": "WD-webauthn-20160902", + "exposed": "Window", + "name": "makeCredential" + } + } + }, + "exposed": "Window", + "extends": "Object", + "secure-context": 1 + }, + "DOMError": { + "constants": { + "constant": {} + }, + "specs": "dom4", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "toString": { + "signature": [ + { + "type": "DOMString", + "type-original": "DOMString" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "toString", + "stringifier": 1 + } + } + }, + "name": "DOMError", + "extends": "Object", + "properties": { + "property": { + "name": { + "specs": "dom4", + "name": "name", + "constant": 1, + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "stringifier": 1, + "read-only": 1 + } + } + } + }, + "SVGPathSegCurvetoCubicRel": { + "specs": "svg11", + "anonymous-methods": { + "method": [] + }, + "name": "SVGPathSegCurvetoCubicRel", + "properties": { + "property": { + "y1": { + "specs": "svg11", + "exposed": "Window", + "name": "y1", + "type": "float", + "type-original": "float" + }, + "y": { + "specs": "svg11", + "exposed": "Window", + "name": "y", + "type": "float", + "type-original": "float" + }, + "x2": { + "specs": "svg11", + "exposed": "Window", + "name": "x2", + "type": "float", + "type-original": "float" + }, + "x": { + "specs": "svg11", + "exposed": "Window", + "name": "x", + "type": "float", + "type-original": "float" + }, + "y2": { + "specs": "svg11", + "exposed": "Window", + "name": "y2", + "type": "float", + "type-original": "float" + }, + "x1": { + "specs": "svg11", + "exposed": "Window", + "name": "x1", + "type": "float", + "type-original": "float" + } + } + }, + "constants": { + "constant": {} + }, + "interop": 1, + "deprecated": 1, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGPathSeg" + }, + "PannerNode": { + "constants": { + "constant": {} + }, + "specs": "webaudio", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "setPosition": { + "deprecated": 1, + "signature": [ + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + }, + { + "name": "z", + "type": "float", + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "setPosition" + }, + "setOrientation": { + "deprecated": 1, + "signature": [ + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + }, + { + "name": "z", + "type": "float", + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "setOrientation" + }, + "setVelocity": { + "interop": 1, + "deprecated": 1, + "specs": "WD-webaudio-20151208", + "signature": [ + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + }, + { + "name": "z", + "type": "float", + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "name": "setVelocity", + "exposed": "Window" + } + } + }, + "name": "PannerNode", + "extends": "AudioNode", + "properties": { + "property": { + "rolloffFactor": { + "specs": "webaudio", + "exposed": "Window", + "name": "rolloffFactor", + "type": "float", + "type-original": "float" + }, + "coneOuterAngle": { + "specs": "webaudio", + "exposed": "Window", + "name": "coneOuterAngle", + "type": "float", + "type-original": "float" + }, + "panningModel": { + "specs": "webaudio", + "exposed": "Window", + "name": "panningModel", + "type": "PanningModelType", + "type-original": "PanningModelType" + }, + "distanceModel": { + "specs": "webaudio", + "exposed": "Window", + "name": "distanceModel", + "type": "DistanceModelType", + "type-original": "DistanceModelType" + }, + "maxDistance": { + "specs": "webaudio", + "exposed": "Window", + "name": "maxDistance", + "type": "float", + "type-original": "float" + }, + "coneInnerAngle": { + "specs": "webaudio", + "exposed": "Window", + "name": "coneInnerAngle", + "type": "float", + "type-original": "float" + }, + "coneOuterGain": { + "specs": "webaudio", + "exposed": "Window", + "name": "coneOuterGain", + "type": "float", + "type-original": "float" + }, + "refDistance": { + "specs": "webaudio", + "exposed": "Window", + "name": "refDistance", + "type": "float", + "type-original": "float" + } + } + } + }, + "OfflineAudioContext": { + "specs": "webaudio", + "constructor": { + "specs": "webaudio", + "signature": [ + { + "param-min-required": 3, + "type": "OfflineAudioContext", + "param": [ + { + "name": "numberOfChannels", + "type": "unsigned long", + "type-original": "unsigned long" + }, + { + "name": "length", + "type": "unsigned long", + "type-original": "unsigned long" + }, + { + "name": "sampleRate", + "type": "float", + "type-original": "float" + } + ], + "type-original": "OfflineAudioContext" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "OfflineAudioContext", + "properties": { + "property": { + "oncomplete": { + "specs": "webaudio", + "name": "oncomplete", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "complete" + }, + "length": { + "specs": "webaudio", + "exposed": "Window", + "name": "length", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "Audio", + "name": "complete", + "type": "OfflineAudioCompletionEvent", + "skips-window": 1 + } + ] + }, + "methods": { + "method": { + "suspend": { + "signature": [ + { + "subtype": { + "type": "void" + }, + "param-min-required": 1, + "type": "Promise", + "param": [ + { + "name": "suspendTime", + "type": "double", + "type-original": "double" + } + ], + "type-original": "Promise" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "suspend" + }, + "startRendering": { + "signature": [ + { + "subtype": { + "type": "AudioBuffer" + }, + "type": "Promise", + "type-original": "Promise" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "startRendering" + } + } + }, + "exposed": "Window", + "extends": "AudioContext" + }, + "HTMLCanvasElement": { + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "name": "HTMLCanvasElement", + "properties": { + "property": { + "width": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "width", + "content-attribute": "width", + "type-original": "unsigned long", + "exposed": "Window", + "content-attribute-value-syntax": "non_negative_integer", + "type": "unsigned long", + "content-attribute-reflects": 1 + }, + "height": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "height", + "content-attribute": "height", + "type-original": "unsigned long", + "exposed": "Window", + "content-attribute-value-syntax": "non_negative_integer", + "type": "unsigned long", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "canvas" + } + ], + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "precedes": "webglcontextrestored", + "dispatch": "async", + "specs": "WebGL", + "name": "webglcontextlost", + "type": "WebGLContextEvent" + }, + { + "dispatch": "async", + "specs": "WebGL", + "name": "webglcontextrestored", + "follows": "webglcontextlost", + "type": "WebGLContextEvent" + }, + { + "dispatch": "async", + "specs": "WebGL", + "name": "webglcontextcreationerror", + "type": "WebGLContextEvent" + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "toDataURL": { + "signature": [ + { + "param-min-required": 0, + "type": "DOMString", + "param": [ + { + "name": "type", + "default": "\"image/png\"", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + }, + { + "variadic": 1, + "name": "args", + "type": "any", + "type-original": "any" + } + ], + "type-original": "DOMString" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "toDataURL" + }, + "msToBlob": { + "signature": [ + { + "type": "Blob", + "type-original": "Blob" + } + ], + "specs": "fileapi", + "exposed": "Window", + "name": "msToBlob" + }, + "getContext": { + "signature": [ + { + "param-min-required": 1, + "type": [ + { + "type": "CanvasRenderingContext2D" + }, + { + "type": "WebGLRenderingContext" + } + ], + "param": [ + { + "name": "contextId", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "variadic": 1, + "name": "args", + "type": "any", + "type-original": "any" + } + ], + "type-original": "(CanvasRenderingContext2D or WebGLRenderingContext)" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "getContext" + } + } + }, + "extends": "HTMLElement" + }, + "Request": { + "specs": "whatwg-fetch", + "constructor": { + "specs": "whatwg-fetch", + "signature": [ + { + "param-min-required": 1, + "type": "Request", + "param": [ + { + "name": "input", + "type": [ + { + "type": "Request" + }, + { + "type": "USVString" + } + ], + "type-original": "RequestInfo" + }, + { + "name": "init", + "type": "RequestInit", + "optional": 1, + "type-original": "RequestInit" + } + ], + "type-original": "Request" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "Request", + "properties": { + "property": { + "headers": { + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "headers", + "type": "Headers", + "type-original": "Headers", + "read-only": 1 + }, + "mode": { + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "mode", + "type": "RequestMode", + "type-original": "RequestMode", + "read-only": 1 + }, + "destination": { + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "destination", + "type": "RequestDestination", + "type-original": "RequestDestination", + "read-only": 1 + }, + "referrer": { + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "referrer", + "type": "USVString", + "type-original": "USVString", + "read-only": 1 + }, + "credentials": { + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "credentials", + "type": "RequestCredentials", + "type-original": "RequestCredentials", + "read-only": 1 + }, + "signal": { + "specs": "whatwg-fetch", + "name": "signal", + "type-original": "AbortSignal?", + "nullable": 1, + "exposed": "Window", + "type": "AbortSignal", + "read-only": 1 + }, + "redirect": { + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "redirect", + "type": "RequestRedirect", + "type-original": "RequestRedirect", + "read-only": 1 + }, + "url": { + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "url", + "type": "USVString", + "type-original": "USVString", + "read-only": 1 + }, + "referrerPolicy": { + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "referrerPolicy", + "type": "ReferrerPolicy", + "type-original": "ReferrerPolicy", + "read-only": 1 + }, + "keepalive": { + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "keepalive", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "integrity": { + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "integrity", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "method": { + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "method", + "type": "ByteString", + "type-original": "ByteString", + "read-only": 1 + }, + "type": { + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "type", + "type": "RequestType", + "type-original": "RequestType", + "read-only": 1 + }, + "cache": { + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "cache", + "type": "RequestCache", + "type-original": "RequestCache", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "clone": { + "signature": [ + { + "new-object": 1, + "type": "Request", + "type-original": "Request" + } + ], + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "clone" + } + } + }, + "exposed": "Window", + "extends": "Object", + "implements": [ + "Body" + ] + }, + "HTMLTitleElement": { + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLTitleElement", + "properties": { + "property": { + "text": { + "specs": "html5", + "ce-reactions": 1, + "name": "text", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString" + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "title" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "MSFIDOSignatureAssertion": { + "specs": "webauthn", + "anonymous-methods": { + "method": [] + }, + "name": "MSFIDOSignatureAssertion", + "properties": { + "property": { + "signature": { + "specs": "webauthn", + "exposed": "Window", + "name": "signature", + "type": "MSFIDOSignature", + "type-original": "MSFIDOSignature", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "MSAssertion" + }, + "HTMLStyleElement": { + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLStyleElement", + "properties": { + "property": { + "disabled": { + "pure": 1, + "specs": "html5", + "name": "disabled", + "type-original": "boolean", + "deprecated": 1, + "interop": 1, + "exposed": "Window", + "type": "boolean" + }, + "media": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "media", + "content-attribute": "media", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "media_query", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "type": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "type", + "content-attribute": "type", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "mime_type", + "type": "DOMString", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "style" + } + ], + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "async", + "specs": "HTML5", + "name": "error", + "type": "Event" + }, + { + "dispatch": "async", + "specs": "HTML5", + "name": "load", + "follows": "readystatechange", + "type": "Event", + "skips-window": 1 + } + ] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement", + "implements": [ + "LinkStyle" + ] + }, + "RTCDtlsTransport": { + "specs": "ortc", + "constructor": { + "specs": "ortc", + "signature": [ + { + "param-min-required": 1, + "type": "RTCDtlsTransport", + "param": [ + { + "name": "transport", + "type": "RTCIceTransport", + "type-original": "RTCIceTransport" + } + ], + "type-original": "RTCDtlsTransport" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "RTCDtlsTransport", + "properties": { + "property": { + "transport": { + "specs": "ortc", + "exposed": "Window", + "name": "transport", + "type": "RTCIceTransport", + "type-original": "RTCIceTransport", + "read-only": 1 + }, + "ondtlsstatechange": { + "specs": "ortc", + "name": "ondtlsstatechange", + "type-original": "EventHandler?", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "dtlsstatechange" + }, + "onerror": { + "specs": "ortc", + "name": "onerror", + "type-original": "EventHandler?", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "error" + }, + "state": { + "specs": "ortc", + "exposed": "Window", + "name": "state", + "type": "RTCDtlsTransportState", + "type-original": "RTCDtlsTransportState", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "ORTC", + "name": "dtlsstatechange", + "type": "RTCDtlsTransportStateChangedEvent", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "ORTC", + "name": "error", + "type": "Event", + "skips-window": 1 + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "stop": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "ortc", + "exposed": "Window", + "name": "stop" + }, + "getRemoteParameters": { + "signature": [ + { + "nullable": 1, + "type": "RTCDtlsParameters", + "type-original": "RTCDtlsParameters?" + } + ], + "specs": "ortc", + "exposed": "Window", + "name": "getRemoteParameters" + }, + "getRemoteCertificates": { + "signature": [ + { + "subtype": { + "type": "ArrayBuffer" + }, + "type": "sequence", + "type-original": "sequence" + } + ], + "specs": "ortc", + "exposed": "Window", + "name": "getRemoteCertificates" + }, + "getLocalParameters": { + "signature": [ + { + "type": "RTCDtlsParameters", + "type-original": "RTCDtlsParameters" + } + ], + "specs": "ortc", + "exposed": "Window", + "name": "getLocalParameters" + }, + "start": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "remoteParameters", + "type": "RTCDtlsParameters", + "type-original": "RTCDtlsParameters" + } + ], + "type-original": "void" + } + ], + "specs": "ortc", + "exposed": "Window", + "name": "start" + } + } + }, + "extends": "RTCStatsProvider" + }, + "SVGTransform": { + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGTransform", + "properties": { + "property": { + "angle": { + "specs": "svg2", + "name": "angle", + "type-original": "float", + "exposed": "Window", + "type": "float", + "read-only": 1 + }, + "type": { + "specs": "svg2", + "name": "type", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short", + "read-only": 1 + }, + "matrix": { + "specs": "svg2", + "same-object": 1, + "name": "matrix", + "type-original": "SVGMatrix", + "exposed": "Window", + "type": "SVGMatrix", + "read-only": 1 + } + } + }, + "constants": { + "constant": { + "SVG_TRANSFORM_SKEWX": { + "specs": "svg2", + "value": "5", + "exposed": "Window", + "name": "SVG_TRANSFORM_SKEWX", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_TRANSFORM_SCALE": { + "specs": "svg2", + "value": "3", + "exposed": "Window", + "name": "SVG_TRANSFORM_SCALE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_TRANSFORM_UNKNOWN": { + "specs": "svg2", + "value": "0", + "exposed": "Window", + "name": "SVG_TRANSFORM_UNKNOWN", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_TRANSFORM_TRANSLATE": { + "specs": "svg2", + "value": "2", + "exposed": "Window", + "name": "SVG_TRANSFORM_TRANSLATE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_TRANSFORM_MATRIX": { + "specs": "svg2", + "value": "1", + "exposed": "Window", + "name": "SVG_TRANSFORM_MATRIX", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_TRANSFORM_ROTATE": { + "specs": "svg2", + "value": "4", + "exposed": "Window", + "name": "SVG_TRANSFORM_ROTATE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_TRANSFORM_SKEWY": { + "specs": "svg2", + "value": "6", + "exposed": "Window", + "name": "SVG_TRANSFORM_SKEWY", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "methods": { + "method": { + "setScale": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "sx", + "type": "float", + "type-original": "float" + }, + { + "name": "sy", + "type": "float", + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "setScale" + }, + "setTranslate": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "tx", + "type": "float", + "type-original": "float" + }, + { + "name": "ty", + "type": "float", + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "setTranslate" + }, + "setMatrix": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "matrix", + "type": "SVGMatrix", + "type-original": "SVGMatrix" + } + ], + "type-original": "void" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "setMatrix" + }, + "setSkewY": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "angle", + "type": "float", + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "setSkewY" + }, + "setRotate": { + "signature": [ + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "name": "angle", + "type": "float", + "type-original": "float" + }, + { + "name": "cx", + "type": "float", + "type-original": "float" + }, + { + "name": "cy", + "type": "float", + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "setRotate" + }, + "setSkewX": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "angle", + "type": "float", + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "setSkewX" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "WebGLShader": { + "constants": { + "constant": {} + }, + "specs": "webgl", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "WebGLShader", + "extends": "WebGLObject", + "properties": { + "property": {} + } + }, + "IIRFilterNode": { + "constants": { + "constant": {} + }, + "specs": "webaudio", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "getFrequencyResponse": { + "signature": [ + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "name": "frequencyHz", + "type": "Float32Array", + "type-original": "Float32Array" + }, + { + "name": "magResponse", + "type": "Float32Array", + "type-original": "Float32Array" + }, + { + "name": "phaseResponse", + "type": "Float32Array", + "type-original": "Float32Array" + } + ], + "type-original": "void" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "getFrequencyResponse" + } + } + }, + "name": "IIRFilterNode", + "extends": "AudioNode", + "properties": { + "property": {} + } + }, + "UIEvent": { + "specs": "uievents", + "constructor": { + "specs": "uievents", + "signature": [ + { + "param-min-required": 1, + "type": "UIEvent", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "UIEventInit", + "optional": 1, + "type-original": "UIEventInit" + } + ], + "type-original": "UIEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "UIEvent", + "properties": { + "property": { + "detail": { + "specs": "uievents", + "name": "detail", + "type-original": "long", + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "view": { + "specs": "uievents", + "name": "view", + "type-original": "Window", + "exposed": "Window", + "type": "Window", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "initUIEvent": { + "signature": [ + { + "param-min-required": 5, + "type": "void", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "canBubbleArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "cancelableArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "viewArg", + "type": "Window", + "type-original": "Window" + }, + { + "name": "detailArg", + "type": "long", + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "uievents", + "exposed": "Window", + "name": "initUIEvent" + } + } + }, + "exposed": "Window", + "extends": "Event" + }, + "WebGLBuffer": { + "constants": { + "constant": {} + }, + "specs": "webgl", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "WebGLBuffer", + "extends": "WebGLObject", + "properties": { + "property": {} + } + }, + "SVGPathSeg": { + "specs": "svg11", + "anonymous-methods": { + "method": [] + }, + "name": "SVGPathSeg", + "properties": { + "property": { + "pathSegType": { + "pure": 1, + "specs": "svg11", + "name": "pathSegType", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short", + "read-only": 1 + }, + "pathSegTypeAsLetter": { + "pure": 1, + "specs": "svg11", + "name": "pathSegTypeAsLetter", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + } + } + }, + "constants": { + "constant": { + "PATHSEG_CURVETO_CUBIC_SMOOTH_ABS": { + "specs": "svg11", + "value": "16", + "exposed": "Window", + "name": "PATHSEG_CURVETO_CUBIC_SMOOTH_ABS", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "PATHSEG_LINETO_VERTICAL_REL": { + "specs": "svg11", + "value": "15", + "exposed": "Window", + "name": "PATHSEG_LINETO_VERTICAL_REL", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "PATHSEG_MOVETO_REL": { + "specs": "svg11", + "value": "3", + "exposed": "Window", + "name": "PATHSEG_MOVETO_REL", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "PATHSEG_CURVETO_QUADRATIC_REL": { + "specs": "svg11", + "value": "9", + "exposed": "Window", + "name": "PATHSEG_CURVETO_QUADRATIC_REL", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "PATHSEG_CURVETO_CUBIC_ABS": { + "specs": "svg11", + "value": "6", + "exposed": "Window", + "name": "PATHSEG_CURVETO_CUBIC_ABS", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "PATHSEG_LINETO_HORIZONTAL_ABS": { + "specs": "svg11", + "value": "12", + "exposed": "Window", + "name": "PATHSEG_LINETO_HORIZONTAL_ABS", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "PATHSEG_CURVETO_QUADRATIC_ABS": { + "specs": "svg11", + "value": "8", + "exposed": "Window", + "name": "PATHSEG_CURVETO_QUADRATIC_ABS", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "PATHSEG_LINETO_ABS": { + "specs": "svg11", + "value": "4", + "exposed": "Window", + "name": "PATHSEG_LINETO_ABS", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "PATHSEG_CLOSEPATH": { + "specs": "svg11", + "value": "1", + "exposed": "Window", + "name": "PATHSEG_CLOSEPATH", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "PATHSEG_LINETO_HORIZONTAL_REL": { + "specs": "svg11", + "value": "13", + "exposed": "Window", + "name": "PATHSEG_LINETO_HORIZONTAL_REL", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "PATHSEG_CURVETO_CUBIC_SMOOTH_REL": { + "specs": "svg11", + "value": "17", + "exposed": "Window", + "name": "PATHSEG_CURVETO_CUBIC_SMOOTH_REL", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "PATHSEG_LINETO_REL": { + "specs": "svg11", + "value": "5", + "exposed": "Window", + "name": "PATHSEG_LINETO_REL", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS": { + "specs": "svg11", + "value": "18", + "exposed": "Window", + "name": "PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "PATHSEG_ARC_REL": { + "specs": "svg11", + "value": "11", + "exposed": "Window", + "name": "PATHSEG_ARC_REL", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "PATHSEG_CURVETO_CUBIC_REL": { + "specs": "svg11", + "value": "7", + "exposed": "Window", + "name": "PATHSEG_CURVETO_CUBIC_REL", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "PATHSEG_UNKNOWN": { + "specs": "svg11", + "value": "0", + "exposed": "Window", + "name": "PATHSEG_UNKNOWN", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "PATHSEG_LINETO_VERTICAL_ABS": { + "specs": "svg11", + "value": "14", + "exposed": "Window", + "name": "PATHSEG_LINETO_VERTICAL_ABS", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "PATHSEG_ARC_ABS": { + "specs": "svg11", + "value": "10", + "exposed": "Window", + "name": "PATHSEG_ARC_ABS", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "PATHSEG_MOVETO_ABS": { + "specs": "svg11", + "value": "2", + "exposed": "Window", + "name": "PATHSEG_MOVETO_ABS", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL": { + "specs": "svg11", + "value": "19", + "exposed": "Window", + "name": "PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "interop": 1, + "deprecated": 1, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "Object" + }, + "IDBIndex": { + "specs": "indexeddb", + "anonymous-methods": { + "method": [] + }, + "name": "IDBIndex", + "properties": { + "property": { + "unique": { + "specs": "indexeddb", + "exposed": "Window", + "name": "unique", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "name": { + "specs": "indexeddb", + "exposed": "Window", + "name": "name", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "keyPath": { + "specs": "indexeddb", + "exposed": "Window", + "name": "keyPath", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "objectStore": { + "specs": "indexeddb", + "exposed": "Window", + "name": "objectStore", + "type": "IDBObjectStore", + "type-original": "IDBObjectStore", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "count": { + "signature": [ + { + "param-min-required": 0, + "type": "IDBRequest", + "param": [ + { + "name": "key", + "type": "any", + "optional": 1, + "type-original": "any" + } + ], + "type-original": "IDBRequest" + } + ], + "specs": "indexeddb", + "exposed": "Window", + "name": "count" + }, + "getKey": { + "signature": [ + { + "param-min-required": 1, + "type": "IDBRequest", + "param": [ + { + "name": "key", + "type": "any", + "type-original": "any" + } + ], + "type-original": "IDBRequest" + } + ], + "specs": "indexeddb", + "exposed": "Window", + "name": "getKey" + }, + "get": { + "signature": [ + { + "param-min-required": 1, + "type": "IDBRequest", + "param": [ + { + "name": "key", + "type": "any", + "type-original": "any" + } + ], + "type-original": "IDBRequest" + } + ], + "specs": "indexeddb", + "exposed": "Window", + "name": "get" + }, + "openKeyCursor": { + "signature": [ + { + "param-min-required": 0, + "type": "IDBRequest", + "param": [ + { + "name": "range", + "default": "0", + "type": "any", + "optional": 1, + "type-original": "any" + }, + { + "name": "direction", + "default": "\"next\"", + "type": "IDBCursorDirection", + "optional": 1, + "type-original": "IDBCursorDirection" + } + ], + "type-original": "IDBRequest" + } + ], + "specs": "indexeddb", + "exposed": "Window", + "name": "openKeyCursor" + }, + "openCursor": { + "signature": [ + { + "param-min-required": 0, + "type": "IDBRequest", + "param": [ + { + "name": "range", + "default": "0", + "type": "any", + "optional": 1, + "type-original": "any" + }, + { + "name": "direction", + "default": "\"next\"", + "type": "IDBCursorDirection", + "optional": 1, + "type-original": "IDBCursorDirection" + } + ], + "type-original": "IDBRequest" + } + ], + "specs": "indexeddb", + "exposed": "Window", + "name": "openCursor" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "SVGNumber": { + "constants": { + "constant": {} + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "SVGNumber", + "extends": "Object", + "properties": { + "property": { + "value": { + "specs": "svg2", + "exposed": "Window", + "name": "value", + "type": "float", + "type-original": "float" + } + } + } + }, + "CSSSupportsRule": { + "constants": { + "constant": {} + }, + "specs": "css-conditional", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "CSSSupportsRule", + "extends": "CSSConditionRule", + "properties": { + "property": {} + } + }, + "ClipboardEvent": { + "constants": { + "constant": {} + }, + "specs": "clipboard-apis", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "ClipboardEvent", + "extends": "Event", + "properties": { + "property": { + "clipboardData": { + "specs": "clipboard-apis", + "exposed": "Window", + "name": "clipboardData", + "type": "DataTransfer", + "type-original": "DataTransfer", + "read-only": 1 + } + } + } + }, + "Text": { + "specs": "dom", + "constructor": { + "specs": "dom", + "signature": [ + { + "param-min-required": 0, + "type": "Text", + "param": [ + { + "name": "data", + "default": "\"\"", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + } + ], + "type-original": "Text" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "Text", + "properties": { + "property": { + "wholeText": { + "specs": "dom", + "exposed": "Window", + "name": "wholeText", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "UIEvents", + "name": "DOMNodeInserted", + "type": "MutationEvent", + "bubbles": 1 + }, + { + "dispatch": "sync", + "specs": "UIEvents", + "name": "DOMNodeRemoved", + "type": "MutationEvent", + "bubbles": 1 + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "splitText": { + "signature": [ + { + "new-object": 1, + "param-min-required": 1, + "type": "Text", + "param": [ + { + "name": "offset", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "Text" + } + ], + "specs": "dom", + "exposed": "Window", + "name": "splitText" + } + } + }, + "extends": "CharacterData" + }, + "SVGAnimatedRect": { + "constants": { + "constant": {} + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "SVGAnimatedRect", + "extends": "Object", + "properties": { + "property": { + "animVal": { + "specs": "svg2", + "same-object": 1, + "name": "animVal", + "type-original": "SVGRect", + "exposed": "Window", + "type": "SVGRect", + "read-only": 1 + }, + "baseVal": { + "specs": "svg2", + "same-object": 1, + "name": "baseVal", + "type-original": "SVGRect", + "exposed": "Window", + "type": "SVGRect", + "read-only": 1 + } + } + } + }, + "ByteLengthQueuingStrategy": { + "specs": "whatwg-streams", + "constructor": { + "specs": "whatwg-streams", + "signature": [ + { + "param-min-required": 1, + "type": "ByteLengthQueuingStrategy", + "param": [ + { + "name": "strategy", + "type": "QueuingStrategy", + "type-original": "QueuingStrategy" + } + ], + "type-original": "ByteLengthQueuingStrategy" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "ByteLengthQueuingStrategy", + "properties": { + "property": { + "highWaterMark": { + "specs": "whatwg-streams", + "exposed": "Window", + "name": "highWaterMark", + "type": "double", + "type-original": "double" + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "size": { + "signature": [ + { + "param-min-required": 0, + "type": "long", + "param": [ + { + "name": "chunk", + "type": "any", + "optional": 1, + "type-original": "any" + } + ], + "type-original": "long" + } + ], + "specs": "whatwg-streams", + "exposed": "Window", + "name": "size" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "CSSNamespaceRule": { + "constants": { + "constant": {} + }, + "specs": "cssom", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "CSSNamespaceRule", + "extends": "CSSRule", + "properties": { + "property": { + "namespaceURI": { + "specs": "cssom", + "exposed": "Window", + "name": "namespaceURI", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "prefix": { + "specs": "cssom", + "exposed": "Window", + "name": "prefix", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + } + } + } + }, + "DataCue": { + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "name": "DataCue", + "properties": { + "property": { + "data": { + "specs": "html5", + "exposed": "Window", + "name": "data", + "type": "ArrayBuffer", + "tags": "Captions", + "type-original": "ArrayBuffer" + } + } + }, + "tags": "Captions", + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "TextTrackCue" + }, + "HTMLUnknownElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "name": "HTMLUnknownElement", + "properties": { + "property": {} + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "isindex" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "nextid" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "MediaSource": { + "specs": "media-source", + "constructor": { + "specs": "media-source", + "signature": [ + { + "type": "MediaSource", + "type-original": "MediaSource" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "MediaSource", + "properties": { + "property": { + "sourceBuffers": { + "specs": "media-source", + "exposed": "Window", + "name": "sourceBuffers", + "type": "SourceBufferList", + "type-original": "SourceBufferList", + "read-only": 1 + }, + "readyState": { + "specs": "media-source", + "exposed": "Window", + "name": "readyState", + "type": "ReadyState", + "type-original": "ReadyState", + "read-only": 1 + }, + "duration": { + "specs": "media-source", + "exposed": "Window", + "name": "duration", + "type": "double", + "type-original": "double" + }, + "activeSourceBuffers": { + "specs": "media-source", + "exposed": "Window", + "name": "activeSourceBuffers", + "type": "SourceBufferList", + "type-original": "SourceBufferList", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "precedes": "sourceended sourceclose", + "dispatch": "sync", + "specs": "MSE", + "name": "sourceopen", + "type": "Event", + "skips-window": 1 + }, + { + "precedes": "sourceclose", + "dispatch": "sync", + "specs": "MSE", + "name": "sourceended", + "follows": "sourceopen", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "MSE", + "name": "sourceclose", + "follows": "sourceended sourceopen", + "type": "Event", + "skips-window": 1 + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "addSourceBuffer": { + "signature": [ + { + "param-min-required": 1, + "type": "SourceBuffer", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "SourceBuffer" + } + ], + "specs": "media-source", + "exposed": "Window", + "name": "addSourceBuffer" + }, + "endOfStream": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "error", + "type": "EndOfStreamError", + "optional": 1, + "type-original": "EndOfStreamError" + } + ], + "type-original": "void" + } + ], + "specs": "media-source", + "exposed": "Window", + "name": "endOfStream" + }, + "isTypeSupported": { + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "boolean" + } + ], + "specs": "media-source", + "exposed": "Window", + "name": "isTypeSupported", + "static": 1 + }, + "removeSourceBuffer": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "sourceBuffer", + "type": "SourceBuffer", + "type-original": "SourceBuffer" + } + ], + "type-original": "void" + } + ], + "specs": "media-source", + "exposed": "Window", + "name": "removeSourceBuffer" + } + } + }, + "extends": "EventTarget" + }, + "PositionError": { + "specs": "geolocation-api", + "anonymous-methods": { + "method": [] + }, + "name": "PositionError", + "properties": { + "property": { + "message": { + "specs": "geolocation-api", + "name": "message", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "stringifier": 1, + "read-only": 1 + }, + "code": { + "specs": "geolocation-api", + "name": "code", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short", + "read-only": 1 + } + } + }, + "constants": { + "constant": { + "POSITION_UNAVAILABLE": { + "specs": "geolocation-api", + "value": "2", + "exposed": "Window", + "name": "POSITION_UNAVAILABLE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "TIMEOUT": { + "specs": "geolocation-api", + "value": "3", + "exposed": "Window", + "name": "TIMEOUT", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "PERMISSION_DENIED": { + "specs": "geolocation-api", + "value": "1", + "exposed": "Window", + "name": "PERMISSION_DENIED", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "methods": { + "method": { + "toString": { + "signature": [ + { + "type": "DOMString", + "type-original": "DOMString" + } + ], + "specs": "geolocation-api", + "exposed": "Window", + "name": "toString", + "stringifier": 1 + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "HTMLTableCellElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLTableCellElement", + "properties": { + "property": { + "width": { + "specs": "html5", + "ce-reactions": 1, + "name": "width", + "type-original": "DOMString", + "content-attribute": "width", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "non_negative_integer", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "headers": { + "specs": "html5", + "ce-reactions": 1, + "name": "headers", + "content-attribute": "headers", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "space_separated_id_refs", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "align": { + "content-attribute-enum-values": "center justify left right", + "specs": "html5", + "ce-reactions": 1, + "name": "align", + "type-original": "DOMString", + "content-attribute": "align", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "cellIndex": { + "specs": "html5", + "exposed": "Window", + "name": "cellIndex", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "vAlign": { + "content-attribute-enum-values": "middle baseline bottom top", + "specs": "html5", + "ce-reactions": 1, + "name": "vAlign", + "type-original": "DOMString", + "content-attribute": "valign", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "colSpan": { + "specs": "html5", + "ce-reactions": 1, + "name": "colSpan", + "content-attribute": "colspan", + "type-original": "unsigned long", + "exposed": "Window", + "content-attribute-value-syntax": "1_or_greater_integer", + "type": "unsigned long", + "content-attribute-reflects": 1 + }, + "axis": { + "specs": "html5", + "ce-reactions": 1, + "name": "axis", + "type-original": "DOMString", + "content-attribute": "axis", + "deprecated": 1, + "interop": 1, + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "height": { + "specs": "html5", + "ce-reactions": 1, + "name": "height", + "type-original": "DOMString", + "content-attribute": "height", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "non_negative_integer", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "noWrap": { + "specs": "html5", + "ce-reactions": 1, + "name": "noWrap", + "type-original": "boolean", + "content-attribute": "nowrap", + "deprecated": 1, + "interop": 1, + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "abbr": { + "specs": "html5", + "ce-reactions": 1, + "name": "abbr", + "content-attribute": "abbr", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "bgColor": { + "specs": "html5", + "ce-reactions": 1, + "name": "bgColor", + "type-original": "DOMString", + "content-attribute": "bgcolor", + "deprecated": 1, + "interop": 1, + "treat-null-as": "EmptyString", + "content-attribute-value-syntax": "simple_color", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "rowSpan": { + "specs": "html5", + "ce-reactions": 1, + "name": "rowSpan", + "content-attribute": "rowspan", + "type-original": "unsigned long", + "exposed": "Window", + "content-attribute-value-syntax": "non_negative_integer", + "type": "unsigned long", + "content-attribute-reflects": 1 + }, + "ch": { + "specs": "html5", + "ce-reactions": 1, + "name": "ch", + "type-original": "DOMString", + "content-attribute": "char", + "deprecated": 1, + "interop": 1, + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "chOff": { + "specs": "html5", + "ce-reactions": 1, + "name": "chOff", + "type-original": "DOMString", + "content-attribute": "charoff", + "deprecated": 1, + "interop": 1, + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "scope": { + "content-attribute-enum-values": "row col rowgroup colgroup", + "specs": "html5", + "ce-reactions": 1, + "name": "scope", + "content-attribute": "scope", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "DOMString", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "td" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "th" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "VideoTrackList": { + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "name": "VideoTrackList", + "properties": { + "property": { + "onremovetrack": { + "specs": "html5", + "name": "onremovetrack", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "removetrack" + }, + "onchange": { + "specs": "html5", + "name": "onchange", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "change" + }, + "selectedIndex": { + "specs": "html5", + "exposed": "Window", + "name": "selectedIndex", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "length": { + "specs": "html5", + "exposed": "Window", + "name": "length", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + }, + "onaddtrack": { + "specs": "html5", + "name": "onaddtrack", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "addtrack" + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "async", + "specs": "HTML5", + "name": "addtrack", + "type": "TrackEvent", + "skips-window": 1 + }, + { + "dispatch": "async", + "specs": "HTML5", + "name": "removetrack", + "type": "TrackEvent", + "skips-window": 1 + }, + { + "dispatch": "async", + "specs": "HTML5", + "name": "change", + "type": "Event", + "skips-window": 1 + } + ] + }, + "methods": { + "method": { + "getTrackById": { + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "VideoTrack", + "param": [ + { + "name": "id", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "VideoTrack?" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "getTrackById" + }, + "item": { + "getter": 1, + "signature": [ + { + "param-min-required": 1, + "type": "VideoTrack", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "VideoTrack" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "item" + } + } + }, + "exposed": "Window", + "extends": "EventTarget" + }, + "SVGElementInstance": { + "constants": { + "constant": {} + }, + "specs": "svg11", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "SVGElementInstance", + "extends": "EventTarget", + "properties": { + "property": { + "previousSibling": { + "specs": "svg11", + "name": "previousSibling", + "type-original": "SVGElementInstance", + "exposed": "Window", + "type": "SVGElementInstance", + "read-only": 1 + }, + "parentNode": { + "specs": "svg11", + "name": "parentNode", + "type-original": "SVGElementInstance", + "exposed": "Window", + "type": "SVGElementInstance", + "read-only": 1 + }, + "lastChild": { + "specs": "svg11", + "name": "lastChild", + "type-original": "SVGElementInstance", + "exposed": "Window", + "type": "SVGElementInstance", + "read-only": 1 + }, + "nextSibling": { + "specs": "svg11", + "name": "nextSibling", + "type-original": "SVGElementInstance", + "exposed": "Window", + "type": "SVGElementInstance", + "read-only": 1 + }, + "childNodes": { + "specs": "svg11", + "name": "childNodes", + "type-original": "SVGElementInstanceList", + "exposed": "Window", + "type": "SVGElementInstanceList", + "read-only": 1 + }, + "correspondingUseElement": { + "specs": "svg11", + "name": "correspondingUseElement", + "type-original": "SVGUseElement", + "exposed": "Window", + "type": "SVGUseElement", + "read-only": 1 + }, + "correspondingElement": { + "specs": "svg11", + "name": "correspondingElement", + "type-original": "SVGElement", + "exposed": "Window", + "type": "SVGElement", + "read-only": 1 + }, + "firstChild": { + "specs": "svg11", + "name": "firstChild", + "type-original": "SVGElementInstance", + "exposed": "Window", + "type": "SVGElementInstance", + "read-only": 1 + } + } + } + }, + "MediaKeyMessageEvent": { + "specs": "encrypted-media", + "constructor": { + "specs": "encrypted-media", + "signature": [ + { + "param-min-required": 1, + "type": "MediaKeyMessageEvent", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "MediaKeyMessageEventInit", + "optional": 1, + "type-original": "MediaKeyMessageEventInit" + } + ], + "type-original": "MediaKeyMessageEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "MediaKeyMessageEvent", + "properties": { + "property": { + "messageType": { + "specs": "encrypted-media", + "exposed": "Window", + "name": "messageType", + "type": "MediaKeyMessageType", + "type-original": "MediaKeyMessageType", + "read-only": 1 + }, + "message": { + "specs": "encrypted-media", + "exposed": "Window", + "name": "message", + "type": "ArrayBuffer", + "type-original": "ArrayBuffer", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Event" + }, + "GamepadButton": { + "constants": { + "constant": {} + }, + "specs": "gamepad", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "GamepadButton", + "extends": "Object", + "properties": { + "property": { + "pressed": { + "specs": "gamepad", + "exposed": "Window", + "name": "pressed", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "value": { + "specs": "gamepad", + "exposed": "Window", + "name": "value", + "type": "double", + "type-original": "double", + "read-only": 1 + }, + "touched": { + "specs": "gamepad", + "exposed": "Window", + "name": "touched", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + } + } + } + }, + "StyleSheetList": { + "specs": "cssom", + "anonymous-methods": { + "method": [] + }, + "legacy-array-class": 1, + "name": "StyleSheetList", + "properties": { + "property": { + "length": { + "specs": "cssom", + "name": "length", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "item": { + "specs": "cssom", + "name": "item", + "getter": 1, + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "StyleSheet", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "StyleSheet?" + } + ], + "exposed": "Window" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "CustomEvent": { + "specs": "dom4", + "constructor": { + "specs": "dom4", + "signature": [ + { + "param-min-required": 1, + "type": "CustomEvent", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "CustomEventInit", + "optional": 1, + "type-original": "CustomEventInit" + } + ], + "type-original": "CustomEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "CustomEvent", + "properties": { + "property": { + "detail": { + "specs": "dom4", + "name": "detail", + "store-in-slot": "instance", + "type-original": "object", + "exposed": "Window", + "type": "object", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "initCustomEvent": { + "signature": [ + { + "param-min-required": 4, + "type": "void", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "canBubbleArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "cancelableArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "detailArg", + "type": "object", + "type-original": "object" + } + ], + "type-original": "void" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "initCustomEvent" + } + } + }, + "exposed": "Window", + "extends": "Event" + }, + "ChannelSplitterNode": { + "constants": { + "constant": {} + }, + "specs": "webaudio", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "ChannelSplitterNode", + "extends": "AudioNode", + "properties": { + "property": {} + } + }, + "HTMLTextAreaElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLTextAreaElement", + "properties": { + "property": { + "validationMessage": { + "specs": "html5", + "exposed": "Window", + "name": "validationMessage", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "disabled": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "disabled", + "content-attribute": "disabled", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "form": { + "pure": 1, + "specs": "html5", + "name": "form", + "type-original": "HTMLFormElement?", + "nullable": 1, + "exposed": "Window", + "type": "HTMLFormElement", + "read-only": 1 + }, + "selectionStart": { + "specs": "html5", + "exposed": "Window", + "name": "selectionStart", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "willValidate": { + "specs": "html5", + "exposed": "Window", + "name": "willValidate", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "rows": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "rows", + "content-attribute": "rows", + "type-original": "unsigned long", + "exposed": "Window", + "content-attribute-value-syntax": "1_or_greater_integer", + "content-attribute-reflects": 1, + "type": "unsigned long" + }, + "readOnly": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "readOnly", + "content-attribute": "readonly", + "type-original": "boolean", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "boolean", + "content-attribute-boolean": 1 + }, + "cols": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "cols", + "content-attribute": "cols", + "type-original": "unsigned long", + "exposed": "Window", + "content-attribute-value-syntax": "1_or_greater_integer", + "content-attribute-reflects": 1, + "type": "unsigned long" + }, + "autofocus": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "autofocus", + "content-attribute": "autofocus", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "required": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "required", + "content-attribute": "required", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "selectionEnd": { + "specs": "html5", + "exposed": "Window", + "name": "selectionEnd", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "wrap": { + "content-attribute-enum-values": "soft hard off", + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "wrap", + "content-attribute": "wrap", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "placeholder": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "placeholder", + "content-attribute": "placeholder", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "value": { + "specs": "html5", + "ce-reactions": 1, + "name": "value", + "type-original": "DOMString", + "treat-null-as": "EmptyString", + "exposed": "Window", + "type": "DOMString" + }, + "name": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "name", + "content-attribute": "name", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "validity": { + "specs": "html5", + "exposed": "Window", + "name": "validity", + "type": "ValidityState", + "type-original": "ValidityState", + "read-only": 1 + }, + "maxLength": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "maxLength", + "content-attribute": "maxlength", + "type-original": "long", + "exposed": "Window", + "content-attribute-value-syntax": "non_negative_integer", + "type": "long", + "content-attribute-reflects": 1 + }, + "type": { + "specs": "html5", + "name": "type", + "constant": 1, + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "defaultValue": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "defaultValue", + "content-attribute": "value", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString" + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "textarea" + } + ], + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "HTML5", + "name": "change", + "type": "Event", + "bubbles": 1 + }, + { + "dispatch": "async", + "specs": "HTML5", + "name": "input", + "type": "Event", + "bubbles": 1 + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "invalid", + "type": "Event", + "cancelable": 1 + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "checkValidity": { + "signature": [ + { + "type": "boolean", + "type-original": "boolean" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "checkValidity" + }, + "setSelectionRange": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "start", + "type": "unsigned long", + "type-original": "unsigned long" + }, + { + "name": "end", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "setSelectionRange" + }, + "setCustomValidity": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "error", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "setCustomValidity" + }, + "select": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "select" + } + } + }, + "extends": "HTMLElement" + }, + "RTCIceTransport": { + "specs": "ortc", + "constructor": { + "specs": "ortc", + "signature": [ + { + "type": "RTCIceTransport", + "type-original": "RTCIceTransport" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "RTCIceTransport", + "properties": { + "property": { + "component": { + "specs": "ortc", + "exposed": "Window", + "name": "component", + "type": "RTCIceComponent", + "type-original": "RTCIceComponent", + "read-only": 1 + }, + "iceGatherer": { + "specs": "ortc", + "name": "iceGatherer", + "type-original": "RTCIceGatherer?", + "nullable": 1, + "exposed": "Window", + "type": "RTCIceGatherer", + "read-only": 1 + }, + "oncandidatepairchange": { + "specs": "ortc", + "name": "oncandidatepairchange", + "type-original": "EventHandler?", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "candidatepairchange" + }, + "onicestatechange": { + "specs": "ortc", + "name": "onicestatechange", + "type-original": "EventHandler?", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "icestatechange" + }, + "role": { + "specs": "ortc", + "exposed": "Window", + "name": "role", + "type": "RTCIceRole", + "type-original": "RTCIceRole", + "read-only": 1 + }, + "state": { + "specs": "ortc", + "exposed": "Window", + "name": "state", + "type": "RTCIceTransportState", + "type-original": "RTCIceTransportState", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "ORTC", + "name": "icestatechange", + "type": "RTCIceTransportStateChangedEvent", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "ORTC", + "name": "candidatepairchange", + "type": "RTCIceCandidatePairChangedEvent", + "skips-window": 1 + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "createAssociatedTransport": { + "signature": [ + { + "type": "RTCIceTransport", + "type-original": "RTCIceTransport" + } + ], + "specs": "ortc", + "exposed": "Window", + "name": "createAssociatedTransport" + }, + "stop": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "ortc", + "exposed": "Window", + "name": "stop" + }, + "setRemoteCandidates": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "subtype": { + "type": "RTCIceCandidateDictionary" + }, + "name": "remoteCandidates", + "type": "sequence", + "type-original": "sequence" + } + ], + "type-original": "void" + } + ], + "specs": "ortc", + "exposed": "Window", + "name": "setRemoteCandidates" + }, + "getNominatedCandidatePair": { + "signature": [ + { + "nullable": 1, + "type": "RTCIceCandidatePair", + "type-original": "RTCIceCandidatePair?" + } + ], + "specs": "ortc", + "exposed": "Window", + "name": "getNominatedCandidatePair" + }, + "getRemoteParameters": { + "signature": [ + { + "nullable": 1, + "type": "RTCIceParameters", + "type-original": "RTCIceParameters?" + } + ], + "specs": "ortc", + "exposed": "Window", + "name": "getRemoteParameters" + }, + "getRemoteCandidates": { + "signature": [ + { + "subtype": { + "type": "RTCIceCandidateDictionary" + }, + "type": "sequence", + "type-original": "sequence" + } + ], + "specs": "ortc", + "exposed": "Window", + "name": "getRemoteCandidates" + }, + "start": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "gatherer", + "type": "RTCIceGatherer", + "type-original": "RTCIceGatherer" + }, + { + "name": "remoteParameters", + "type": "RTCIceParameters", + "type-original": "RTCIceParameters" + }, + { + "name": "role", + "type": "RTCIceRole", + "optional": 1, + "type-original": "RTCIceRole" + } + ], + "type-original": "void" + } + ], + "specs": "ortc", + "exposed": "Window", + "name": "start" + }, + "addRemoteCandidate": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "remoteCandidate", + "type": [ + { + "type": "RTCIceCandidateDictionary" + }, + { + "type": "RTCIceCandidateComplete" + } + ], + "type-original": "RTCIceGatherCandidate" + } + ], + "type-original": "void" + } + ], + "specs": "ortc", + "exposed": "Window", + "name": "addRemoteCandidate" + } + } + }, + "extends": "RTCStatsProvider" + }, + "SVGRect": { + "constants": { + "constant": {} + }, + "specs": "svg11", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "SVGRect", + "extends": "Object", + "properties": { + "property": { + "width": { + "specs": "svg11", + "exposed": "Window", + "name": "width", + "type": "float", + "type-original": "float" + }, + "y": { + "specs": "svg11", + "exposed": "Window", + "name": "y", + "type": "float", + "type-original": "float" + }, + "x": { + "specs": "svg11", + "exposed": "Window", + "name": "x", + "type": "float", + "type-original": "float" + }, + "height": { + "specs": "svg11", + "exposed": "Window", + "name": "height", + "type": "float", + "type-original": "float" + } + } + } + }, + "RTCPeerConnection": { + "specs": "webrtc", + "constructor": { + "specs": "webrtc", + "signature": [ + { + "param-min-required": 1, + "type": "RTCPeerConnection", + "param": [ + { + "name": "configuration", + "type": "RTCConfiguration", + "type-original": "RTCConfiguration" + } + ], + "type-original": "RTCPeerConnection" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "RTCPeerConnection", + "properties": { + "property": { + "iceGatheringState": { + "specs": "webrtc", + "exposed": "Window", + "name": "iceGatheringState", + "type": "RTCIceGatheringState", + "type-original": "RTCIceGatheringState", + "read-only": 1 + }, + "onremovestream": { + "specs": "webrtc", + "name": "onremovestream", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "removestream" + }, + "onaddstream": { + "specs": "webrtc", + "name": "onaddstream", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "addstream" + }, + "remoteDescription": { + "specs": "webrtc", + "name": "remoteDescription", + "type-original": "RTCSessionDescription?", + "nullable": 1, + "exposed": "Window", + "type": "RTCSessionDescription", + "read-only": 1 + }, + "oniceconnectionstatechange": { + "specs": "webrtc", + "name": "oniceconnectionstatechange", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "iceconnectionstatechange" + }, + "onicegatheringstatechange": { + "specs": "webrtc", + "name": "onicegatheringstatechange", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "icegatheringstatechange" + }, + "onicecandidate": { + "specs": "webrtc", + "name": "onicecandidate", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "icecandidate" + }, + "iceConnectionState": { + "specs": "webrtc", + "exposed": "Window", + "name": "iceConnectionState", + "type": "RTCIceConnectionState", + "type-original": "RTCIceConnectionState", + "read-only": 1 + }, + "canTrickleIceCandidates": { + "specs": "webrtc", + "name": "canTrickleIceCandidates", + "type-original": "boolean?", + "nullable": 1, + "exposed": "Window", + "type": "boolean", + "read-only": 1 + }, + "localDescription": { + "specs": "webrtc", + "name": "localDescription", + "type-original": "RTCSessionDescription?", + "nullable": 1, + "exposed": "Window", + "type": "RTCSessionDescription", + "read-only": 1 + }, + "signalingState": { + "specs": "webrtc", + "exposed": "Window", + "name": "signalingState", + "type": "RTCSignalingState", + "type-original": "RTCSignalingState", + "read-only": 1 + }, + "onsignalingstatechange": { + "specs": "webrtc", + "name": "onsignalingstatechange", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "signalingstatechange" + }, + "onnegotiationneeded": { + "specs": "webrtc", + "name": "onnegotiationneeded", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "negotiationneeded" + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "WebRTC", + "name": "negotiationneeded", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "WebRTC", + "name": "icecandidate", + "type": "RTCPeerConnectionIceEvent", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "WebRTC", + "name": "signalingstatechange", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "WebRTC", + "name": "addstream", + "type": "MediaStreamEvent", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "WebRTC", + "name": "removestream", + "type": "MediaStreamEvent", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "WebRTC", + "name": "iceconnectionstatechange", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "WebRTC", + "name": "icegatheringstatechange", + "type": "Event", + "skips-window": 1 + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "getStats": { + "signature": [ + { + "subtype": { + "type": "RTCStatsReport" + }, + "param-min-required": 1, + "type": "Promise", + "param": [ + { + "nullable": 1, + "name": "selector", + "type": "MediaStreamTrack", + "type-original": "MediaStreamTrack?" + }, + { + "name": "successCallback", + "type": "RTCStatsCallback", + "optional": 1, + "type-original": "RTCStatsCallback" + }, + { + "name": "failureCallback", + "type": "RTCPeerConnectionErrorCallback", + "optional": 1, + "type-original": "RTCPeerConnectionErrorCallback" + } + ], + "type-original": "Promise" + } + ], + "specs": "webrtc", + "exposed": "Window", + "name": "getStats" + }, + "addStream": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "stream", + "type": "MediaStream", + "type-original": "MediaStream" + } + ], + "type-original": "void" + } + ], + "specs": "webrtc", + "exposed": "Window", + "name": "addStream" + }, + "removeStream": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "stream", + "type": "MediaStream", + "type-original": "MediaStream" + } + ], + "type-original": "void" + } + ], + "specs": "webrtc", + "exposed": "Window", + "name": "removeStream" + }, + "createOffer": { + "signature": [ + { + "subtype": { + "type": "RTCSessionDescription" + }, + "param-min-required": 0, + "type": "Promise", + "param": [ + { + "name": "successCallback", + "type": "RTCSessionDescriptionCallback", + "optional": 1, + "type-original": "RTCSessionDescriptionCallback" + }, + { + "name": "failureCallback", + "type": "RTCPeerConnectionErrorCallback", + "optional": 1, + "type-original": "RTCPeerConnectionErrorCallback" + }, + { + "name": "options", + "type": "RTCOfferOptions", + "optional": 1, + "type-original": "RTCOfferOptions" + } + ], + "type-original": "Promise" + } + ], + "specs": "webrtc", + "exposed": "Window", + "name": "createOffer" + }, + "setLocalDescription": { + "signature": [ + { + "subtype": { + "type": "void" + }, + "param-min-required": 1, + "type": "Promise", + "param": [ + { + "name": "description", + "type": "RTCSessionDescription", + "type-original": "RTCSessionDescription" + }, + { + "name": "successCallback", + "type": "VoidFunction", + "optional": 1, + "type-original": "VoidFunction" + }, + { + "name": "failureCallback", + "type": "RTCPeerConnectionErrorCallback", + "optional": 1, + "type-original": "RTCPeerConnectionErrorCallback" + } + ], + "type-original": "Promise" + } + ], + "specs": "webrtc", + "exposed": "Window", + "name": "setLocalDescription" + }, + "getLocalStreams": { + "signature": [ + { + "subtype": { + "type": "MediaStream" + }, + "type": "sequence", + "type-original": "sequence" + } + ], + "specs": "webrtc", + "exposed": "Window", + "name": "getLocalStreams" + }, + "close": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "webrtc", + "exposed": "Window", + "name": "close" + }, + "setRemoteDescription": { + "signature": [ + { + "subtype": { + "type": "void" + }, + "param-min-required": 1, + "type": "Promise", + "param": [ + { + "name": "description", + "type": "RTCSessionDescription", + "type-original": "RTCSessionDescription" + }, + { + "name": "successCallback", + "type": "VoidFunction", + "optional": 1, + "type-original": "VoidFunction" + }, + { + "name": "failureCallback", + "type": "RTCPeerConnectionErrorCallback", + "optional": 1, + "type-original": "RTCPeerConnectionErrorCallback" + } + ], + "type-original": "Promise" + } + ], + "specs": "webrtc", + "exposed": "Window", + "name": "setRemoteDescription" + }, + "getConfiguration": { + "signature": [ + { + "type": "RTCConfiguration", + "type-original": "RTCConfiguration" + } + ], + "specs": "webrtc", + "exposed": "Window", + "name": "getConfiguration" + }, + "createAnswer": { + "signature": [ + { + "subtype": { + "type": "RTCSessionDescription" + }, + "param-min-required": 0, + "type": "Promise", + "param": [ + { + "name": "successCallback", + "type": "RTCSessionDescriptionCallback", + "optional": 1, + "type-original": "RTCSessionDescriptionCallback" + }, + { + "name": "failureCallback", + "type": "RTCPeerConnectionErrorCallback", + "optional": 1, + "type-original": "RTCPeerConnectionErrorCallback" + } + ], + "type-original": "Promise" + } + ], + "specs": "webrtc", + "exposed": "Window", + "name": "createAnswer" + }, + "addIceCandidate": { + "signature": [ + { + "subtype": { + "type": "void" + }, + "param-min-required": 1, + "type": "Promise", + "param": [ + { + "name": "candidate", + "type": "RTCIceCandidate", + "type-original": "RTCIceCandidate" + }, + { + "name": "successCallback", + "type": "VoidFunction", + "optional": 1, + "type-original": "VoidFunction" + }, + { + "name": "failureCallback", + "type": "RTCPeerConnectionErrorCallback", + "optional": 1, + "type-original": "RTCPeerConnectionErrorCallback" + } + ], + "type-original": "Promise" + } + ], + "specs": "webrtc", + "exposed": "Window", + "name": "addIceCandidate" + }, + "getStreamById": { + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "MediaStream", + "param": [ + { + "name": "streamId", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "MediaStream?" + } + ], + "specs": "webrtc", + "exposed": "Window", + "name": "getStreamById" + }, + "getRemoteStreams": { + "signature": [ + { + "subtype": { + "type": "MediaStream" + }, + "type": "sequence", + "type-original": "sequence" + } + ], + "specs": "webrtc", + "exposed": "Window", + "name": "getRemoteStreams" + } + } + }, + "extends": "EventTarget" + }, + "History": { + "constants": { + "constant": {} + }, + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "replaceState": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "data", + "type": "any", + "type-original": "any" + }, + { + "name": "title", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + }, + { + "nullable": 1, + "name": "url", + "default": "null", + "type": "USVString", + "optional": 1, + "type-original": "USVString?" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "replaceState" + }, + "forward": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "distance", + "type": "any", + "optional": 1, + "type-original": "any" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "forward" + }, + "back": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "distance", + "type": "any", + "optional": 1, + "type-original": "any" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "back" + }, + "pushState": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "data", + "type": "any", + "type-original": "any" + }, + { + "name": "title", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + }, + { + "nullable": 1, + "name": "url", + "default": "null", + "type": "USVString", + "optional": 1, + "type-original": "USVString?" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "pushState" + }, + "go": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "delta", + "default": "0", + "type": "any", + "optional": 1, + "type-original": "any" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "go" + } + } + }, + "name": "History", + "extends": "Object", + "properties": { + "property": { + "length": { + "specs": "html5", + "name": "length", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + }, + "state": { + "specs": "html5", + "exposed": "Window", + "name": "state", + "type": "any", + "type-original": "any", + "read-only": 1 + } + } + } + }, + "TimeRanges": { + "constants": { + "constant": {} + }, + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "end": { + "signature": [ + { + "param-min-required": 1, + "type": "double", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "double" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "end" + }, + "start": { + "signature": [ + { + "param-min-required": 1, + "type": "double", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "double" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "start" + } + } + }, + "name": "TimeRanges", + "extends": "Object", + "properties": { + "property": { + "length": { + "specs": "html5", + "name": "length", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + } + } + } + }, + "SVGPathSegCurvetoQuadraticAbs": { + "specs": "svg11", + "anonymous-methods": { + "method": [] + }, + "name": "SVGPathSegCurvetoQuadraticAbs", + "properties": { + "property": { + "y1": { + "specs": "svg11", + "exposed": "Window", + "name": "y1", + "type": "float", + "type-original": "float" + }, + "y": { + "specs": "svg11", + "exposed": "Window", + "name": "y", + "type": "float", + "type-original": "float" + }, + "x": { + "specs": "svg11", + "exposed": "Window", + "name": "x", + "type": "float", + "type-original": "float" + }, + "x1": { + "specs": "svg11", + "exposed": "Window", + "name": "x1", + "type": "float", + "type-original": "float" + } + } + }, + "constants": { + "constant": {} + }, + "interop": 1, + "deprecated": 1, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGPathSeg" + }, + "webkitRTCPeerConnection": { + "specs": "none", + "constructor": { + "specs": "none", + "signature": [ + { + "param-min-required": 1, + "type": "webkitRTCPeerConnection", + "param": [ + { + "name": "configuration", + "type": "RTCConfiguration", + "type-original": "RTCConfiguration" + } + ], + "type-original": "webkitRTCPeerConnection" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "webkitRTCPeerConnection", + "properties": { + "property": {} + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "RTCPeerConnection" + }, + "ServiceWorkerRegistration": { + "specs": "service-workers", + "anonymous-methods": { + "method": [] + }, + "name": "ServiceWorkerRegistration", + "properties": { + "property": { + "onupdatefound": { + "specs": "service-workers", + "name": "onupdatefound", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "updatefound" + }, + "waiting": { + "specs": "service-workers", + "name": "waiting", + "type-original": "ServiceWorker?", + "nullable": 1, + "exposed": "Window", + "type": "ServiceWorker", + "read-only": 1 + }, + "sync": { + "specs": "web-background-sync", + "name": "sync", + "type-original": "SyncManager", + "exposed": "Window", + "type": "SyncManager", + "read-only": 1 + }, + "active": { + "specs": "service-workers", + "name": "active", + "type-original": "ServiceWorker?", + "nullable": 1, + "exposed": "Window", + "type": "ServiceWorker", + "read-only": 1 + }, + "installing": { + "specs": "service-workers", + "name": "installing", + "type-original": "ServiceWorker?", + "nullable": 1, + "exposed": "Window", + "type": "ServiceWorker", + "read-only": 1 + }, + "pushManager": { + "specs": "push-api", + "exposed": "Window", + "name": "pushManager", + "type": "PushManager", + "type-original": "PushManager", + "read-only": 1 + }, + "scope": { + "specs": "service-workers", + "exposed": "Window", + "name": "scope", + "type": "USVString", + "type-original": "USVString", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "async", + "specs": "ServiceWorker", + "name": "updatefound", + "type": "Event", + "skips-window": 1 + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "unregister": { + "signature": [ + { + "new-object": 1, + "subtype": { + "type": "boolean" + }, + "type": "Promise", + "type-original": "Promise" + } + ], + "specs": "service-workers", + "exposed": "Window", + "name": "unregister" + }, + "getNotifications": { + "signature": [ + { + "subtype": { + "subtype": { + "type": "Notification" + }, + "type": "sequence" + }, + "param-min-required": 0, + "type": "Promise", + "param": [ + { + "name": "filter", + "type": "GetNotificationOptions", + "optional": 1, + "type-original": "GetNotificationOptions" + } + ], + "type-original": "Promise>" + } + ], + "specs": "service-workers", + "exposed": "Window", + "name": "getNotifications" + }, + "showNotification": { + "signature": [ + { + "subtype": { + "type": "void" + }, + "param-min-required": 1, + "type": "Promise", + "param": [ + { + "name": "title", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "options", + "type": "NotificationOptions", + "optional": 1, + "type-original": "NotificationOptions" + } + ], + "type-original": "Promise" + } + ], + "specs": "notifications", + "exposed": "Window", + "name": "showNotification" + }, + "update": { + "signature": [ + { + "new-object": 1, + "subtype": { + "type": "void" + }, + "type": "Promise", + "type-original": "Promise" + } + ], + "specs": "service-workers", + "exposed": "Window", + "name": "update" + } + } + }, + "extends": "EventTarget" + }, + "WebGLUniformLocation": { + "constants": { + "constant": {} + }, + "specs": "webgl", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "WebGLUniformLocation", + "extends": "Object", + "properties": { + "property": {} + } + }, + "HTMLModElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLModElement", + "properties": { + "property": { + "dateTime": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "dateTime", + "content-attribute": "datetime", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "date_time", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "cite": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "cite", + "content-attribute": "cite", + "type-original": "USVString", + "exposed": "Window", + "content-attribute-value-syntax": "url", + "type": "USVString", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "ins" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "del" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "WEBGL_compressed_texture_s3tc": { + "specs": "webgl", + "anonymous-methods": { + "method": [] + }, + "name": "WEBGL_compressed_texture_s3tc", + "properties": { + "property": {} + }, + "constants": { + "constant": { + "COMPRESSED_RGBA_S3TC_DXT1_EXT": { + "specs": "webgl", + "value": "0x83F1", + "exposed": "Window", + "name": "COMPRESSED_RGBA_S3TC_DXT1_EXT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "COMPRESSED_RGBA_S3TC_DXT5_EXT": { + "specs": "webgl", + "value": "0x83F3", + "exposed": "Window", + "name": "COMPRESSED_RGBA_S3TC_DXT5_EXT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "COMPRESSED_RGBA_S3TC_DXT3_EXT": { + "specs": "webgl", + "value": "0x83F2", + "exposed": "Window", + "name": "COMPRESSED_RGBA_S3TC_DXT3_EXT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "COMPRESSED_RGB_S3TC_DXT1_EXT": { + "specs": "webgl", + "value": "0x83F0", + "exposed": "Window", + "name": "COMPRESSED_RGB_S3TC_DXT1_EXT", + "type": "unsigned long", + "type-original": "GLenum" + } + } + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "SVGUseElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "clip-path" + }, + { + "enum-values": "nonzero evenodd inherit", + "value-syntax": "enum", + "name": "clip-rule" + }, + { + "enum-values": "auto default none context-menu help pointer progress wait cell crosshair text vertical-text alias copy move no-drop not-allowed e-resize n-resize ne-resize nw-resize s-resize se-resize sw-resize w-resize ew-resize ns-resize nesw-resize nwse-resize col-resize row-resize all-scroll zoom-in zoom-out inherit", + "value-syntax": "comma_separated_css_url_with_optional_x_y_offset_followed_by_enum", + "name": "cursor" + }, + { + "enum-values": "inline block inline-block list-item table inline-table table-header-group table-footer-group table-row-group table-column-group table-row table-column table-cell table-caption run-in ruby ruby-base ruby-text ruby-base-container flex inline-flex -ms-grid -ms-inline-grid none inherit initial", + "value-syntax": "enum", + "name": "display" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "filter" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "mask" + }, + { + "enum-values": "inherit initial", + "value-syntax": "0_to_1_floating_point_number", + "name": "opacity" + }, + { + "enum-values": "auto none visiblePainted visibleFill visibleStroke visible painted fill stroke all inherit initial", + "value-syntax": "enum", + "name": "pointer-events" + }, + { + "enum-values": "visible hidden collapse inherit initial", + "value-syntax": "enum", + "name": "visibility" + } + ] + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGUseElement", + "properties": { + "property": { + "width": { + "specs": "svg2", + "name": "width", + "constant": 1, + "content-attribute": "width", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "type": "SVGAnimatedLength", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "y": { + "specs": "svg2", + "name": "y", + "constant": 1, + "content-attribute": "y", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "type": "SVGAnimatedLength", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "animatedInstanceRoot": { + "specs": "svg2", + "name": "animatedInstanceRoot", + "constant": 1, + "type-original": "SVGElementInstance?", + "nullable": 1, + "exposed": "Window", + "type": "SVGElementInstance", + "read-only": 1 + }, + "instanceRoot": { + "specs": "svg2", + "name": "instanceRoot", + "constant": 1, + "type-original": "SVGElementInstance?", + "nullable": 1, + "exposed": "Window", + "type": "SVGElementInstance", + "read-only": 1 + }, + "x": { + "specs": "svg2", + "name": "x", + "constant": 1, + "content-attribute": "x", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "type": "SVGAnimatedLength", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "height": { + "specs": "svg2", + "name": "height", + "constant": 1, + "content-attribute": "height", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "type": "SVGAnimatedLength", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "svg2", + "namespace": "SVG", + "name": "use" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGGraphicsElement", + "implements": [ + "SVGURIReference" + ] + }, + "Event": { + "dataslot": [ + { + "name": "data_1" + }, + { + "name": "data_2" + }, + { + "name": "data_3" + }, + { + "name": "data_4" + } + ], + "specs": "dom4", + "constructor": { + "specs": "dom4", + "signature": [ + { + "param-min-required": 1, + "type": "Event", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "EventInit", + "optional": 1, + "type-original": "EventInit" + } + ], + "type-original": "Event" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "Event", + "properties": { + "property": { + "returnValue": { + "interop": 1, + "extension": 1, + "specs": "none", + "exposed": "Window", + "name": "returnValue", + "type": "boolean", + "type-original": "boolean" + }, + "timeStamp": { + "specs": "dom4", + "exposed": "Window", + "name": "timeStamp", + "type": "double", + "type-original": "DOMHighResTimeStamp", + "read-only": 1 + }, + "isTrusted": { + "pure": 1, + "specs": "dom4", + "name": "isTrusted", + "type-original": "boolean", + "unforgeable": 1, + "exposed": "Window", + "type": "boolean", + "read-only": 1 + }, + "defaultPrevented": { + "pure": 1, + "specs": "dom4", + "name": "defaultPrevented", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "read-only": 1 + }, + "currentTarget": { + "pure": 1, + "specs": "dom4", + "name": "currentTarget", + "type-original": "EventTarget?", + "nullable": 1, + "exposed": "Window", + "type": "EventTarget", + "read-only": 1 + }, + "cancelBubble": { + "specs": "dom4", + "exposed": "Window", + "name": "cancelBubble", + "type": "boolean", + "type-original": "boolean" + }, + "target": { + "pure": 1, + "specs": "dom4", + "name": "target", + "type-original": "EventTarget?", + "nullable": 1, + "exposed": "Window", + "type": "EventTarget", + "read-only": 1 + }, + "eventPhase": { + "pure": 1, + "specs": "dom4", + "name": "eventPhase", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short", + "read-only": 1 + }, + "srcElement": { + "extension": 1, + "specs": "none", + "name": "srcElement", + "type-original": "Element?", + "interop": 1, + "nullable": 1, + "exposed": "Window", + "type": "Element", + "read-only": 1 + }, + "type": { + "pure": 1, + "specs": "dom4", + "name": "type", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "cancelable": { + "pure": 1, + "specs": "dom4", + "name": "cancelable", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "read-only": 1 + }, + "bubbles": { + "pure": 1, + "specs": "dom4", + "name": "bubbles", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "read-only": 1 + } + } + }, + "constants": { + "constant": { + "AT_TARGET": { + "specs": "dom4", + "value": "2", + "exposed": "Window", + "name": "AT_TARGET", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "CAPTURING_PHASE": { + "specs": "dom4", + "value": "1", + "exposed": "Window", + "name": "CAPTURING_PHASE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "NONE": { + "specs": "dom4", + "value": "0", + "exposed": "Window", + "name": "NONE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "BUBBLING_PHASE": { + "specs": "dom4", + "value": "3", + "exposed": "Window", + "name": "BUBBLING_PHASE", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "exposed": "Window", + "methods": { + "method": { + "initEvent": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "bubbles", + "default": "false", + "type": "boolean", + "optional": 1, + "type-original": "boolean" + }, + { + "name": "cancelable", + "default": "false", + "type": "boolean", + "optional": 1, + "type-original": "boolean" + } + ], + "type-original": "void" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "initEvent" + }, + "stopPropagation": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "stopPropagation" + }, + "stopImmediatePropagation": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "stopImmediatePropagation" + }, + "preventDefault": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "preventDefault" + } + } + }, + "extends": "Object" + }, + "ImageData": { + "specs": "2dcontext", + "constructor": { + "specs": "2dcontext", + "signature": [ + { + "param-min-required": 2, + "type": "ImageData", + "param": [ + { + "name": "width", + "type": "unsigned long", + "type-original": "unsigned long" + }, + { + "name": "height", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "ImageData" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "ImageData", + "properties": { + "property": { + "width": { + "specs": "2dcontext", + "name": "width", + "constant": 1, + "store-in-slot": "instance", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + }, + "data": { + "specs": "2dcontext", + "name": "data", + "constant": 1, + "store-in-slot": "instance", + "type-original": "Uint8ClampedArray", + "exposed": "Window", + "type": "Uint8ClampedArray", + "read-only": 1 + }, + "height": { + "specs": "2dcontext", + "name": "height", + "constant": 1, + "store-in-slot": "instance", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "Headers": { + "specs": "whatwg-fetch", + "constructor": { + "specs": "whatwg-fetch", + "signature": [ + { + "param-min-required": 0, + "type": "Headers", + "param": [ + { + "name": "init", + "type": [ + { + "type": "Headers" + }, + { + "subtype": { + "subtype": { + "type": "ByteString" + }, + "type": "sequence" + }, + "type": "sequence" + } + ], + "optional": 1, + "type-original": "HeadersInit" + } + ], + "type-original": "Headers" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "Headers", + "properties": { + "property": {} + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "forEach": { + "iterator-key-type": "ByteString", + "iterator-value-type": "ByteString", + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "callback", + "type": "Function", + "type-original": "Function" + }, + { + "name": "thisArg", + "type": "any", + "optional": 1, + "type-original": "any" + } + ], + "type-original": "void" + } + ], + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "forEach" + }, + "has": { + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "name", + "type": "ByteString", + "type-original": "ByteString" + } + ], + "type-original": "boolean" + } + ], + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "has" + }, + "get": { + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "ByteString", + "param": [ + { + "name": "name", + "type": "ByteString", + "type-original": "ByteString" + } + ], + "type-original": "ByteString?" + } + ], + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "get" + }, + "delete": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "name", + "type": "ByteString", + "type-original": "ByteString" + } + ], + "type-original": "void" + } + ], + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "delete" + }, + "append": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "name", + "type": "ByteString", + "type-original": "ByteString" + }, + { + "name": "value", + "type": "ByteString", + "type-original": "ByteString" + } + ], + "type-original": "void" + } + ], + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "append" + }, + "set": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "name", + "type": "ByteString", + "type-original": "ByteString" + }, + { + "name": "value", + "type": "ByteString", + "type-original": "ByteString" + } + ], + "type-original": "void" + } + ], + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "set" + } + } + }, + "exposed": "Window", + "iterable": "pair", + "extends": "Object" + }, + "HTMLTableColElement": { + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLTableColElement", + "properties": { + "property": { + "width": { + "specs": "html5", + "ce-reactions": 1, + "name": "width", + "type-original": "DOMString", + "content-attribute": "width", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "non_negative_integer", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "align": { + "content-attribute-enum-values": "center justify left right", + "specs": "html5", + "ce-reactions": 1, + "name": "align", + "type-original": "DOMString", + "content-attribute": "align", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "ch": { + "specs": "html5", + "ce-reactions": 1, + "name": "ch", + "type-original": "DOMString", + "content-attribute": "char", + "deprecated": 1, + "interop": 1, + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "vAlign": { + "content-attribute-enum-values": "middle baseline bottom top", + "specs": "html5", + "ce-reactions": 1, + "name": "vAlign", + "type-original": "DOMString", + "content-attribute": "valign", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "span": { + "specs": "html5", + "ce-reactions": 1, + "name": "span", + "content-attribute": "span", + "type-original": "unsigned long", + "exposed": "Window", + "content-attribute-value-syntax": "1_or_greater_integer", + "type": "unsigned long", + "content-attribute-reflects": 1 + }, + "chOff": { + "specs": "html5", + "ce-reactions": 1, + "name": "chOff", + "type-original": "DOMString", + "content-attribute": "charoff", + "deprecated": 1, + "interop": 1, + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString" + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "col", + "html-self-closing": 1 + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "colgroup" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "HTMLDocument": { + "constants": { + "constant": {} + }, + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "HTMLDocument", + "extends": "Document", + "properties": { + "property": {} + } + }, + "MediaStreamTrackEvent": { + "specs": "media-capture-api", + "constructor": { + "specs": "media-capture-api", + "signature": [ + { + "param-min-required": 1, + "type": "MediaStreamTrackEvent", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "MediaStreamTrackEventInit", + "optional": 1, + "type-original": "MediaStreamTrackEventInit" + } + ], + "type-original": "MediaStreamTrackEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "MediaStreamTrackEvent", + "properties": { + "property": { + "track": { + "specs": "media-capture-api", + "exposed": "Window", + "name": "track", + "type": "MediaStreamTrack", + "type-original": "MediaStreamTrack", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Event" + }, + "SVGAnimatedEnumeration": { + "constants": { + "constant": {} + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "SVGAnimatedEnumeration", + "extends": "Object", + "properties": { + "property": { + "animVal": { + "specs": "svg2", + "name": "animVal", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short", + "read-only": 1 + }, + "baseVal": { + "specs": "svg2", + "name": "baseVal", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + } + } + } + }, + "SVGFEFuncBElement": { + "specs": "filter-effects", + "anonymous-methods": { + "method": [] + }, + "name": "SVGFEFuncBElement", + "properties": { + "property": {} + }, + "element": [ + { + "specs": "filter-effects", + "namespace": "SVG", + "name": "feFuncB" + } + ], + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "SVGComponentTransferFunctionElement" + }, + "RTCStatsProvider": { + "constants": { + "constant": {} + }, + "specs": "ortc", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "msGetStats": { + "signature": [ + { + "subtype": { + "type": "RTCStatsReport" + }, + "type": "Promise", + "type-original": "Promise" + } + ], + "specs": "webrtc-stats", + "exposed": "Window", + "name": "msGetStats" + }, + "getStats": { + "signature": [ + { + "subtype": { + "type": "RTCStatsReport" + }, + "type": "Promise", + "type-original": "Promise" + } + ], + "specs": "ortc", + "exposed": "Window", + "name": "getStats" + } + } + }, + "name": "RTCStatsProvider", + "extends": "EventTarget", + "properties": { + "property": {} + } + }, + "HTMLUListElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLUListElement", + "properties": { + "property": { + "compact": { + "specs": "html5", + "ce-reactions": 1, + "name": "compact", + "type-original": "boolean", + "content-attribute": "compact", + "deprecated": 1, + "interop": 1, + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "type": { + "content-attribute-enum-values": "1 a A i I disc circle square", + "specs": "html5", + "ce-reactions": 1, + "name": "type", + "type-original": "DOMString", + "content-attribute": "type", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "ul" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "WritableStream": { + "specs": "whatwg-streams", + "constructor": { + "specs": "whatwg-streams", + "signature": [ + { + "param-min-required": 0, + "type": "WritableStream", + "param": [ + { + "name": "underlyingSink", + "type": "UnderlyingSink", + "optional": 1, + "type-original": "UnderlyingSink" + }, + { + "name": "strategy", + "type": "QueuingStrategy", + "optional": 1, + "type-original": "QueuingStrategy" + } + ], + "type-original": "WritableStream" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "WritableStream", + "properties": { + "property": { + "locked": { + "specs": "whatwg-streams", + "exposed": "Window", + "name": "locked", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "abort": { + "signature": [ + { + "subtype": { + "type": "void" + }, + "param-min-required": 0, + "type": "Promise", + "param": [ + { + "name": "reason", + "type": "any", + "optional": 1, + "type-original": "any" + } + ], + "type-original": "Promise" + } + ], + "specs": "whatwg-streams", + "exposed": "Window", + "name": "abort" + }, + "getWriter": { + "signature": [ + { + "type": "WritableStreamDefaultWriter", + "type-original": "WritableStreamDefaultWriter" + } + ], + "specs": "whatwg-streams", + "exposed": "Window", + "name": "getWriter" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "HTMLDivElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLDivElement", + "properties": { + "property": { + "align": { + "content-attribute-enum-values": "center justify left right", + "specs": "html5", + "ce-reactions": 1, + "name": "align", + "type-original": "DOMString", + "content-attribute": "align", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "noWrap": { + "extension": 1, + "specs": "none", + "ce-reactions": 1, + "name": "noWrap", + "type-original": "boolean", + "content-attribute": "nowrap", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "boolean", + "content-attribute-boolean": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "div" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "ChannelMergerNode": { + "constants": { + "constant": {} + }, + "specs": "webaudio", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "ChannelMergerNode", + "extends": "AudioNode", + "properties": { + "property": {} + } + }, + "MediaList": { + "specs": "cssom", + "anonymous-methods": { + "method": [] + }, + "legacy-array-class": 1, + "name": "MediaList", + "properties": { + "property": { + "length": { + "specs": "cssom", + "exposed": "Window", + "name": "length", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + }, + "mediaText": { + "specs": "cssom", + "name": "mediaText", + "type-original": "long", + "treat-null-as": "EmptyString", + "exposed": "Window", + "type": "long", + "stringifier": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "deleteMedium": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "medium", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "cssom", + "exposed": "Window", + "name": "deleteMedium" + }, + "appendMedium": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "medium", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "cssom", + "exposed": "Window", + "name": "appendMedium" + }, + "item": { + "getter": 1, + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "DOMString", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "DOMString?" + } + ], + "specs": "cssom", + "exposed": "Window", + "name": "item" + }, + "toString": { + "signature": [ + { + "type": "long", + "type-original": "long" + } + ], + "specs": "cssom", + "exposed": "Window", + "name": "toString", + "stringifier": 1 + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "SVGPathSegCurvetoCubicSmoothRel": { + "specs": "svg11", + "anonymous-methods": { + "method": [] + }, + "name": "SVGPathSegCurvetoCubicSmoothRel", + "properties": { + "property": { + "y": { + "specs": "svg11", + "exposed": "Window", + "name": "y", + "type": "float", + "type-original": "float" + }, + "x2": { + "specs": "svg11", + "exposed": "Window", + "name": "x2", + "type": "float", + "type-original": "float" + }, + "x": { + "specs": "svg11", + "exposed": "Window", + "name": "x", + "type": "float", + "type-original": "float" + }, + "y2": { + "specs": "svg11", + "exposed": "Window", + "name": "y2", + "type": "float", + "type-original": "float" + } + } + }, + "constants": { + "constant": {} + }, + "interop": 1, + "deprecated": 1, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGPathSeg" + }, + "DataTransferItemList": { + "constants": { + "constant": {} + }, + "specs": "html51", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "remove": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "void" + } + ], + "specs": "html51", + "exposed": "Window", + "name": "remove" + }, + "add": { + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "DataTransferItem", + "param": [ + { + "name": "data", + "type": "File", + "type-original": "File" + } + ], + "type-original": "DataTransferItem?" + }, + { + "nullable": 1, + "param-min-required": 2, + "type": "DataTransferItem", + "param": [ + { + "name": "data", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "DataTransferItem?" + } + ], + "specs": "html51", + "exposed": "Window", + "name": "add" + }, + "clear": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "html51", + "exposed": "Window", + "name": "clear" + }, + "item": { + "getter": 1, + "signature": [ + { + "param-min-required": 1, + "type": "File", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "File" + } + ], + "specs": "html51", + "exposed": "Window", + "name": "item" + } + } + }, + "name": "DataTransferItemList", + "extends": "Object", + "properties": { + "property": { + "length": { + "specs": "html51", + "exposed": "Window", + "name": "length", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + } + } + } + }, + "DocumentFragment": { + "specs": "dom4", + "anonymous-methods": { + "method": [] + }, + "name": "DocumentFragment", + "properties": { + "property": {} + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Node", + "implements": [ + "ParentNode" + ] + }, + "Position": { + "constants": { + "constant": {} + }, + "specs": "geolocation-api", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "Position", + "extends": "Object", + "properties": { + "property": { + "timestamp": { + "specs": "geolocation-api", + "name": "timestamp", + "type-original": "DOMTimeStamp", + "exposed": "Window", + "type": "unsigned long long", + "read-only": 1 + }, + "coords": { + "specs": "geolocation-api", + "name": "coords", + "type-original": "Coordinates", + "exposed": "Window", + "type": "Coordinates", + "read-only": 1 + } + } + } + }, + "SVGFEColorMatrixElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "linearRGB auto sRGB inherit", + "value-syntax": "enum", + "name": "color-interpolation-filters" + } + ] + }, + "specs": "filter-effects", + "anonymous-methods": { + "method": [] + }, + "name": "SVGFEColorMatrixElement", + "properties": { + "property": { + "values": { + "specs": "filter-effects", + "name": "values", + "constant": 1, + "content-attribute": "values", + "type-original": "SVGAnimatedNumberList", + "exposed": "Window", + "content-attribute-value-syntax": "svg_5x5_matrix_values_or_single_floating_point_number", + "type": "SVGAnimatedNumberList", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "type": { + "content-attribute-enum-values": "matrix saturate hueRotate luminanceToAlpha", + "specs": "filter-effects", + "name": "type", + "constant": 1, + "content-attribute": "type", + "type-original": "SVGAnimatedEnumeration", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "SVGAnimatedEnumeration", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "in1": { + "content-attribute-enum-values": "SourceGraphic SourceAlpha BackgroundImage BackgroundAlpha FillPaint StrokePaint", + "specs": "filter-effects", + "name": "in1", + "constant": 1, + "content-attribute": "in", + "type-original": "SVGAnimatedString", + "exposed": "Window", + "content-attribute-value-syntax": "filter_result_ref", + "type": "SVGAnimatedString", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "filter-effects", + "namespace": "SVG", + "name": "feColorMatrix" + } + ], + "constants": { + "constant": { + "SVG_FECOLORMATRIX_TYPE_SATURATE": { + "specs": "filter-effects", + "value": "2", + "exposed": "Window", + "name": "SVG_FECOLORMATRIX_TYPE_SATURATE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_FECOLORMATRIX_TYPE_MATRIX": { + "specs": "filter-effects", + "value": "1", + "exposed": "Window", + "name": "SVG_FECOLORMATRIX_TYPE_MATRIX", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_FECOLORMATRIX_TYPE_UNKNOWN": { + "specs": "filter-effects", + "value": "0", + "exposed": "Window", + "name": "SVG_FECOLORMATRIX_TYPE_UNKNOWN", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA": { + "specs": "filter-effects", + "value": "4", + "exposed": "Window", + "name": "SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_FECOLORMATRIX_TYPE_HUEROTATE": { + "specs": "filter-effects", + "value": "3", + "exposed": "Window", + "name": "SVG_FECOLORMATRIX_TYPE_HUEROTATE", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGElement", + "implements": [ + "SVGFilterPrimitiveStandardAttributes" + ] + }, + "PerformanceMark": { + "constants": { + "constant": {} + }, + "specs": "user-timing", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window Worker", + "name": "PerformanceMark", + "extends": "PerformanceEntry", + "properties": { + "property": {} + } + }, + "SVGForeignObjectElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "auto inherit", + "value-syntax": "css_shape_rect", + "name": "clip" + }, + { + "enum-values": "inline block inline-block list-item table inline-table table-header-group table-footer-group table-row-group table-column-group table-row table-column table-cell table-caption run-in ruby ruby-base ruby-text ruby-base-container flex inline-flex -ms-grid -ms-inline-grid none inherit initial", + "value-syntax": "enum", + "name": "display" + }, + { + "enum-values": "visible hidden scroll auto inherit", + "value-syntax": "enum", + "name": "overflow" + } + ] + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGForeignObjectElement", + "properties": { + "property": { + "width": { + "specs": "svg2", + "same-object": 1, + "name": "width", + "constant": 1, + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "type": "SVGAnimatedLength", + "read-only": 1 + }, + "y": { + "specs": "svg2", + "same-object": 1, + "name": "y", + "constant": 1, + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "type": "SVGAnimatedLength", + "read-only": 1 + }, + "x": { + "specs": "svg2", + "same-object": 1, + "name": "x", + "constant": 1, + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "type": "SVGAnimatedLength", + "read-only": 1 + }, + "height": { + "specs": "svg2", + "same-object": 1, + "name": "height", + "constant": 1, + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "type": "SVGAnimatedLength", + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "svg2", + "namespace": "SVG", + "name": "foreignObject" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGGraphicsElement" + }, + "CSSPageRule": { + "constants": { + "constant": {} + }, + "specs": "cssom", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "CSSPageRule", + "extends": "CSSRule", + "properties": { + "property": { + "pseudoClass": { + "extension": 1, + "specs": "none", + "name": "pseudoClass", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "selector": { + "extension": 1, + "specs": "none", + "name": "selector", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "selectorText": { + "specs": "cssom", + "exposed": "Window", + "name": "selectorText", + "type": "DOMString", + "type-original": "DOMString" + }, + "style": { + "specs": "cssom", + "same-object": 1, + "name": "style", + "type-original": "CSSStyleDeclaration", + "exposed": "Window", + "type": "CSSStyleDeclaration", + "read-only": 1 + } + } + } + }, + "HTMLBRElement": { + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLBRElement", + "properties": { + "property": { + "clear": { + "content-attribute-enum-values": "all both left right", + "specs": "html5", + "ce-reactions": 1, + "name": "clear", + "type-original": "DOMString", + "content-attribute": "clear", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "br", + "html-self-closing": 1 + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "HTMLProgressElement": { + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLProgressElement", + "properties": { + "property": { + "value": { + "specs": "html5", + "ce-reactions": 1, + "name": "value", + "content-attribute": "value", + "type-original": "float", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "float", + "content-attribute-reflects": 1 + }, + "form": { + "extension": 1, + "specs": "none", + "name": "form", + "type-original": "HTMLFormElement?", + "nullable": 1, + "exposed": "Window", + "type": "HTMLFormElement", + "read-only": 1 + }, + "position": { + "specs": "html5", + "name": "position", + "type-original": "float", + "exposed": "Window", + "type": "float", + "read-only": 1 + }, + "max": { + "specs": "html5", + "ce-reactions": 1, + "name": "max", + "content-attribute": "max", + "type-original": "float", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "float", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "progress" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "HTMLHeadElement": { + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLHeadElement", + "properties": { + "property": { + "profile": { + "specs": "DOM-Level-2-HTML", + "ce-reactions": 1, + "name": "profile", + "type-original": "DOMString", + "content-attribute": "profile", + "deprecated": 1, + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString" + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "head" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "SVGZoomAndPan": { + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGZoomAndPan", + "static": 1, + "properties": { + "property": { + "zoomAndPan": { + "content-attribute-enum-values": "disable magnify", + "specs": "svg2", + "name": "zoomAndPan", + "content-attribute": "zoomAndPan", + "type-original": "unsigned short", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "unsigned short", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "constants": { + "constant": { + "SVG_ZOOMANDPAN_MAGNIFY": { + "specs": "svg2", + "value": "2", + "exposed": "Window", + "name": "SVG_ZOOMANDPAN_MAGNIFY", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_ZOOMANDPAN_DISABLE": { + "specs": "svg2", + "value": "1", + "exposed": "Window", + "name": "SVG_ZOOMANDPAN_DISABLE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_ZOOMANDPAN_UNKNOWN": { + "specs": "svg2", + "value": "0", + "exposed": "Window", + "name": "SVG_ZOOMANDPAN_UNKNOWN", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "Object" + }, + "MimeTypeArray": { + "constants": { + "constant": {} + }, + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "item": { + "getter": 1, + "signature": [ + { + "param-min-required": 1, + "type": "Plugin", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "Plugin" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "item" + }, + "namedItem": { + "getter": 1, + "signature": [ + { + "param-min-required": 1, + "type": "Plugin", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "Plugin" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "namedItem" + } + } + }, + "name": "MimeTypeArray", + "extends": "Object", + "properties": { + "property": { + "length": { + "specs": "html5", + "exposed": "Window", + "name": "length", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + } + } + } + }, + "HTMLMediaElement": { + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "name": "HTMLMediaElement", + "properties": { + "property": { + "videoTracks": { + "specs": "html5", + "same-object": 1, + "name": "videoTracks", + "type-original": "VideoTrackList", + "exposed": "Window", + "type": "VideoTrackList", + "read-only": 1 + }, + "onencrypted": { + "specs": "encrypted-media", + "name": "onencrypted", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "encrypted" + }, + "loop": { + "specs": "html5", + "ce-reactions": 1, + "name": "loop", + "content-attribute": "loop", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "srcObject": { + "specs": "html5", + "exposed": "Window", + "name": "srcObject", + "type": [ + { + "nullable": 1, + "type": "MediaStream" + }, + { + "nullable": 1, + "type": "MediaSource" + }, + { + "nullable": 1, + "type": "Blob" + } + ], + "type-original": "MediaProvider?" + }, + "textTracks": { + "specs": "html5", + "same-object": 1, + "name": "textTracks", + "type-original": "TextTrackList", + "exposed": "Window", + "type": "TextTrackList", + "read-only": 1 + }, + "buffered": { + "specs": "html5", + "name": "buffered", + "type-original": "TimeRanges", + "exposed": "Window", + "type": "TimeRanges", + "read-only": 1 + }, + "controls": { + "specs": "html5", + "ce-reactions": 1, + "name": "controls", + "content-attribute": "controls", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "autoplay": { + "specs": "html5", + "ce-reactions": 1, + "name": "autoplay", + "content-attribute": "autoplay", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "msAudioDeviceType": { + "extension": 1, + "specs": "none", + "name": "msAudioDeviceType", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString" + }, + "msAudioCategory": { + "extension": 1, + "specs": "none", + "name": "msAudioCategory", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString" + }, + "src": { + "specs": "html5", + "ce-reactions": 1, + "name": "src", + "content-attribute": "src", + "type-original": "USVString", + "exposed": "Window", + "content-attribute-value-syntax": "url", + "type": "USVString", + "content-attribute-reflects": 1 + }, + "playbackRate": { + "specs": "html5", + "exposed": "Window", + "name": "playbackRate", + "type": "double", + "type-original": "double" + }, + "muted": { + "specs": "html5", + "exposed": "Window", + "name": "muted", + "type": "boolean", + "type-original": "boolean" + }, + "duration": { + "specs": "html5", + "name": "duration", + "type-original": "double", + "exposed": "Window", + "type": "double", + "read-only": 1 + }, + "audioTracks": { + "specs": "html5", + "same-object": 1, + "name": "audioTracks", + "type-original": "AudioTrackList", + "exposed": "Window", + "type": "AudioTrackList", + "read-only": 1 + }, + "paused": { + "specs": "html5", + "name": "paused", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "read-only": 1 + }, + "msGraphicsTrustStatus": { + "extension": 1, + "specs": "none", + "name": "msGraphicsTrustStatus", + "type-original": "MSGraphicsTrust", + "exposed": "Window", + "type": "MSGraphicsTrust", + "read-only": 1 + }, + "seeking": { + "specs": "html5", + "name": "seeking", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "read-only": 1 + }, + "crossOrigin": { + "content-attribute-enum-values": "anonymous use-credentials", + "specs": "html5", + "ce-reactions": 1, + "name": "crossOrigin", + "content-attribute": "crossorigin", + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "preload": { + "content-attribute-enum-values": "none metadata auto", + "specs": "html5", + "ce-reactions": 1, + "name": "preload", + "content-attribute": "preload", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "played": { + "specs": "html5", + "name": "played", + "type-original": "TimeRanges", + "exposed": "Window", + "type": "TimeRanges", + "read-only": 1 + }, + "msPlayToPrimary": { + "extension": 1, + "specs": "none", + "ce-reactions": 1, + "name": "msPlayToPrimary", + "type-original": "boolean", + "content-attribute": "x-ms-playtoprimary", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "boolean", + "content-attribute-boolean": 1 + }, + "currentSrc": { + "specs": "html5", + "name": "currentSrc", + "type-original": "USVString", + "exposed": "Window", + "type": "USVString", + "read-only": 1 + }, + "onmsneedkey": { + "specs": "encrypted-media-20130510", + "name": "onmsneedkey", + "type-original": "EventHandler", + "deprecated": 1, + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "msneedkey" + }, + "readyState": { + "specs": "html5", + "name": "readyState", + "type-original": "any", + "exposed": "Window", + "type": "any", + "read-only": 1 + }, + "msPlayToDisabled": { + "extension": 1, + "specs": "none", + "ce-reactions": 1, + "name": "msPlayToDisabled", + "type-original": "boolean", + "content-attribute": "x-ms-playtodisabled", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "boolean", + "content-attribute-boolean": 1 + }, + "msRealTime": { + "extension": 1, + "specs": "none", + "name": "msRealTime", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean" + }, + "ended": { + "specs": "html5", + "name": "ended", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "read-only": 1 + }, + "defaultMuted": { + "specs": "html5", + "ce-reactions": 1, + "name": "defaultMuted", + "content-attribute": "muted", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "error": { + "specs": "html5", + "name": "error", + "type-original": "MediaError?", + "nullable": 1, + "exposed": "Window", + "type": "MediaError", + "read-only": 1 + }, + "seekable": { + "specs": "html5", + "name": "seekable", + "type-original": "TimeRanges", + "exposed": "Window", + "type": "TimeRanges", + "read-only": 1 + }, + "msKeys": { + "specs": "encrypted-media-20130510", + "name": "msKeys", + "type-original": "MSMediaKeys", + "deprecated": 1, + "exposed": "Window", + "type": "MSMediaKeys", + "read-only": 1 + }, + "msPlayToSource": { + "extension": 1, + "specs": "none", + "name": "msPlayToSource", + "type-original": "any", + "exposed": "Window", + "type": "any", + "read-only": 1 + }, + "msPlayToPreferredSourceUri": { + "extension": 1, + "specs": "none", + "ce-reactions": 1, + "name": "msPlayToPreferredSourceUri", + "type-original": "DOMString", + "content-attribute": "x-ms-playtopreferredsourceuri", + "content-attribute-value-syntax": "url", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "volume": { + "specs": "html5", + "exposed": "Window", + "name": "volume", + "type": "double", + "type-original": "double" + }, + "mediaKeys": { + "specs": "encrypted-media", + "name": "mediaKeys", + "type-original": "MediaKeys?", + "nullable": 1, + "exposed": "Window", + "type": "MediaKeys", + "secure-context": 1, + "read-only": 1 + }, + "defaultPlaybackRate": { + "specs": "html5", + "exposed": "Window", + "name": "defaultPlaybackRate", + "type": "double", + "type-original": "double" + }, + "currentTime": { + "specs": "html5", + "exposed": "Window", + "name": "currentTime", + "type": "double", + "type-original": "double" + }, + "networkState": { + "specs": "html5", + "name": "networkState", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short", + "read-only": 1 + } + } + }, + "constants": { + "constant": { + "HAVE_CURRENT_DATA": { + "specs": "html5", + "value": "2", + "exposed": "Window", + "name": "HAVE_CURRENT_DATA", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "HAVE_METADATA": { + "specs": "html5", + "value": "1", + "exposed": "Window", + "name": "HAVE_METADATA", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "HAVE_NOTHING": { + "specs": "html5", + "value": "0", + "exposed": "Window", + "name": "HAVE_NOTHING", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "NETWORK_NO_SOURCE": { + "specs": "html5", + "value": "3", + "exposed": "Window", + "name": "NETWORK_NO_SOURCE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "HAVE_ENOUGH_DATA": { + "specs": "html5", + "value": "4", + "exposed": "Window", + "name": "HAVE_ENOUGH_DATA", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "NETWORK_EMPTY": { + "specs": "html5", + "value": "0", + "exposed": "Window", + "name": "NETWORK_EMPTY", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "NETWORK_LOADING": { + "specs": "html5", + "value": "2", + "exposed": "Window", + "name": "NETWORK_LOADING", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "NETWORK_IDLE": { + "specs": "html5", + "value": "1", + "exposed": "Window", + "name": "NETWORK_IDLE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "HAVE_FUTURE_DATA": { + "specs": "html5", + "value": "3", + "exposed": "Window", + "name": "HAVE_FUTURE_DATA", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "events": { + "event": [ + { + "precedes": "progress", + "dispatch": "sync", + "specs": "HTML5", + "name": "loadstart", + "type": "Event" + }, + { + "precedes": "loadedmetadata", + "dispatch": "sync", + "specs": "HTML5", + "name": "progress", + "follows": "loadstart", + "type": "Event" + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "suspend", + "type": "Event" + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "abort", + "type": "Event" + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "error", + "type": "Event" + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "emptied", + "type": "Event" + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "stalled", + "follows": "playing", + "type": "Event" + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "play", + "follows": "pause", + "type": "Event" + }, + { + "precedes": "play", + "dispatch": "sync", + "specs": "HTML5", + "name": "pause", + "type": "Event" + }, + { + "precedes": "loadeddata waiting seeking", + "dispatch": "sync", + "specs": "HTML5", + "name": "loadedmetadata", + "follows": "loadstart", + "type": "Event" + }, + { + "precedes": "canplay", + "dispatch": "sync", + "specs": "HTML5", + "name": "loadeddata", + "follows": "loadedmetadata", + "type": "Event" + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "waiting", + "type": "Event" + }, + { + "precedes": "stalled", + "dispatch": "sync", + "specs": "HTML5", + "name": "playing", + "follows": "canplay", + "type": "Event" + }, + { + "precedes": "canplaythrough", + "dispatch": "sync", + "specs": "HTML5", + "name": "canplay", + "follows": "loadeddata", + "type": "Event" + }, + { + "precedes": "ended", + "dispatch": "sync", + "specs": "HTML5", + "name": "canplaythrough", + "follows": "canplay", + "type": "Event" + }, + { + "precedes": "seeked", + "dispatch": "sync", + "specs": "HTML5", + "name": "seeking", + "follows": "loadedmetadata", + "type": "Event" + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "seeked", + "follows": "seeking", + "type": "Event" + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "timeupdate", + "type": "Event" + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "ended", + "follows": "canplaythrough", + "type": "Event" + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "ratechange", + "type": "Event" + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "durationchange", + "type": "Event" + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "volumechange", + "type": "Event" + }, + { + "dispatch": "sync", + "specs": "EME", + "name": "encrypted", + "follows": "loadedmetadata", + "type": "MediaEncryptedEvent" + }, + { + "dispatch": "sync", + "specs": "EME", + "name": "waitingforkey", + "follows": "playing", + "type": "Event" + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "msClearEffects": { + "extension": 1, + "specs": "none", + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "name": "msClearEffects", + "exposed": "Window" + }, + "play": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "play" + }, + "canPlayType": { + "signature": [ + { + "param-min-required": 1, + "type": "CanPlayTypeResult", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "CanPlayTypeResult" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "canPlayType" + }, + "msInsertAudioEffect": { + "extension": 1, + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "activatableClassId", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "effectRequired", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "config", + "optional": 1, + "type": "any", + "type-original": "any" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "msInsertAudioEffect" + }, + "pause": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "pause" + }, + "msGetAsCastingSource": { + "extension": 1, + "specs": "none", + "signature": [ + { + "type": "any", + "type-original": "any" + } + ], + "name": "msGetAsCastingSource", + "exposed": "Window" + }, + "msSetMediaProtectionManager": { + "extension": 1, + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "mediaProtectionManager", + "optional": 1, + "type": "any", + "type-original": "any" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "msSetMediaProtectionManager" + }, + "setMediaKeys": { + "signature": [ + { + "subtype": { + "type": "void" + }, + "param-min-required": 1, + "type": "Promise", + "param": [ + { + "nullable": 1, + "name": "mediaKeys", + "type": "MediaKeys", + "type-original": "MediaKeys?" + } + ], + "type-original": "Promise" + } + ], + "specs": "encrypted-media", + "exposed": "Window", + "name": "setMediaKeys", + "secure-context": 1 + }, + "msSetMediaKeys": { + "deprecated": 1, + "specs": "encrypted-media-20130510", + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "mediaKeys", + "type": "MSMediaKeys", + "type-original": "MSMediaKeys" + } + ], + "type-original": "void" + } + ], + "name": "msSetMediaKeys", + "exposed": "Window" + }, + "addTextTrack": { + "signature": [ + { + "param-min-required": 1, + "type": "TextTrack", + "param": [ + { + "name": "kind", + "type": "TextTrackKind", + "type-original": "TextTrackKind" + }, + { + "name": "label", + "default": "\"\"", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + }, + { + "name": "language", + "default": "\"\"", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + } + ], + "type-original": "TextTrack" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "addTextTrack" + }, + "load": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "load" + } + } + }, + "extends": "HTMLElement" + }, + "StyleSheet": { + "constants": { + "constant": {} + }, + "specs": "cssom", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "StyleSheet", + "extends": "Object", + "properties": { + "property": { + "disabled": { + "pure": 1, + "specs": "cssom", + "name": "disabled", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean" + }, + "ownerNode": { + "pure": 1, + "specs": "cssom", + "name": "ownerNode", + "type-original": "Node", + "exposed": "Window", + "type": "Node", + "read-only": 1 + }, + "media": { + "put-forwards": "mediaText", + "specs": "cssom", + "same-object": 1, + "name": "media", + "constant": 1, + "type-original": "MediaList", + "exposed": "Window", + "type": "MediaList", + "read-only": 1 + }, + "parentStyleSheet": { + "pure": 1, + "specs": "cssom", + "name": "parentStyleSheet", + "type-original": "StyleSheet?", + "nullable": 1, + "exposed": "Window", + "type": "StyleSheet", + "read-only": 1 + }, + "href": { + "specs": "cssom", + "name": "href", + "constant": 1, + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "title": { + "pure": 1, + "specs": "cssom", + "name": "title", + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "type": { + "specs": "cssom", + "name": "type", + "constant": 1, + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + } + } + } + }, + "MessagePort": { + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "name": "MessagePort", + "properties": { + "property": { + "onmessage": { + "specs": "html5", + "name": "onmessage", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window Worker", + "type": "EventHandlerNonNull", + "event-handler": "message" + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "async", + "specs": "PostMsg", + "name": "message", + "type": "MessageEvent", + "skips-window": 1 + } + ] + }, + "exposed": "Window Worker", + "methods": { + "method": { + "close": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window Worker", + "name": "close" + }, + "postMessage": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "message", + "type": "any", + "optional": 1, + "type-original": "any" + }, + { + "subtype": { + "type": "object" + }, + "name": "transfer", + "default": "[]", + "type": "sequence", + "optional": 1, + "type-original": "sequence" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window Worker", + "name": "postMessage" + }, + "start": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window Worker", + "name": "start" + } + } + }, + "extends": "EventTarget" + }, + "FileReader": { + "dataslot": [ + { + "name": "result" + } + ], + "specs": "fileapi", + "constructor": { + "specs": "fileapi", + "signature": [ + { + "type": "FileReader", + "type-original": "FileReader" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "FileReader", + "properties": { + "property": { + "onprogress": { + "specs": "fileapi", + "name": "onprogress", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window Worker", + "type": "EventHandlerNonNull", + "event-handler": "progress" + }, + "readyState": { + "specs": "fileapi", + "exposed": "Window Worker", + "name": "readyState", + "type": "unsigned short", + "type-original": "unsigned short", + "read-only": 1 + }, + "onabort": { + "specs": "fileapi", + "name": "onabort", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window Worker", + "type": "EventHandlerNonNull", + "event-handler": "abort" + }, + "onloadend": { + "specs": "fileapi", + "name": "onloadend", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window Worker", + "type": "EventHandlerNonNull", + "event-handler": "loadend" + }, + "error": { + "specs": "fileapi", + "name": "error", + "type-original": "DOMException?", + "nullable": 1, + "exposed": "Window Worker", + "type": "DOMException", + "read-only": 1 + }, + "onload": { + "specs": "fileapi", + "name": "onload", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window Worker", + "type": "EventHandlerNonNull", + "event-handler": "load" + }, + "onerror": { + "specs": "fileapi", + "name": "onerror", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window Worker", + "type": "EventHandlerNonNull", + "event-handler": "error" + }, + "result": { + "specs": "fileapi", + "name": "result", + "type-original": "(DOMString or ArrayBuffer)?", + "exposed": "Window Worker", + "type": [ + { + "nullable": 1, + "type": "DOMString" + }, + { + "nullable": 1, + "type": "ArrayBuffer" + } + ], + "read-only": 1 + }, + "onloadstart": { + "specs": "fileapi", + "name": "onloadstart", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window Worker", + "type": "EventHandlerNonNull", + "event-handler": "loadstart" + } + } + }, + "constants": { + "constant": { + "LOADING": { + "specs": "fileapi", + "value": "1", + "exposed": "Window Worker", + "name": "LOADING", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "DONE": { + "specs": "fileapi", + "value": "2", + "exposed": "Window Worker", + "name": "DONE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "EMPTY": { + "specs": "fileapi", + "value": "0", + "exposed": "Window Worker", + "name": "EMPTY", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "events": { + "event": [ + { + "precedes": "loadend", + "dispatch": "sync", + "specs": "FileAPI", + "name": "load", + "follows": "progress", + "type": "ProgressEvent", + "skips-window": 1 + }, + { + "precedes": "progress", + "dispatch": "sync", + "specs": "FileAPI", + "name": "loadstart", + "type": "ProgressEvent", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "FileAPI", + "name": "loadend", + "follows": "load", + "type": "ProgressEvent", + "skips-window": 1 + }, + { + "precedes": "load", + "dispatch": "sync", + "specs": "FileAPI", + "name": "progress", + "follows": "loadstart", + "type": "ProgressEvent", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "FileAPI", + "name": "abort", + "type": "ProgressEvent", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "FileAPI", + "name": "error", + "type": "ProgressEvent", + "skips-window": 1 + } + ] + }, + "exposed": "Window Worker", + "methods": { + "method": { + "readAsArrayBuffer": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "blob", + "type": "Blob", + "type-original": "Blob" + } + ], + "type-original": "void" + } + ], + "specs": "fileapi", + "exposed": "Window Worker", + "name": "readAsArrayBuffer" + }, + "abort": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "fileapi", + "exposed": "Window Worker", + "name": "abort" + }, + "readAsDataURL": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "blob", + "type": "Blob", + "type-original": "Blob" + } + ], + "type-original": "void" + } + ], + "specs": "fileapi", + "exposed": "Window Worker", + "name": "readAsDataURL" + }, + "readAsText": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "blob", + "type": "Blob", + "type-original": "Blob" + }, + { + "name": "label", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "fileapi", + "exposed": "Window Worker", + "name": "readAsText" + }, + "readAsBinaryString": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "blob", + "type": "Blob", + "type-original": "Blob" + } + ], + "type-original": "void" + } + ], + "specs": "fileapi", + "exposed": "Window Worker", + "name": "readAsBinaryString" + } + } + }, + "extends": "EventTarget" + }, + "SVGTextPathElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "auto baseline before-edge text-before-edge middle central after-edge text-after-edge ideographic alphabetic hanging mathematical inherit", + "value-syntax": "enum", + "name": "alignment-baseline" + }, + { + "enum-values": "baseline sub super inherit", + "value-syntax": "css_percentage_or_length", + "name": "baseline-shift" + }, + { + "enum-values": "inherit initial", + "value-syntax": "css_color", + "name": "color" + }, + { + "enum-values": "inline block inline-block list-item table inline-table table-header-group table-footer-group table-row-group table-column-group table-row table-column table-cell table-caption run-in ruby ruby-base ruby-text ruby-base-container flex inline-flex -ms-grid -ms-inline-grid none inherit initial", + "value-syntax": "enum", + "name": "display" + }, + { + "enum-values": "ltr rtl inherit", + "value-syntax": "enum", + "name": "direction" + }, + { + "enum-values": "auto use-script no-change reset-size ideographic alphabetic hanging mathematical central middle text-after-edge text-before-edge inherit", + "value-syntax": "enum", + "name": "dominant-baseline" + }, + { + "enum-values": "none currentColor inherit", + "value-syntax": "svg_paint_or_css_color", + "name": "fill" + }, + { + "enum-values": "inherit", + "value-syntax": "0_to_1_floating_point_number", + "name": "fill-opacity" + }, + { + "enum-values": "nonzero evenodd inherit", + "value-syntax": "enum", + "name": "fill-rule" + }, + { + "enum-values": "caption icon menu message-box small-caption status-bar inherit", + "value-syntax": "css_font", + "name": "font" + }, + { + "enum-values": "inherit", + "value-syntax": "comma_separated_css_font_family_followed_by_generic_family", + "name": "font-family" + }, + { + "enum-values": "smaller larger xx-small x-small small medium large x-large xx-large inherit initial", + "value-syntax": "css_percentage_or_length", + "name": "font-size" + }, + { + "enum-values": "none inherit", + "value-syntax": "floating_point_number", + "name": "font-size-adjust" + }, + { + "enum-values": "normal wider narrower ultra-condensed extra-condensed condensed semi-condensed semi-expanded expanded extra-expanded ultra-expanded inherit", + "value-syntax": "enum", + "name": "font-stretch" + }, + { + "enum-values": "normal italic oblique inherit initial", + "value-syntax": "enum", + "name": "font-style" + }, + { + "enum-values": "normal small-caps inherit initial", + "value-syntax": "enum", + "name": "font-variant" + }, + { + "enum-values": "normal bold bolder lighter 100 200 300 400 500 600 700 800 900 inherit initial", + "value-syntax": "enum", + "name": "font-weight" + }, + { + "enum-values": "inherit", + "value-syntax": "css_angle", + "name": "glyph-orientation-horizontal" + }, + { + "enum-values": "auto inherit", + "value-syntax": "css_angle", + "name": "glyph-orientation-vertical" + }, + { + "enum-values": "auto inherit", + "value-syntax": "css_length", + "name": "kerning" + }, + { + "enum-values": "normal inherit initial", + "value-syntax": "css_length", + "name": "letter-spacing" + }, + { + "enum-values": "none currentColor inherit", + "value-syntax": "svg_paint_or_css_color", + "name": "stroke" + }, + { + "enum-values": "none inherit", + "value-syntax": "comma_or_space_separated_css_percentage_or_length", + "name": "stroke-dasharray" + }, + { + "enum-values": "inherit", + "value-syntax": "css_percentage_or_length", + "name": "stroke-dashoffset" + }, + { + "enum-values": "butt round square inherit", + "value-syntax": "enum", + "name": "stroke-linecap" + }, + { + "enum-values": "miter round bevel inherit", + "value-syntax": "enum", + "name": "stroke-linejoin" + }, + { + "enum-values": "inherit", + "value-syntax": "1_or_greater_floating_point_number", + "name": "stroke-miterlimit" + }, + { + "enum-values": "inherit", + "value-syntax": "0_to_1_floating_point_number", + "name": "stroke-opacity" + }, + { + "enum-values": "inherit", + "value-syntax": "css_percentage_or_length", + "name": "stroke-width" + }, + { + "enum-values": "start middle end inherit", + "value-syntax": "enum", + "name": "text-anchor" + }, + { + "enum-values": "none underline overline line-through blink inherit", + "value-syntax": "enum", + "name": "text-decoration" + }, + { + "enum-values": "normal embed bidi-override inherit", + "value-syntax": "enum", + "name": "unicode-bidi" + }, + { + "enum-values": "visible hidden collapse inherit initial", + "value-syntax": "enum", + "name": "visibility" + }, + { + "enum-values": "normal inherit initial", + "value-syntax": "css_length", + "name": "word-spacing" + } + ] + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGTextPathElement", + "properties": { + "property": { + "startOffset": { + "specs": "svg2", + "same-object": 1, + "name": "startOffset", + "constant": 1, + "content-attribute": "startOffset", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + }, + "method": { + "content-attribute-enum-values": "align stretch", + "specs": "svg2", + "same-object": 1, + "name": "method", + "constant": 1, + "content-attribute": "method", + "type-original": "SVGAnimatedEnumeration", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "SVGAnimatedEnumeration", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "spacing": { + "content-attribute-enum-values": "auto exact", + "specs": "svg2", + "same-object": 1, + "name": "spacing", + "constant": 1, + "content-attribute": "spacing", + "type-original": "SVGAnimatedEnumeration", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "SVGAnimatedEnumeration", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "svg2", + "namespace": "SVG", + "name": "textPath" + } + ], + "constants": { + "constant": { + "TEXTPATH_SPACINGTYPE_EXACT": { + "specs": "svg2", + "value": "2", + "exposed": "Window", + "name": "TEXTPATH_SPACINGTYPE_EXACT", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "TEXTPATH_SPACINGTYPE_AUTO": { + "specs": "svg2", + "value": "1", + "exposed": "Window", + "name": "TEXTPATH_SPACINGTYPE_AUTO", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "TEXTPATH_METHODTYPE_STRETCH": { + "specs": "svg2", + "value": "2", + "exposed": "Window", + "name": "TEXTPATH_METHODTYPE_STRETCH", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "TEXTPATH_SPACINGTYPE_UNKNOWN": { + "specs": "svg2", + "value": "0", + "exposed": "Window", + "name": "TEXTPATH_SPACINGTYPE_UNKNOWN", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "TEXTPATH_METHODTYPE_ALIGN": { + "specs": "svg2", + "value": "1", + "exposed": "Window", + "name": "TEXTPATH_METHODTYPE_ALIGN", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "TEXTPATH_METHODTYPE_UNKNOWN": { + "specs": "svg2", + "value": "0", + "exposed": "Window", + "name": "TEXTPATH_METHODTYPE_UNKNOWN", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGTextContentElement", + "implements": [ + "SVGURIReference" + ] + }, + "AbortSignal": { + "specs": "dom", + "anonymous-methods": { + "method": [] + }, + "name": "AbortSignal", + "properties": { + "property": { + "onabort": { + "specs": "dom", + "name": "onabort", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "abort" + }, + "aborted": { + "specs": "dom", + "exposed": "Window", + "name": "aborted", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "dom", + "name": "abort", + "type": "ProgressEvent", + "skips-window": 1 + } + ] + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "EventTarget" + }, + "NodeList": { + "specs": "dom4", + "anonymous-methods": { + "method": [] + }, + "name": "NodeList", + "properties": { + "property": { + "length": { + "specs": "dom4", + "name": "length", + "tags": "TreeNavigation", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + } + } + }, + "tags": "TreeNavigation", + "constants": { + "constant": {} + }, + "methods": { + "method": { + "item": { + "getter": 1, + "signature": [ + { + "param-min-required": 1, + "type": "Node", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "Node" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "item", + "tags": "TreeNavigation" + } + } + }, + "exposed": "Window", + "iterable": "value", + "extends": "Object" + }, + "XMLSerializer": { + "constants": { + "constant": {} + }, + "specs": "dom-parsing", + "constructor": { + "specs": "dom-parsing", + "signature": [ + { + "type": "XMLSerializer", + "type-original": "XMLSerializer" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "serializeToString": { + "signature": [ + { + "param-min-required": 1, + "type": "DOMString", + "param": [ + { + "name": "target", + "type": "Node", + "type-original": "Node" + } + ], + "type-original": "DOMString" + } + ], + "specs": "dom-parsing", + "exposed": "Window", + "name": "serializeToString" + } + } + }, + "name": "XMLSerializer", + "extends": "Object", + "properties": { + "property": {} + } + }, + "ServiceWorkerContainer": { + "specs": "service-workers", + "anonymous-methods": { + "method": [] + }, + "name": "ServiceWorkerContainer", + "properties": { + "property": { + "controller": { + "specs": "service-workers", + "name": "controller", + "type-original": "ServiceWorker?", + "nullable": 1, + "exposed": "Window", + "type": "ServiceWorker", + "read-only": 1 + }, + "onmessage": { + "specs": "service-workers", + "name": "onmessage", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "message" + }, + "ready": { + "specs": "service-workers", + "same-object": 1, + "name": "ready", + "type-original": "Promise", + "subtype": { + "type": "ServiceWorkerRegistration" + }, + "exposed": "Window", + "type": "Promise", + "read-only": 1 + }, + "onmessageerror": { + "specs": "service-workers", + "name": "onmessageerror", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "messageerror" + }, + "oncontrollerchange": { + "specs": "service-workers", + "name": "oncontrollerchange", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "controllerchange" + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "async", + "specs": "ServiceWorker", + "name": "controllerchange", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "async", + "specs": "ServiceWorker", + "name": "error", + "type": "ErrorEvent", + "skips-window": 1 + }, + { + "dispatch": "async", + "specs": "ServiceWorker", + "name": "message", + "type": "ServiceWorkerMessageEvent", + "skips-window": 1 + }, + { + "dispatch": "async", + "specs": "ServiceWorker", + "name": "messageerror", + "type": "MessageEvent", + "skips-window": 1 + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "register": { + "signature": [ + { + "new-object": 1, + "subtype": { + "type": "ServiceWorkerRegistration" + }, + "param-min-required": 1, + "type": "Promise", + "param": [ + { + "name": "scriptURL", + "type": "USVString", + "type-original": "USVString" + }, + { + "name": "options", + "type": "RegistrationOptions", + "optional": 1, + "type-original": "RegistrationOptions" + } + ], + "type-original": "Promise" + } + ], + "specs": "service-workers", + "exposed": "Window", + "name": "register" + }, + "startMessages": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "service-workers", + "exposed": "Window", + "name": "startMessages" + }, + "getRegistration": { + "signature": [ + { + "new-object": 1, + "subtype": { + "type": "any" + }, + "param-min-required": 0, + "type": "Promise", + "param": [ + { + "name": "clientURL", + "default": "\"\"", + "type": "USVString", + "optional": 1, + "type-original": "USVString" + } + ], + "type-original": "Promise" + } + ], + "specs": "service-workers", + "exposed": "Window", + "name": "getRegistration" + }, + "getRegistrations": { + "signature": [ + { + "new-object": 1, + "subtype": { + "subtype": { + "type": "ServiceWorkerRegistration" + }, + "type": "sequence" + }, + "type": "Promise", + "type-original": "Promise>" + } + ], + "specs": "service-workers", + "exposed": "Window", + "name": "getRegistrations" + } + } + }, + "extends": "EventTarget", + "secure-context": 1 + }, + "PerformanceMeasure": { + "constants": { + "constant": {} + }, + "specs": "user-timing", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window Worker", + "name": "PerformanceMeasure", + "extends": "PerformanceEntry", + "properties": { + "property": {} + } + }, + "SVGGradientElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "false true", + "value-syntax": "enum", + "name": "externalResourcesRequired" + } + ] + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGGradientElement", + "properties": { + "property": { + "spreadMethod": { + "content-attribute-enum-values": "pad reflect repeat", + "specs": "svg2", + "same-object": 1, + "name": "spreadMethod", + "constant": 1, + "content-attribute": "spreadMethod", + "type-original": "SVGAnimatedEnumeration", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "SVGAnimatedEnumeration", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "gradientTransform": { + "specs": "svg2", + "same-object": 1, + "name": "gradientTransform", + "constant": 1, + "content-attribute": "gradientTransform", + "type-original": "SVGAnimatedTransformList", + "exposed": "Window", + "content-attribute-value-syntax": "svg_transform_list", + "type": "SVGAnimatedTransformList", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "gradientUnits": { + "content-attribute-enum-values": "objectBoundingBox userSpaceOnUse", + "specs": "svg2", + "same-object": 1, + "name": "gradientUnits", + "constant": 1, + "content-attribute": "gradientUnits", + "type-original": "SVGAnimatedEnumeration", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "SVGAnimatedEnumeration", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "constants": { + "constant": { + "SVG_SPREADMETHOD_REFLECT": { + "specs": "svg2", + "value": "2", + "exposed": "Window", + "name": "SVG_SPREADMETHOD_REFLECT", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_SPREADMETHOD_PAD": { + "specs": "svg2", + "value": "1", + "exposed": "Window", + "name": "SVG_SPREADMETHOD_PAD", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_SPREADMETHOD_UNKNOWN": { + "specs": "svg2", + "value": "0", + "exposed": "Window", + "name": "SVG_SPREADMETHOD_UNKNOWN", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_SPREADMETHOD_REPEAT": { + "specs": "svg2", + "value": "3", + "exposed": "Window", + "name": "SVG_SPREADMETHOD_REPEAT", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGElement", + "implements": [ + "SVGUnitTypes", + "SVGURIReference" + ] + }, + "CSSKeyframeRule": { + "constants": { + "constant": {} + }, + "specs": "css-animation", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "CSSKeyframeRule", + "extends": "CSSRule", + "properties": { + "property": { + "keyText": { + "specs": "css-animation", + "exposed": "Window", + "name": "keyText", + "type": "DOMString", + "type-original": "DOMString" + }, + "style": { + "specs": "css-animation", + "same-object": 1, + "name": "style", + "type-original": "CSSStyleDeclaration", + "exposed": "Window", + "type": "CSSStyleDeclaration", + "read-only": 1 + } + } + } + }, + "OES_texture_half_float_linear": { + "constants": { + "constant": {} + }, + "specs": "webgl", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "OES_texture_half_float_linear", + "extends": "Object", + "properties": { + "property": {} + } + }, + "RTCDtmfSender": { + "specs": "ortc", + "constructor": { + "specs": "ortc", + "signature": [ + { + "param-min-required": 1, + "type": "RTCDtmfSender", + "param": [ + { + "name": "sender", + "type": "RTCRtpSender", + "type-original": "RTCRtpSender" + } + ], + "type-original": "RTCDtmfSender" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "RTCDtmfSender", + "properties": { + "property": { + "ontonechange": { + "specs": "ortc", + "name": "ontonechange", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "tonechange" + }, + "sender": { + "specs": "ortc", + "exposed": "Window", + "name": "sender", + "type": "RTCRtpSender", + "type-original": "RTCRtpSender", + "read-only": 1 + }, + "toneBuffer": { + "specs": "ortc", + "exposed": "Window", + "name": "toneBuffer", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "duration": { + "specs": "ortc", + "exposed": "Window", + "name": "duration", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "canInsertDTMF": { + "specs": "ortc", + "exposed": "Window", + "name": "canInsertDTMF", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "interToneGap": { + "specs": "ortc", + "exposed": "Window", + "name": "interToneGap", + "type": "long", + "type-original": "long", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "ORTC", + "name": "tonechange", + "type": "RTCDTMFToneChangeEvent", + "skips-window": 1 + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "insertDTMF": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "tones", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "duration", + "type": "long", + "optional": 1, + "type-original": "long" + }, + { + "name": "interToneGap", + "type": "long", + "optional": 1, + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "ortc", + "exposed": "Window", + "name": "insertDTMF" + } + } + }, + "extends": "EventTarget" + }, + "MSStream": { + "constants": { + "constant": {} + }, + "specs": "none", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "msDetachStream": { + "signature": [ + { + "type": "any", + "type-original": "any" + } + ], + "specs": "none", + "exposed": "Window", + "name": "msDetachStream" + }, + "msClose": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "msClose" + } + } + }, + "name": "MSStream", + "extends": "Object", + "properties": { + "property": { + "type": { + "specs": "none", + "name": "type", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + } + } + } + }, + "XMLDocument": { + "constants": { + "constant": {} + }, + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "XMLDocument", + "extends": "Document", + "properties": { + "property": {} + } + }, + "SVGNumberList": { + "constants": { + "constant": {} + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "replaceItem": { + "signature": [ + { + "param-min-required": 2, + "type": "SVGNumber", + "param": [ + { + "name": "newItem", + "type": "SVGNumber", + "type-original": "SVGNumber" + }, + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "SVGNumber" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "replaceItem" + }, + "getItem": { + "signature": [ + { + "param-min-required": 1, + "type": "SVGNumber", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "SVGNumber" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "getItem" + }, + "appendItem": { + "signature": [ + { + "param-min-required": 1, + "type": "SVGNumber", + "param": [ + { + "name": "newItem", + "type": "SVGNumber", + "type-original": "SVGNumber" + } + ], + "type-original": "SVGNumber" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "appendItem" + }, + "clear": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "clear" + }, + "removeItem": { + "signature": [ + { + "param-min-required": 1, + "type": "SVGNumber", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "SVGNumber" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "removeItem" + }, + "initialize": { + "signature": [ + { + "param-min-required": 1, + "type": "SVGNumber", + "param": [ + { + "name": "newItem", + "type": "SVGNumber", + "type-original": "SVGNumber" + } + ], + "type-original": "SVGNumber" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "initialize" + }, + "insertItemBefore": { + "signature": [ + { + "param-min-required": 2, + "type": "SVGNumber", + "param": [ + { + "name": "newItem", + "type": "SVGNumber", + "type-original": "SVGNumber" + }, + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "SVGNumber" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "insertItemBefore" + } + } + }, + "name": "SVGNumberList", + "extends": "Object", + "properties": { + "property": { + "numberOfItems": { + "specs": "svg2", + "name": "numberOfItems", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + } + } + } + }, + "MSFIDOSignature": { + "specs": "webauthn", + "anonymous-methods": { + "method": [] + }, + "name": "MSFIDOSignature", + "properties": { + "property": { + "authnrData": { + "specs": "webauthn", + "exposed": "Window", + "name": "authnrData", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "signature": { + "specs": "webauthn", + "exposed": "Window", + "name": "signature", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "clientData": { + "specs": "webauthn", + "exposed": "Window", + "name": "clientData", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "MediaKeyStatusMap": { + "specs": "encrypted-media", + "anonymous-methods": { + "method": [] + }, + "name": "MediaKeyStatusMap", + "properties": { + "property": { + "size": { + "specs": "encrypted-media", + "exposed": "Window", + "name": "size", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "get": { + "signature": [ + { + "param-min-required": 1, + "type": "MediaKeyStatus", + "param": [ + { + "name": "keyId", + "type": [ + { + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ] + }, + { + "nullable": 1, + "type": "ArrayBuffer" + } + ], + "type-original": "BufferSource" + } + ], + "type-original": "MediaKeyStatus" + } + ], + "specs": "encrypted-media", + "exposed": "Window", + "name": "get" + }, + "has": { + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "keyId", + "type": [ + { + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ] + }, + { + "nullable": 1, + "type": "ArrayBuffer" + } + ], + "type-original": "BufferSource" + } + ], + "type-original": "boolean" + } + ], + "specs": "encrypted-media", + "exposed": "Window", + "name": "has" + }, + "forEach": { + "iterator-key-type": "BufferSource", + "iterator-value-type": "MediaKeyStatus", + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "callback", + "type": "Function", + "type-original": "Function" + }, + { + "name": "thisArg", + "type": "any", + "optional": 1, + "type-original": "any" + } + ], + "type-original": "void" + } + ], + "specs": "encrypted-media", + "exposed": "Window", + "name": "forEach" + } + } + }, + "exposed": "Window", + "iterable": "pair", + "extends": "Object" + }, + "HashChangeEvent": { + "specs": "html5", + "constructor": { + "specs": "html5", + "signature": [ + { + "param-min-required": 1, + "type": "HashChangeEvent", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "HashChangeEventInit", + "optional": 1, + "type-original": "HashChangeEventInit" + } + ], + "type-original": "HashChangeEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "HashChangeEvent", + "properties": { + "property": { + "newURL": { + "specs": "html5", + "exposed": "Window", + "name": "newURL", + "type": "USVString", + "type-original": "USVString", + "read-only": 1 + }, + "oldURL": { + "specs": "html5", + "exposed": "Window", + "name": "oldURL", + "type": "USVString", + "type-original": "USVString", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Event" + }, + "RTCPeerConnectionIceEvent": { + "specs": "webrtc", + "constructor": { + "specs": "webrtc", + "signature": [ + { + "param-min-required": 2, + "type": "RTCPeerConnectionIceEvent", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "RTCPeerConnectionIceEventInit", + "type-original": "RTCPeerConnectionIceEventInit" + } + ], + "type-original": "RTCPeerConnectionIceEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "RTCPeerConnectionIceEvent", + "properties": { + "property": { + "candidate": { + "specs": "webrtc", + "exposed": "Window", + "name": "candidate", + "type": "RTCIceCandidate", + "type-original": "RTCIceCandidate", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "Event" + }, + "MediaDeviceInfo": { + "constants": { + "constant": {} + }, + "specs": "media-capture-api", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "MediaDeviceInfo", + "extends": "Object", + "properties": { + "property": { + "kind": { + "specs": "media-capture-api", + "exposed": "Window", + "name": "kind", + "type": "MediaDeviceKind", + "type-original": "MediaDeviceKind", + "read-only": 1 + }, + "deviceId": { + "specs": "media-capture-api", + "exposed": "Window", + "name": "deviceId", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "groupId": { + "specs": "media-capture-api", + "exposed": "Window", + "name": "groupId", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "label": { + "specs": "media-capture-api", + "exposed": "Window", + "name": "label", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + } + } + } + }, + "HTMLObjectElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLObjectElement", + "properties": { + "property": { + "codeType": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "codeType", + "type-original": "DOMString", + "content-attribute": "codetype", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "mime_type", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "validationMessage": { + "specs": "html5", + "exposed": "Window", + "name": "validationMessage", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "width": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "width", + "content-attribute": "width", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "non_negative_integer", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "msPlayToPrimary": { + "extension": 1, + "specs": "none", + "ce-reactions": 1, + "name": "msPlayToPrimary", + "type-original": "boolean", + "content-attribute": "x-ms-playtoprimary", + "tags": "Media", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "boolean", + "content-attribute-boolean": 1 + }, + "form": { + "pure": 1, + "specs": "html5", + "name": "form", + "type-original": "HTMLFormElement?", + "nullable": 1, + "exposed": "Window", + "type": "HTMLFormElement", + "read-only": 1 + }, + "readyState": { + "extension": 1, + "specs": "none", + "name": "readyState", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short", + "read-only": 1 + }, + "msPlayToDisabled": { + "extension": 1, + "specs": "none", + "ce-reactions": 1, + "name": "msPlayToDisabled", + "type-original": "boolean", + "content-attribute": "x-ms-playtodisabled", + "tags": "Media", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "boolean", + "content-attribute-boolean": 1 + }, + "willValidate": { + "specs": "html5", + "exposed": "Window", + "name": "willValidate", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "msPlayToSource": { + "extension": 1, + "specs": "none", + "name": "msPlayToSource", + "type-original": "any", + "exposed": "Window", + "type": "any", + "read-only": 1 + }, + "code": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "code", + "type-original": "DOMString", + "content-attribute": "code", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "url", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "vspace": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "vspace", + "type-original": "unsigned long", + "content-attribute": "vspace", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "non_negative_integer", + "exposed": "Window", + "type": "unsigned long", + "content-attribute-reflects": 1 + }, + "msPlayToPreferredSourceUri": { + "extension": 1, + "specs": "none", + "ce-reactions": 1, + "name": "msPlayToPreferredSourceUri", + "type-original": "DOMString", + "content-attribute": "x-ms-playtopreferredsourceuri", + "tags": "Media", + "content-attribute-value-syntax": "url", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "standby": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "standby", + "type-original": "DOMString", + "content-attribute": "standby", + "deprecated": 1, + "interop": 1, + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "archive": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "archive", + "type-original": "DOMString", + "content-attribute": "archive", + "deprecated": 1, + "interop": 1, + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "align": { + "specs": "html5", + "ce-reactions": 1, + "type-original": "DOMString", + "content-attribute": "align", + "interop": 1, + "content-attribute-enum-values": "absbottom absmiddle baseline bottom left middle right texttop top", + "pure": 1, + "name": "align", + "deprecated": 1, + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "name": { + "content-attribute-enum-values": "_blank _self _parent _top", + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "name", + "content-attribute": "name", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "name_ref", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "useMap": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "useMap", + "content-attribute": "usemap", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "hash_name_ref", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "data": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "data", + "content-attribute": "data", + "type-original": "USVString", + "exposed": "Window", + "content-attribute-value-syntax": "url", + "type": "USVString", + "content-attribute-reflects": 1 + }, + "height": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "height", + "content-attribute": "height", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "non_negative_integer", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "border": { + "specs": "html5", + "ce-reactions": 1, + "type-original": "DOMString", + "content-attribute": "border", + "interop": 1, + "pure": 1, + "name": "border", + "deprecated": 1, + "treat-null-as": "EmptyString", + "content-attribute-value-syntax": "non_negative_integer", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "contentDocument": { + "specs": "html5", + "name": "contentDocument", + "type-original": "Document?", + "nullable": 1, + "exposed": "Window", + "type": "Document", + "read-only": 1 + }, + "codeBase": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "codeBase", + "type-original": "DOMString", + "content-attribute": "codebase", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "url", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "hspace": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "hspace", + "type-original": "unsigned long", + "content-attribute": "hspace", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "non_negative_integer", + "exposed": "Window", + "type": "unsigned long", + "content-attribute-reflects": 1 + }, + "declare": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "declare", + "type-original": "boolean", + "content-attribute": "declare", + "deprecated": 1, + "interop": 1, + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1 + }, + "validity": { + "specs": "html5", + "exposed": "Window", + "name": "validity", + "type": "ValidityState", + "type-original": "ValidityState", + "read-only": 1 + }, + "type": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "type", + "content-attribute": "type", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "mime_type", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "BaseHref": { + "extension": 1, + "specs": "none", + "name": "BaseHref", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "object" + } + ], + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "async", + "specs": "HTML5", + "name": "load", + "type": "Event", + "skips-window": 1, + "tags": "ObjectAsImageOnly" + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "checkValidity": { + "signature": [ + { + "type": "boolean", + "type-original": "boolean" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "checkValidity" + }, + "setCustomValidity": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "error", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "setCustomValidity" + } + } + }, + "extends": "HTMLElement", + "implements": [ + "GetSVGDocument" + ] + }, + "StorageEvent": { + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "name": "StorageEvent", + "properties": { + "property": { + "newValue": { + "specs": "html5", + "name": "newValue", + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "oldValue": { + "specs": "html5", + "name": "oldValue", + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "url": { + "specs": "html5", + "name": "url", + "type-original": "USVString", + "exposed": "Window", + "type": "USVString", + "read-only": 1 + }, + "storageArea": { + "specs": "html5", + "name": "storageArea", + "type-original": "Storage?", + "nullable": 1, + "exposed": "Window", + "type": "Storage", + "read-only": 1 + }, + "key": { + "specs": "html5", + "name": "key", + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": { + "initStorageEvent": { + "deprecated": 1, + "interop": 1, + "signature": [ + { + "param-min-required": 8, + "type": "void", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "canBubbleArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "cancelableArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "keyArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "oldValueArg", + "type": "any", + "type-original": "any" + }, + { + "name": "newValueArg", + "type": "any", + "type-original": "any" + }, + { + "name": "urlArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "storageAreaArg", + "type": "Storage", + "type-original": "Storage" + } + ], + "type-original": "void" + } + ], + "specs": "webstorage-20110901", + "exposed": "Window", + "name": "initStorageEvent" + } + } + }, + "extends": "Event" + }, + "HTMLEmbedElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLEmbedElement", + "properties": { + "property": { + "palette": { + "extension": 1, + "specs": "none", + "name": "palette", + "type-original": "DOMString", + "content-attribute": "palette", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString", + "read-only": 1 + }, + "width": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "width", + "content-attribute": "width", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "non_negative_integer", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "msPlayToPreferredSourceUri": { + "extension": 1, + "specs": "none", + "ce-reactions": 1, + "name": "msPlayToPreferredSourceUri", + "type-original": "DOMString", + "content-attribute": "x-ms-playtopreferredsourceuri", + "content-attribute-value-syntax": "url", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "msPlayToPrimary": { + "extension": 1, + "specs": "none", + "ce-reactions": 1, + "name": "msPlayToPrimary", + "type-original": "boolean", + "content-attribute": "x-ms-playtoprimary", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "boolean", + "content-attribute-boolean": 1 + }, + "src": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "src", + "content-attribute": "src", + "type-original": "USVString", + "exposed": "Window", + "content-attribute-value-syntax": "url", + "type": "USVString", + "content-attribute-reflects": 1 + }, + "name": { + "pure": 1, + "content-attribute-enum-values": "_blank _self _parent _top", + "specs": "html5", + "ce-reactions": 1, + "name": "name", + "type-original": "DOMString", + "content-attribute": "name", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "name_ref", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "pluginspage": { + "extension": 1, + "specs": "none", + "name": "pluginspage", + "type-original": "DOMString", + "content-attribute": "pluginspage", + "content-attribute-value-syntax": "url", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString", + "read-only": 1 + }, + "readyState": { + "extension": 1, + "specs": "none", + "name": "readyState", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "msPlayToDisabled": { + "extension": 1, + "specs": "none", + "ce-reactions": 1, + "name": "msPlayToDisabled", + "type-original": "boolean", + "content-attribute": "x-ms-playtodisabled", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "boolean", + "content-attribute-boolean": 1 + }, + "height": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "height", + "content-attribute": "height", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "non_negative_integer", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "hidden": { + "content-attribute-enum-values": "false true", + "extension": 1, + "specs": "none", + "ce-reactions": 1, + "name": "hidden", + "type-original": "DOMString", + "content-attribute": "hidden", + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "msPlayToSource": { + "extension": 1, + "specs": "none", + "name": "msPlayToSource", + "type-original": "any", + "exposed": "Window", + "type": "any", + "read-only": 1 + }, + "units": { + "content-attribute-enum-values": "px em", + "extension": 1, + "specs": "none", + "ce-reactions": 1, + "name": "units", + "type-original": "DOMString", + "content-attribute": "units", + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString" + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "embed", + "html-self-closing": 1 + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement", + "implements": [ + "GetSVGDocument" + ] + }, + "DOMException": { + "specs": "dom4", + "anonymous-methods": { + "method": [] + }, + "name": "DOMException", + "properties": { + "property": { + "name": { + "specs": "dom4", + "name": "name", + "tags": "Exceptions", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "message": { + "specs": "dom4", + "name": "message", + "tags": "Exceptions", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "stringifier": 1, + "read-only": 1 + }, + "code": { + "specs": "dom4", + "name": "code", + "tags": "Exceptions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short", + "read-only": 1 + } + } + }, + "tags": "Exceptions", + "constants": { + "constant": { + "NO_MODIFICATION_ALLOWED_ERR": { + "specs": "dom4", + "value": "7", + "name": "NO_MODIFICATION_ALLOWED_ERR", + "tags": "Exceptions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "HIERARCHY_REQUEST_ERR": { + "specs": "dom4", + "value": "3", + "name": "HIERARCHY_REQUEST_ERR", + "tags": "Exceptions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "DATA_CLONE_ERR": { + "specs": "dom4", + "value": "25", + "name": "DATA_CLONE_ERR", + "tags": "Exceptions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "INVALID_MODIFICATION_ERR": { + "specs": "dom4", + "value": "13", + "name": "INVALID_MODIFICATION_ERR", + "tags": "Exceptions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "NAMESPACE_ERR": { + "specs": "dom4", + "value": "14", + "name": "NAMESPACE_ERR", + "tags": "Exceptions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "INVALID_CHARACTER_ERR": { + "specs": "dom4", + "value": "5", + "name": "INVALID_CHARACTER_ERR", + "tags": "Exceptions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "TYPE_MISMATCH_ERR": { + "specs": "dom4", + "value": "17", + "name": "TYPE_MISMATCH_ERR", + "tags": "Exceptions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "ABORT_ERR": { + "specs": "dom4", + "value": "20", + "name": "ABORT_ERR", + "tags": "Exceptions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "INVALID_STATE_ERR": { + "specs": "dom4", + "value": "11", + "name": "INVALID_STATE_ERR", + "tags": "Exceptions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "SECURITY_ERR": { + "specs": "dom4", + "value": "18", + "name": "SECURITY_ERR", + "tags": "Exceptions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "NETWORK_ERR": { + "specs": "dom4", + "value": "19", + "name": "NETWORK_ERR", + "tags": "Exceptions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "WRONG_DOCUMENT_ERR": { + "specs": "dom4", + "value": "4", + "name": "WRONG_DOCUMENT_ERR", + "tags": "Exceptions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "INVALID_NODE_TYPE_ERR": { + "specs": "dom4", + "value": "24", + "name": "INVALID_NODE_TYPE_ERR", + "tags": "Exceptions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "QUOTA_EXCEEDED_ERR": { + "specs": "dom4", + "value": "22", + "name": "QUOTA_EXCEEDED_ERR", + "tags": "Exceptions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "INDEX_SIZE_ERR": { + "specs": "dom4", + "value": "1", + "name": "INDEX_SIZE_ERR", + "tags": "Exceptions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "DOMSTRING_SIZE_ERR": { + "specs": "dom4", + "value": "2", + "name": "DOMSTRING_SIZE_ERR", + "tags": "Exceptions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "SYNTAX_ERR": { + "specs": "dom4", + "value": "12", + "name": "SYNTAX_ERR", + "tags": "Exceptions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "SERIALIZE_ERR": { + "specs": "dom4", + "value": "82", + "name": "SERIALIZE_ERR", + "tags": "Exceptions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "NOT_FOUND_ERR": { + "specs": "dom4", + "value": "8", + "name": "NOT_FOUND_ERR", + "tags": "Exceptions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "VALIDATION_ERR": { + "specs": "dom4", + "value": "16", + "name": "VALIDATION_ERR", + "tags": "Exceptions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "URL_MISMATCH_ERR": { + "specs": "dom4", + "value": "21", + "name": "URL_MISMATCH_ERR", + "tags": "Exceptions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "PARSE_ERR": { + "specs": "dom4", + "value": "81", + "name": "PARSE_ERR", + "tags": "Exceptions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "NO_DATA_ALLOWED_ERR": { + "specs": "dom4", + "value": "6", + "name": "NO_DATA_ALLOWED_ERR", + "tags": "Exceptions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "NOT_SUPPORTED_ERR": { + "specs": "dom4", + "value": "9", + "name": "NOT_SUPPORTED_ERR", + "tags": "Exceptions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "TIMEOUT_ERR": { + "specs": "dom4", + "value": "23", + "name": "TIMEOUT_ERR", + "tags": "Exceptions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "INVALID_ACCESS_ERR": { + "specs": "dom4", + "value": "15", + "name": "INVALID_ACCESS_ERR", + "tags": "Exceptions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "INUSE_ATTRIBUTE_ERR": { + "specs": "dom4", + "value": "10", + "name": "INUSE_ATTRIBUTE_ERR", + "tags": "Exceptions", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + } + } + }, + "exposed": "Window", + "methods": { + "method": { + "toString": { + "signature": [ + { + "type": "DOMString", + "type-original": "DOMString" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "toString", + "stringifier": 1 + } + } + }, + "extends": "Object" + }, + "SVGAnimatedBoolean": { + "constants": { + "constant": {} + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "SVGAnimatedBoolean", + "extends": "Object", + "properties": { + "property": { + "animVal": { + "specs": "svg2", + "name": "animVal", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "read-only": 1 + }, + "baseVal": { + "specs": "svg2", + "exposed": "Window", + "name": "baseVal", + "type": "boolean", + "type-original": "boolean" + } + } + } + }, + "OES_texture_float": { + "constants": { + "constant": {} + }, + "specs": "webgl", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "OES_texture_float", + "extends": "Object", + "properties": { + "property": {} + } + }, + "SyncEvent": { + "specs": "web-background-sync", + "constructor": { + "specs": "web-background-sync", + "signature": [ + { + "param-min-required": 2, + "type": "SyncEvent", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "init", + "type": "SyncEventInit", + "type-original": "SyncEventInit" + } + ], + "type-original": "SyncEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "SyncEvent", + "properties": { + "property": { + "lastChance": { + "specs": "web-background-sync", + "exposed": "Worker", + "name": "lastChance", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "tag": { + "specs": "web-background-sync", + "exposed": "Worker", + "name": "tag", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Worker", + "methods": { + "method": {} + }, + "extends": "ExtendableEvent" + }, + "FormData": { + "constants": { + "constant": {} + }, + "specs": "xhr", + "constructor": { + "specs": "xhr", + "signature": [ + { + "type": "FormData", + "type-original": "FormData" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "append": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "name", + "type": "any", + "type-original": "any" + }, + { + "name": "value", + "type": "any", + "type-original": "any" + }, + { + "name": "blobName", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "xhr", + "exposed": "Window", + "name": "append" + } + } + }, + "name": "FormData", + "extends": "Object", + "properties": { + "property": {} + } + }, + "PushEvent": { + "specs": "push-api", + "constructor": { + "specs": "push-api", + "signature": [ + { + "param-min-required": 1, + "type": "PushEvent", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "PushEventInit", + "optional": 1, + "type-original": "PushEventInit" + } + ], + "type-original": "PushEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "PushEvent", + "properties": { + "property": { + "data": { + "specs": "push-api", + "name": "data", + "type-original": "PushMessageData?", + "nullable": 1, + "exposed": "Worker", + "type": "PushMessageData", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Worker", + "methods": { + "method": {} + }, + "extends": "ExtendableEvent" + }, + "SVGFECompositeElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "linearRGB auto sRGB inherit", + "value-syntax": "enum", + "name": "color-interpolation-filters" + } + ] + }, + "specs": "filter-effects", + "anonymous-methods": { + "method": [] + }, + "name": "SVGFECompositeElement", + "properties": { + "property": { + "operator": { + "content-attribute-enum-values": "over in out atop xor arithmetic", + "specs": "filter-effects", + "name": "operator", + "constant": 1, + "content-attribute": "operator", + "type-original": "SVGAnimatedEnumeration", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "SVGAnimatedEnumeration", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "k2": { + "specs": "filter-effects", + "name": "k2", + "constant": 1, + "content-attribute": "k2", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "in2": { + "content-attribute-enum-values": "SourceGraphic SourceAlpha BackgroundImage BackgroundAlpha FillPaint StrokePaint", + "specs": "filter-effects", + "name": "in2", + "constant": 1, + "content-attribute": "in2", + "type-original": "SVGAnimatedString", + "exposed": "Window", + "content-attribute-value-syntax": "filter_result_ref", + "type": "SVGAnimatedString", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "k1": { + "specs": "filter-effects", + "name": "k1", + "constant": 1, + "content-attribute": "k1", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "k3": { + "specs": "filter-effects", + "name": "k3", + "constant": 1, + "content-attribute": "k3", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "k4": { + "specs": "filter-effects", + "name": "k4", + "constant": 1, + "content-attribute": "k4", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "in1": { + "content-attribute-enum-values": "SourceGraphic SourceAlpha BackgroundImage BackgroundAlpha FillPaint StrokePaint", + "specs": "filter-effects", + "name": "in1", + "constant": 1, + "content-attribute": "in", + "type-original": "SVGAnimatedString", + "exposed": "Window", + "content-attribute-value-syntax": "filter_result_ref", + "type": "SVGAnimatedString", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "filter-effects", + "namespace": "SVG", + "name": "feComposite" + } + ], + "constants": { + "constant": { + "SVG_FECOMPOSITE_OPERATOR_OUT": { + "specs": "filter-effects", + "value": "3", + "exposed": "Window", + "name": "SVG_FECOMPOSITE_OPERATOR_OUT", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_FECOMPOSITE_OPERATOR_OVER": { + "specs": "filter-effects", + "value": "1", + "exposed": "Window", + "name": "SVG_FECOMPOSITE_OPERATOR_OVER", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_FECOMPOSITE_OPERATOR_XOR": { + "specs": "filter-effects", + "value": "5", + "exposed": "Window", + "name": "SVG_FECOMPOSITE_OPERATOR_XOR", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_FECOMPOSITE_OPERATOR_ARITHMETIC": { + "specs": "filter-effects", + "value": "6", + "exposed": "Window", + "name": "SVG_FECOMPOSITE_OPERATOR_ARITHMETIC", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_FECOMPOSITE_OPERATOR_ATOP": { + "specs": "filter-effects", + "value": "4", + "exposed": "Window", + "name": "SVG_FECOMPOSITE_OPERATOR_ATOP", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_FECOMPOSITE_OPERATOR_IN": { + "specs": "filter-effects", + "value": "2", + "exposed": "Window", + "name": "SVG_FECOMPOSITE_OPERATOR_IN", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_FECOMPOSITE_OPERATOR_UNKNOWN": { + "specs": "filter-effects", + "value": "0", + "exposed": "Window", + "name": "SVG_FECOMPOSITE_OPERATOR_UNKNOWN", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGElement", + "implements": [ + "SVGFilterPrimitiveStandardAttributes" + ] + }, + "SVGSymbolElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "auto inherit", + "value-syntax": "css_shape_rect", + "name": "clip" + }, + { + "enum-values": "visible hidden scroll auto inherit", + "value-syntax": "enum", + "name": "overflow" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "clip-path" + }, + { + "enum-values": "auto default none context-menu help pointer progress wait cell crosshair text vertical-text alias copy move no-drop not-allowed e-resize n-resize ne-resize nw-resize s-resize se-resize sw-resize w-resize ew-resize ns-resize nesw-resize nwse-resize col-resize row-resize all-scroll zoom-in zoom-out inherit", + "value-syntax": "comma_separated_css_url_with_optional_x_y_offset_followed_by_enum", + "name": "cursor" + }, + { + "enum-values": "accumulate inherit", + "value-syntax": "svg_enum_new_followed_by_svg_viewbox", + "name": "enable-background" + }, + { + "enum-values": "false true", + "value-syntax": "enum", + "name": "externalResourcesRequired" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "filter" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "mask" + }, + { + "enum-values": "inherit initial", + "value-syntax": "0_to_1_floating_point_number", + "name": "opacity" + }, + { + "enum-values": "default preserve", + "value-syntax": "enum", + "name": "xml:space" + } + ] + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGSymbolElement", + "properties": { + "property": {} + }, + "element": [ + { + "specs": "svg2", + "namespace": "SVG", + "name": "symbol" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGElement", + "implements": [ + "SVGFitToViewBox" + ] + }, + "SVGElementInstanceList": { + "constants": { + "constant": {} + }, + "specs": "svg11", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "item": { + "deprecated": 1, + "signature": [ + { + "param-min-required": 1, + "type": "SVGElementInstance", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "SVGElementInstance" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "item" + } + } + }, + "name": "SVGElementInstanceList", + "extends": "Object", + "properties": { + "property": { + "length": { + "specs": "svg11", + "name": "length", + "type-original": "unsigned long", + "deprecated": 1, + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + } + } + } + }, + "PageTransitionEvent": { + "constants": { + "constant": {} + }, + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "PageTransitionEvent", + "extends": "Event", + "properties": { + "property": { + "persisted": { + "specs": "html5", + "exposed": "Window", + "name": "persisted", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + } + } + } + }, + "MSCredentials": { + "constants": { + "constant": {} + }, + "specs": "webauthn", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "getAssertion": { + "signature": [ + { + "subtype": { + "type": "MSAssertion" + }, + "param-min-required": 1, + "type": "Promise", + "param": [ + { + "name": "challenge", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "filter", + "type": "MSCredentialFilter", + "optional": 1, + "type-original": "MSCredentialFilter" + }, + { + "name": "params", + "type": "MSSignatureParameters", + "optional": 1, + "type-original": "MSSignatureParameters" + } + ], + "type-original": "Promise" + } + ], + "specs": "webauthn", + "exposed": "Window", + "name": "getAssertion" + }, + "makeCredential": { + "signature": [ + { + "subtype": { + "type": "MSAssertion" + }, + "param-min-required": 2, + "type": "Promise", + "param": [ + { + "name": "accountInfo", + "type": "MSAccountInfo", + "type-original": "MSAccountInfo" + }, + { + "subtype": { + "type": "MSCredentialParameters" + }, + "name": "params", + "type": "sequence", + "type-original": "sequence" + }, + { + "name": "challenge", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + } + ], + "type-original": "Promise" + } + ], + "specs": "webauthn", + "exposed": "Window", + "name": "makeCredential" + } + } + }, + "name": "MSCredentials", + "extends": "Object", + "properties": { + "property": {} + } + }, + "HTMLVideoElement": { + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLVideoElement", + "properties": { + "property": { + "videoWidth": { + "specs": "html5", + "name": "videoWidth", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + }, + "width": { + "specs": "html5", + "ce-reactions": 1, + "name": "width", + "content-attribute": "width", + "type-original": "unsigned long", + "exposed": "Window", + "content-attribute-value-syntax": "non_negative_integer", + "type": "unsigned long", + "content-attribute-reflects": 1 + }, + "msStereo3DPackingMode": { + "extension": 1, + "specs": "none", + "name": "msStereo3DPackingMode", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString" + }, + "onMSVideoFrameStepCompleted": { + "extension": 1, + "specs": "none", + "name": "onMSVideoFrameStepCompleted", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSVideoFrameStepCompleted" + }, + "msIsLayoutOptimalForPlayback": { + "extension": 1, + "specs": "none", + "name": "msIsLayoutOptimalForPlayback", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "read-only": 1 + }, + "webkitSupportsFullscreen": { + "extension": 1, + "specs": "none", + "name": "webkitSupportsFullscreen", + "type-original": "boolean", + "interop": 1, + "exposed": "Window", + "type": "boolean", + "read-only": 1 + }, + "height": { + "specs": "html5", + "ce-reactions": 1, + "name": "height", + "content-attribute": "height", + "type-original": "unsigned long", + "exposed": "Window", + "content-attribute-value-syntax": "non_negative_integer", + "type": "unsigned long", + "content-attribute-reflects": 1 + }, + "msZoom": { + "extension": 1, + "specs": "none", + "exposed": "Window", + "name": "msZoom", + "type": "boolean", + "type-original": "boolean" + }, + "msIsStereo3D": { + "extension": 1, + "specs": "none", + "name": "msIsStereo3D", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "read-only": 1 + }, + "webkitDisplayingFullscreen": { + "extension": 1, + "specs": "none", + "name": "webkitDisplayingFullscreen", + "type-original": "boolean", + "interop": 1, + "exposed": "Window", + "type": "boolean", + "read-only": 1 + }, + "onMSVideoOptimalLayoutChanged": { + "extension": 1, + "specs": "none", + "name": "onMSVideoOptimalLayoutChanged", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSVideoOptimalLayoutChanged" + }, + "videoHeight": { + "specs": "html5", + "name": "videoHeight", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + }, + "msStereo3DRenderMode": { + "extension": 1, + "specs": "none", + "name": "msStereo3DRenderMode", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString" + }, + "msHorizontalMirror": { + "extension": 1, + "specs": "none", + "name": "msHorizontalMirror", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean" + }, + "onMSVideoFormatChanged": { + "extension": 1, + "specs": "none", + "name": "onMSVideoFormatChanged", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSVideoFormatChanged" + }, + "poster": { + "specs": "html5", + "ce-reactions": 1, + "name": "poster", + "content-attribute": "poster", + "type-original": "USVString", + "exposed": "Window", + "content-attribute-value-syntax": "url", + "type": "USVString", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "video" + } + ], + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "async", + "specs": "HTML5", + "name": "resize", + "type": "Event" + } + ] + }, + "methods": { + "method": { + "webkitExitFullScreen": { + "extension": 1, + "interop": 1, + "specs": "none", + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "name": "webkitExitFullScreen", + "exposed": "Window" + }, + "getVideoPlaybackQuality": { + "specs": "media-playback-quality", + "signature": [ + { + "type": "VideoPlaybackQuality", + "type-original": "VideoPlaybackQuality" + } + ], + "name": "getVideoPlaybackQuality", + "exposed": "Window" + }, + "msInsertVideoEffect": { + "extension": 1, + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "activatableClassId", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "effectRequired", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "config", + "optional": 1, + "type": "any", + "type-original": "any" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "msInsertVideoEffect" + }, + "msFrameStep": { + "extension": 1, + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "forward", + "type": "boolean", + "type-original": "boolean" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "msFrameStep" + }, + "webkitExitFullscreen": { + "extension": 1, + "interop": 1, + "specs": "none", + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "name": "webkitExitFullscreen", + "exposed": "Window" + }, + "webkitEnterFullScreen": { + "extension": 1, + "interop": 1, + "specs": "none", + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "name": "webkitEnterFullScreen", + "exposed": "Window" + }, + "webkitEnterFullscreen": { + "extension": 1, + "interop": 1, + "specs": "none", + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "name": "webkitEnterFullscreen", + "exposed": "Window" + }, + "msSetVideoRectangle": { + "extension": 1, + "signature": [ + { + "param-min-required": 4, + "type": "void", + "param": [ + { + "name": "left", + "type": "float", + "type-original": "float" + }, + { + "name": "top", + "type": "float", + "type-original": "float" + }, + { + "name": "right", + "type": "float", + "type-original": "float" + }, + { + "name": "bottom", + "type": "float", + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "msSetVideoRectangle" + } + } + }, + "exposed": "Window", + "extends": "HTMLMediaElement" + }, + "SVGFEDiffuseLightingElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "inherit initial", + "value-syntax": "css_color", + "name": "color" + }, + { + "enum-values": "linearRGB auto sRGB inherit", + "value-syntax": "enum", + "name": "color-interpolation-filters" + }, + { + "enum-values": "currentColor inherit initial", + "value-syntax": "css_color", + "name": "lighting-color" + } + ] + }, + "specs": "filter-effects", + "anonymous-methods": { + "method": [] + }, + "name": "SVGFEDiffuseLightingElement", + "properties": { + "property": { + "kernelUnitLengthY": { + "specs": "filter-effects", + "name": "kernelUnitLengthY", + "constant": 1, + "content-attribute": "kernelUnitLength", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "svg_x_y_pair", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "surfaceScale": { + "specs": "filter-effects", + "name": "surfaceScale", + "constant": 1, + "content-attribute": "surfaceScale", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "kernelUnitLengthX": { + "specs": "filter-effects", + "name": "kernelUnitLengthX", + "constant": 1, + "content-attribute": "kernelUnitLength", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "svg_x_y_pair", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "in1": { + "content-attribute-enum-values": "SourceGraphic SourceAlpha BackgroundImage BackgroundAlpha FillPaint StrokePaint", + "specs": "filter-effects", + "name": "in1", + "constant": 1, + "content-attribute": "in", + "type-original": "SVGAnimatedString", + "exposed": "Window", + "content-attribute-value-syntax": "filter_result_ref", + "type": "SVGAnimatedString", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "diffuseConstant": { + "specs": "filter-effects", + "name": "diffuseConstant", + "constant": 1, + "content-attribute": "diffuseConstant", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "filter-effects", + "namespace": "SVG", + "name": "feDiffuseLighting" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGElement", + "implements": [ + "SVGFilterPrimitiveStandardAttributes" + ] + }, + "SVGFEComponentTransferElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "linearRGB auto sRGB inherit", + "value-syntax": "enum", + "name": "color-interpolation-filters" + } + ] + }, + "specs": "filter-effects", + "anonymous-methods": { + "method": [] + }, + "name": "SVGFEComponentTransferElement", + "properties": { + "property": { + "in1": { + "content-attribute-enum-values": "SourceGraphic SourceAlpha BackgroundImage BackgroundAlpha FillPaint StrokePaint", + "specs": "filter-effects", + "name": "in1", + "constant": 1, + "content-attribute": "in", + "type-original": "SVGAnimatedString", + "exposed": "Window", + "content-attribute-value-syntax": "filter_result_ref", + "type": "SVGAnimatedString", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "filter-effects", + "namespace": "SVG", + "name": "feComponentTransfer" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGElement", + "implements": [ + "SVGFilterPrimitiveStandardAttributes" + ] + }, + "OES_texture_float_linear": { + "constants": { + "constant": {} + }, + "specs": "webgl", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "OES_texture_float_linear", + "extends": "Object", + "properties": { + "property": {} + } + }, + "ServiceWorkerGlobalScope": { + "specs": "service-workers", + "anonymous-methods": { + "method": [] + }, + "name": "ServiceWorkerGlobalScope", + "properties": { + "property": { + "onactivate": { + "specs": "service-workers", + "name": "onactivate", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Worker", + "type": "EventHandlerNonNull", + "event-handler": "activate" + }, + "onpush": { + "specs": "push-api", + "name": "onpush", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Worker", + "type": "EventHandlerNonNull", + "event-handler": "push" + }, + "onnotificationclose": { + "specs": "notifications", + "name": "onnotificationclose", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Worker", + "type": "EventHandlerNonNull", + "event-handler": "notificationclose" + }, + "onsync": { + "specs": "web-background-sync", + "name": "onsync", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Worker", + "type": "EventHandlerNonNull", + "event-handler": "sync" + }, + "oninstall": { + "specs": "service-workers", + "name": "oninstall", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Worker", + "type": "EventHandlerNonNull", + "event-handler": "install" + }, + "onnotificationclick": { + "specs": "notifications", + "name": "onnotificationclick", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Worker", + "type": "EventHandlerNonNull", + "event-handler": "notificationclick" + }, + "onfetch": { + "specs": "service-workers", + "name": "onfetch", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Worker", + "type": "EventHandlerNonNull", + "event-handler": "fetch" + }, + "registration": { + "specs": "service-workers", + "same-object": 1, + "name": "registration", + "type-original": "ServiceWorkerRegistration", + "exposed": "Worker", + "type": "ServiceWorkerRegistration", + "read-only": 1 + }, + "onmessage": { + "specs": "service-workers", + "name": "onmessage", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Worker", + "type": "EventHandlerNonNull", + "event-handler": "message" + }, + "onpushsubscriptionchange": { + "specs": "push-api", + "name": "onpushsubscriptionchange", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Worker", + "type": "EventHandlerNonNull", + "event-handler": "pushsubscriptionchange" + }, + "clients": { + "specs": "service-workers", + "same-object": 1, + "name": "clients", + "type-original": "Clients", + "exposed": "Worker", + "type": "Clients", + "read-only": 1 + }, + "onmessageerror": { + "specs": "service-workers", + "name": "onmessageerror", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Worker", + "type": "EventHandlerNonNull", + "event-handler": "messageerror" + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "async", + "specs": "ServiceWorker", + "name": "install", + "type": "ExtendableEvent" + }, + { + "dispatch": "async", + "specs": "ServiceWorker", + "name": "activate", + "type": "ExtendableEvent" + }, + { + "dispatch": "async", + "specs": "ServiceWorker", + "name": "fetch", + "type": "FetchEvent" + }, + { + "dispatch": "async", + "specs": "ServiceWorker", + "name": "message", + "type": "ExtendableMessageEvent" + }, + { + "dispatch": "async", + "specs": "ServiceWorker", + "name": "messageerror", + "type": "MessageEvent" + }, + { + "dispatch": "async", + "specs": "WebNotifications", + "name": "notificationclick", + "type": "NotificationEvent" + }, + { + "dispatch": "async", + "specs": "WebNotifications", + "name": "notificationclose", + "type": "NotificationEvent" + }, + { + "dispatch": "async", + "specs": "PushNotification", + "name": "push", + "type": "PushEvent" + }, + { + "dispatch": "async", + "specs": "PushNotification", + "name": "pushsubscriptionchange", + "type": "PushSubscriptionChangeEvent" + }, + { + "dispatch": "async", + "specs": "BackgroundSync", + "name": "sync", + "type": "SyncEvent" + } + ] + }, + "exposed": "Worker", + "methods": { + "method": { + "skipWaiting": { + "signature": [ + { + "new-object": 1, + "subtype": { + "type": "void" + }, + "type": "Promise", + "type-original": "Promise" + } + ], + "specs": "service-workers", + "exposed": "Worker", + "name": "skipWaiting" + } + } + }, + "extends": "WorkerGlobalScope" + }, + "PaymentRequest": { + "specs": "payment-request", + "constructor": { + "specs": "payment-request", + "signature": [ + { + "param-min-required": 2, + "type": "PaymentRequest", + "param": [ + { + "subtype": { + "type": "PaymentMethodData" + }, + "name": "methodData", + "type": "sequence", + "type-original": "sequence" + }, + { + "name": "details", + "type": "PaymentDetailsInit", + "type-original": "PaymentDetailsInit" + }, + { + "name": "options", + "type": "PaymentOptions", + "optional": 1, + "type-original": "PaymentOptions" + } + ], + "type-original": "PaymentRequest" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "PaymentRequest", + "properties": { + "property": { + "onshippingaddresschange": { + "specs": "payment-request", + "name": "onshippingaddresschange", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "shippingaddresschange" + }, + "onshippingoptionchange": { + "specs": "payment-request", + "name": "onshippingoptionchange", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "shippingoptionchange" + }, + "shippingType": { + "specs": "payment-request", + "name": "shippingType", + "type-original": "PaymentShippingType?", + "nullable": 1, + "exposed": "Window", + "type": "PaymentShippingType", + "read-only": 1 + }, + "shippingAddress": { + "specs": "payment-request", + "name": "shippingAddress", + "type-original": "PaymentAddress?", + "nullable": 1, + "exposed": "Window", + "type": "PaymentAddress", + "read-only": 1 + }, + "id": { + "specs": "payment-request", + "exposed": "Window", + "name": "id", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "shippingOption": { + "specs": "payment-request", + "name": "shippingOption", + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "payment-request", + "name": "shippingaddresschange", + "type": "Event" + }, + { + "dispatch": "sync", + "specs": "payment-request", + "name": "shippingoptionchange", + "type": "Event" + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "show": { + "signature": [ + { + "subtype": { + "type": "PaymentResponse" + }, + "type": "Promise", + "type-original": "Promise" + } + ], + "specs": "payment-request", + "exposed": "Window", + "name": "show" + }, + "abort": { + "signature": [ + { + "subtype": { + "type": "void" + }, + "type": "Promise", + "type-original": "Promise" + } + ], + "specs": "payment-request", + "exposed": "Window", + "name": "abort" + }, + "canMakePayment": { + "signature": [ + { + "subtype": { + "type": "boolean" + }, + "type": "Promise", + "type-original": "Promise" + } + ], + "specs": "payment-request", + "exposed": "Window", + "name": "canMakePayment" + } + } + }, + "extends": "EventTarget", + "secure-context": 1 + }, + "WorkerNavigator": { + "specs": "workers", + "anonymous-methods": { + "method": [] + }, + "name": "WorkerNavigator", + "properties": { + "property": {} + }, + "constants": { + "constant": {} + }, + "exposed": "Worker", + "methods": { + "method": {} + }, + "extends": "Object", + "implements": [ + "NavigatorID", + "NavigatorOnLine", + "NavigatorBeacon", + "NavigatorConcurrentHardware" + ] + }, + "HTMLFormControlsCollection": { + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "name": "HTMLFormControlsCollection", + "properties": { + "property": {} + }, + "tags": "TreeNavigation", + "constants": { + "constant": {} + }, + "methods": { + "method": { + "namedItem": { + "getter": 1, + "signature": [ + { + "param-min-required": 1, + "type": [ + { + "nullable": 1, + "type": "HTMLCollection" + }, + { + "nullable": 1, + "type": "Element" + } + ], + "param": [ + { + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "(HTMLCollection or Element)?" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "namedItem", + "tags": "TreeNavigation" + } + } + }, + "exposed": "Window", + "extends": "HTMLCollection" + }, + "XPathEvaluator": { + "constants": { + "constant": {} + }, + "specs": "dom-level-3-xpath", + "constructor": { + "specs": "dom-level-3-xpath", + "signature": [ + { + "type": "XPathEvaluator", + "type-original": "XPathEvaluator" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "createExpression": { + "signature": [ + { + "param-min-required": 2, + "type": "XPathExpression", + "param": [ + { + "name": "expression", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "resolver", + "type": "XPathNSResolver", + "type-original": "XPathNSResolver" + } + ], + "type-original": "XPathExpression" + } + ], + "specs": "dom-level-3-xpath", + "exposed": "Window", + "name": "createExpression" + }, + "createNSResolver": { + "pure": 1, + "signature": [ + { + "param-min-required": 0, + "type": "XPathNSResolver", + "param": [ + { + "name": "nodeResolver", + "type": "Node", + "optional": 1, + "type-original": "Node" + } + ], + "type-original": "XPathNSResolver" + } + ], + "specs": "dom-level-3-xpath", + "exposed": "Window", + "name": "createNSResolver" + }, + "evaluate": { + "signature": [ + { + "param-min-required": 5, + "type": "XPathResult", + "param": [ + { + "name": "expression", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "contextNode", + "type": "Node", + "type-original": "Node" + }, + { + "name": "resolver", + "type": "XPathNSResolver", + "type-original": "XPathNSResolver" + }, + { + "name": "type", + "type": "unsigned short", + "type-original": "unsigned short" + }, + { + "name": "result", + "type": "XPathResult", + "type-original": "XPathResult" + } + ], + "type-original": "XPathResult" + } + ], + "specs": "dom-level-3-xpath", + "exposed": "Window", + "name": "evaluate" + } + } + }, + "name": "XPathEvaluator", + "extends": "Object", + "properties": { + "property": {} + } + }, + "SVGFEFloodElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "inherit initial", + "value-syntax": "css_color", + "name": "color" + }, + { + "enum-values": "linearRGB auto sRGB inherit", + "value-syntax": "enum", + "name": "color-interpolation-filters" + }, + { + "enum-values": "currentColor inherit initial", + "value-syntax": "css_color", + "name": "flood-color" + }, + { + "enum-values": "inherit", + "value-syntax": "0_to_1_floating_point_number", + "name": "flood-opacity" + } + ] + }, + "specs": "filter-effects", + "anonymous-methods": { + "method": [] + }, + "name": "SVGFEFloodElement", + "properties": { + "property": {} + }, + "element": [ + { + "specs": "filter-effects", + "namespace": "SVG", + "name": "feFlood" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGElement", + "implements": [ + "SVGFilterPrimitiveStandardAttributes" + ] + }, + "SVGFEMergeNodeElement": { + "specs": "filter-effects", + "anonymous-methods": { + "method": [] + }, + "name": "SVGFEMergeNodeElement", + "properties": { + "property": { + "in1": { + "content-attribute-enum-values": "SourceGraphic SourceAlpha BackgroundImage BackgroundAlpha FillPaint StrokePaint", + "specs": "filter-effects", + "name": "in1", + "constant": 1, + "content-attribute": "in", + "type-original": "SVGAnimatedString", + "exposed": "Window", + "content-attribute-value-syntax": "filter_result_ref", + "type": "SVGAnimatedString", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "SVG1_1", + "namespace": "SVG", + "name": "feMergeNode" + } + ], + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "SVGElement" + }, + "TrackEvent": { + "specs": "html5", + "constructor": { + "specs": "html5", + "signature": [ + { + "param-min-required": 1, + "type": "TrackEvent", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "TrackEventInit", + "optional": 1, + "type-original": "TrackEventInit" + } + ], + "type-original": "TrackEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "TrackEvent", + "properties": { + "property": { + "track": { + "specs": "html5", + "name": "track", + "type-original": "(VideoTrack or AudioTrack or TextTrack)?", + "exposed": "Window", + "type": [ + { + "nullable": 1, + "type": "VideoTrack" + }, + { + "nullable": 1, + "type": "AudioTrack" + }, + { + "nullable": 1, + "type": "TextTrack" + } + ], + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Event" + }, + "IntersectionObserverEntry": { + "specs": "IntersectionObserver", + "constructor": { + "specs": "IntersectionObserver", + "signature": [ + { + "param-min-required": 1, + "type": "IntersectionObserverEntry", + "param": [ + { + "name": "intersectionObserverEntryInit", + "type": "IntersectionObserverEntryInit", + "type-original": "IntersectionObserverEntryInit" + } + ], + "type-original": "IntersectionObserverEntry" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "IntersectionObserverEntry", + "properties": { + "property": { + "target": { + "specs": "IntersectionObserver", + "name": "target", + "constant": 1, + "type-original": "Element", + "exposed": "Window", + "type": "Element", + "read-only": 1 + }, + "intersectionRect": { + "specs": "IntersectionObserver", + "name": "intersectionRect", + "constant": 1, + "type-original": "ClientRect", + "exposed": "Window", + "type": "ClientRect", + "read-only": 1 + }, + "isIntersecting": { + "specs": "IntersectionObserver", + "name": "isIntersecting", + "constant": 1, + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "read-only": 1 + }, + "intersectionRatio": { + "specs": "IntersectionObserver", + "name": "intersectionRatio", + "constant": 1, + "type-original": "double", + "exposed": "Window", + "type": "double", + "read-only": 1 + }, + "time": { + "specs": "IntersectionObserver", + "name": "time", + "constant": 1, + "type-original": "DOMHighResTimeStamp", + "exposed": "Window", + "type": "double", + "read-only": 1 + }, + "boundingClientRect": { + "specs": "IntersectionObserver", + "name": "boundingClientRect", + "constant": 1, + "type-original": "ClientRect", + "exposed": "Window", + "type": "ClientRect", + "read-only": 1 + }, + "rootBounds": { + "specs": "IntersectionObserver", + "name": "rootBounds", + "constant": 1, + "type-original": "ClientRect", + "exposed": "Window", + "type": "ClientRect", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "MSGesture": { + "specs": "none", + "constructor": { + "specs": "none", + "signature": [ + { + "type": "MSGesture", + "type-original": "MSGesture" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "MSGesture", + "properties": { + "property": { + "target": { + "specs": "none", + "exposed": "Window", + "name": "target", + "type": "Element", + "type-original": "Element" + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "stop": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "stop" + }, + "addPointer": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "pointerId", + "type": "long", + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "addPointer" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "SVGPathSegCurvetoQuadraticRel": { + "specs": "svg11", + "anonymous-methods": { + "method": [] + }, + "name": "SVGPathSegCurvetoQuadraticRel", + "properties": { + "property": { + "y1": { + "specs": "svg11", + "exposed": "Window", + "name": "y1", + "type": "float", + "type-original": "float" + }, + "y": { + "specs": "svg11", + "exposed": "Window", + "name": "y", + "type": "float", + "type-original": "float" + }, + "x": { + "specs": "svg11", + "exposed": "Window", + "name": "x", + "type": "float", + "type-original": "float" + }, + "x1": { + "specs": "svg11", + "exposed": "Window", + "name": "x1", + "type": "float", + "type-original": "float" + } + } + }, + "constants": { + "constant": {} + }, + "interop": 1, + "deprecated": 1, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGPathSeg" + }, + "WebGLRenderingContext": { + "specs": "webgl", + "anonymous-methods": { + "method": [] + }, + "name": "WebGLRenderingContext", + "properties": { + "property": { + "drawingBufferWidth": { + "specs": "webgl", + "exposed": "Window", + "name": "drawingBufferWidth", + "type": "long", + "type-original": "GLsizei", + "read-only": 1 + }, + "drawingBufferHeight": { + "specs": "webgl", + "exposed": "Window", + "name": "drawingBufferHeight", + "type": "long", + "type-original": "GLsizei", + "read-only": 1 + }, + "canvas": { + "specs": "webgl", + "exposed": "Window", + "name": "canvas", + "type": "HTMLCanvasElement", + "type-original": "HTMLCanvasElement", + "read-only": 1 + } + } + }, + "constants": { + "constant": { + "DEPTH_COMPONENT16": { + "specs": "webgl", + "value": "0x81A5", + "exposed": "Window", + "name": "DEPTH_COMPONENT16", + "type": "unsigned long", + "type-original": "GLenum" + }, + "DEPTH_FUNC": { + "specs": "webgl", + "value": "0x0B74", + "exposed": "Window", + "name": "DEPTH_FUNC", + "type": "unsigned long", + "type-original": "GLenum" + }, + "FRAMEBUFFER_INCOMPLETE_DIMENSIONS": { + "specs": "webgl", + "value": "0x8CD9", + "exposed": "Window", + "name": "FRAMEBUFFER_INCOMPLETE_DIMENSIONS", + "type": "unsigned long", + "type-original": "GLenum" + }, + "VERTEX_ATTRIB_ARRAY_ENABLED": { + "specs": "webgl", + "value": "0x8622", + "exposed": "Window", + "name": "VERTEX_ATTRIB_ARRAY_ENABLED", + "type": "unsigned long", + "type-original": "GLenum" + }, + "REPEAT": { + "specs": "webgl", + "value": "0x2901", + "exposed": "Window", + "name": "REPEAT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "REPLACE": { + "specs": "webgl", + "value": "0x1E01", + "exposed": "Window", + "name": "REPLACE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "RENDERER": { + "specs": "webgl", + "value": "0x1F01", + "exposed": "Window", + "name": "RENDERER", + "type": "unsigned long", + "type-original": "GLenum" + }, + "STENCIL_BACK_REF": { + "specs": "webgl", + "value": "0x8CA3", + "exposed": "Window", + "name": "STENCIL_BACK_REF", + "type": "unsigned long", + "type-original": "GLenum" + }, + "STENCIL_BUFFER_BIT": { + "specs": "webgl", + "value": "0x00000400", + "exposed": "Window", + "name": "STENCIL_BUFFER_BIT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE26": { + "specs": "webgl", + "value": "0x84DA", + "exposed": "Window", + "name": "TEXTURE26", + "type": "unsigned long", + "type-original": "GLenum" + }, + "RGB565": { + "specs": "webgl", + "value": "0x8D62", + "exposed": "Window", + "name": "RGB565", + "type": "unsigned long", + "type-original": "GLenum" + }, + "DITHER": { + "specs": "webgl", + "value": "0x0BD0", + "exposed": "Window", + "name": "DITHER", + "type": "unsigned long", + "type-original": "GLenum" + }, + "CONSTANT_COLOR": { + "specs": "webgl", + "value": "0x8001", + "exposed": "Window", + "name": "CONSTANT_COLOR", + "type": "unsigned long", + "type-original": "GLenum" + }, + "GENERATE_MIPMAP_HINT": { + "specs": "webgl", + "value": "0x8192", + "exposed": "Window", + "name": "GENERATE_MIPMAP_HINT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "POINTS": { + "specs": "webgl", + "value": "0x0000", + "exposed": "Window", + "name": "POINTS", + "type": "unsigned long", + "type-original": "GLenum" + }, + "INT_VEC3": { + "specs": "webgl", + "value": "0x8B54", + "exposed": "Window", + "name": "INT_VEC3", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE28": { + "specs": "webgl", + "value": "0x84DC", + "exposed": "Window", + "name": "TEXTURE28", + "type": "unsigned long", + "type-original": "GLenum" + }, + "DECR": { + "specs": "webgl", + "value": "0x1E03", + "exposed": "Window", + "name": "DECR", + "type": "unsigned long", + "type-original": "GLenum" + }, + "ONE_MINUS_CONSTANT_ALPHA": { + "specs": "webgl", + "value": "0x8004", + "exposed": "Window", + "name": "ONE_MINUS_CONSTANT_ALPHA", + "type": "unsigned long", + "type-original": "GLenum" + }, + "BACK": { + "specs": "webgl", + "value": "0x0405", + "exposed": "Window", + "name": "BACK", + "type": "unsigned long", + "type-original": "GLenum" + }, + "RENDERBUFFER_STENCIL_SIZE": { + "specs": "webgl", + "value": "0x8D55", + "exposed": "Window", + "name": "RENDERBUFFER_STENCIL_SIZE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "UNPACK_FLIP_Y_WEBGL": { + "specs": "webgl", + "value": "0x9240", + "exposed": "Window", + "name": "UNPACK_FLIP_Y_WEBGL", + "type": "unsigned long", + "type-original": "GLenum" + }, + "BLEND": { + "specs": "webgl", + "value": "0x0BE2", + "exposed": "Window", + "name": "BLEND", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE9": { + "specs": "webgl", + "value": "0x84C9", + "exposed": "Window", + "name": "TEXTURE9", + "type": "unsigned long", + "type-original": "GLenum" + }, + "ARRAY_BUFFER_BINDING": { + "specs": "webgl", + "value": "0x8894", + "exposed": "Window", + "name": "ARRAY_BUFFER_BINDING", + "type": "unsigned long", + "type-original": "GLenum" + }, + "MAX_VIEWPORT_DIMS": { + "specs": "webgl", + "value": "0x0D3A", + "exposed": "Window", + "name": "MAX_VIEWPORT_DIMS", + "type": "unsigned long", + "type-original": "GLenum" + }, + "INVALID_FRAMEBUFFER_OPERATION": { + "specs": "webgl", + "value": "0x0506", + "exposed": "Window", + "name": "INVALID_FRAMEBUFFER_OPERATION", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE": { + "specs": "webgl", + "value": "0x1702", + "exposed": "Window", + "name": "TEXTURE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE0": { + "specs": "webgl", + "value": "0x84C0", + "exposed": "Window", + "name": "TEXTURE0", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE31": { + "specs": "webgl", + "value": "0x84DF", + "exposed": "Window", + "name": "TEXTURE31", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE24": { + "specs": "webgl", + "value": "0x84D8", + "exposed": "Window", + "name": "TEXTURE24", + "type": "unsigned long", + "type-original": "GLenum" + }, + "HIGH_INT": { + "specs": "webgl", + "value": "0x8DF5", + "exposed": "Window", + "name": "HIGH_INT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "RENDERBUFFER_BINDING": { + "specs": "webgl", + "value": "0x8CA7", + "exposed": "Window", + "name": "RENDERBUFFER_BINDING", + "type": "unsigned long", + "type-original": "GLenum" + }, + "FASTEST": { + "specs": "webgl", + "value": "0x1101", + "exposed": "Window", + "name": "FASTEST", + "type": "unsigned long", + "type-original": "GLenum" + }, + "BLEND_COLOR": { + "specs": "webgl", + "value": "0x8005", + "exposed": "Window", + "name": "BLEND_COLOR", + "type": "unsigned long", + "type-original": "GLenum" + }, + "STENCIL_WRITEMASK": { + "specs": "webgl", + "value": "0x0B98", + "exposed": "Window", + "name": "STENCIL_WRITEMASK", + "type": "unsigned long", + "type-original": "GLenum" + }, + "ALIASED_POINT_SIZE_RANGE": { + "specs": "webgl", + "value": "0x846D", + "exposed": "Window", + "name": "ALIASED_POINT_SIZE_RANGE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE12": { + "specs": "webgl", + "value": "0x84CC", + "exposed": "Window", + "name": "TEXTURE12", + "type": "unsigned long", + "type-original": "GLenum" + }, + "DST_ALPHA": { + "specs": "webgl", + "value": "0x0304", + "exposed": "Window", + "name": "DST_ALPHA", + "type": "unsigned long", + "type-original": "GLenum" + }, + "BLEND_EQUATION_RGB": { + "specs": "webgl", + "value": "0x8009", + "exposed": "Window", + "name": "BLEND_EQUATION_RGB", + "type": "unsigned long", + "type-original": "GLenum" + }, + "FRAMEBUFFER_COMPLETE": { + "specs": "webgl", + "value": "0x8CD5", + "exposed": "Window", + "name": "FRAMEBUFFER_COMPLETE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "NEAREST_MIPMAP_NEAREST": { + "specs": "webgl", + "value": "0x2700", + "exposed": "Window", + "name": "NEAREST_MIPMAP_NEAREST", + "type": "unsigned long", + "type-original": "GLenum" + }, + "VERTEX_ATTRIB_ARRAY_SIZE": { + "specs": "webgl", + "value": "0x8623", + "exposed": "Window", + "name": "VERTEX_ATTRIB_ARRAY_SIZE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE3": { + "specs": "webgl", + "value": "0x84C3", + "exposed": "Window", + "name": "TEXTURE3", + "type": "unsigned long", + "type-original": "GLenum" + }, + "DEPTH_WRITEMASK": { + "specs": "webgl", + "value": "0x0B72", + "exposed": "Window", + "name": "DEPTH_WRITEMASK", + "type": "unsigned long", + "type-original": "GLenum" + }, + "CONTEXT_LOST_WEBGL": { + "specs": "webgl", + "value": "0x9242", + "exposed": "Window", + "name": "CONTEXT_LOST_WEBGL", + "type": "unsigned long", + "type-original": "GLenum" + }, + "INVALID_VALUE": { + "specs": "webgl", + "value": "0x0501", + "exposed": "Window", + "name": "INVALID_VALUE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE_MAG_FILTER": { + "specs": "webgl", + "value": "0x2800", + "exposed": "Window", + "name": "TEXTURE_MAG_FILTER", + "type": "unsigned long", + "type-original": "GLenum" + }, + "ONE_MINUS_CONSTANT_COLOR": { + "specs": "webgl", + "value": "0x8002", + "exposed": "Window", + "name": "ONE_MINUS_CONSTANT_COLOR", + "type": "unsigned long", + "type-original": "GLenum" + }, + "ONE_MINUS_SRC_ALPHA": { + "specs": "webgl", + "value": "0x0303", + "exposed": "Window", + "name": "ONE_MINUS_SRC_ALPHA", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE_CUBE_MAP_POSITIVE_Z": { + "specs": "webgl", + "value": "0x8519", + "exposed": "Window", + "name": "TEXTURE_CUBE_MAP_POSITIVE_Z", + "type": "unsigned long", + "type-original": "GLenum" + }, + "NOTEQUAL": { + "specs": "webgl", + "value": "0x0205", + "exposed": "Window", + "name": "NOTEQUAL", + "type": "unsigned long", + "type-original": "GLenum" + }, + "ALPHA": { + "specs": "webgl", + "value": "0x1906", + "exposed": "Window", + "name": "ALPHA", + "type": "unsigned long", + "type-original": "GLenum" + }, + "DEPTH_STENCIL": { + "specs": "webgl", + "value": "0x84F9", + "exposed": "Window", + "name": "DEPTH_STENCIL", + "type": "unsigned long", + "type-original": "GLenum" + }, + "MAX_VERTEX_UNIFORM_VECTORS": { + "specs": "webgl", + "value": "0x8DFB", + "exposed": "Window", + "name": "MAX_VERTEX_UNIFORM_VECTORS", + "type": "unsigned long", + "type-original": "GLenum" + }, + "DEPTH_COMPONENT": { + "specs": "webgl", + "value": "0x1902", + "exposed": "Window", + "name": "DEPTH_COMPONENT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "RENDERBUFFER_RED_SIZE": { + "specs": "webgl", + "value": "0x8D50", + "exposed": "Window", + "name": "RENDERBUFFER_RED_SIZE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE20": { + "specs": "webgl", + "value": "0x84D4", + "exposed": "Window", + "name": "TEXTURE20", + "type": "unsigned long", + "type-original": "GLenum" + }, + "RED_BITS": { + "specs": "webgl", + "value": "0x0D52", + "exposed": "Window", + "name": "RED_BITS", + "type": "unsigned long", + "type-original": "GLenum" + }, + "RENDERBUFFER_BLUE_SIZE": { + "specs": "webgl", + "value": "0x8D52", + "exposed": "Window", + "name": "RENDERBUFFER_BLUE_SIZE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "SCISSOR_BOX": { + "specs": "webgl", + "value": "0x0C10", + "exposed": "Window", + "name": "SCISSOR_BOX", + "type": "unsigned long", + "type-original": "GLenum" + }, + "VENDOR": { + "specs": "webgl", + "value": "0x1F00", + "exposed": "Window", + "name": "VENDOR", + "type": "unsigned long", + "type-original": "GLenum" + }, + "FRONT_AND_BACK": { + "specs": "webgl", + "value": "0x0408", + "exposed": "Window", + "name": "FRONT_AND_BACK", + "type": "unsigned long", + "type-original": "GLenum" + }, + "CONSTANT_ALPHA": { + "specs": "webgl", + "value": "0x8003", + "exposed": "Window", + "name": "CONSTANT_ALPHA", + "type": "unsigned long", + "type-original": "GLenum" + }, + "VERTEX_ATTRIB_ARRAY_BUFFER_BINDING": { + "specs": "webgl", + "value": "0x889F", + "exposed": "Window", + "name": "VERTEX_ATTRIB_ARRAY_BUFFER_BINDING", + "type": "unsigned long", + "type-original": "GLenum" + }, + "IMPLEMENTATION_COLOR_READ_FORMAT": { + "specs": "webgl", + "value": "0x8B9B", + "exposed": "Window", + "name": "IMPLEMENTATION_COLOR_READ_FORMAT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "NEAREST": { + "specs": "webgl", + "value": "0x2600", + "exposed": "Window", + "name": "NEAREST", + "type": "unsigned long", + "type-original": "GLenum" + }, + "CULL_FACE": { + "specs": "webgl", + "value": "0x0B44", + "exposed": "Window", + "name": "CULL_FACE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "ALIASED_LINE_WIDTH_RANGE": { + "specs": "webgl", + "value": "0x846E", + "exposed": "Window", + "name": "ALIASED_LINE_WIDTH_RANGE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE19": { + "specs": "webgl", + "value": "0x84D3", + "exposed": "Window", + "name": "TEXTURE19", + "type": "unsigned long", + "type-original": "GLenum" + }, + "FRONT": { + "specs": "webgl", + "value": "0x0404", + "exposed": "Window", + "name": "FRONT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "DEPTH_CLEAR_VALUE": { + "specs": "webgl", + "value": "0x0B73", + "exposed": "Window", + "name": "DEPTH_CLEAR_VALUE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "GREEN_BITS": { + "specs": "webgl", + "value": "0x0D53", + "exposed": "Window", + "name": "GREEN_BITS", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE29": { + "specs": "webgl", + "value": "0x84DD", + "exposed": "Window", + "name": "TEXTURE29", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE23": { + "specs": "webgl", + "value": "0x84D7", + "exposed": "Window", + "name": "TEXTURE23", + "type": "unsigned long", + "type-original": "GLenum" + }, + "MAX_RENDERBUFFER_SIZE": { + "specs": "webgl", + "value": "0x84E8", + "exposed": "Window", + "name": "MAX_RENDERBUFFER_SIZE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "STENCIL_ATTACHMENT": { + "specs": "webgl", + "value": "0x8D20", + "exposed": "Window", + "name": "STENCIL_ATTACHMENT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE27": { + "specs": "webgl", + "value": "0x84DB", + "exposed": "Window", + "name": "TEXTURE27", + "type": "unsigned long", + "type-original": "GLenum" + }, + "BOOL_VEC2": { + "specs": "webgl", + "value": "0x8B57", + "exposed": "Window", + "name": "BOOL_VEC2", + "type": "unsigned long", + "type-original": "GLenum" + }, + "OUT_OF_MEMORY": { + "specs": "webgl", + "value": "0x0505", + "exposed": "Window", + "name": "OUT_OF_MEMORY", + "type": "unsigned long", + "type-original": "GLenum" + }, + "MIRRORED_REPEAT": { + "specs": "webgl", + "value": "0x8370", + "exposed": "Window", + "name": "MIRRORED_REPEAT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "POLYGON_OFFSET_UNITS": { + "specs": "webgl", + "value": "0x2A00", + "exposed": "Window", + "name": "POLYGON_OFFSET_UNITS", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE_MIN_FILTER": { + "specs": "webgl", + "value": "0x2801", + "exposed": "Window", + "name": "TEXTURE_MIN_FILTER", + "type": "unsigned long", + "type-original": "GLenum" + }, + "STENCIL_BACK_PASS_DEPTH_PASS": { + "specs": "webgl", + "value": "0x8803", + "exposed": "Window", + "name": "STENCIL_BACK_PASS_DEPTH_PASS", + "type": "unsigned long", + "type-original": "GLenum" + }, + "LINE_LOOP": { + "specs": "webgl", + "value": "0x0002", + "exposed": "Window", + "name": "LINE_LOOP", + "type": "unsigned long", + "type-original": "GLenum" + }, + "FLOAT_MAT3": { + "specs": "webgl", + "value": "0x8B5B", + "exposed": "Window", + "name": "FLOAT_MAT3", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE14": { + "specs": "webgl", + "value": "0x84CE", + "exposed": "Window", + "name": "TEXTURE14", + "type": "unsigned long", + "type-original": "GLenum" + }, + "LINEAR": { + "specs": "webgl", + "value": "0x2601", + "exposed": "Window", + "name": "LINEAR", + "type": "unsigned long", + "type-original": "GLenum" + }, + "RGB5_A1": { + "specs": "webgl", + "value": "0x8057", + "exposed": "Window", + "name": "RGB5_A1", + "type": "unsigned long", + "type-original": "GLenum" + }, + "ONE_MINUS_SRC_COLOR": { + "specs": "webgl", + "value": "0x0301", + "exposed": "Window", + "name": "ONE_MINUS_SRC_COLOR", + "type": "unsigned long", + "type-original": "GLenum" + }, + "SAMPLE_COVERAGE_INVERT": { + "specs": "webgl", + "value": "0x80AB", + "exposed": "Window", + "name": "SAMPLE_COVERAGE_INVERT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "DONT_CARE": { + "specs": "webgl", + "value": "0x1100", + "exposed": "Window", + "name": "DONT_CARE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "FRAMEBUFFER_BINDING": { + "specs": "webgl", + "value": "0x8CA6", + "exposed": "Window", + "name": "FRAMEBUFFER_BINDING", + "type": "unsigned long", + "type-original": "GLenum" + }, + "RENDERBUFFER_ALPHA_SIZE": { + "specs": "webgl", + "value": "0x8D53", + "exposed": "Window", + "name": "RENDERBUFFER_ALPHA_SIZE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "STENCIL_REF": { + "specs": "webgl", + "value": "0x0B97", + "exposed": "Window", + "name": "STENCIL_REF", + "type": "unsigned long", + "type-original": "GLenum" + }, + "ZERO": { + "specs": "webgl", + "value": "0", + "exposed": "Window", + "name": "ZERO", + "type": "unsigned long", + "type-original": "GLenum" + }, + "DECR_WRAP": { + "specs": "webgl", + "value": "0x8508", + "exposed": "Window", + "name": "DECR_WRAP", + "type": "unsigned long", + "type-original": "GLenum" + }, + "SAMPLE_COVERAGE": { + "specs": "webgl", + "value": "0x80A0", + "exposed": "Window", + "name": "SAMPLE_COVERAGE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "STENCIL_BACK_FUNC": { + "specs": "webgl", + "value": "0x8800", + "exposed": "Window", + "name": "STENCIL_BACK_FUNC", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE30": { + "specs": "webgl", + "value": "0x84DE", + "exposed": "Window", + "name": "TEXTURE30", + "type": "unsigned long", + "type-original": "GLenum" + }, + "VIEWPORT": { + "specs": "webgl", + "value": "0x0BA2", + "exposed": "Window", + "name": "VIEWPORT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "STENCIL_BITS": { + "specs": "webgl", + "value": "0x0D57", + "exposed": "Window", + "name": "STENCIL_BITS", + "type": "unsigned long", + "type-original": "GLenum" + }, + "FLOAT": { + "specs": "webgl", + "value": "0x1406", + "exposed": "Window", + "name": "FLOAT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "COLOR_WRITEMASK": { + "specs": "webgl", + "value": "0x0C23", + "exposed": "Window", + "name": "COLOR_WRITEMASK", + "type": "unsigned long", + "type-original": "GLenum" + }, + "SAMPLE_COVERAGE_VALUE": { + "specs": "webgl", + "value": "0x80AA", + "exposed": "Window", + "name": "SAMPLE_COVERAGE_VALUE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE_CUBE_MAP_NEGATIVE_Y": { + "specs": "webgl", + "value": "0x8518", + "exposed": "Window", + "name": "TEXTURE_CUBE_MAP_NEGATIVE_Y", + "type": "unsigned long", + "type-original": "GLenum" + }, + "STENCIL_BACK_FAIL": { + "specs": "webgl", + "value": "0x8801", + "exposed": "Window", + "name": "STENCIL_BACK_FAIL", + "type": "unsigned long", + "type-original": "GLenum" + }, + "FLOAT_MAT4": { + "specs": "webgl", + "value": "0x8B5C", + "exposed": "Window", + "name": "FLOAT_MAT4", + "type": "unsigned long", + "type-original": "GLenum" + }, + "UNSIGNED_SHORT_4_4_4_4": { + "specs": "webgl", + "value": "0x8033", + "exposed": "Window", + "name": "UNSIGNED_SHORT_4_4_4_4", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE6": { + "specs": "webgl", + "value": "0x84C6", + "exposed": "Window", + "name": "TEXTURE6", + "type": "unsigned long", + "type-original": "GLenum" + }, + "RENDERBUFFER_WIDTH": { + "specs": "webgl", + "value": "0x8D42", + "exposed": "Window", + "name": "RENDERBUFFER_WIDTH", + "type": "unsigned long", + "type-original": "GLenum" + }, + "RGBA4": { + "specs": "webgl", + "value": "0x8056", + "exposed": "Window", + "name": "RGBA4", + "type": "unsigned long", + "type-original": "GLenum" + }, + "ALWAYS": { + "specs": "webgl", + "value": "0x0207", + "exposed": "Window", + "name": "ALWAYS", + "type": "unsigned long", + "type-original": "GLenum" + }, + "BLEND_EQUATION_ALPHA": { + "specs": "webgl", + "value": "0x883D", + "exposed": "Window", + "name": "BLEND_EQUATION_ALPHA", + "type": "unsigned long", + "type-original": "GLenum" + }, + "COLOR_BUFFER_BIT": { + "specs": "webgl", + "value": "0x00004000", + "exposed": "Window", + "name": "COLOR_BUFFER_BIT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE_CUBE_MAP": { + "specs": "webgl", + "value": "0x8513", + "exposed": "Window", + "name": "TEXTURE_CUBE_MAP", + "type": "unsigned long", + "type-original": "GLenum" + }, + "DEPTH_BUFFER_BIT": { + "specs": "webgl", + "value": "0x00000100", + "exposed": "Window", + "name": "DEPTH_BUFFER_BIT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "STENCIL_CLEAR_VALUE": { + "specs": "webgl", + "value": "0x0B91", + "exposed": "Window", + "name": "STENCIL_CLEAR_VALUE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "BLEND_EQUATION": { + "specs": "webgl", + "value": "0x8009", + "exposed": "Window", + "name": "BLEND_EQUATION", + "type": "unsigned long", + "type-original": "GLenum" + }, + "RENDERBUFFER_GREEN_SIZE": { + "specs": "webgl", + "value": "0x8D51", + "exposed": "Window", + "name": "RENDERBUFFER_GREEN_SIZE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "NEAREST_MIPMAP_LINEAR": { + "specs": "webgl", + "value": "0x2702", + "exposed": "Window", + "name": "NEAREST_MIPMAP_LINEAR", + "type": "unsigned long", + "type-original": "GLenum" + }, + "VERTEX_ATTRIB_ARRAY_TYPE": { + "specs": "webgl", + "value": "0x8625", + "exposed": "Window", + "name": "VERTEX_ATTRIB_ARRAY_TYPE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "INCR_WRAP": { + "specs": "webgl", + "value": "0x8507", + "exposed": "Window", + "name": "INCR_WRAP", + "type": "unsigned long", + "type-original": "GLenum" + }, + "ONE_MINUS_DST_COLOR": { + "specs": "webgl", + "value": "0x0307", + "exposed": "Window", + "name": "ONE_MINUS_DST_COLOR", + "type": "unsigned long", + "type-original": "GLenum" + }, + "HIGH_FLOAT": { + "specs": "webgl", + "value": "0x8DF2", + "exposed": "Window", + "name": "HIGH_FLOAT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "BYTE": { + "specs": "webgl", + "value": "0x1400", + "exposed": "Window", + "name": "BYTE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "FRONT_FACE": { + "specs": "webgl", + "value": "0x0B46", + "exposed": "Window", + "name": "FRONT_FACE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "SAMPLE_ALPHA_TO_COVERAGE": { + "specs": "webgl", + "value": "0x809E", + "exposed": "Window", + "name": "SAMPLE_ALPHA_TO_COVERAGE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE13": { + "specs": "webgl", + "value": "0x84CD", + "exposed": "Window", + "name": "TEXTURE13", + "type": "unsigned long", + "type-original": "GLenum" + }, + "MAX_VERTEX_ATTRIBS": { + "specs": "webgl", + "value": "0x8869", + "exposed": "Window", + "name": "MAX_VERTEX_ATTRIBS", + "type": "unsigned long", + "type-original": "GLenum" + }, + "CCW": { + "specs": "webgl", + "value": "0x0901", + "exposed": "Window", + "name": "CCW", + "type": "unsigned long", + "type-original": "GLenum" + }, + "MAX_VERTEX_TEXTURE_IMAGE_UNITS": { + "specs": "webgl", + "value": "0x8B4C", + "exposed": "Window", + "name": "MAX_VERTEX_TEXTURE_IMAGE_UNITS", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE_WRAP_T": { + "specs": "webgl", + "value": "0x2803", + "exposed": "Window", + "name": "TEXTURE_WRAP_T", + "type": "unsigned long", + "type-original": "GLenum" + }, + "UNPACK_PREMULTIPLY_ALPHA_WEBGL": { + "specs": "webgl", + "value": "0x9241", + "exposed": "Window", + "name": "UNPACK_PREMULTIPLY_ALPHA_WEBGL", + "type": "unsigned long", + "type-original": "GLenum" + }, + "FLOAT_VEC2": { + "specs": "webgl", + "value": "0x8B50", + "exposed": "Window", + "name": "FLOAT_VEC2", + "type": "unsigned long", + "type-original": "GLenum" + }, + "LUMINANCE": { + "specs": "webgl", + "value": "0x1909", + "exposed": "Window", + "name": "LUMINANCE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "INT_VEC2": { + "specs": "webgl", + "value": "0x8B53", + "exposed": "Window", + "name": "INT_VEC2", + "type": "unsigned long", + "type-original": "GLenum" + }, + "GREATER": { + "specs": "webgl", + "value": "0x0204", + "exposed": "Window", + "name": "GREATER", + "type": "unsigned long", + "type-original": "GLenum" + }, + "FRAMEBUFFER": { + "specs": "webgl", + "value": "0x8D40", + "exposed": "Window", + "name": "FRAMEBUFFER", + "type": "unsigned long", + "type-original": "GLenum" + }, + "VALIDATE_STATUS": { + "specs": "webgl", + "value": "0x8B83", + "exposed": "Window", + "name": "VALIDATE_STATUS", + "type": "unsigned long", + "type-original": "GLenum" + }, + "FRAMEBUFFER_UNSUPPORTED": { + "specs": "webgl", + "value": "0x8CDD", + "exposed": "Window", + "name": "FRAMEBUFFER_UNSUPPORTED", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE5": { + "specs": "webgl", + "value": "0x84C5", + "exposed": "Window", + "name": "TEXTURE5", + "type": "unsigned long", + "type-original": "GLenum" + }, + "FUNC_SUBTRACT": { + "specs": "webgl", + "value": "0x800A", + "exposed": "Window", + "name": "FUNC_SUBTRACT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "BLEND_DST_ALPHA": { + "specs": "webgl", + "value": "0x80CA", + "exposed": "Window", + "name": "BLEND_DST_ALPHA", + "type": "unsigned long", + "type-original": "GLenum" + }, + "SAMPLER_CUBE": { + "specs": "webgl", + "value": "0x8B60", + "exposed": "Window", + "name": "SAMPLER_CUBE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "ONE_MINUS_DST_ALPHA": { + "specs": "webgl", + "value": "0x0305", + "exposed": "Window", + "name": "ONE_MINUS_DST_ALPHA", + "type": "unsigned long", + "type-original": "GLenum" + }, + "LESS": { + "specs": "webgl", + "value": "0x0201", + "exposed": "Window", + "name": "LESS", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE_CUBE_MAP_POSITIVE_X": { + "specs": "webgl", + "value": "0x8515", + "exposed": "Window", + "name": "TEXTURE_CUBE_MAP_POSITIVE_X", + "type": "unsigned long", + "type-original": "GLenum" + }, + "BLUE_BITS": { + "specs": "webgl", + "value": "0x0D54", + "exposed": "Window", + "name": "BLUE_BITS", + "type": "unsigned long", + "type-original": "GLenum" + }, + "DEPTH_TEST": { + "specs": "webgl", + "value": "0x0B71", + "exposed": "Window", + "name": "DEPTH_TEST", + "type": "unsigned long", + "type-original": "GLenum" + }, + "VERTEX_ATTRIB_ARRAY_STRIDE": { + "specs": "webgl", + "value": "0x8624", + "exposed": "Window", + "name": "VERTEX_ATTRIB_ARRAY_STRIDE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "DELETE_STATUS": { + "specs": "webgl", + "value": "0x8B80", + "exposed": "Window", + "name": "DELETE_STATUS", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE18": { + "specs": "webgl", + "value": "0x84D2", + "exposed": "Window", + "name": "TEXTURE18", + "type": "unsigned long", + "type-original": "GLenum" + }, + "POLYGON_OFFSET_FACTOR": { + "specs": "webgl", + "value": "0x8038", + "exposed": "Window", + "name": "POLYGON_OFFSET_FACTOR", + "type": "unsigned long", + "type-original": "GLenum" + }, + "UNSIGNED_INT": { + "specs": "webgl", + "value": "0x1405", + "exposed": "Window", + "name": "UNSIGNED_INT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE_2D": { + "specs": "webgl", + "value": "0x0DE1", + "exposed": "Window", + "name": "TEXTURE_2D", + "type": "unsigned long", + "type-original": "GLenum" + }, + "DST_COLOR": { + "specs": "webgl", + "value": "0x0306", + "exposed": "Window", + "name": "DST_COLOR", + "type": "unsigned long", + "type-original": "GLenum" + }, + "FLOAT_MAT2": { + "specs": "webgl", + "value": "0x8B5A", + "exposed": "Window", + "name": "FLOAT_MAT2", + "type": "unsigned long", + "type-original": "GLenum" + }, + "COMPRESSED_TEXTURE_FORMATS": { + "specs": "webgl", + "value": "0x86A3", + "exposed": "Window", + "name": "COMPRESSED_TEXTURE_FORMATS", + "type": "unsigned long", + "type-original": "GLenum" + }, + "MAX_FRAGMENT_UNIFORM_VECTORS": { + "specs": "webgl", + "value": "0x8DFD", + "exposed": "Window", + "name": "MAX_FRAGMENT_UNIFORM_VECTORS", + "type": "unsigned long", + "type-original": "GLenum" + }, + "DEPTH_STENCIL_ATTACHMENT": { + "specs": "webgl", + "value": "0x821A", + "exposed": "Window", + "name": "DEPTH_STENCIL_ATTACHMENT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "LUMINANCE_ALPHA": { + "specs": "webgl", + "value": "0x190A", + "exposed": "Window", + "name": "LUMINANCE_ALPHA", + "type": "unsigned long", + "type-original": "GLenum" + }, + "CW": { + "specs": "webgl", + "value": "0x0900", + "exposed": "Window", + "name": "CW", + "type": "unsigned long", + "type-original": "GLenum" + }, + "VERTEX_ATTRIB_ARRAY_NORMALIZED": { + "specs": "webgl", + "value": "0x886A", + "exposed": "Window", + "name": "VERTEX_ATTRIB_ARRAY_NORMALIZED", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE_CUBE_MAP_NEGATIVE_Z": { + "specs": "webgl", + "value": "0x851A", + "exposed": "Window", + "name": "TEXTURE_CUBE_MAP_NEGATIVE_Z", + "type": "unsigned long", + "type-original": "GLenum" + }, + "LINEAR_MIPMAP_LINEAR": { + "specs": "webgl", + "value": "0x2703", + "exposed": "Window", + "name": "LINEAR_MIPMAP_LINEAR", + "type": "unsigned long", + "type-original": "GLenum" + }, + "BUFFER_SIZE": { + "specs": "webgl", + "value": "0x8764", + "exposed": "Window", + "name": "BUFFER_SIZE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "SAMPLE_BUFFERS": { + "specs": "webgl", + "value": "0x80A8", + "exposed": "Window", + "name": "SAMPLE_BUFFERS", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE15": { + "specs": "webgl", + "value": "0x84CF", + "exposed": "Window", + "name": "TEXTURE15", + "type": "unsigned long", + "type-original": "GLenum" + }, + "ACTIVE_TEXTURE": { + "specs": "webgl", + "value": "0x84E0", + "exposed": "Window", + "name": "ACTIVE_TEXTURE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "VERTEX_SHADER": { + "specs": "webgl", + "value": "0x8B31", + "exposed": "Window", + "name": "VERTEX_SHADER", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE22": { + "specs": "webgl", + "value": "0x84D6", + "exposed": "Window", + "name": "TEXTURE22", + "type": "unsigned long", + "type-original": "GLenum" + }, + "VERTEX_ATTRIB_ARRAY_POINTER": { + "specs": "webgl", + "value": "0x8645", + "exposed": "Window", + "name": "VERTEX_ATTRIB_ARRAY_POINTER", + "type": "unsigned long", + "type-original": "GLenum" + }, + "INCR": { + "specs": "webgl", + "value": "0x1E02", + "exposed": "Window", + "name": "INCR", + "type": "unsigned long", + "type-original": "GLenum" + }, + "COMPILE_STATUS": { + "specs": "webgl", + "value": "0x8B81", + "exposed": "Window", + "name": "COMPILE_STATUS", + "type": "unsigned long", + "type-original": "GLenum" + }, + "MAX_COMBINED_TEXTURE_IMAGE_UNITS": { + "specs": "webgl", + "value": "0x8B4D", + "exposed": "Window", + "name": "MAX_COMBINED_TEXTURE_IMAGE_UNITS", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE7": { + "specs": "webgl", + "value": "0x84C7", + "exposed": "Window", + "name": "TEXTURE7", + "type": "unsigned long", + "type-original": "GLenum" + }, + "UNSIGNED_SHORT_5_5_5_1": { + "specs": "webgl", + "value": "0x8034", + "exposed": "Window", + "name": "UNSIGNED_SHORT_5_5_5_1", + "type": "unsigned long", + "type-original": "GLenum" + }, + "DEPTH_BITS": { + "specs": "webgl", + "value": "0x0D56", + "exposed": "Window", + "name": "DEPTH_BITS", + "type": "unsigned long", + "type-original": "GLenum" + }, + "RGBA": { + "specs": "webgl", + "value": "0x1908", + "exposed": "Window", + "name": "RGBA", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TRIANGLE_STRIP": { + "specs": "webgl", + "value": "0x0005", + "exposed": "Window", + "name": "TRIANGLE_STRIP", + "type": "unsigned long", + "type-original": "GLenum" + }, + "COLOR_CLEAR_VALUE": { + "specs": "webgl", + "value": "0x0C22", + "exposed": "Window", + "name": "COLOR_CLEAR_VALUE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "BROWSER_DEFAULT_WEBGL": { + "specs": "webgl", + "value": "0x9244", + "exposed": "Window", + "name": "BROWSER_DEFAULT_WEBGL", + "type": "unsigned long", + "type-original": "GLenum" + }, + "INVALID_ENUM": { + "specs": "webgl", + "value": "0x0500", + "exposed": "Window", + "name": "INVALID_ENUM", + "type": "unsigned long", + "type-original": "GLenum" + }, + "SCISSOR_TEST": { + "specs": "webgl", + "value": "0x0C11", + "exposed": "Window", + "name": "SCISSOR_TEST", + "type": "unsigned long", + "type-original": "GLenum" + }, + "LINE_STRIP": { + "specs": "webgl", + "value": "0x0003", + "exposed": "Window", + "name": "LINE_STRIP", + "type": "unsigned long", + "type-original": "GLenum" + }, + "FRAMEBUFFER_INCOMPLETE_ATTACHMENT": { + "specs": "webgl", + "value": "0x8CD6", + "exposed": "Window", + "name": "FRAMEBUFFER_INCOMPLETE_ATTACHMENT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "STENCIL_FUNC": { + "specs": "webgl", + "value": "0x0B92", + "exposed": "Window", + "name": "STENCIL_FUNC", + "type": "unsigned long", + "type-original": "GLenum" + }, + "IMPLEMENTATION_COLOR_READ_TYPE": { + "specs": "webgl", + "value": "0x8B9A", + "exposed": "Window", + "name": "IMPLEMENTATION_COLOR_READ_TYPE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "FRAMEBUFFER_ATTACHMENT_OBJECT_NAME": { + "specs": "webgl", + "value": "0x8CD1", + "exposed": "Window", + "name": "FRAMEBUFFER_ATTACHMENT_OBJECT_NAME", + "type": "unsigned long", + "type-original": "GLenum" + }, + "RENDERBUFFER_HEIGHT": { + "specs": "webgl", + "value": "0x8D43", + "exposed": "Window", + "name": "RENDERBUFFER_HEIGHT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE8": { + "specs": "webgl", + "value": "0x84C8", + "exposed": "Window", + "name": "TEXTURE8", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TRIANGLES": { + "specs": "webgl", + "value": "0x0004", + "exposed": "Window", + "name": "TRIANGLES", + "type": "unsigned long", + "type-original": "GLenum" + }, + "FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE": { + "specs": "webgl", + "value": "0x8CD0", + "exposed": "Window", + "name": "FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "STENCIL_BACK_VALUE_MASK": { + "specs": "webgl", + "value": "0x8CA4", + "exposed": "Window", + "name": "STENCIL_BACK_VALUE_MASK", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE25": { + "specs": "webgl", + "value": "0x84D9", + "exposed": "Window", + "name": "TEXTURE25", + "type": "unsigned long", + "type-original": "GLenum" + }, + "RENDERBUFFER": { + "specs": "webgl", + "value": "0x8D41", + "exposed": "Window", + "name": "RENDERBUFFER", + "type": "unsigned long", + "type-original": "GLenum" + }, + "LEQUAL": { + "specs": "webgl", + "value": "0x0203", + "exposed": "Window", + "name": "LEQUAL", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE1": { + "specs": "webgl", + "value": "0x84C1", + "exposed": "Window", + "name": "TEXTURE1", + "type": "unsigned long", + "type-original": "GLenum" + }, + "STENCIL_INDEX8": { + "specs": "webgl", + "value": "0x8D48", + "exposed": "Window", + "name": "STENCIL_INDEX8", + "type": "unsigned long", + "type-original": "GLenum" + }, + "FUNC_ADD": { + "specs": "webgl", + "value": "0x8006", + "exposed": "Window", + "name": "FUNC_ADD", + "type": "unsigned long", + "type-original": "GLenum" + }, + "STENCIL_FAIL": { + "specs": "webgl", + "value": "0x0B94", + "exposed": "Window", + "name": "STENCIL_FAIL", + "type": "unsigned long", + "type-original": "GLenum" + }, + "BLEND_SRC_ALPHA": { + "specs": "webgl", + "value": "0x80CB", + "exposed": "Window", + "name": "BLEND_SRC_ALPHA", + "type": "unsigned long", + "type-original": "GLenum" + }, + "BOOL": { + "specs": "webgl", + "value": "0x8B56", + "exposed": "Window", + "name": "BOOL", + "type": "unsigned long", + "type-original": "GLenum" + }, + "ALPHA_BITS": { + "specs": "webgl", + "value": "0x0D55", + "exposed": "Window", + "name": "ALPHA_BITS", + "type": "unsigned long", + "type-original": "GLenum" + }, + "LOW_INT": { + "specs": "webgl", + "value": "0x8DF3", + "exposed": "Window", + "name": "LOW_INT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE10": { + "specs": "webgl", + "value": "0x84CA", + "exposed": "Window", + "name": "TEXTURE10", + "type": "unsigned long", + "type-original": "GLenum" + }, + "SRC_COLOR": { + "specs": "webgl", + "value": "0x0300", + "exposed": "Window", + "name": "SRC_COLOR", + "type": "unsigned long", + "type-original": "GLenum" + }, + "MAX_VARYING_VECTORS": { + "specs": "webgl", + "value": "0x8DFC", + "exposed": "Window", + "name": "MAX_VARYING_VECTORS", + "type": "unsigned long", + "type-original": "GLenum" + }, + "BLEND_DST_RGB": { + "specs": "webgl", + "value": "0x80C8", + "exposed": "Window", + "name": "BLEND_DST_RGB", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE_BINDING_CUBE_MAP": { + "specs": "webgl", + "value": "0x8514", + "exposed": "Window", + "name": "TEXTURE_BINDING_CUBE_MAP", + "type": "unsigned long", + "type-original": "GLenum" + }, + "STENCIL_INDEX": { + "specs": "webgl", + "value": "0x1901", + "exposed": "Window", + "name": "STENCIL_INDEX", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE_BINDING_2D": { + "specs": "webgl", + "value": "0x8069", + "exposed": "Window", + "name": "TEXTURE_BINDING_2D", + "type": "unsigned long", + "type-original": "GLenum" + }, + "MEDIUM_INT": { + "specs": "webgl", + "value": "0x8DF4", + "exposed": "Window", + "name": "MEDIUM_INT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "SHADER_TYPE": { + "specs": "webgl", + "value": "0x8B4F", + "exposed": "Window", + "name": "SHADER_TYPE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "POLYGON_OFFSET_FILL": { + "specs": "webgl", + "value": "0x8037", + "exposed": "Window", + "name": "POLYGON_OFFSET_FILL", + "type": "unsigned long", + "type-original": "GLenum" + }, + "DYNAMIC_DRAW": { + "specs": "webgl", + "value": "0x88E8", + "exposed": "Window", + "name": "DYNAMIC_DRAW", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE4": { + "specs": "webgl", + "value": "0x84C4", + "exposed": "Window", + "name": "TEXTURE4", + "type": "unsigned long", + "type-original": "GLenum" + }, + "STENCIL_BACK_PASS_DEPTH_FAIL": { + "specs": "webgl", + "value": "0x8802", + "exposed": "Window", + "name": "STENCIL_BACK_PASS_DEPTH_FAIL", + "type": "unsigned long", + "type-original": "GLenum" + }, + "STREAM_DRAW": { + "specs": "webgl", + "value": "0x88E0", + "exposed": "Window", + "name": "STREAM_DRAW", + "type": "unsigned long", + "type-original": "GLenum" + }, + "MAX_CUBE_MAP_TEXTURE_SIZE": { + "specs": "webgl", + "value": "0x851C", + "exposed": "Window", + "name": "MAX_CUBE_MAP_TEXTURE_SIZE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE17": { + "specs": "webgl", + "value": "0x84D1", + "exposed": "Window", + "name": "TEXTURE17", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TRIANGLE_FAN": { + "specs": "webgl", + "value": "0x0006", + "exposed": "Window", + "name": "TRIANGLE_FAN", + "type": "unsigned long", + "type-original": "GLenum" + }, + "UNPACK_ALIGNMENT": { + "specs": "webgl", + "value": "0x0CF5", + "exposed": "Window", + "name": "UNPACK_ALIGNMENT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "CURRENT_PROGRAM": { + "specs": "webgl", + "value": "0x8B8D", + "exposed": "Window", + "name": "CURRENT_PROGRAM", + "type": "unsigned long", + "type-original": "GLenum" + }, + "LINES": { + "specs": "webgl", + "value": "0x0001", + "exposed": "Window", + "name": "LINES", + "type": "unsigned long", + "type-original": "GLenum" + }, + "INVALID_OPERATION": { + "specs": "webgl", + "value": "0x0502", + "exposed": "Window", + "name": "INVALID_OPERATION", + "type": "unsigned long", + "type-original": "GLenum" + }, + "FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT": { + "specs": "webgl", + "value": "0x8CD7", + "exposed": "Window", + "name": "FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "LINEAR_MIPMAP_NEAREST": { + "specs": "webgl", + "value": "0x2701", + "exposed": "Window", + "name": "LINEAR_MIPMAP_NEAREST", + "type": "unsigned long", + "type-original": "GLenum" + }, + "CLAMP_TO_EDGE": { + "specs": "webgl", + "value": "0x812F", + "exposed": "Window", + "name": "CLAMP_TO_EDGE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "RENDERBUFFER_DEPTH_SIZE": { + "specs": "webgl", + "value": "0x8D54", + "exposed": "Window", + "name": "RENDERBUFFER_DEPTH_SIZE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE_WRAP_S": { + "specs": "webgl", + "value": "0x2802", + "exposed": "Window", + "name": "TEXTURE_WRAP_S", + "type": "unsigned long", + "type-original": "GLenum" + }, + "ELEMENT_ARRAY_BUFFER": { + "specs": "webgl", + "value": "0x8893", + "exposed": "Window", + "name": "ELEMENT_ARRAY_BUFFER", + "type": "unsigned long", + "type-original": "GLenum" + }, + "UNSIGNED_SHORT_5_6_5": { + "specs": "webgl", + "value": "0x8363", + "exposed": "Window", + "name": "UNSIGNED_SHORT_5_6_5", + "type": "unsigned long", + "type-original": "GLenum" + }, + "ACTIVE_UNIFORMS": { + "specs": "webgl", + "value": "0x8B86", + "exposed": "Window", + "name": "ACTIVE_UNIFORMS", + "type": "unsigned long", + "type-original": "GLenum" + }, + "FLOAT_VEC3": { + "specs": "webgl", + "value": "0x8B51", + "exposed": "Window", + "name": "FLOAT_VEC3", + "type": "unsigned long", + "type-original": "GLenum" + }, + "NO_ERROR": { + "specs": "webgl", + "value": "0", + "exposed": "Window", + "name": "NO_ERROR", + "type": "unsigned long", + "type-original": "GLenum" + }, + "ATTACHED_SHADERS": { + "specs": "webgl", + "value": "0x8B85", + "exposed": "Window", + "name": "ATTACHED_SHADERS", + "type": "unsigned long", + "type-original": "GLenum" + }, + "DEPTH_ATTACHMENT": { + "specs": "webgl", + "value": "0x8D00", + "exposed": "Window", + "name": "DEPTH_ATTACHMENT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE11": { + "specs": "webgl", + "value": "0x84CB", + "exposed": "Window", + "name": "TEXTURE11", + "type": "unsigned long", + "type-original": "GLenum" + }, + "STENCIL_TEST": { + "specs": "webgl", + "value": "0x0B90", + "exposed": "Window", + "name": "STENCIL_TEST", + "type": "unsigned long", + "type-original": "GLenum" + }, + "ONE": { + "specs": "webgl", + "value": "1", + "exposed": "Window", + "name": "ONE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE": { + "specs": "webgl", + "value": "0x8CD3", + "exposed": "Window", + "name": "FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "STATIC_DRAW": { + "specs": "webgl", + "value": "0x88E4", + "exposed": "Window", + "name": "STATIC_DRAW", + "type": "unsigned long", + "type-original": "GLenum" + }, + "GEQUAL": { + "specs": "webgl", + "value": "0x0206", + "exposed": "Window", + "name": "GEQUAL", + "type": "unsigned long", + "type-original": "GLenum" + }, + "BOOL_VEC4": { + "specs": "webgl", + "value": "0x8B59", + "exposed": "Window", + "name": "BOOL_VEC4", + "type": "unsigned long", + "type-original": "GLenum" + }, + "COLOR_ATTACHMENT0": { + "specs": "webgl", + "value": "0x8CE0", + "exposed": "Window", + "name": "COLOR_ATTACHMENT0", + "type": "unsigned long", + "type-original": "GLenum" + }, + "PACK_ALIGNMENT": { + "specs": "webgl", + "value": "0x0D05", + "exposed": "Window", + "name": "PACK_ALIGNMENT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "MAX_TEXTURE_SIZE": { + "specs": "webgl", + "value": "0x0D33", + "exposed": "Window", + "name": "MAX_TEXTURE_SIZE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "STENCIL_PASS_DEPTH_FAIL": { + "specs": "webgl", + "value": "0x0B95", + "exposed": "Window", + "name": "STENCIL_PASS_DEPTH_FAIL", + "type": "unsigned long", + "type-original": "GLenum" + }, + "CULL_FACE_MODE": { + "specs": "webgl", + "value": "0x0B45", + "exposed": "Window", + "name": "CULL_FACE_MODE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE16": { + "specs": "webgl", + "value": "0x84D0", + "exposed": "Window", + "name": "TEXTURE16", + "type": "unsigned long", + "type-original": "GLenum" + }, + "STENCIL_BACK_WRITEMASK": { + "specs": "webgl", + "value": "0x8CA5", + "exposed": "Window", + "name": "STENCIL_BACK_WRITEMASK", + "type": "unsigned long", + "type-original": "GLenum" + }, + "SRC_ALPHA": { + "specs": "webgl", + "value": "0x0302", + "exposed": "Window", + "name": "SRC_ALPHA", + "type": "unsigned long", + "type-original": "GLenum" + }, + "UNSIGNED_SHORT": { + "specs": "webgl", + "value": "0x1403", + "exposed": "Window", + "name": "UNSIGNED_SHORT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE21": { + "specs": "webgl", + "value": "0x84D5", + "exposed": "Window", + "name": "TEXTURE21", + "type": "unsigned long", + "type-original": "GLenum" + }, + "FUNC_REVERSE_SUBTRACT": { + "specs": "webgl", + "value": "0x800B", + "exposed": "Window", + "name": "FUNC_REVERSE_SUBTRACT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "SHADING_LANGUAGE_VERSION": { + "specs": "webgl", + "value": "0x8B8C", + "exposed": "Window", + "name": "SHADING_LANGUAGE_VERSION", + "type": "unsigned long", + "type-original": "GLenum" + }, + "EQUAL": { + "specs": "webgl", + "value": "0x0202", + "exposed": "Window", + "name": "EQUAL", + "type": "unsigned long", + "type-original": "GLenum" + }, + "FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL": { + "specs": "webgl", + "value": "0x8CD2", + "exposed": "Window", + "name": "FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL", + "type": "unsigned long", + "type-original": "GLenum" + }, + "BOOL_VEC3": { + "specs": "webgl", + "value": "0x8B58", + "exposed": "Window", + "name": "BOOL_VEC3", + "type": "unsigned long", + "type-original": "GLenum" + }, + "MAX_TEXTURE_IMAGE_UNITS": { + "specs": "webgl", + "value": "0x8872", + "exposed": "Window", + "name": "MAX_TEXTURE_IMAGE_UNITS", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE_CUBE_MAP_NEGATIVE_X": { + "specs": "webgl", + "value": "0x8516", + "exposed": "Window", + "name": "TEXTURE_CUBE_MAP_NEGATIVE_X", + "type": "unsigned long", + "type-original": "GLenum" + }, + "SAMPLER_2D": { + "specs": "webgl", + "value": "0x8B5E", + "exposed": "Window", + "name": "SAMPLER_2D", + "type": "unsigned long", + "type-original": "GLenum" + }, + "RENDERBUFFER_INTERNAL_FORMAT": { + "specs": "webgl", + "value": "0x8D44", + "exposed": "Window", + "name": "RENDERBUFFER_INTERNAL_FORMAT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE_CUBE_MAP_POSITIVE_Y": { + "specs": "webgl", + "value": "0x8517", + "exposed": "Window", + "name": "TEXTURE_CUBE_MAP_POSITIVE_Y", + "type": "unsigned long", + "type-original": "GLenum" + }, + "STENCIL_VALUE_MASK": { + "specs": "webgl", + "value": "0x0B93", + "exposed": "Window", + "name": "STENCIL_VALUE_MASK", + "type": "unsigned long", + "type-original": "GLenum" + }, + "DEPTH_RANGE": { + "specs": "webgl", + "value": "0x0B70", + "exposed": "Window", + "name": "DEPTH_RANGE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "ARRAY_BUFFER": { + "specs": "webgl", + "value": "0x8892", + "exposed": "Window", + "name": "ARRAY_BUFFER", + "type": "unsigned long", + "type-original": "GLenum" + }, + "ELEMENT_ARRAY_BUFFER_BINDING": { + "specs": "webgl", + "value": "0x8895", + "exposed": "Window", + "name": "ELEMENT_ARRAY_BUFFER_BINDING", + "type": "unsigned long", + "type-original": "GLenum" + }, + "NICEST": { + "specs": "webgl", + "value": "0x1102", + "exposed": "Window", + "name": "NICEST", + "type": "unsigned long", + "type-original": "GLenum" + }, + "ACTIVE_ATTRIBUTES": { + "specs": "webgl", + "value": "0x8B89", + "exposed": "Window", + "name": "ACTIVE_ATTRIBUTES", + "type": "unsigned long", + "type-original": "GLenum" + }, + "NEVER": { + "specs": "webgl", + "value": "0x0200", + "exposed": "Window", + "name": "NEVER", + "type": "unsigned long", + "type-original": "GLenum" + }, + "CURRENT_VERTEX_ATTRIB": { + "specs": "webgl", + "value": "0x8626", + "exposed": "Window", + "name": "CURRENT_VERTEX_ATTRIB", + "type": "unsigned long", + "type-original": "GLenum" + }, + "FLOAT_VEC4": { + "specs": "webgl", + "value": "0x8B52", + "exposed": "Window", + "name": "FLOAT_VEC4", + "type": "unsigned long", + "type-original": "GLenum" + }, + "STENCIL_PASS_DEPTH_PASS": { + "specs": "webgl", + "value": "0x0B96", + "exposed": "Window", + "name": "STENCIL_PASS_DEPTH_PASS", + "type": "unsigned long", + "type-original": "GLenum" + }, + "INVERT": { + "specs": "webgl", + "value": "0x150A", + "exposed": "Window", + "name": "INVERT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "LINK_STATUS": { + "specs": "webgl", + "value": "0x8B82", + "exposed": "Window", + "name": "LINK_STATUS", + "type": "unsigned long", + "type-original": "GLenum" + }, + "RGB": { + "specs": "webgl", + "value": "0x1907", + "exposed": "Window", + "name": "RGB", + "type": "unsigned long", + "type-original": "GLenum" + }, + "INT_VEC4": { + "specs": "webgl", + "value": "0x8B55", + "exposed": "Window", + "name": "INT_VEC4", + "type": "unsigned long", + "type-original": "GLenum" + }, + "TEXTURE2": { + "specs": "webgl", + "value": "0x84C2", + "exposed": "Window", + "name": "TEXTURE2", + "type": "unsigned long", + "type-original": "GLenum" + }, + "UNPACK_COLORSPACE_CONVERSION_WEBGL": { + "specs": "webgl", + "value": "0x9243", + "exposed": "Window", + "name": "UNPACK_COLORSPACE_CONVERSION_WEBGL", + "type": "unsigned long", + "type-original": "GLenum" + }, + "MEDIUM_FLOAT": { + "specs": "webgl", + "value": "0x8DF1", + "exposed": "Window", + "name": "MEDIUM_FLOAT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "SRC_ALPHA_SATURATE": { + "specs": "webgl", + "value": "0x0308", + "exposed": "Window", + "name": "SRC_ALPHA_SATURATE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "NONE": { + "specs": "webgl", + "value": "0", + "exposed": "Window", + "name": "NONE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "SHORT": { + "specs": "webgl", + "value": "0x1402", + "exposed": "Window", + "name": "SHORT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "BUFFER_USAGE": { + "specs": "webgl", + "value": "0x8765", + "exposed": "Window", + "name": "BUFFER_USAGE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "INT": { + "specs": "webgl", + "value": "0x1404", + "exposed": "Window", + "name": "INT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "UNSIGNED_BYTE": { + "specs": "webgl", + "value": "0x1401", + "exposed": "Window", + "name": "UNSIGNED_BYTE", + "type": "unsigned long", + "type-original": "GLenum" + }, + "SUBPIXEL_BITS": { + "specs": "webgl", + "value": "0x0D50", + "exposed": "Window", + "name": "SUBPIXEL_BITS", + "type": "unsigned long", + "type-original": "GLenum" + }, + "SAMPLES": { + "specs": "webgl", + "value": "0x80A9", + "exposed": "Window", + "name": "SAMPLES", + "type": "unsigned long", + "type-original": "GLenum" + }, + "KEEP": { + "specs": "webgl", + "value": "0x1E00", + "exposed": "Window", + "name": "KEEP", + "type": "unsigned long", + "type-original": "GLenum" + }, + "FRAGMENT_SHADER": { + "specs": "webgl", + "value": "0x8B30", + "exposed": "Window", + "name": "FRAGMENT_SHADER", + "type": "unsigned long", + "type-original": "GLenum" + }, + "LINE_WIDTH": { + "specs": "webgl", + "value": "0x0B21", + "exposed": "Window", + "name": "LINE_WIDTH", + "type": "unsigned long", + "type-original": "GLenum" + }, + "BLEND_SRC_RGB": { + "specs": "webgl", + "value": "0x80C9", + "exposed": "Window", + "name": "BLEND_SRC_RGB", + "type": "unsigned long", + "type-original": "GLenum" + }, + "VERSION": { + "specs": "webgl", + "value": "0x1F02", + "exposed": "Window", + "name": "VERSION", + "type": "unsigned long", + "type-original": "GLenum" + }, + "LOW_FLOAT": { + "specs": "webgl", + "value": "0x8DF0", + "exposed": "Window", + "name": "LOW_FLOAT", + "type": "unsigned long", + "type-original": "GLenum" + } + } + }, + "methods": { + "method": { + "getUniformLocation": { + "signature": [ + { + "nullable": 1, + "param-min-required": 2, + "type": "WebGLUniformLocation", + "param": [ + { + "nullable": 1, + "name": "program", + "type": "WebGLProgram", + "type-original": "WebGLProgram?" + }, + { + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "WebGLUniformLocation?" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "getUniformLocation" + }, + "bindTexture": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "target", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "nullable": 1, + "name": "texture", + "type": "WebGLTexture", + "type-original": "WebGLTexture?" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "bindTexture" + }, + "depthMask": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "flag", + "type": "boolean", + "type-original": "GLboolean" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "depthMask" + }, + "bufferData": { + "signature": [ + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "name": "target", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "size", + "type": [ + { + "type": "long long" + }, + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + }, + { + "nullable": 1, + "type": "ArrayBuffer" + } + ], + "type-original": "(GLsizeiptr or ArrayBufferView or ArrayBuffer?)" + }, + { + "name": "usage", + "type": "unsigned long", + "type-original": "GLenum" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "bufferData" + }, + "getUniform": { + "signature": [ + { + "param-min-required": 2, + "type": "any", + "param": [ + { + "nullable": 1, + "name": "program", + "type": "WebGLProgram", + "type-original": "WebGLProgram?" + }, + { + "nullable": 1, + "name": "location", + "type": "WebGLUniformLocation", + "type-original": "WebGLUniformLocation?" + } + ], + "type-original": "any" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "getUniform" + }, + "vertexAttrib3fv": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "indx", + "type": "unsigned long", + "type-original": "GLuint" + }, + { + "name": "values", + "type": "Float32Array", + "type-original": "Float32Array" + } + ], + "type-original": "void" + }, + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "indx", + "type": "unsigned long", + "type-original": "GLuint" + }, + { + "subtype": { + "type": "float" + }, + "name": "values", + "type": "sequence", + "type-original": "sequence" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "vertexAttrib3fv" + }, + "linkProgram": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "program", + "type": "WebGLProgram", + "type-original": "WebGLProgram?" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "linkProgram" + }, + "getSupportedExtensions": { + "signature": [ + { + "subtype": { + "type": "DOMString" + }, + "nullable": 1, + "type": "sequence", + "type-original": "sequence?" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "getSupportedExtensions" + }, + "bufferSubData": { + "signature": [ + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "name": "target", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "offset", + "type": "long long", + "type-original": "GLintptr" + }, + { + "name": "data", + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + }, + { + "nullable": 1, + "type": "ArrayBuffer" + } + ], + "type-original": "(ArrayBufferView or ArrayBuffer?)" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "bufferSubData" + }, + "vertexAttribPointer": { + "signature": [ + { + "param-min-required": 6, + "type": "void", + "param": [ + { + "name": "indx", + "type": "unsigned long", + "type-original": "GLuint" + }, + { + "name": "size", + "type": "long", + "type-original": "GLint" + }, + { + "name": "type", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "normalized", + "type": "boolean", + "type-original": "GLboolean" + }, + { + "name": "stride", + "type": "long", + "type-original": "GLsizei" + }, + { + "name": "offset", + "type": "long long", + "type-original": "GLintptr" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "vertexAttribPointer" + }, + "polygonOffset": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "factor", + "type": "float", + "type-original": "GLfloat" + }, + { + "name": "units", + "type": "float", + "type-original": "GLfloat" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "polygonOffset" + }, + "blendColor": { + "signature": [ + { + "param-min-required": 4, + "type": "void", + "param": [ + { + "name": "red", + "type": "float", + "type-original": "GLclampf" + }, + { + "name": "green", + "type": "float", + "type-original": "GLclampf" + }, + { + "name": "blue", + "type": "float", + "type-original": "GLclampf" + }, + { + "name": "alpha", + "type": "float", + "type-original": "GLclampf" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "blendColor" + }, + "createTexture": { + "signature": [ + { + "nullable": 1, + "type": "WebGLTexture", + "type-original": "WebGLTexture?" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "createTexture" + }, + "hint": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "target", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "mode", + "type": "unsigned long", + "type-original": "GLenum" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "hint" + }, + "getVertexAttrib": { + "signature": [ + { + "param-min-required": 2, + "type": "any", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "GLuint" + }, + { + "name": "pname", + "type": "unsigned long", + "type-original": "GLenum" + } + ], + "type-original": "any" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "getVertexAttrib" + }, + "enableVertexAttribArray": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "GLuint" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "enableVertexAttribArray" + }, + "depthRange": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "zNear", + "type": "float", + "type-original": "GLclampf" + }, + { + "name": "zFar", + "type": "float", + "type-original": "GLclampf" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "depthRange" + }, + "cullFace": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "mode", + "type": "unsigned long", + "type-original": "GLenum" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "cullFace" + }, + "createFramebuffer": { + "signature": [ + { + "nullable": 1, + "type": "WebGLFramebuffer", + "type-original": "WebGLFramebuffer?" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "createFramebuffer" + }, + "uniformMatrix4fv": { + "signature": [ + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "location", + "type": "WebGLUniformLocation", + "type-original": "WebGLUniformLocation?" + }, + { + "name": "transpose", + "type": "boolean", + "type-original": "GLboolean" + }, + { + "name": "value", + "type": "Float32Array", + "type-original": "Float32Array" + } + ], + "type-original": "void" + }, + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "location", + "type": "WebGLUniformLocation", + "type-original": "WebGLUniformLocation?" + }, + { + "name": "transpose", + "type": "boolean", + "type-original": "GLboolean" + }, + { + "subtype": { + "type": "float" + }, + "name": "value", + "type": "sequence", + "type-original": "sequence" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "uniformMatrix4fv" + }, + "framebufferTexture2D": { + "signature": [ + { + "param-min-required": 5, + "type": "void", + "param": [ + { + "name": "target", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "attachment", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "textarget", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "nullable": 1, + "name": "texture", + "type": "WebGLTexture", + "type-original": "WebGLTexture?" + }, + { + "name": "level", + "type": "long", + "type-original": "GLint" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "framebufferTexture2D" + }, + "deleteFramebuffer": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "framebuffer", + "type": "WebGLFramebuffer", + "type-original": "WebGLFramebuffer?" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "deleteFramebuffer" + }, + "colorMask": { + "signature": [ + { + "param-min-required": 4, + "type": "void", + "param": [ + { + "name": "red", + "type": "boolean", + "type-original": "GLboolean" + }, + { + "name": "green", + "type": "boolean", + "type-original": "GLboolean" + }, + { + "name": "blue", + "type": "boolean", + "type-original": "GLboolean" + }, + { + "name": "alpha", + "type": "boolean", + "type-original": "GLboolean" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "colorMask" + }, + "compressedTexImage2D": { + "signature": [ + { + "param-min-required": 7, + "type": "void", + "param": [ + { + "name": "target", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "level", + "type": "long", + "type-original": "GLint" + }, + { + "name": "internalformat", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "width", + "type": "long", + "type-original": "GLsizei" + }, + { + "name": "height", + "type": "long", + "type-original": "GLsizei" + }, + { + "name": "border", + "type": "long", + "type-original": "GLint" + }, + { + "name": "data", + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ], + "type-original": "ArrayBufferView" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "compressedTexImage2D" + }, + "uniformMatrix2fv": { + "signature": [ + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "location", + "type": "WebGLUniformLocation", + "type-original": "WebGLUniformLocation?" + }, + { + "name": "transpose", + "type": "boolean", + "type-original": "GLboolean" + }, + { + "name": "value", + "type": "Float32Array", + "type-original": "Float32Array" + } + ], + "type-original": "void" + }, + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "location", + "type": "WebGLUniformLocation", + "type-original": "WebGLUniformLocation?" + }, + { + "name": "transpose", + "type": "boolean", + "type-original": "GLboolean" + }, + { + "subtype": { + "type": "float" + }, + "name": "value", + "type": "sequence", + "type-original": "sequence" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "uniformMatrix2fv" + }, + "getExtension": { + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "object", + "param": [ + { + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "object?" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "getExtension" + }, + "createProgram": { + "signature": [ + { + "nullable": 1, + "type": "WebGLProgram", + "type-original": "WebGLProgram?" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "createProgram" + }, + "deleteShader": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "shader", + "type": "WebGLShader", + "type-original": "WebGLShader?" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "deleteShader" + }, + "getAttachedShaders": { + "signature": [ + { + "subtype": { + "type": "WebGLShader" + }, + "nullable": 1, + "param-min-required": 1, + "type": "sequence", + "param": [ + { + "nullable": 1, + "name": "program", + "type": "WebGLProgram", + "type-original": "WebGLProgram?" + } + ], + "type-original": "sequence?" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "getAttachedShaders" + }, + "enable": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "cap", + "type": "unsigned long", + "type-original": "GLenum" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "enable" + }, + "blendEquation": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "mode", + "type": "unsigned long", + "type-original": "GLenum" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "blendEquation" + }, + "texImage2D": { + "signature": [ + { + "param-min-required": 6, + "type": "void", + "param": [ + { + "name": "target", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "level", + "type": "long", + "type-original": "GLint" + }, + { + "name": "internalformat", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "format", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "type", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "nullable": 1, + "name": "pixels", + "type": "ImageData", + "type-original": "ImageData?" + } + ], + "type-original": "void" + }, + { + "param-min-required": 9, + "type": "void", + "param": [ + { + "name": "target", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "level", + "type": "long", + "type-original": "GLint" + }, + { + "name": "internalformat", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "width", + "type": "long", + "type-original": "GLsizei" + }, + { + "name": "height", + "type": "long", + "type-original": "GLsizei" + }, + { + "name": "border", + "type": "long", + "type-original": "GLint" + }, + { + "name": "format", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "type", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "pixels", + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ], + "type-original": "ArrayBufferView?" + } + ], + "type-original": "void" + }, + { + "param-min-required": 6, + "type": "void", + "param": [ + { + "name": "target", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "level", + "type": "long", + "type-original": "GLint" + }, + { + "name": "internalformat", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "format", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "type", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "image", + "type": "HTMLImageElement", + "type-original": "HTMLImageElement" + } + ], + "type-original": "void" + }, + { + "param-min-required": 6, + "type": "void", + "param": [ + { + "name": "target", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "level", + "type": "long", + "type-original": "GLint" + }, + { + "name": "internalformat", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "format", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "type", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "canvas", + "type": "HTMLCanvasElement", + "type-original": "HTMLCanvasElement" + } + ], + "type-original": "void" + }, + { + "param-min-required": 6, + "type": "void", + "param": [ + { + "name": "target", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "level", + "type": "long", + "type-original": "GLint" + }, + { + "name": "internalformat", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "format", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "type", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "video", + "type": "HTMLVideoElement", + "type-original": "HTMLVideoElement" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "texImage2D" + }, + "createBuffer": { + "signature": [ + { + "nullable": 1, + "type": "WebGLBuffer", + "type-original": "WebGLBuffer?" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "createBuffer" + }, + "deleteTexture": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "texture", + "type": "WebGLTexture", + "type-original": "WebGLTexture?" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "deleteTexture" + }, + "useProgram": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "program", + "type": "WebGLProgram", + "type-original": "WebGLProgram?" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "useProgram" + }, + "vertexAttrib2fv": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "indx", + "type": "unsigned long", + "type-original": "GLuint" + }, + { + "name": "values", + "type": "Float32Array", + "type-original": "Float32Array" + } + ], + "type-original": "void" + }, + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "indx", + "type": "unsigned long", + "type-original": "GLuint" + }, + { + "subtype": { + "type": "float" + }, + "name": "values", + "type": "sequence", + "type-original": "sequence" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "vertexAttrib2fv" + }, + "checkFramebufferStatus": { + "signature": [ + { + "param-min-required": 1, + "type": "unsigned long", + "param": [ + { + "name": "target", + "type": "unsigned long", + "type-original": "GLenum" + } + ], + "type-original": "GLenum" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "checkFramebufferStatus" + }, + "frontFace": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "mode", + "type": "unsigned long", + "type-original": "GLenum" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "frontFace" + }, + "getBufferParameter": { + "signature": [ + { + "param-min-required": 2, + "type": "any", + "param": [ + { + "name": "target", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "pname", + "type": "unsigned long", + "type-original": "GLenum" + } + ], + "type-original": "any" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "getBufferParameter" + }, + "texSubImage2D": { + "signature": [ + { + "param-min-required": 7, + "type": "void", + "param": [ + { + "name": "target", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "level", + "type": "long", + "type-original": "GLint" + }, + { + "name": "xoffset", + "type": "long", + "type-original": "GLint" + }, + { + "name": "yoffset", + "type": "long", + "type-original": "GLint" + }, + { + "name": "format", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "type", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "nullable": 1, + "name": "pixels", + "type": "ImageData", + "type-original": "ImageData?" + } + ], + "type-original": "void" + }, + { + "param-min-required": 9, + "type": "void", + "param": [ + { + "name": "target", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "level", + "type": "long", + "type-original": "GLint" + }, + { + "name": "xoffset", + "type": "long", + "type-original": "GLint" + }, + { + "name": "yoffset", + "type": "long", + "type-original": "GLint" + }, + { + "name": "width", + "type": "long", + "type-original": "GLsizei" + }, + { + "name": "height", + "type": "long", + "type-original": "GLsizei" + }, + { + "name": "format", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "type", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "pixels", + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ], + "type-original": "ArrayBufferView?" + } + ], + "type-original": "void" + }, + { + "param-min-required": 7, + "type": "void", + "param": [ + { + "name": "target", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "level", + "type": "long", + "type-original": "GLint" + }, + { + "name": "xoffset", + "type": "long", + "type-original": "GLint" + }, + { + "name": "yoffset", + "type": "long", + "type-original": "GLint" + }, + { + "name": "format", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "type", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "image", + "type": "HTMLImageElement", + "type-original": "HTMLImageElement" + } + ], + "type-original": "void" + }, + { + "param-min-required": 7, + "type": "void", + "param": [ + { + "name": "target", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "level", + "type": "long", + "type-original": "GLint" + }, + { + "name": "xoffset", + "type": "long", + "type-original": "GLint" + }, + { + "name": "yoffset", + "type": "long", + "type-original": "GLint" + }, + { + "name": "format", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "type", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "canvas", + "type": "HTMLCanvasElement", + "type-original": "HTMLCanvasElement" + } + ], + "type-original": "void" + }, + { + "param-min-required": 7, + "type": "void", + "param": [ + { + "name": "target", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "level", + "type": "long", + "type-original": "GLint" + }, + { + "name": "xoffset", + "type": "long", + "type-original": "GLint" + }, + { + "name": "yoffset", + "type": "long", + "type-original": "GLint" + }, + { + "name": "format", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "type", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "video", + "type": "HTMLVideoElement", + "type-original": "HTMLVideoElement" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "texSubImage2D" + }, + "copyTexImage2D": { + "signature": [ + { + "param-min-required": 8, + "type": "void", + "param": [ + { + "name": "target", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "level", + "type": "long", + "type-original": "GLint" + }, + { + "name": "internalformat", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "x", + "type": "long", + "type-original": "GLint" + }, + { + "name": "y", + "type": "long", + "type-original": "GLint" + }, + { + "name": "width", + "type": "long", + "type-original": "GLsizei" + }, + { + "name": "height", + "type": "long", + "type-original": "GLsizei" + }, + { + "name": "border", + "type": "long", + "type-original": "GLint" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "copyTexImage2D" + }, + "getVertexAttribOffset": { + "signature": [ + { + "param-min-required": 2, + "type": "long long", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "GLuint" + }, + { + "name": "pname", + "type": "unsigned long", + "type-original": "GLenum" + } + ], + "type-original": "GLsizeiptr" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "getVertexAttribOffset" + }, + "disableVertexAttribArray": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "GLuint" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "disableVertexAttribArray" + }, + "blendFunc": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "sfactor", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "dfactor", + "type": "unsigned long", + "type-original": "GLenum" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "blendFunc" + }, + "drawElements": { + "signature": [ + { + "param-min-required": 4, + "type": "void", + "param": [ + { + "name": "mode", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "count", + "type": "long", + "type-original": "GLsizei" + }, + { + "name": "type", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "offset", + "type": "long long", + "type-original": "GLintptr" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "drawElements" + }, + "isFramebuffer": { + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "nullable": 1, + "name": "framebuffer", + "type": "WebGLFramebuffer", + "type-original": "WebGLFramebuffer?" + } + ], + "type-original": "GLboolean" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "isFramebuffer" + }, + "uniform3iv": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "location", + "type": "WebGLUniformLocation", + "type-original": "WebGLUniformLocation?" + }, + { + "name": "v", + "type": "Int32Array", + "type-original": "Int32Array" + } + ], + "type-original": "void" + }, + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "location", + "type": "WebGLUniformLocation", + "type-original": "WebGLUniformLocation?" + }, + { + "subtype": { + "type": "long" + }, + "name": "v", + "type": "sequence", + "type-original": "sequence" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "uniform3iv" + }, + "lineWidth": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "width", + "type": "float", + "type-original": "GLfloat" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "lineWidth" + }, + "getShaderInfoLog": { + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "DOMString", + "param": [ + { + "nullable": 1, + "name": "shader", + "type": "WebGLShader", + "type-original": "WebGLShader?" + } + ], + "type-original": "DOMString?" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "getShaderInfoLog" + }, + "getTexParameter": { + "signature": [ + { + "param-min-required": 2, + "type": "any", + "param": [ + { + "name": "target", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "pname", + "type": "unsigned long", + "type-original": "GLenum" + } + ], + "type-original": "any" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "getTexParameter" + }, + "getParameter": { + "signature": [ + { + "param-min-required": 1, + "type": "any", + "param": [ + { + "name": "pname", + "type": "unsigned long", + "type-original": "GLenum" + } + ], + "type-original": "any" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "getParameter" + }, + "getShaderPrecisionFormat": { + "signature": [ + { + "nullable": 1, + "param-min-required": 2, + "type": "WebGLShaderPrecisionFormat", + "param": [ + { + "name": "shadertype", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "precisiontype", + "type": "unsigned long", + "type-original": "GLenum" + } + ], + "type-original": "WebGLShaderPrecisionFormat?" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "getShaderPrecisionFormat" + }, + "getContextAttributes": { + "signature": [ + { + "type": "WebGLContextAttributes", + "type-original": "WebGLContextAttributes" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "getContextAttributes" + }, + "vertexAttrib1f": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "indx", + "type": "unsigned long", + "type-original": "GLuint" + }, + { + "name": "x", + "type": "float", + "type-original": "GLfloat" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "vertexAttrib1f" + }, + "bindFramebuffer": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "target", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "nullable": 1, + "name": "framebuffer", + "type": "WebGLFramebuffer", + "type-original": "WebGLFramebuffer?" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "bindFramebuffer" + }, + "compressedTexSubImage2D": { + "signature": [ + { + "param-min-required": 8, + "type": "void", + "param": [ + { + "name": "target", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "level", + "type": "long", + "type-original": "GLint" + }, + { + "name": "xoffset", + "type": "long", + "type-original": "GLint" + }, + { + "name": "yoffset", + "type": "long", + "type-original": "GLint" + }, + { + "name": "width", + "type": "long", + "type-original": "GLsizei" + }, + { + "name": "height", + "type": "long", + "type-original": "GLsizei" + }, + { + "name": "format", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "data", + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ], + "type-original": "ArrayBufferView" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "compressedTexSubImage2D" + }, + "isContextLost": { + "signature": [ + { + "type": "boolean", + "type-original": "boolean" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "isContextLost" + }, + "uniform1iv": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "location", + "type": "WebGLUniformLocation", + "type-original": "WebGLUniformLocation?" + }, + { + "name": "v", + "type": "Int32Array", + "type-original": "Int32Array" + } + ], + "type-original": "void" + }, + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "location", + "type": "WebGLUniformLocation", + "type-original": "WebGLUniformLocation?" + }, + { + "subtype": { + "type": "long" + }, + "name": "v", + "type": "sequence", + "type-original": "sequence" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "uniform1iv" + }, + "getRenderbufferParameter": { + "signature": [ + { + "param-min-required": 2, + "type": "any", + "param": [ + { + "name": "target", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "pname", + "type": "unsigned long", + "type-original": "GLenum" + } + ], + "type-original": "any" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "getRenderbufferParameter" + }, + "uniform2fv": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "location", + "type": "WebGLUniformLocation", + "type-original": "WebGLUniformLocation?" + }, + { + "name": "v", + "type": "Float32Array", + "type-original": "Float32Array" + } + ], + "type-original": "void" + }, + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "location", + "type": "WebGLUniformLocation", + "type-original": "WebGLUniformLocation?" + }, + { + "subtype": { + "type": "float" + }, + "name": "v", + "type": "sequence", + "type-original": "sequence" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "uniform2fv" + }, + "isTexture": { + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "nullable": 1, + "name": "texture", + "type": "WebGLTexture", + "type-original": "WebGLTexture?" + } + ], + "type-original": "GLboolean" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "isTexture" + }, + "getError": { + "signature": [ + { + "type": "unsigned long", + "type-original": "GLenum" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "getError" + }, + "shaderSource": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "shader", + "type": "WebGLShader", + "type-original": "WebGLShader?" + }, + { + "name": "source", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "shaderSource" + }, + "deleteRenderbuffer": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "renderbuffer", + "type": "WebGLRenderbuffer", + "type-original": "WebGLRenderbuffer?" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "deleteRenderbuffer" + }, + "stencilMask": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "mask", + "type": "unsigned long", + "type-original": "GLuint" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "stencilMask" + }, + "bindBuffer": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "target", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "nullable": 1, + "name": "buffer", + "type": "WebGLBuffer", + "type-original": "WebGLBuffer?" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "bindBuffer" + }, + "getAttribLocation": { + "signature": [ + { + "param-min-required": 2, + "type": "long", + "param": [ + { + "nullable": 1, + "name": "program", + "type": "WebGLProgram", + "type-original": "WebGLProgram?" + }, + { + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "GLint" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "getAttribLocation" + }, + "uniform3i": { + "signature": [ + { + "param-min-required": 4, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "location", + "type": "WebGLUniformLocation", + "type-original": "WebGLUniformLocation?" + }, + { + "name": "x", + "type": "long", + "type-original": "GLint" + }, + { + "name": "y", + "type": "long", + "type-original": "GLint" + }, + { + "name": "z", + "type": "long", + "type-original": "GLint" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "uniform3i" + }, + "blendEquationSeparate": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "modeRGB", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "modeAlpha", + "type": "unsigned long", + "type-original": "GLenum" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "blendEquationSeparate" + }, + "clear": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "mask", + "type": "unsigned long", + "type-original": "GLbitfield" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "clear" + }, + "blendFuncSeparate": { + "signature": [ + { + "param-min-required": 4, + "type": "void", + "param": [ + { + "name": "srcRGB", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "dstRGB", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "srcAlpha", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "dstAlpha", + "type": "unsigned long", + "type-original": "GLenum" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "blendFuncSeparate" + }, + "stencilFuncSeparate": { + "signature": [ + { + "param-min-required": 4, + "type": "void", + "param": [ + { + "name": "face", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "func", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "ref", + "type": "long", + "type-original": "GLint" + }, + { + "name": "mask", + "type": "unsigned long", + "type-original": "GLuint" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "stencilFuncSeparate" + }, + "readPixels": { + "signature": [ + { + "param-min-required": 7, + "type": "void", + "param": [ + { + "name": "x", + "type": "long", + "type-original": "GLint" + }, + { + "name": "y", + "type": "long", + "type-original": "GLint" + }, + { + "name": "width", + "type": "long", + "type-original": "GLsizei" + }, + { + "name": "height", + "type": "long", + "type-original": "GLsizei" + }, + { + "name": "format", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "type", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "pixels", + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ], + "type-original": "ArrayBufferView?" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "readPixels" + }, + "scissor": { + "signature": [ + { + "param-min-required": 4, + "type": "void", + "param": [ + { + "name": "x", + "type": "long", + "type-original": "GLint" + }, + { + "name": "y", + "type": "long", + "type-original": "GLint" + }, + { + "name": "width", + "type": "long", + "type-original": "GLsizei" + }, + { + "name": "height", + "type": "long", + "type-original": "GLsizei" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "scissor" + }, + "uniform2i": { + "signature": [ + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "location", + "type": "WebGLUniformLocation", + "type-original": "WebGLUniformLocation?" + }, + { + "name": "x", + "type": "long", + "type-original": "GLint" + }, + { + "name": "y", + "type": "long", + "type-original": "GLint" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "uniform2i" + }, + "getActiveAttrib": { + "signature": [ + { + "nullable": 1, + "param-min-required": 2, + "type": "WebGLActiveInfo", + "param": [ + { + "nullable": 1, + "name": "program", + "type": "WebGLProgram", + "type-original": "WebGLProgram?" + }, + { + "name": "index", + "type": "unsigned long", + "type-original": "GLuint" + } + ], + "type-original": "WebGLActiveInfo?" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "getActiveAttrib" + }, + "getShaderSource": { + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "DOMString", + "param": [ + { + "nullable": 1, + "name": "shader", + "type": "WebGLShader", + "type-original": "WebGLShader?" + } + ], + "type-original": "DOMString?" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "getShaderSource" + }, + "generateMipmap": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "target", + "type": "unsigned long", + "type-original": "GLenum" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "generateMipmap" + }, + "bindAttribLocation": { + "signature": [ + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "program", + "type": "WebGLProgram", + "type-original": "WebGLProgram?" + }, + { + "name": "index", + "type": "unsigned long", + "type-original": "GLuint" + }, + { + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "bindAttribLocation" + }, + "uniform1fv": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "location", + "type": "WebGLUniformLocation", + "type-original": "WebGLUniformLocation?" + }, + { + "name": "v", + "type": "Float32Array", + "type-original": "Float32Array" + } + ], + "type-original": "void" + }, + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "location", + "type": "WebGLUniformLocation", + "type-original": "WebGLUniformLocation?" + }, + { + "subtype": { + "type": "float" + }, + "name": "v", + "type": "sequence", + "type-original": "sequence" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "uniform1fv" + }, + "uniform2iv": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "location", + "type": "WebGLUniformLocation", + "type-original": "WebGLUniformLocation?" + }, + { + "name": "v", + "type": "Int32Array", + "type-original": "Int32Array" + } + ], + "type-original": "void" + }, + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "location", + "type": "WebGLUniformLocation", + "type-original": "WebGLUniformLocation?" + }, + { + "subtype": { + "type": "long" + }, + "name": "v", + "type": "sequence", + "type-original": "sequence" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "uniform2iv" + }, + "stencilOp": { + "signature": [ + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "name": "fail", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "zfail", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "zpass", + "type": "unsigned long", + "type-original": "GLenum" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "stencilOp" + }, + "uniform4fv": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "location", + "type": "WebGLUniformLocation", + "type-original": "WebGLUniformLocation?" + }, + { + "name": "v", + "type": "Float32Array", + "type-original": "Float32Array" + } + ], + "type-original": "void" + }, + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "location", + "type": "WebGLUniformLocation", + "type-original": "WebGLUniformLocation?" + }, + { + "subtype": { + "type": "float" + }, + "name": "v", + "type": "sequence", + "type-original": "sequence" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "uniform4fv" + }, + "vertexAttrib1fv": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "indx", + "type": "unsigned long", + "type-original": "GLuint" + }, + { + "name": "values", + "type": "Float32Array", + "type-original": "Float32Array" + } + ], + "type-original": "void" + }, + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "indx", + "type": "unsigned long", + "type-original": "GLuint" + }, + { + "subtype": { + "type": "float" + }, + "name": "values", + "type": "sequence", + "type-original": "sequence" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "vertexAttrib1fv" + }, + "flush": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "flush" + }, + "uniform4f": { + "signature": [ + { + "param-min-required": 5, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "location", + "type": "WebGLUniformLocation", + "type-original": "WebGLUniformLocation?" + }, + { + "name": "x", + "type": "float", + "type-original": "GLfloat" + }, + { + "name": "y", + "type": "float", + "type-original": "GLfloat" + }, + { + "name": "z", + "type": "float", + "type-original": "GLfloat" + }, + { + "name": "w", + "type": "float", + "type-original": "GLfloat" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "uniform4f" + }, + "deleteProgram": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "program", + "type": "WebGLProgram", + "type-original": "WebGLProgram?" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "deleteProgram" + }, + "isRenderbuffer": { + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "nullable": 1, + "name": "renderbuffer", + "type": "WebGLRenderbuffer", + "type-original": "WebGLRenderbuffer?" + } + ], + "type-original": "GLboolean" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "isRenderbuffer" + }, + "uniform1i": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "location", + "type": "WebGLUniformLocation", + "type-original": "WebGLUniformLocation?" + }, + { + "name": "x", + "type": "long", + "type-original": "GLint" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "uniform1i" + }, + "getProgramParameter": { + "signature": [ + { + "param-min-required": 2, + "type": "any", + "param": [ + { + "nullable": 1, + "name": "program", + "type": "WebGLProgram", + "type-original": "WebGLProgram?" + }, + { + "name": "pname", + "type": "unsigned long", + "type-original": "GLenum" + } + ], + "type-original": "any" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "getProgramParameter" + }, + "getActiveUniform": { + "signature": [ + { + "nullable": 1, + "param-min-required": 2, + "type": "WebGLActiveInfo", + "param": [ + { + "nullable": 1, + "name": "program", + "type": "WebGLProgram", + "type-original": "WebGLProgram?" + }, + { + "name": "index", + "type": "unsigned long", + "type-original": "GLuint" + } + ], + "type-original": "WebGLActiveInfo?" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "getActiveUniform" + }, + "stencilFunc": { + "signature": [ + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "name": "func", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "ref", + "type": "long", + "type-original": "GLint" + }, + { + "name": "mask", + "type": "unsigned long", + "type-original": "GLuint" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "stencilFunc" + }, + "pixelStorei": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "pname", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "param", + "type": "long", + "type-original": "GLint" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "pixelStorei" + }, + "disable": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "cap", + "type": "unsigned long", + "type-original": "GLenum" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "disable" + }, + "vertexAttrib4fv": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "indx", + "type": "unsigned long", + "type-original": "GLuint" + }, + { + "name": "values", + "type": "Float32Array", + "type-original": "Float32Array" + } + ], + "type-original": "void" + }, + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "indx", + "type": "unsigned long", + "type-original": "GLuint" + }, + { + "subtype": { + "type": "float" + }, + "name": "values", + "type": "sequence", + "type-original": "sequence" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "vertexAttrib4fv" + }, + "createRenderbuffer": { + "signature": [ + { + "nullable": 1, + "type": "WebGLRenderbuffer", + "type-original": "WebGLRenderbuffer?" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "createRenderbuffer" + }, + "isBuffer": { + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "nullable": 1, + "name": "buffer", + "type": "WebGLBuffer", + "type-original": "WebGLBuffer?" + } + ], + "type-original": "GLboolean" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "isBuffer" + }, + "stencilOpSeparate": { + "signature": [ + { + "param-min-required": 4, + "type": "void", + "param": [ + { + "name": "face", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "fail", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "zfail", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "zpass", + "type": "unsigned long", + "type-original": "GLenum" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "stencilOpSeparate" + }, + "getFramebufferAttachmentParameter": { + "signature": [ + { + "param-min-required": 3, + "type": "any", + "param": [ + { + "name": "target", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "attachment", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "pname", + "type": "unsigned long", + "type-original": "GLenum" + } + ], + "type-original": "any" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "getFramebufferAttachmentParameter" + }, + "uniform4i": { + "signature": [ + { + "param-min-required": 5, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "location", + "type": "WebGLUniformLocation", + "type-original": "WebGLUniformLocation?" + }, + { + "name": "x", + "type": "long", + "type-original": "GLint" + }, + { + "name": "y", + "type": "long", + "type-original": "GLint" + }, + { + "name": "z", + "type": "long", + "type-original": "GLint" + }, + { + "name": "w", + "type": "long", + "type-original": "GLint" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "uniform4i" + }, + "sampleCoverage": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "value", + "type": "float", + "type-original": "GLclampf" + }, + { + "name": "invert", + "type": "boolean", + "type-original": "GLboolean" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "sampleCoverage" + }, + "depthFunc": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "func", + "type": "unsigned long", + "type-original": "GLenum" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "depthFunc" + }, + "texParameterf": { + "signature": [ + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "name": "target", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "pname", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "param", + "type": "float", + "type-original": "GLfloat" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "texParameterf" + }, + "vertexAttrib3f": { + "signature": [ + { + "param-min-required": 4, + "type": "void", + "param": [ + { + "name": "indx", + "type": "unsigned long", + "type-original": "GLuint" + }, + { + "name": "x", + "type": "float", + "type-original": "GLfloat" + }, + { + "name": "y", + "type": "float", + "type-original": "GLfloat" + }, + { + "name": "z", + "type": "float", + "type-original": "GLfloat" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "vertexAttrib3f" + }, + "drawArrays": { + "signature": [ + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "name": "mode", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "first", + "type": "long", + "type-original": "GLint" + }, + { + "name": "count", + "type": "long", + "type-original": "GLsizei" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "drawArrays" + }, + "texParameteri": { + "signature": [ + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "name": "target", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "pname", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "param", + "type": "long", + "type-original": "GLint" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "texParameteri" + }, + "vertexAttrib4f": { + "signature": [ + { + "param-min-required": 5, + "type": "void", + "param": [ + { + "name": "indx", + "type": "unsigned long", + "type-original": "GLuint" + }, + { + "name": "x", + "type": "float", + "type-original": "GLfloat" + }, + { + "name": "y", + "type": "float", + "type-original": "GLfloat" + }, + { + "name": "z", + "type": "float", + "type-original": "GLfloat" + }, + { + "name": "w", + "type": "float", + "type-original": "GLfloat" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "vertexAttrib4f" + }, + "getShaderParameter": { + "signature": [ + { + "param-min-required": 2, + "type": "any", + "param": [ + { + "nullable": 1, + "name": "shader", + "type": "WebGLShader", + "type-original": "WebGLShader?" + }, + { + "name": "pname", + "type": "unsigned long", + "type-original": "GLenum" + } + ], + "type-original": "any" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "getShaderParameter" + }, + "clearDepth": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "depth", + "type": "float", + "type-original": "GLclampf" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "clearDepth" + }, + "activeTexture": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "texture", + "type": "unsigned long", + "type-original": "GLenum" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "activeTexture" + }, + "viewport": { + "signature": [ + { + "param-min-required": 4, + "type": "void", + "param": [ + { + "name": "x", + "type": "long", + "type-original": "GLint" + }, + { + "name": "y", + "type": "long", + "type-original": "GLint" + }, + { + "name": "width", + "type": "long", + "type-original": "GLsizei" + }, + { + "name": "height", + "type": "long", + "type-original": "GLsizei" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "viewport" + }, + "detachShader": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "program", + "type": "WebGLProgram", + "type-original": "WebGLProgram?" + }, + { + "nullable": 1, + "name": "shader", + "type": "WebGLShader", + "type-original": "WebGLShader?" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "detachShader" + }, + "uniform1f": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "location", + "type": "WebGLUniformLocation", + "type-original": "WebGLUniformLocation?" + }, + { + "name": "x", + "type": "float", + "type-original": "GLfloat" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "uniform1f" + }, + "uniformMatrix3fv": { + "signature": [ + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "location", + "type": "WebGLUniformLocation", + "type-original": "WebGLUniformLocation?" + }, + { + "name": "transpose", + "type": "boolean", + "type-original": "GLboolean" + }, + { + "name": "value", + "type": "Float32Array", + "type-original": "Float32Array" + } + ], + "type-original": "void" + }, + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "location", + "type": "WebGLUniformLocation", + "type-original": "WebGLUniformLocation?" + }, + { + "name": "transpose", + "type": "boolean", + "type-original": "GLboolean" + }, + { + "subtype": { + "type": "float" + }, + "name": "value", + "type": "sequence", + "type-original": "sequence" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "uniformMatrix3fv" + }, + "deleteBuffer": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "buffer", + "type": "WebGLBuffer", + "type-original": "WebGLBuffer?" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "deleteBuffer" + }, + "copyTexSubImage2D": { + "signature": [ + { + "param-min-required": 8, + "type": "void", + "param": [ + { + "name": "target", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "level", + "type": "long", + "type-original": "GLint" + }, + { + "name": "xoffset", + "type": "long", + "type-original": "GLint" + }, + { + "name": "yoffset", + "type": "long", + "type-original": "GLint" + }, + { + "name": "x", + "type": "long", + "type-original": "GLint" + }, + { + "name": "y", + "type": "long", + "type-original": "GLint" + }, + { + "name": "width", + "type": "long", + "type-original": "GLsizei" + }, + { + "name": "height", + "type": "long", + "type-original": "GLsizei" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "copyTexSubImage2D" + }, + "uniform3fv": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "location", + "type": "WebGLUniformLocation", + "type-original": "WebGLUniformLocation?" + }, + { + "name": "v", + "type": "Float32Array", + "type-original": "Float32Array" + } + ], + "type-original": "void" + }, + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "location", + "type": "WebGLUniformLocation", + "type-original": "WebGLUniformLocation?" + }, + { + "subtype": { + "type": "float" + }, + "name": "v", + "type": "sequence", + "type-original": "sequence" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "uniform3fv" + }, + "stencilMaskSeparate": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "face", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "mask", + "type": "unsigned long", + "type-original": "GLuint" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "stencilMaskSeparate" + }, + "attachShader": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "program", + "type": "WebGLProgram", + "type-original": "WebGLProgram?" + }, + { + "nullable": 1, + "name": "shader", + "type": "WebGLShader", + "type-original": "WebGLShader?" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "attachShader" + }, + "compileShader": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "shader", + "type": "WebGLShader", + "type-original": "WebGLShader?" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "compileShader" + }, + "clearColor": { + "signature": [ + { + "param-min-required": 4, + "type": "void", + "param": [ + { + "name": "red", + "type": "float", + "type-original": "GLclampf" + }, + { + "name": "green", + "type": "float", + "type-original": "GLclampf" + }, + { + "name": "blue", + "type": "float", + "type-original": "GLclampf" + }, + { + "name": "alpha", + "type": "float", + "type-original": "GLclampf" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "clearColor" + }, + "isShader": { + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "nullable": 1, + "name": "shader", + "type": "WebGLShader", + "type-original": "WebGLShader?" + } + ], + "type-original": "GLboolean" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "isShader" + }, + "clearStencil": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "s", + "type": "long", + "type-original": "GLint" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "clearStencil" + }, + "framebufferRenderbuffer": { + "signature": [ + { + "param-min-required": 4, + "type": "void", + "param": [ + { + "name": "target", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "attachment", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "renderbuffertarget", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "nullable": 1, + "name": "renderbuffer", + "type": "WebGLRenderbuffer", + "type-original": "WebGLRenderbuffer?" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "framebufferRenderbuffer" + }, + "finish": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "finish" + }, + "uniform2f": { + "signature": [ + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "location", + "type": "WebGLUniformLocation", + "type-original": "WebGLUniformLocation?" + }, + { + "name": "x", + "type": "float", + "type-original": "GLfloat" + }, + { + "name": "y", + "type": "float", + "type-original": "GLfloat" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "uniform2f" + }, + "renderbufferStorage": { + "signature": [ + { + "param-min-required": 4, + "type": "void", + "param": [ + { + "name": "target", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "internalformat", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "name": "width", + "type": "long", + "type-original": "GLsizei" + }, + { + "name": "height", + "type": "long", + "type-original": "GLsizei" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "renderbufferStorage" + }, + "uniform3f": { + "signature": [ + { + "param-min-required": 4, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "location", + "type": "WebGLUniformLocation", + "type-original": "WebGLUniformLocation?" + }, + { + "name": "x", + "type": "float", + "type-original": "GLfloat" + }, + { + "name": "y", + "type": "float", + "type-original": "GLfloat" + }, + { + "name": "z", + "type": "float", + "type-original": "GLfloat" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "uniform3f" + }, + "getProgramInfoLog": { + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "DOMString", + "param": [ + { + "nullable": 1, + "name": "program", + "type": "WebGLProgram", + "type-original": "WebGLProgram?" + } + ], + "type-original": "DOMString?" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "getProgramInfoLog" + }, + "validateProgram": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "program", + "type": "WebGLProgram", + "type-original": "WebGLProgram?" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "validateProgram" + }, + "vertexAttrib2f": { + "signature": [ + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "name": "indx", + "type": "unsigned long", + "type-original": "GLuint" + }, + { + "name": "x", + "type": "float", + "type-original": "GLfloat" + }, + { + "name": "y", + "type": "float", + "type-original": "GLfloat" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "vertexAttrib2f" + }, + "isEnabled": { + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "cap", + "type": "unsigned long", + "type-original": "GLenum" + } + ], + "type-original": "GLboolean" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "isEnabled" + }, + "createShader": { + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "WebGLShader", + "param": [ + { + "name": "type", + "type": "unsigned long", + "type-original": "GLenum" + } + ], + "type-original": "WebGLShader?" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "createShader" + }, + "isProgram": { + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "nullable": 1, + "name": "program", + "type": "WebGLProgram", + "type-original": "WebGLProgram?" + } + ], + "type-original": "GLboolean" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "isProgram" + }, + "bindRenderbuffer": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "target", + "type": "unsigned long", + "type-original": "GLenum" + }, + { + "nullable": 1, + "name": "renderbuffer", + "type": "WebGLRenderbuffer", + "type-original": "WebGLRenderbuffer?" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "bindRenderbuffer" + }, + "uniform4iv": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "location", + "type": "WebGLUniformLocation", + "type-original": "WebGLUniformLocation?" + }, + { + "name": "v", + "type": "Int32Array", + "type-original": "Int32Array" + } + ], + "type-original": "void" + }, + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "location", + "type": "WebGLUniformLocation", + "type-original": "WebGLUniformLocation?" + }, + { + "subtype": { + "type": "long" + }, + "name": "v", + "type": "sequence", + "type-original": "sequence" + } + ], + "type-original": "void" + } + ], + "specs": "webgl", + "exposed": "Window", + "name": "uniform4iv" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "Performance": { + "constants": { + "constant": {} + }, + "specs": "hr-time", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": { + "getEntriesByType": { + "specs": "performance-timeline", + "signature": [ + { + "param-min-required": 1, + "type": "any", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "any" + } + ], + "name": "getEntriesByType", + "exposed": "Window Worker" + }, + "toJSON": { + "signature": [ + { + "type": "any", + "type-original": "any" + } + ], + "specs": "hr-time", + "exposed": "Window Worker", + "name": "toJSON" + }, + "getMeasures": { + "deprecated": 1, + "specs": "user-timing-20120508", + "signature": [ + { + "param-min-required": 0, + "type": "any", + "param": [ + { + "name": "measureName", + "optional": 1, + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "any" + } + ], + "name": "getMeasures", + "exposed": "Window Worker" + }, + "clearMarks": { + "specs": "user-timing", + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "markName", + "optional": 1, + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "name": "clearMarks", + "exposed": "Window Worker" + }, + "getMarks": { + "deprecated": 1, + "specs": "user-timing-20120508", + "signature": [ + { + "param-min-required": 0, + "type": "any", + "param": [ + { + "name": "markName", + "optional": 1, + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "any" + } + ], + "name": "getMarks", + "exposed": "Window Worker" + }, + "clearResourceTimings": { + "specs": "resource-timing", + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "name": "clearResourceTimings", + "exposed": "Window Worker" + }, + "mark": { + "specs": "user-timing", + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "markName", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "name": "mark", + "exposed": "Window Worker" + }, + "now": { + "signature": [ + { + "type": "double", + "type-original": "DOMHighResTimeStamp" + } + ], + "specs": "hr-time", + "exposed": "Window Worker", + "name": "now", + "affects": "Nothing", + "depends-on": "DeviceState" + }, + "measure": { + "specs": "user-timing", + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "measureName", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "startMarkName", + "optional": 1, + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "endMarkName", + "optional": 1, + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "name": "measure", + "exposed": "Window Worker" + }, + "getEntriesByName": { + "specs": "performance-timeline", + "signature": [ + { + "param-min-required": 1, + "type": "any", + "param": [ + { + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "type", + "optional": 1, + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "any" + } + ], + "name": "getEntriesByName", + "exposed": "Window Worker" + }, + "getEntries": { + "specs": "performance-timeline", + "signature": [ + { + "type": "any", + "type-original": "any" + } + ], + "name": "getEntries", + "exposed": "Window Worker" + }, + "clearMeasures": { + "specs": "user-timing", + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "measureName", + "optional": 1, + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "name": "clearMeasures", + "exposed": "Window Worker" + }, + "setResourceTimingBufferSize": { + "specs": "resource-timing", + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "maxSize", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "void" + } + ], + "name": "setResourceTimingBufferSize", + "exposed": "Window Worker" + } + } + }, + "exposed": "Window Worker", + "name": "Performance", + "extends": "Object", + "properties": { + "property": { + "navigation": { + "specs": "navigation-timing", + "same-object": 1, + "name": "navigation", + "constant": 1, + "type-original": "PerformanceNavigation", + "deprecated": 1, + "interop": 1, + "exposed": "Window Worker", + "type": "PerformanceNavigation", + "read-only": 1 + }, + "timeOrigin": { + "specs": "hr-time", + "exposed": "Window Worker", + "name": "timeOrigin", + "type": "double", + "type-original": "DOMHighResTimeStamp", + "read-only": 1 + }, + "timing": { + "specs": "navigation-timing", + "same-object": 1, + "name": "timing", + "constant": 1, + "type-original": "PerformanceTiming", + "deprecated": 1, + "interop": 1, + "exposed": "Window Worker", + "type": "PerformanceTiming", + "read-only": 1 + } + } + } + }, + "HTMLAllCollection": { + "specs": "html5", + "anonymous-methods": { + "method": [ + { + "getter": 1, + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "Element", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "Element?" + } + ], + "specs": "html5", + "name": "", + "tags": "TreeNavigation" + } + ] + }, + "name": "HTMLAllCollection", + "properties": { + "property": { + "length": { + "specs": "html5", + "name": "length", + "tags": "TreeNavigation", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + } + } + }, + "tags": "TreeNavigation", + "constants": { + "constant": {} + }, + "methods": { + "method": { + "item": { + "specs": "html5", + "name": "item", + "legacy-caller": 1, + "tags": "TreeNavigation", + "signature": [ + { + "param-min-required": 0, + "type": [ + { + "nullable": 1, + "type": "HTMLCollection" + }, + { + "nullable": 1, + "type": "Element" + } + ], + "param": [ + { + "name": "nameOrIndex", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + } + ], + "type-original": "(HTMLCollection or Element)?" + } + ], + "exposed": "Window" + }, + "namedItem": { + "getter": 1, + "signature": [ + { + "param-min-required": 1, + "type": [ + { + "nullable": 1, + "type": "HTMLCollection" + }, + { + "nullable": 1, + "type": "Element" + } + ], + "param": [ + { + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "(HTMLCollection or Element)?" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "namedItem", + "tags": "TreeNavigation" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "CompositionEvent": { + "specs": "uievents", + "constructor": { + "specs": "uievents", + "signature": [ + { + "param-min-required": 1, + "type": "CompositionEvent", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "CompositionEventInit", + "optional": 1, + "type-original": "CompositionEventInit" + } + ], + "type-original": "CompositionEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "CompositionEvent", + "properties": { + "property": { + "locale": { + "specs": "uievents", + "name": "locale", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "data": { + "specs": "uievents", + "name": "data", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "initCompositionEvent": { + "signature": [ + { + "param-min-required": 6, + "type": "void", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "canBubbleArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "cancelableArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "viewArg", + "type": "Window", + "type-original": "Window" + }, + { + "name": "dataArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "locale", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "uievents", + "exposed": "Window", + "name": "initCompositionEvent" + } + } + }, + "exposed": "Window", + "extends": "UIEvent" + }, + "HTMLPictureElement": { + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLPictureElement", + "properties": { + "property": {} + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "picture" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "SVGMarkerElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "auto inherit", + "value-syntax": "css_shape_rect", + "name": "clip" + }, + { + "enum-values": "visible hidden scroll auto inherit", + "value-syntax": "enum", + "name": "overflow" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "clip-path" + }, + { + "enum-values": "auto default none context-menu help pointer progress wait cell crosshair text vertical-text alias copy move no-drop not-allowed e-resize n-resize ne-resize nw-resize s-resize se-resize sw-resize w-resize ew-resize ns-resize nesw-resize nwse-resize col-resize row-resize all-scroll zoom-in zoom-out inherit", + "value-syntax": "comma_separated_css_url_with_optional_x_y_offset_followed_by_enum", + "name": "cursor" + }, + { + "enum-values": "accumulate inherit", + "value-syntax": "svg_enum_new_followed_by_svg_viewbox", + "name": "enable-background" + }, + { + "enum-values": "false true", + "value-syntax": "enum", + "name": "externalResourcesRequired" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "filter" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "mask" + }, + { + "enum-values": "inherit initial", + "value-syntax": "0_to_1_floating_point_number", + "name": "opacity" + }, + { + "enum-values": "default preserve", + "value-syntax": "enum", + "name": "xml:space" + } + ] + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGMarkerElement", + "properties": { + "property": { + "orientType": { + "content-attribute-enum-values": "auto", + "specs": "svg2", + "name": "orientType", + "constant": 1, + "content-attribute": "orient", + "type-original": "SVGAnimatedEnumeration", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "type": "SVGAnimatedEnumeration", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "markerUnits": { + "content-attribute-enum-values": "strokeWidth userSpaceOnUse", + "specs": "svg2", + "name": "markerUnits", + "constant": 1, + "content-attribute": "markerUnits", + "type-original": "SVGAnimatedEnumeration", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "SVGAnimatedEnumeration", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "orientAngle": { + "content-attribute-enum-values": "auto", + "specs": "svg2", + "name": "orientAngle", + "constant": 1, + "content-attribute": "orient", + "type-original": "SVGAnimatedAngle", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "type": "SVGAnimatedAngle", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "markerHeight": { + "specs": "svg2", + "name": "markerHeight", + "constant": 1, + "content-attribute": "markerHeight", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "type": "SVGAnimatedLength", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "markerWidth": { + "specs": "svg2", + "name": "markerWidth", + "constant": 1, + "content-attribute": "markerWidth", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "type": "SVGAnimatedLength", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "refY": { + "specs": "svg2", + "name": "refY", + "constant": 1, + "content-attribute": "refY", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "type": "SVGAnimatedLength", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "refX": { + "specs": "svg2", + "name": "refX", + "constant": 1, + "content-attribute": "refX", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "type": "SVGAnimatedLength", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "svg2", + "namespace": "SVG", + "name": "marker" + } + ], + "constants": { + "constant": { + "SVG_MARKER_ORIENT_ANGLE": { + "specs": "svg2", + "value": "2", + "exposed": "Window", + "name": "SVG_MARKER_ORIENT_ANGLE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_MARKER_ORIENT_UNKNOWN": { + "specs": "svg2", + "value": "0", + "exposed": "Window", + "name": "SVG_MARKER_ORIENT_UNKNOWN", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_MARKERUNITS_STROKEWIDTH": { + "specs": "svg2", + "value": "2", + "exposed": "Window", + "name": "SVG_MARKERUNITS_STROKEWIDTH", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_MARKERUNITS_UNKNOWN": { + "specs": "svg2", + "value": "0", + "exposed": "Window", + "name": "SVG_MARKERUNITS_UNKNOWN", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_MARKER_ORIENT_AUTO": { + "specs": "svg2", + "value": "1", + "exposed": "Window", + "name": "SVG_MARKER_ORIENT_AUTO", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_MARKERUNITS_USERSPACEONUSE": { + "specs": "svg2", + "value": "1", + "exposed": "Window", + "name": "SVG_MARKERUNITS_USERSPACEONUSE", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "exposed": "Window", + "methods": { + "method": { + "setOrientToAngle": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "angle", + "type": "SVGAngle", + "type-original": "SVGAngle" + } + ], + "type-original": "void" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "setOrientToAngle" + }, + "setOrientToAuto": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "setOrientToAuto" + } + } + }, + "extends": "SVGElement", + "implements": [ + "SVGFitToViewBox" + ] + }, + "TextDecoder": { + "specs": "encoding", + "constructor": { + "specs": "encoding", + "signature": [ + { + "param-min-required": 0, + "type": "TextDecoder", + "param": [ + { + "name": "label", + "default": "\"utf-8\"", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + }, + { + "name": "options", + "type": "TextDecoderOptions", + "optional": 1, + "type-original": "TextDecoderOptions" + } + ], + "type-original": "TextDecoder" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "TextDecoder", + "properties": { + "property": { + "ignoreBOM": { + "specs": "encoding", + "exposed": "Window Worker", + "name": "ignoreBOM", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "fatal": { + "specs": "encoding", + "exposed": "Window Worker", + "name": "fatal", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "encoding": { + "specs": "encoding", + "exposed": "Window Worker", + "name": "encoding", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window Worker", + "methods": { + "method": { + "decode": { + "signature": [ + { + "param-min-required": 0, + "type": "USVString", + "param": [ + { + "name": "input", + "type": [ + { + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ] + }, + { + "nullable": 1, + "type": "ArrayBuffer" + } + ], + "optional": 1, + "type-original": "BufferSource" + }, + { + "name": "options", + "type": "TextDecodeOptions", + "optional": 1, + "type-original": "TextDecodeOptions" + } + ], + "type-original": "USVString" + } + ], + "specs": "encoding", + "exposed": "Window Worker", + "name": "decode" + } + } + }, + "extends": "Object" + }, + "HTMLMeterElement": { + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLMeterElement", + "properties": { + "property": { + "high": { + "specs": "html5", + "ce-reactions": 1, + "name": "high", + "content-attribute": "high", + "type-original": "double", + "content-attribute-value-syntax": "floating_point_number", + "exposed": "Window", + "type": "double", + "content-attribute-reflects": 1 + }, + "optimum": { + "specs": "html5", + "ce-reactions": 1, + "name": "optimum", + "content-attribute": "optimum", + "type-original": "double", + "content-attribute-value-syntax": "floating_point_number", + "exposed": "Window", + "type": "double", + "content-attribute-reflects": 1 + }, + "min": { + "specs": "html5", + "ce-reactions": 1, + "name": "min", + "content-attribute": "min", + "type-original": "double", + "content-attribute-value-syntax": "floating_point_number", + "exposed": "Window", + "type": "double", + "content-attribute-reflects": 1 + }, + "value": { + "specs": "html5", + "ce-reactions": 1, + "name": "value", + "content-attribute": "value", + "type-original": "double", + "content-attribute-value-syntax": "floating_point_number", + "exposed": "Window", + "type": "double", + "content-attribute-reflects": 1 + }, + "low": { + "specs": "html5", + "ce-reactions": 1, + "name": "low", + "content-attribute": "low", + "type-original": "double", + "content-attribute-value-syntax": "floating_point_number", + "exposed": "Window", + "type": "double", + "content-attribute-reflects": 1 + }, + "max": { + "specs": "html5", + "ce-reactions": 1, + "name": "max", + "content-attribute": "max", + "type-original": "double", + "content-attribute-value-syntax": "floating_point_number", + "exposed": "Window", + "type": "double", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "meter" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "SVGFEMergeElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "linearRGB auto sRGB inherit", + "value-syntax": "enum", + "name": "color-interpolation-filters" + } + ] + }, + "specs": "filter-effects", + "anonymous-methods": { + "method": [] + }, + "name": "SVGFEMergeElement", + "properties": { + "property": {} + }, + "element": [ + { + "specs": "filter-effects", + "namespace": "SVG", + "name": "feMerge" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGElement", + "implements": [ + "SVGFilterPrimitiveStandardAttributes" + ] + }, + "SVGPathSegCurvetoCubicSmoothAbs": { + "specs": "svg11", + "anonymous-methods": { + "method": [] + }, + "name": "SVGPathSegCurvetoCubicSmoothAbs", + "properties": { + "property": { + "y": { + "specs": "svg11", + "exposed": "Window", + "name": "y", + "type": "float", + "type-original": "float" + }, + "x2": { + "specs": "svg11", + "exposed": "Window", + "name": "x2", + "type": "float", + "type-original": "float" + }, + "x": { + "specs": "svg11", + "exposed": "Window", + "name": "x", + "type": "float", + "type-original": "float" + }, + "y2": { + "specs": "svg11", + "exposed": "Window", + "name": "y2", + "type": "float", + "type-original": "float" + } + } + }, + "constants": { + "constant": {} + }, + "interop": 1, + "deprecated": 1, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGPathSeg" + }, + "TransitionEvent": { + "specs": "css-transition", + "constructor": { + "specs": "css-transition", + "signature": [ + { + "param-min-required": 1, + "type": "TransitionEvent", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "TransitionEventInit", + "optional": 1, + "type-original": "TransitionEventInit" + } + ], + "type-original": "TransitionEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "TransitionEvent", + "properties": { + "property": { + "propertyName": { + "specs": "css-transition", + "name": "propertyName", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "elapsedTime": { + "specs": "css-transition", + "name": "elapsedTime", + "type-original": "float", + "exposed": "Window", + "type": "float", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "initTransitionEvent": { + "signature": [ + { + "param-min-required": 5, + "type": "void", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "canBubbleArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "cancelableArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "propertyNameArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "elapsedTimeArg", + "type": "float", + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "css-transition", + "exposed": "Window", + "name": "initTransitionEvent" + } + } + }, + "exposed": "Window", + "extends": "Event" + }, + "IDBObjectStore": { + "specs": "indexeddb", + "anonymous-methods": { + "method": [] + }, + "name": "IDBObjectStore", + "properties": { + "property": { + "indexNames": { + "specs": "indexeddb", + "exposed": "Window", + "name": "indexNames", + "type": "DOMStringList", + "type-original": "DOMStringList", + "read-only": 1 + }, + "transaction": { + "specs": "indexeddb", + "exposed": "Window", + "name": "transaction", + "type": "IDBTransaction", + "type-original": "IDBTransaction", + "read-only": 1 + }, + "name": { + "specs": "indexeddb", + "exposed": "Window", + "name": "name", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "keyPath": { + "specs": "indexeddb", + "name": "keyPath", + "type-original": "IDBKeyPath?", + "nullable": 1, + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "count": { + "signature": [ + { + "param-min-required": 0, + "type": "IDBRequest", + "param": [ + { + "name": "key", + "type": "any", + "optional": 1, + "type-original": "any" + } + ], + "type-original": "IDBRequest" + } + ], + "specs": "indexeddb", + "exposed": "Window", + "name": "count" + }, + "add": { + "signature": [ + { + "param-min-required": 1, + "type": "IDBRequest", + "param": [ + { + "name": "value", + "type": "any", + "type-original": "any" + }, + { + "name": "key", + "default": "0", + "type": "any", + "optional": 1, + "type-original": "any" + } + ], + "type-original": "IDBRequest" + } + ], + "specs": "indexeddb", + "exposed": "Window", + "name": "add" + }, + "createIndex": { + "signature": [ + { + "param-min-required": 2, + "type": "IDBIndex", + "param": [ + { + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "keyPath", + "type": "DOMString", + "type-original": "IDBKeyPath" + }, + { + "name": "optionalParameters", + "default": "0", + "type": "IDBIndexParameters", + "optional": 1, + "type-original": "IDBIndexParameters" + } + ], + "type-original": "IDBIndex" + } + ], + "specs": "indexeddb", + "exposed": "Window", + "name": "createIndex" + }, + "clear": { + "signature": [ + { + "type": "IDBRequest", + "type-original": "IDBRequest" + } + ], + "specs": "indexeddb", + "exposed": "Window", + "name": "clear" + }, + "put": { + "signature": [ + { + "param-min-required": 1, + "type": "IDBRequest", + "param": [ + { + "name": "value", + "type": "any", + "type-original": "any" + }, + { + "name": "key", + "default": "0", + "type": "any", + "optional": 1, + "type-original": "any" + } + ], + "type-original": "IDBRequest" + } + ], + "specs": "indexeddb", + "exposed": "Window", + "name": "put" + }, + "deleteIndex": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "indexName", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "indexeddb", + "exposed": "Window", + "name": "deleteIndex" + }, + "openCursor": { + "signature": [ + { + "param-min-required": 0, + "type": "IDBRequest", + "param": [ + { + "name": "range", + "default": "0", + "type": "any", + "optional": 1, + "type-original": "any" + }, + { + "name": "direction", + "default": "\"next\"", + "type": "IDBCursorDirection", + "optional": 1, + "type-original": "IDBCursorDirection" + } + ], + "type-original": "IDBRequest" + } + ], + "specs": "indexeddb", + "exposed": "Window", + "name": "openCursor" + }, + "index": { + "signature": [ + { + "param-min-required": 1, + "type": "IDBIndex", + "param": [ + { + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "IDBIndex" + } + ], + "specs": "indexeddb", + "exposed": "Window", + "name": "index" + }, + "delete": { + "signature": [ + { + "param-min-required": 1, + "type": "IDBRequest", + "param": [ + { + "name": "key", + "type": "any", + "type-original": "any" + } + ], + "type-original": "IDBRequest" + } + ], + "specs": "indexeddb", + "exposed": "Window", + "name": "delete" + }, + "get": { + "signature": [ + { + "param-min-required": 1, + "type": "IDBRequest", + "param": [ + { + "name": "key", + "type": "any", + "type-original": "any" + } + ], + "type-original": "IDBRequest" + } + ], + "specs": "indexeddb", + "exposed": "Window", + "name": "get" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "DOMStringMap": { + "constants": { + "constant": {} + }, + "specs": "html5", + "anonymous-methods": { + "method": [ + { + "getter": 1, + "signature": [ + { + "param-min-required": 1, + "type": "DOMString", + "param": [ + { + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "DOMString" + } + ], + "specs": "html5", + "name": "" + }, + { + "specs": "html5", + "creator": 1, + "ce-reactions": 1, + "name": "", + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "value", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "setter": 1 + }, + { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "ce-reactions": 1, + "deleter": 1, + "name": "" + } + ] + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "name": "DOMStringMap", + "extends": "Object", + "properties": { + "property": {} + } + }, + "GamepadEvent": { + "specs": "gamepad", + "constructor": { + "specs": "gamepad", + "signature": [ + { + "param-min-required": 1, + "type": "GamepadEvent", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "GamepadEventInit", + "optional": 1, + "type-original": "GamepadEventInit" + } + ], + "type-original": "GamepadEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "GamepadEvent", + "properties": { + "property": { + "gamepad": { + "specs": "gamepad", + "exposed": "Window", + "name": "gamepad", + "type": "Gamepad", + "type-original": "Gamepad", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Event" + }, + "OES_element_index_uint": { + "constants": { + "constant": {} + }, + "specs": "webgl", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "OES_element_index_uint", + "extends": "Object", + "properties": { + "property": {} + } + }, + "MSFIDOCredentialAssertion": { + "specs": "webauthn", + "anonymous-methods": { + "method": [] + }, + "name": "MSFIDOCredentialAssertion", + "properties": { + "property": { + "algorithm": { + "specs": "webauthn", + "exposed": "Window", + "name": "algorithm", + "type": [ + { + "type": "DOMString" + }, + { + "type": "Algorithm" + } + ], + "type-original": "AlgorithmIdentifier", + "read-only": 1 + }, + "transportHints": { + "specs": "webauthn", + "name": "transportHints", + "type-original": "sequence", + "subtype": { + "type": "MSTransportType" + }, + "exposed": "Window", + "type": "sequence", + "read-only": 1 + }, + "attestation": { + "specs": "webauthn", + "exposed": "Window", + "name": "attestation", + "type": "any", + "type-original": "any", + "read-only": 1 + }, + "publicKey": { + "specs": "webauthn", + "exposed": "Window", + "name": "publicKey", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "MSAssertion" + }, + "VREyeParameters": { + "constants": { + "constant": {} + }, + "specs": "WebVR", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "VREyeParameters", + "extends": "Object", + "properties": { + "property": { + "renderWidth": { + "specs": "WebVR", + "name": "renderWidth", + "constant": 1, + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + }, + "renderHeight": { + "specs": "WebVR", + "name": "renderHeight", + "constant": 1, + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + }, + "fieldOfView": { + "specs": "WebVR", + "name": "fieldOfView", + "constant": 1, + "type-original": "VRFieldOfView", + "deprecated": 1, + "exposed": "Window", + "type": "VRFieldOfView", + "read-only": 1 + }, + "offset": { + "specs": "WebVR", + "name": "offset", + "constant": 1, + "type-original": "Float32Array", + "exposed": "Window", + "type": "Float32Array", + "read-only": 1 + } + } + } + }, + "AudioNode": { + "constants": { + "constant": {} + }, + "specs": "webaudio", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "disconnect": { + "signature": [ + { + "type": "void", + "type-original": "void" + }, + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "output", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "void" + }, + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "destination", + "type": "AudioNode", + "type-original": "AudioNode" + } + ], + "type-original": "void" + }, + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "destination", + "type": "AudioNode", + "type-original": "AudioNode" + }, + { + "name": "output", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "void" + }, + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "name": "destination", + "type": "AudioNode", + "type-original": "AudioNode" + }, + { + "name": "output", + "type": "unsigned long", + "type-original": "unsigned long" + }, + { + "name": "input", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "void" + }, + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "destination", + "type": "AudioParam", + "type-original": "AudioParam" + } + ], + "type-original": "void" + }, + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "destination", + "type": "AudioParam", + "type-original": "AudioParam" + }, + { + "name": "output", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "void" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "disconnect" + }, + "connect": { + "signature": [ + { + "param-min-required": 1, + "type": "AudioNode", + "param": [ + { + "name": "destination", + "type": "AudioNode", + "type-original": "AudioNode" + }, + { + "name": "output", + "default": "0", + "type": "unsigned long", + "optional": 1, + "type-original": "unsigned long" + }, + { + "name": "input", + "default": "0", + "type": "unsigned long", + "optional": 1, + "type-original": "unsigned long" + } + ], + "type-original": "AudioNode" + }, + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "destination", + "type": "AudioParam", + "type-original": "AudioParam" + }, + { + "name": "output", + "default": "0", + "type": "unsigned long", + "optional": 1, + "type-original": "unsigned long" + } + ], + "type-original": "void" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "connect" + } + } + }, + "name": "AudioNode", + "extends": "EventTarget", + "properties": { + "property": { + "channelCount": { + "specs": "webaudio", + "exposed": "Window", + "name": "channelCount", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "channelInterpretation": { + "specs": "webaudio", + "exposed": "Window", + "name": "channelInterpretation", + "type": "ChannelInterpretation", + "type-original": "ChannelInterpretation" + }, + "numberOfOutputs": { + "specs": "webaudio", + "exposed": "Window", + "name": "numberOfOutputs", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + }, + "context": { + "specs": "webaudio", + "exposed": "Window", + "name": "context", + "type": "AudioContext", + "type-original": "AudioContext", + "read-only": 1 + }, + "numberOfInputs": { + "specs": "webaudio", + "exposed": "Window", + "name": "numberOfInputs", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + }, + "channelCountMode": { + "specs": "webaudio", + "exposed": "Window", + "name": "channelCountMode", + "type": "ChannelCountMode", + "type-original": "ChannelCountMode" + } + } + } + }, + "IDBVersionChangeEvent": { + "specs": "indexeddb", + "anonymous-methods": { + "method": [] + }, + "name": "IDBVersionChangeEvent", + "properties": { + "property": { + "newVersion": { + "specs": "indexeddb", + "name": "newVersion", + "type-original": "unsigned long long?", + "nullable": 1, + "exposed": "Window", + "type": "unsigned long long", + "read-only": 1 + }, + "oldVersion": { + "specs": "indexeddb", + "exposed": "Window", + "name": "oldVersion", + "type": "unsigned long long", + "type-original": "unsigned long long", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Event" + }, + "PermissionRequest": { + "specs": "none", + "anonymous-methods": { + "method": [] + }, + "name": "PermissionRequest", + "properties": { + "property": { + "state": { + "specs": "none", + "exposed": "Window", + "name": "state", + "type": "MSWebViewPermissionState", + "type-original": "MSWebViewPermissionState", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "defer": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "defer" + } + } + }, + "exposed": "Window", + "extends": "DeferredPermissionRequest" + }, + "MSInputMethodContext": { + "specs": "ime-api", + "anonymous-methods": { + "method": [] + }, + "name": "MSInputMethodContext", + "properties": { + "property": { + "oncandidatewindowshow": { + "specs": "ime-api", + "name": "oncandidatewindowshow", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSCandidateWindowShow" + }, + "compositionStartOffset": { + "specs": "ime-api", + "exposed": "Window", + "name": "compositionStartOffset", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + }, + "target": { + "specs": "ime-api", + "exposed": "Window", + "name": "target", + "type": "HTMLElement", + "type-original": "HTMLElement", + "read-only": 1 + }, + "oncandidatewindowhide": { + "specs": "ime-api", + "name": "oncandidatewindowhide", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSCandidateWindowHide" + }, + "oncandidatewindowupdate": { + "specs": "ime-api", + "name": "oncandidatewindowupdate", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSCandidateWindowUpdate" + }, + "compositionEndOffset": { + "specs": "ime-api", + "exposed": "Window", + "name": "compositionEndOffset", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [] + }, + "methods": { + "method": { + "getCandidateWindowClientRect": { + "signature": [ + { + "type": "ClientRect", + "type-original": "ClientRect" + } + ], + "specs": "ime-api", + "exposed": "Window", + "name": "getCandidateWindowClientRect" + }, + "getCompositionAlternatives": { + "signature": [ + { + "subtype": { + "type": "DOMString" + }, + "type": "sequence", + "type-original": "sequence" + } + ], + "specs": "ime-api", + "exposed": "Window", + "name": "getCompositionAlternatives" + }, + "isCandidateWindowVisible": { + "signature": [ + { + "type": "boolean", + "type-original": "boolean" + } + ], + "specs": "ime-api", + "exposed": "Window", + "name": "isCandidateWindowVisible" + }, + "hasComposition": { + "signature": [ + { + "type": "boolean", + "type-original": "boolean" + } + ], + "specs": "ime-api", + "exposed": "Window", + "name": "hasComposition" + } + } + }, + "exposed": "Window", + "extends": "EventTarget" + }, + "SVGPathSegMovetoRel": { + "specs": "svg11", + "anonymous-methods": { + "method": [] + }, + "name": "SVGPathSegMovetoRel", + "properties": { + "property": { + "y": { + "specs": "svg11", + "exposed": "Window", + "name": "y", + "type": "float", + "type-original": "float" + }, + "x": { + "specs": "svg11", + "exposed": "Window", + "name": "x", + "type": "float", + "type-original": "float" + } + } + }, + "constants": { + "constant": {} + }, + "interop": 1, + "deprecated": 1, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGPathSeg" + }, + "PluginArray": { + "constants": { + "constant": {} + }, + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "refresh": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "reload", + "type": "boolean", + "optional": 1, + "type-original": "boolean" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "refresh" + }, + "item": { + "getter": 1, + "signature": [ + { + "param-min-required": 1, + "type": "Plugin", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "Plugin" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "item" + }, + "namedItem": { + "getter": 1, + "signature": [ + { + "param-min-required": 1, + "type": "Plugin", + "param": [ + { + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "Plugin" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "namedItem" + } + } + }, + "name": "PluginArray", + "extends": "Object", + "properties": { + "property": { + "length": { + "specs": "html5", + "exposed": "Window", + "name": "length", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + } + } + } + }, + "SVGFESpecularLightingElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "inherit initial", + "value-syntax": "css_color", + "name": "color" + }, + { + "enum-values": "linearRGB auto sRGB inherit", + "value-syntax": "enum", + "name": "color-interpolation-filters" + }, + { + "enum-values": "currentColor inherit initial", + "value-syntax": "css_color", + "name": "lighting-color" + } + ] + }, + "specs": "filter-effects", + "anonymous-methods": { + "method": [] + }, + "name": "SVGFESpecularLightingElement", + "properties": { + "property": { + "kernelUnitLengthY": { + "specs": "filter-effects", + "name": "kernelUnitLengthY", + "constant": 1, + "content-attribute": "kernelUnitLength", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "svg_x_y_pair", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "surfaceScale": { + "specs": "filter-effects", + "name": "surfaceScale", + "constant": 1, + "content-attribute": "surfaceScale", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "specularExponent": { + "specs": "filter-effects", + "name": "specularExponent", + "constant": 1, + "content-attribute": "specularExponent", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "kernelUnitLengthX": { + "specs": "filter-effects", + "name": "kernelUnitLengthX", + "constant": 1, + "content-attribute": "kernelUnitLength", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "svg_x_y_pair", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "in1": { + "content-attribute-enum-values": "SourceGraphic SourceAlpha BackgroundImage BackgroundAlpha FillPaint StrokePaint", + "specs": "filter-effects", + "name": "in1", + "constant": 1, + "content-attribute": "in", + "type-original": "SVGAnimatedString", + "exposed": "Window", + "content-attribute-value-syntax": "filter_result_ref", + "type": "SVGAnimatedString", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "specularConstant": { + "specs": "filter-effects", + "name": "specularConstant", + "constant": 1, + "content-attribute": "specularConstant", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "filter-effects", + "namespace": "SVG", + "name": "feSpecularLighting" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGElement", + "implements": [ + "SVGFilterPrimitiveStandardAttributes" + ] + }, + "SVGDescElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "default preserve", + "value-syntax": "enum", + "name": "xml:space" + } + ] + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGDescElement", + "properties": { + "property": {} + }, + "element": [ + { + "specs": "filter-effects", + "namespace": "SVG", + "name": "desc" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGElement" + }, + "BhxBrowser": { + "specs": "none", + "anonymous-methods": { + "method": [] + }, + "name": "BhxBrowser", + "properties": { + "property": { + "lastError": { + "specs": "none", + "exposed": "Window", + "name": "lastError", + "type": "DOMException", + "type-original": "DOMException", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "fireExtensionApiTelemetry": { + "signature": [ + { + "param-min-required": 4, + "type": "void", + "param": [ + { + "name": "functionName", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "isSucceeded", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "isSupported", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "errorString", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "fireExtensionApiTelemetry" + }, + "genericSynchronousFunction": { + "signature": [ + { + "param-min-required": 1, + "type": "DOMString", + "param": [ + { + "name": "functionId", + "type": "long", + "type-original": "long" + }, + { + "name": "parameters", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + } + ], + "type-original": "DOMString" + } + ], + "specs": "none", + "exposed": "Window", + "name": "genericSynchronousFunction" + }, + "webPlatformGenericFunction": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "destination", + "type": "object", + "type-original": "object" + }, + { + "name": "parameters", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + }, + { + "name": "callbackId", + "type": "long", + "optional": 1, + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "webPlatformGenericFunction" + }, + "setLastError": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "parameters", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "setLastError" + }, + "clearLastError": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "clearLastError" + }, + "checkMatchesUriExpression": { + "signature": [ + { + "param-min-required": 2, + "type": "boolean", + "param": [ + { + "name": "pattern", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "value", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "boolean" + } + ], + "specs": "none", + "exposed": "Window", + "name": "checkMatchesUriExpression" + }, + "getExtensionId": { + "signature": [ + { + "type": "DOMString", + "type-original": "DOMString" + } + ], + "specs": "none", + "exposed": "Window", + "name": "getExtensionId" + }, + "registerGenericListenerHandler": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "eventHandler", + "type": "Function", + "type-original": "Function" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "registerGenericListenerHandler" + }, + "getThisAddress": { + "signature": [ + { + "type": "object", + "type-original": "object" + } + ], + "specs": "none", + "exposed": "Window", + "name": "getThisAddress" + }, + "checkMatchesGlobExpression": { + "signature": [ + { + "param-min-required": 2, + "type": "boolean", + "param": [ + { + "name": "pattern", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "value", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "boolean" + } + ], + "specs": "none", + "exposed": "Window", + "name": "checkMatchesGlobExpression" + }, + "registerGenericFunctionCallbackHandler": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "callbackHandler", + "type": "Function", + "type-original": "Function" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "registerGenericFunctionCallbackHandler" + }, + "genericFunction": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "functionId", + "type": "long", + "type-original": "long" + }, + { + "name": "destination", + "type": "object", + "type-original": "object" + }, + { + "name": "parameters", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + }, + { + "name": "callbackId", + "type": "long", + "optional": 1, + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "genericFunction" + }, + "currentWindowId": { + "signature": [ + { + "type": "long", + "type-original": "long" + } + ], + "specs": "none", + "exposed": "Window", + "name": "currentWindowId" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "MediaElementAudioSourceNode": { + "constants": { + "constant": {} + }, + "specs": "webaudio", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "MediaElementAudioSourceNode", + "extends": "AudioNode", + "properties": { + "property": {} + } + }, + "SVGClipPathElement": { + "specs": "css-masking", + "anonymous-methods": { + "method": [] + }, + "name": "SVGClipPathElement", + "properties": { + "property": { + "clipPathUnits": { + "content-attribute-enum-values": "userSpaceOnUse objectBoundingBox", + "specs": "css-masking", + "name": "clipPathUnits", + "constant": 1, + "content-attribute": "clipPathUnits", + "type-original": "SVGAnimatedEnumeration", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "SVGAnimatedEnumeration", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "css-masking", + "namespace": "SVG", + "name": "clipPath" + } + ], + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "SVGGraphicsElement", + "implements": [ + "SVGUnitTypes" + ] + }, + "VideoTrack": { + "constants": { + "constant": {} + }, + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "VideoTrack", + "extends": "Object", + "properties": { + "property": { + "kind": { + "specs": "html5", + "exposed": "Window", + "name": "kind", + "type": "DOMString", + "type-original": "DOMString" + }, + "language": { + "specs": "html5", + "exposed": "Window", + "name": "language", + "type": "DOMString", + "type-original": "DOMString" + }, + "sourceBuffer": { + "specs": "media-source", + "exposed": "Window", + "name": "sourceBuffer", + "type": "SourceBuffer", + "type-original": "SourceBuffer", + "read-only": 1 + }, + "label": { + "specs": "html5", + "exposed": "Window", + "name": "label", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "id": { + "specs": "html5", + "exposed": "Window", + "name": "id", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "selected": { + "specs": "html5", + "exposed": "Window", + "name": "selected", + "type": "boolean", + "type-original": "boolean" + } + } + } + }, + "ServiceUIFrameContext": { + "specs": "none", + "anonymous-methods": { + "method": [] + }, + "name": "ServiceUIFrameContext", + "static": 1, + "properties": { + "property": {} + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "getCachedFrameMessage": { + "property-descriptor-not-configurable": 1, + "signature": [ + { + "param-min-required": 1, + "type": "DOMString", + "param": [ + { + "name": "key", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "DOMString" + } + ], + "specs": "none", + "property-descriptor-not-writable": 1, + "exposed": "Window", + "name": "getCachedFrameMessage", + "static": 1 + }, + "postFrameMessage": { + "property-descriptor-not-configurable": 1, + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "key", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "data", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "property-descriptor-not-writable": 1, + "exposed": "Window", + "name": "postFrameMessage", + "static": 1 + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "IDBCursorWithValue": { + "dataslot": [ + { + "name": "value" + } + ], + "specs": "indexeddb", + "anonymous-methods": { + "method": [] + }, + "name": "IDBCursorWithValue", + "properties": { + "property": { + "value": { + "specs": "indexeddb", + "exposed": "Window", + "name": "value", + "type": "any", + "type-original": "any", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "IDBCursor" + }, + "HTMLAppletElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "name": "HTMLAppletElement", + "properties": { + "property": { + "width": { + "pure": 1, + "specs": "html5", + "name": "width", + "content-attribute": "width", + "type-original": "DOMString", + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "content-attribute-value-syntax": "non_negative_integer", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "vspace": { + "pure": 1, + "specs": "html5", + "name": "vspace", + "content-attribute": "vspace", + "type-original": "unsigned long", + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "content-attribute-value-syntax": "non_negative_integer", + "type": "unsigned long", + "content-attribute-reflects": 1 + }, + "object": { + "pure": 1, + "specs": "html5", + "name": "object", + "type-original": "USVString", + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "type": "USVString" + }, + "archive": { + "pure": 1, + "specs": "html5", + "name": "archive", + "content-attribute": "archive", + "type-original": "DOMString", + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "alt": { + "pure": 1, + "specs": "html5", + "name": "alt", + "content-attribute": "alt", + "type-original": "DOMString", + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "align": { + "specs": "html5", + "content-attribute": "align", + "type-original": "DOMString", + "interop": 1, + "pure": 1, + "content-attribute-enum-values": "absbottom absmiddle baseline bottom left middle right texttop top", + "name": "align", + "deprecated": 1, + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "name": { + "content-attribute-enum-values": "_blank _self _parent _top", + "pure": 1, + "specs": "html5", + "name": "name", + "content-attribute": "name", + "type-original": "DOMString", + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "content-attribute-value-syntax": "name_ref", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "height": { + "pure": 1, + "specs": "html5", + "name": "height", + "content-attribute": "height", + "type-original": "DOMString", + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "content-attribute-value-syntax": "non_negative_integer", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "codeBase": { + "pure": 1, + "specs": "html5", + "name": "codeBase", + "content-attribute": "codebase", + "type-original": "USVString", + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "content-attribute-value-syntax": "url", + "type": "USVString", + "content-attribute-reflects": 1 + }, + "hspace": { + "pure": 1, + "specs": "html5", + "name": "hspace", + "content-attribute": "hspace", + "type-original": "unsigned long", + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "content-attribute-value-syntax": "non_negative_integer", + "type": "unsigned long", + "content-attribute-reflects": 1 + }, + "code": { + "pure": 1, + "specs": "html5", + "name": "code", + "content-attribute": "code", + "type-original": "DOMString", + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "content-attribute-value-syntax": "url", + "type": "DOMString", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "applet" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "TextMetrics": { + "constants": { + "constant": {} + }, + "specs": "2dcontext", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "TextMetrics", + "extends": "Object", + "properties": { + "property": { + "width": { + "specs": "2dcontext", + "exposed": "Window", + "name": "width", + "type": "float", + "type-original": "float", + "read-only": 1 + } + } + } + }, + "SVGAnimatedString": { + "constants": { + "constant": {} + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "SVGAnimatedString", + "extends": "Object", + "properties": { + "property": { + "animVal": { + "specs": "svg2", + "name": "animVal", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "baseVal": { + "specs": "svg2", + "exposed": "Window", + "name": "baseVal", + "type": "DOMString", + "type-original": "DOMString" + } + } + } + }, + "SVGPathSegLinetoVerticalRel": { + "specs": "svg11", + "anonymous-methods": { + "method": [] + }, + "name": "SVGPathSegLinetoVerticalRel", + "properties": { + "property": { + "y": { + "specs": "svg11", + "exposed": "Window", + "name": "y", + "type": "float", + "type-original": "float" + } + } + }, + "constants": { + "constant": {} + }, + "interop": 1, + "deprecated": 1, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGPathSeg" + }, + "CDATASection": { + "constants": { + "constant": {} + }, + "specs": "dom", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "CDATASection", + "extends": "Text", + "properties": { + "property": {} + } + }, + "HTMLSelectElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLSelectElement", + "properties": { + "property": { + "validationMessage": { + "specs": "html5", + "exposed": "Window", + "name": "validationMessage", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "disabled": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "disabled", + "content-attribute": "disabled", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "options": { + "specs": "html5", + "same-object": 1, + "name": "options", + "constant": 1, + "type-original": "HTMLOptionsCollection", + "exposed": "Window", + "type": "HTMLOptionsCollection", + "read-only": 1 + }, + "value": { + "pure": 1, + "specs": "html5", + "exposed": "Window", + "name": "value", + "type": "DOMString", + "type-original": "DOMString" + }, + "name": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "name", + "content-attribute": "name", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "form": { + "pure": 1, + "specs": "html5", + "name": "form", + "type-original": "HTMLFormElement?", + "nullable": 1, + "exposed": "Window", + "type": "HTMLFormElement", + "read-only": 1 + }, + "willValidate": { + "specs": "html5", + "exposed": "Window", + "name": "willValidate", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "size": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "size", + "content-attribute": "size", + "type-original": "unsigned long", + "exposed": "Window", + "content-attribute-value-syntax": "1_or_greater_integer", + "type": "unsigned long", + "content-attribute-reflects": 1 + }, + "selectedIndex": { + "specs": "html5", + "exposed": "Window", + "name": "selectedIndex", + "type": "long", + "type-original": "long" + }, + "length": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "length", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long" + }, + "autofocus": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "autofocus", + "content-attribute": "autofocus", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "validity": { + "specs": "html5", + "exposed": "Window", + "name": "validity", + "type": "ValidityState", + "type-original": "ValidityState", + "read-only": 1 + }, + "required": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "required", + "content-attribute": "required", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "multiple": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "multiple", + "content-attribute": "multiple", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "type": { + "pure": 1, + "specs": "html5", + "name": "type", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "selectedOptions": { + "specs": "html5", + "same-object": 1, + "name": "selectedOptions", + "type-original": "HTMLCollection", + "exposed": "Window", + "type": "HTMLCollection", + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "select" + } + ], + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "HTML5", + "name": "change", + "type": "Event", + "bubbles": 1 + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "invalid", + "type": "Event", + "cancelable": 1 + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "remove": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "index", + "type": "long", + "optional": 1, + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "ce-reactions": 1, + "exposed": "Window", + "name": "remove" + }, + "checkValidity": { + "signature": [ + { + "type": "boolean", + "type-original": "boolean" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "checkValidity" + }, + "add": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "element", + "type": [ + { + "type": "HTMLOptionElement" + }, + { + "type": "HTMLOptGroupElement" + } + ], + "type-original": "(HTMLOptionElement or HTMLOptGroupElement)" + }, + { + "name": "before", + "type": [ + { + "nullable": 1, + "type": "HTMLElement" + }, + { + "nullable": 1, + "type": "long" + } + ], + "optional": 1, + "type-original": "(HTMLElement or long)?" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "ce-reactions": 1, + "exposed": "Window", + "name": "add" + }, + "item": { + "specs": "html5", + "name": "item", + "getter": 1, + "signature": [ + { + "nullable": 1, + "param-min-required": 0, + "type": "Element", + "param": [ + { + "name": "name", + "type": "any", + "optional": 1, + "type-original": "any" + }, + { + "name": "index", + "type": "any", + "optional": 1, + "type-original": "any" + } + ], + "type-original": "Element?" + } + ], + "exposed": "Window" + }, + "setCustomValidity": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "error", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "setCustomValidity" + }, + "namedItem": { + "specs": "html5", + "name": "namedItem", + "getter": 1, + "signature": [ + { + "param-min-required": 1, + "type": "any", + "param": [ + { + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "any" + } + ], + "exposed": "Window" + } + } + }, + "extends": "HTMLElement" + }, + "MSMediaKeyNeededEvent": { + "constants": { + "constant": {} + }, + "specs": "encrypted-media-20130510", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "MSMediaKeyNeededEvent", + "extends": "Event", + "properties": { + "property": { + "initData": { + "specs": "encrypted-media-20130510", + "name": "initData", + "type-original": "Uint8Array?", + "nullable": 1, + "exposed": "Window", + "type": "Uint8Array", + "read-only": 1 + } + } + } + }, + "RTCIceTransportStateChangedEvent": { + "specs": "ortc", + "anonymous-methods": { + "method": [] + }, + "name": "RTCIceTransportStateChangedEvent", + "properties": { + "property": { + "state": { + "specs": "ortc", + "exposed": "Window", + "name": "state", + "type": "RTCIceTransportState", + "type-original": "RTCIceTransportState", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Event" + }, + "CSSStyleSheet": { + "constants": { + "constant": {} + }, + "specs": "cssom", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "addImport": { + "deprecated": 1, + "extension": 1, + "signature": [ + { + "param-min-required": 1, + "type": "long", + "param": [ + { + "name": "bstrURL", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "lIndex", + "optional": 1, + "type": "long", + "default": "-1", + "type-original": "long" + } + ], + "type-original": "long" + } + ], + "specs": "none", + "exposed": "Window", + "name": "addImport" + }, + "addPageRule": { + "deprecated": 1, + "extension": 1, + "signature": [ + { + "param-min-required": 2, + "type": "long", + "param": [ + { + "name": "bstrSelector", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "bstrStyle", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "lIndex", + "optional": 1, + "type": "long", + "default": "-1", + "type-original": "long" + } + ], + "type-original": "long" + } + ], + "specs": "none", + "exposed": "Window", + "name": "addPageRule" + }, + "removeRule": { + "interop": 1, + "extension": 1, + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "lIndex", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "removeRule" + }, + "insertRule": { + "signature": [ + { + "param-min-required": 1, + "type": "unsigned long", + "param": [ + { + "name": "rule", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "index", + "type": "unsigned long", + "optional": 1, + "type-original": "unsigned long" + } + ], + "type-original": "unsigned long" + } + ], + "specs": "cssom", + "exposed": "Window", + "name": "insertRule" + }, + "deleteRule": { + "extension": 1, + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "index", + "default": "-1", + "type": "unsigned long", + "optional": 1, + "type-original": "unsigned long" + } + ], + "type-original": "void" + } + ], + "specs": "cssom", + "exposed": "Window", + "name": "deleteRule" + }, + "addRule": { + "interop": 1, + "extension": 1, + "signature": [ + { + "param-min-required": 1, + "type": "long", + "param": [ + { + "name": "bstrSelector", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "bstrStyle", + "optional": 1, + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "lIndex", + "optional": 1, + "type": "long", + "default": "-1", + "type-original": "long" + } + ], + "type-original": "long" + } + ], + "specs": "none", + "exposed": "Window", + "name": "addRule" + }, + "removeImport": { + "deprecated": 1, + "extension": 1, + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "lIndex", + "type": "long", + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "removeImport" + } + } + }, + "name": "CSSStyleSheet", + "extends": "StyleSheet", + "properties": { + "property": { + "owningElement": { + "extension": 1, + "specs": "none", + "name": "owningElement", + "type-original": "Element", + "deprecated": 1, + "exposed": "Window", + "type": "Element", + "read-only": 1 + }, + "imports": { + "extension": 1, + "specs": "none", + "name": "imports", + "type-original": "StyleSheetList", + "deprecated": 1, + "exposed": "Window", + "type": "StyleSheetList", + "read-only": 1 + }, + "rules": { + "extension": 1, + "specs": "none", + "name": "rules", + "type-original": "CSSRuleList", + "interop": 1, + "exposed": "Window", + "type": "CSSRuleList", + "read-only": 1 + }, + "isAlternate": { + "extension": 1, + "specs": "none", + "name": "isAlternate", + "type-original": "boolean", + "deprecated": 1, + "exposed": "Window", + "type": "boolean", + "read-only": 1 + }, + "isPrefAlternate": { + "extension": 1, + "specs": "none", + "name": "isPrefAlternate", + "type-original": "boolean", + "deprecated": 1, + "exposed": "Window", + "type": "boolean", + "read-only": 1 + }, + "readOnly": { + "extension": 1, + "specs": "none", + "name": "readOnly", + "type-original": "boolean", + "deprecated": 1, + "exposed": "Window", + "type": "boolean", + "read-only": 1 + }, + "cssText": { + "deprecated": 1, + "extension": 1, + "specs": "none", + "exposed": "Window", + "name": "cssText", + "type": "DOMString", + "type-original": "DOMString" + }, + "ownerRule": { + "pure": 1, + "specs": "cssom", + "name": "ownerRule", + "type-original": "CSSRule?", + "nullable": 1, + "exposed": "Window", + "type": "CSSRule", + "read-only": 1 + }, + "cssRules": { + "specs": "cssom", + "same-object": 1, + "name": "cssRules", + "type-original": "CSSRuleList", + "exposed": "Window", + "type": "CSSRuleList", + "read-only": 1 + }, + "id": { + "extension": 1, + "specs": "none", + "name": "id", + "type-original": "DOMString", + "deprecated": 1, + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "pages": { + "extension": 1, + "specs": "none", + "name": "pages", + "type-original": "StyleSheetPageList", + "deprecated": 1, + "exposed": "Window", + "type": "StyleSheetPageList", + "read-only": 1 + } + } + } + }, + "AudioBuffer": { + "constants": { + "constant": {} + }, + "specs": "webaudio", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "getChannelData": { + "signature": [ + { + "param-min-required": 1, + "type": "Float32Array", + "param": [ + { + "name": "channel", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "Float32Array" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "getChannelData" + }, + "copyFromChannel": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "destination", + "type": "Float32Array", + "type-original": "Float32Array" + }, + { + "name": "channelNumber", + "type": "unsigned long", + "type-original": "unsigned long" + }, + { + "name": "startInChannel", + "default": "0", + "type": "unsigned long", + "optional": 1, + "type-original": "unsigned long" + } + ], + "type-original": "void" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "copyFromChannel" + }, + "copyToChannel": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "source", + "type": "Float32Array", + "type-original": "Float32Array" + }, + { + "name": "channelNumber", + "type": "unsigned long", + "type-original": "unsigned long" + }, + { + "name": "startInChannel", + "default": "0", + "type": "unsigned long", + "optional": 1, + "type-original": "unsigned long" + } + ], + "type-original": "void" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "copyToChannel" + } + } + }, + "name": "AudioBuffer", + "extends": "Object", + "properties": { + "property": { + "sampleRate": { + "specs": "webaudio", + "exposed": "Window", + "name": "sampleRate", + "type": "float", + "type-original": "float", + "read-only": 1 + }, + "length": { + "specs": "webaudio", + "exposed": "Window", + "name": "length", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "numberOfChannels": { + "specs": "webaudio", + "exposed": "Window", + "name": "numberOfChannels", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + }, + "duration": { + "specs": "webaudio", + "exposed": "Window", + "name": "duration", + "type": "double", + "type-original": "double", + "read-only": 1 + } + } + } + }, + "HTMLMetaElement": { + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLMetaElement", + "properties": { + "property": { + "httpEquiv": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "httpEquiv", + "content-attribute": "http-equiv", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "url": { + "extension": 1, + "specs": "none", + "ce-reactions": 1, + "name": "url", + "type-original": "DOMString", + "content-attribute": "url", + "deprecated": 1, + "content-attribute-value-syntax": "url", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "content": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "content", + "content-attribute": "content", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "name": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "name", + "content-attribute": "name", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "charset": { + "extension": 1, + "specs": "none", + "ce-reactions": 1, + "name": "charset", + "type-original": "DOMString", + "content-attribute": "charset", + "deprecated": 1, + "content-attribute-value-syntax": "character_encoding", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "scheme": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "scheme", + "type-original": "DOMString", + "content-attribute": "scheme", + "deprecated": 1, + "interop": 1, + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "meta", + "html-self-closing": 1 + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "Selection": { + "constants": { + "constant": {} + }, + "specs": "selection-api", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "setPosition": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "parentNode", + "type": "Node", + "type-original": "Node" + }, + { + "name": "offset", + "type": "long", + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "selection-api", + "exposed": "Window", + "name": "setPosition" + }, + "extend": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "newNode", + "type": "Node", + "type-original": "Node" + }, + { + "name": "offset", + "type": "long", + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "selection-api", + "exposed": "Window", + "name": "extend" + }, + "addRange": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "range", + "type": "Range", + "type-original": "Range" + } + ], + "type-original": "void" + } + ], + "specs": "selection-api", + "exposed": "Window", + "name": "addRange" + }, + "collapseToEnd": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "selection-api", + "exposed": "Window", + "name": "collapseToEnd" + }, + "toString": { + "signature": [ + { + "type": "DOMString", + "type-original": "DOMString" + } + ], + "specs": "selection-api", + "exposed": "Window", + "name": "toString", + "stringifier": 1 + }, + "selectAllChildren": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "parentNode", + "type": "Node", + "type-original": "Node" + } + ], + "type-original": "void" + } + ], + "specs": "selection-api", + "exposed": "Window", + "name": "selectAllChildren" + }, + "containsNode": { + "signature": [ + { + "param-min-required": 2, + "type": "boolean", + "param": [ + { + "name": "node", + "type": "Node", + "type-original": "Node" + }, + { + "name": "partlyContained", + "type": "boolean", + "type-original": "boolean" + } + ], + "type-original": "boolean" + } + ], + "specs": "selection-api", + "exposed": "Window", + "name": "containsNode" + }, + "getRangeAt": { + "signature": [ + { + "param-min-required": 1, + "type": "Range", + "param": [ + { + "name": "index", + "type": "long", + "type-original": "long" + } + ], + "type-original": "Range" + } + ], + "specs": "selection-api", + "exposed": "Window", + "name": "getRangeAt" + }, + "setBaseAndExtent": { + "signature": [ + { + "param-min-required": 4, + "type": "void", + "param": [ + { + "name": "baseNode", + "type": "Node", + "type-original": "Node" + }, + { + "name": "baseOffset", + "type": "long", + "type-original": "long" + }, + { + "name": "extentNode", + "type": "Node", + "type-original": "Node" + }, + { + "name": "extentOffset", + "type": "long", + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "selection-api", + "exposed": "Window", + "name": "setBaseAndExtent" + }, + "collapse": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "parentNode", + "type": "Node", + "type-original": "Node" + }, + { + "name": "offset", + "type": "long", + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "selection-api", + "exposed": "Window", + "name": "collapse" + }, + "removeAllRanges": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "selection-api", + "exposed": "Window", + "name": "removeAllRanges" + }, + "empty": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "selection-api", + "exposed": "Window", + "name": "empty" + }, + "collapseToStart": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "selection-api", + "exposed": "Window", + "name": "collapseToStart" + }, + "deleteFromDocument": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "selection-api", + "ce-reactions": 1, + "exposed": "Window", + "name": "deleteFromDocument" + }, + "removeRange": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "range", + "type": "Range", + "type-original": "Range" + } + ], + "type-original": "void" + } + ], + "specs": "selection-api", + "exposed": "Window", + "name": "removeRange" + } + } + }, + "name": "Selection", + "extends": "Object", + "properties": { + "property": { + "baseNode": { + "specs": "selection-api", + "exposed": "Window", + "name": "baseNode", + "type": "Node", + "type-original": "Node", + "read-only": 1 + }, + "extentNode": { + "specs": "selection-api", + "exposed": "Window", + "name": "extentNode", + "type": "Node", + "type-original": "Node", + "read-only": 1 + }, + "anchorNode": { + "specs": "selection-api", + "exposed": "Window", + "name": "anchorNode", + "type": "Node", + "type-original": "Node", + "read-only": 1 + }, + "focusOffset": { + "specs": "selection-api", + "name": "focusOffset", + "type-original": "long", + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "anchorOffset": { + "specs": "selection-api", + "name": "anchorOffset", + "type-original": "long", + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "rangeCount": { + "specs": "selection-api", + "name": "rangeCount", + "type-original": "long", + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "isCollapsed": { + "specs": "selection-api", + "name": "isCollapsed", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "read-only": 1 + }, + "extentOffset": { + "specs": "selection-api", + "exposed": "Window", + "name": "extentOffset", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "focusNode": { + "specs": "selection-api", + "exposed": "Window", + "name": "focusNode", + "type": "Node", + "type-original": "Node", + "read-only": 1 + }, + "type": { + "specs": "selection-api", + "exposed": "Window", + "name": "type", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "baseOffset": { + "specs": "selection-api", + "exposed": "Window", + "name": "baseOffset", + "type": "long", + "type-original": "long", + "read-only": 1 + } + } + } + }, + "SVGAnimatedAngle": { + "constants": { + "constant": {} + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "SVGAnimatedAngle", + "extends": "Object", + "properties": { + "property": { + "animVal": { + "specs": "svg2", + "same-object": 1, + "name": "animVal", + "constant": 1, + "type-original": "SVGAngle", + "exposed": "Window", + "type": "SVGAngle", + "read-only": 1 + }, + "baseVal": { + "specs": "svg2", + "same-object": 1, + "name": "baseVal", + "constant": 1, + "type-original": "SVGAngle", + "exposed": "Window", + "type": "SVGAngle", + "read-only": 1 + } + } + } + }, + "SVGScriptElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "false true", + "value-syntax": "enum", + "name": "externalResourcesRequired" + } + ] + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGScriptElement", + "properties": { + "property": { + "type": { + "specs": "svg2", + "name": "type", + "content-attribute": "type", + "type-original": "DOMString", + "content-attribute-value-syntax": "mime_type", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "svg2", + "namespace": "SVG", + "name": "script" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGElement", + "implements": [ + "SVGURIReference" + ] + }, + "CSSStyleRule": { + "constants": { + "constant": {} + }, + "specs": "cssom", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "CSSStyleRule", + "extends": "CSSRule", + "properties": { + "property": { + "selectorText": { + "specs": "cssom", + "exposed": "Window", + "name": "selectorText", + "type": "DOMString", + "type-original": "DOMString" + }, + "style": { + "specs": "cssom", + "same-object": 1, + "name": "style", + "type-original": "CSSStyleDeclaration", + "exposed": "Window", + "type": "CSSStyleDeclaration", + "read-only": 1 + } + } + } + }, + "NodeIterator": { + "constants": { + "constant": {} + }, + "specs": "dom", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": { + "nextNode": { + "specs": "dom", + "name": "nextNode", + "signature": [ + { + "nullable": 1, + "type": "Node", + "type-original": "Node?" + } + ], + "exposed": "Window" + }, + "detach": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "dom", + "exposed": "Window", + "name": "detach" + }, + "previousNode": { + "specs": "dom", + "name": "previousNode", + "signature": [ + { + "nullable": 1, + "type": "Node", + "type-original": "Node?" + } + ], + "exposed": "Window" + } + } + }, + "exposed": "Window", + "name": "NodeIterator", + "extends": "Object", + "properties": { + "property": { + "whatToShow": { + "specs": "dom", + "name": "whatToShow", + "constant": 1, + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + }, + "filter": { + "specs": "dom", + "name": "filter", + "constant": 1, + "type-original": "NodeFilter?", + "nullable": 1, + "exposed": "Window", + "type": "NodeFilter", + "read-only": 1 + }, + "root": { + "specs": "dom", + "same-object": 1, + "name": "root", + "constant": 1, + "type-original": "Node", + "exposed": "Window", + "type": "Node", + "read-only": 1 + }, + "expandEntityReferences": { + "specs": "dom-level-2-traversal-range", + "name": "expandEntityReferences", + "type-original": "boolean", + "deprecated": 1, + "exposed": "Window", + "type": "boolean", + "read-only": 1 + } + } + } + }, + "Notification": { + "specs": "notifications", + "constructor": { + "specs": "notifications", + "signature": [ + { + "param-min-required": 1, + "type": "Notification", + "param": [ + { + "name": "title", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "options", + "type": "NotificationOptions", + "optional": 1, + "type-original": "NotificationOptions" + } + ], + "type-original": "Notification" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "Notification", + "properties": { + "property": { + "icon": { + "pure": 1, + "specs": "notifications", + "name": "icon", + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "lang": { + "pure": 1, + "specs": "notifications", + "name": "lang", + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "permission": { + "specs": "notifications", + "name": "permission", + "static": 1, + "type-original": "NotificationPermission", + "exposed": "Window", + "type": "NotificationPermission", + "read-only": 1 + }, + "data": { + "specs": "notifications", + "same-object": 1, + "name": "data", + "type-original": "any", + "exposed": "Window", + "type": "any", + "read-only": 1 + }, + "dir": { + "pure": 1, + "specs": "notifications", + "name": "dir", + "type-original": "NotificationDirection", + "exposed": "Window", + "type": "NotificationDirection", + "read-only": 1 + }, + "body": { + "pure": 1, + "specs": "notifications", + "name": "body", + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "onshow": { + "specs": "notifications", + "name": "onshow", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "show" + }, + "onclose": { + "specs": "notifications", + "name": "onclose", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "close" + }, + "onerror": { + "specs": "notifications", + "name": "onerror", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "error" + }, + "onclick": { + "specs": "notifications", + "name": "onclick", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "click" + }, + "title": { + "pure": 1, + "specs": "notifications", + "name": "title", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "tag": { + "specs": "notifications", + "name": "tag", + "constant": 1, + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "WebNotifications", + "name": "click", + "follows": "show", + "type": "Event", + "skips-window": 1 + }, + { + "precedes": "click", + "dispatch": "sync", + "specs": "WebNotifications", + "name": "show", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "WebNotifications", + "name": "error", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "WebNotifications", + "name": "close", + "follows": "show", + "type": "Event", + "skips-window": 1 + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "close": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "notifications", + "exposed": "Window", + "name": "close" + }, + "requestPermission": { + "signature": [ + { + "subtype": { + "type": "NotificationPermission" + }, + "param-min-required": 0, + "type": "Promise", + "param": [ + { + "name": "callback", + "type": "NotificationPermissionCallback", + "optional": 1, + "type-original": "NotificationPermissionCallback" + } + ], + "type-original": "Promise" + } + ], + "specs": "notifications", + "exposed": "Window", + "name": "requestPermission", + "static": 1 + } + } + }, + "extends": "EventTarget" + }, + "SVGFEDistantLightElement": { + "specs": "filter-effects", + "anonymous-methods": { + "method": [] + }, + "name": "SVGFEDistantLightElement", + "properties": { + "property": { + "azimuth": { + "specs": "filter-effects", + "name": "azimuth", + "constant": 1, + "content-attribute": "azimuth", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "elevation": { + "specs": "filter-effects", + "name": "elevation", + "constant": 1, + "content-attribute": "elevation", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "filter-effects", + "namespace": "SVG", + "name": "feDistantLight" + } + ], + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "SVGElement" + }, + "SVGTitleElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "default preserve", + "value-syntax": "enum", + "name": "xml:space" + } + ] + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGTitleElement", + "properties": { + "property": {} + }, + "element": [ + { + "specs": "svg2", + "namespace": "SVG", + "name": "title" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGElement" + }, + "HTMLTableCaptionElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLTableCaptionElement", + "properties": { + "property": { + "align": { + "content-attribute-enum-values": "bottom center left right top", + "specs": "html5", + "ce-reactions": 1, + "name": "align", + "type-original": "DOMString", + "content-attribute": "align", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "caption" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "SVGAnimatedTransformList": { + "constants": { + "constant": {} + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "SVGAnimatedTransformList", + "extends": "Object", + "properties": { + "property": { + "animVal": { + "specs": "svg2", + "same-object": 1, + "name": "animVal", + "constant": 1, + "type-original": "SVGTransformList", + "exposed": "Window", + "type": "SVGTransformList", + "read-only": 1 + }, + "baseVal": { + "specs": "svg2", + "same-object": 1, + "name": "baseVal", + "constant": 1, + "type-original": "SVGTransformList", + "exposed": "Window", + "type": "SVGTransformList", + "read-only": 1 + } + } + } + }, + "AudioTrack": { + "constants": { + "constant": {} + }, + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "AudioTrack", + "extends": "Object", + "properties": { + "property": { + "kind": { + "specs": "html5", + "exposed": "Window", + "name": "kind", + "type": "DOMString", + "type-original": "DOMString" + }, + "language": { + "specs": "html5", + "exposed": "Window", + "name": "language", + "type": "DOMString", + "type-original": "DOMString" + }, + "sourceBuffer": { + "specs": "media-source", + "exposed": "Window", + "name": "sourceBuffer", + "type": "SourceBuffer", + "type-original": "SourceBuffer", + "read-only": 1 + }, + "label": { + "specs": "html5", + "exposed": "Window", + "name": "label", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "id": { + "specs": "html5", + "exposed": "Window", + "name": "id", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "enabled": { + "specs": "html5", + "exposed": "Window", + "name": "enabled", + "type": "boolean", + "type-original": "boolean" + } + } + } + }, + "SVGFEConvolveMatrixElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "linearRGB auto sRGB inherit", + "value-syntax": "enum", + "name": "color-interpolation-filters" + } + ] + }, + "specs": "filter-effects", + "anonymous-methods": { + "method": [] + }, + "name": "SVGFEConvolveMatrixElement", + "properties": { + "property": { + "kernelUnitLengthY": { + "specs": "filter-effects", + "name": "kernelUnitLengthY", + "constant": 1, + "content-attribute": "kernelUnitLength", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "svg_x_y_pair", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "orderY": { + "specs": "filter-effects", + "name": "orderY", + "constant": 1, + "content-attribute": "order", + "type-original": "SVGAnimatedInteger", + "exposed": "Window", + "content-attribute-value-syntax": "svg_x_y_pair", + "type": "SVGAnimatedInteger", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "orderX": { + "specs": "filter-effects", + "name": "orderX", + "constant": 1, + "content-attribute": "order", + "type-original": "SVGAnimatedInteger", + "exposed": "Window", + "content-attribute-value-syntax": "svg_x_y_pair", + "type": "SVGAnimatedInteger", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "preserveAlpha": { + "content-attribute-enum-values": "false true", + "specs": "filter-effects", + "name": "preserveAlpha", + "constant": 1, + "content-attribute": "preserveAlpha", + "type-original": "SVGAnimatedBoolean", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "SVGAnimatedBoolean", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "edgeMode": { + "content-attribute-enum-values": "duplicate wrap none", + "specs": "filter-effects", + "name": "edgeMode", + "constant": 1, + "content-attribute": "edgeMode", + "type-original": "SVGAnimatedEnumeration", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "SVGAnimatedEnumeration", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "kernelMatrix": { + "specs": "filter-effects", + "name": "kernelMatrix", + "constant": 1, + "content-attribute": "kernelMatrix", + "type-original": "SVGAnimatedNumberList", + "exposed": "Window", + "content-attribute-value-syntax": "comma_or_space_separated_floating_point_numbers", + "type": "SVGAnimatedNumberList", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "kernelUnitLengthX": { + "specs": "filter-effects", + "name": "kernelUnitLengthX", + "constant": 1, + "content-attribute": "kernelUnitLength", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "svg_x_y_pair", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "bias": { + "specs": "filter-effects", + "name": "bias", + "constant": 1, + "content-attribute": "bias", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "targetX": { + "specs": "filter-effects", + "name": "targetX", + "constant": 1, + "content-attribute": "targetX", + "type-original": "SVGAnimatedInteger", + "exposed": "Window", + "content-attribute-value-syntax": "signed_integer", + "type": "SVGAnimatedInteger", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "targetY": { + "specs": "filter-effects", + "name": "targetY", + "constant": 1, + "content-attribute": "targetY", + "type-original": "SVGAnimatedInteger", + "exposed": "Window", + "content-attribute-value-syntax": "signed_integer", + "type": "SVGAnimatedInteger", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "divisor": { + "specs": "filter-effects", + "name": "divisor", + "constant": 1, + "content-attribute": "divisor", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "in1": { + "content-attribute-enum-values": "SourceGraphic SourceAlpha BackgroundImage BackgroundAlpha FillPaint StrokePaint", + "specs": "filter-effects", + "name": "in1", + "constant": 1, + "content-attribute": "in", + "type-original": "SVGAnimatedString", + "exposed": "Window", + "content-attribute-value-syntax": "filter_result_ref", + "type": "SVGAnimatedString", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "filter-effects", + "namespace": "SVG", + "name": "feConvolveMatrix" + } + ], + "constants": { + "constant": { + "SVG_EDGEMODE_WRAP": { + "specs": "filter-effects", + "value": "2", + "exposed": "Window", + "name": "SVG_EDGEMODE_WRAP", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_EDGEMODE_DUPLICATE": { + "specs": "filter-effects", + "value": "1", + "exposed": "Window", + "name": "SVG_EDGEMODE_DUPLICATE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_EDGEMODE_UNKNOWN": { + "specs": "filter-effects", + "value": "0", + "exposed": "Window", + "name": "SVG_EDGEMODE_UNKNOWN", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_EDGEMODE_NONE": { + "specs": "filter-effects", + "value": "3", + "exposed": "Window", + "name": "SVG_EDGEMODE_NONE", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGElement", + "implements": [ + "SVGFilterPrimitiveStandardAttributes" + ] + }, + "CSSKeyframesRule": { + "constants": { + "constant": {} + }, + "specs": "css-animation", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "findRule": { + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "CSSKeyframeRule", + "param": [ + { + "name": "rule", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "CSSKeyframeRule?" + } + ], + "specs": "css-animation", + "exposed": "Window", + "name": "findRule" + }, + "deleteRule": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "rule", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "css-animation", + "exposed": "Window", + "name": "deleteRule" + }, + "appendRule": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "rule", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "css-animation", + "exposed": "Window", + "name": "appendRule" + } + } + }, + "name": "CSSKeyframesRule", + "extends": "CSSRule", + "properties": { + "property": { + "cssRules": { + "specs": "css-animation", + "exposed": "Window", + "name": "cssRules", + "type": "CSSRuleList", + "type-original": "CSSRuleList", + "read-only": 1 + }, + "name": { + "specs": "css-animation", + "exposed": "Window", + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + } + } + } + }, + "VRDisplayCapabilities": { + "constants": { + "constant": {} + }, + "specs": "WebVR", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "VRDisplayCapabilities", + "extends": "Object", + "properties": { + "property": { + "canPresent": { + "specs": "WebVR", + "exposed": "Window", + "name": "canPresent", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "hasPosition": { + "specs": "WebVR", + "exposed": "Window", + "name": "hasPosition", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "maxLayers": { + "specs": "WebVR", + "exposed": "Window", + "name": "maxLayers", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + }, + "hasOrientation": { + "specs": "WebVR", + "exposed": "Window", + "name": "hasOrientation", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "hasExternalDisplay": { + "specs": "WebVR", + "exposed": "Window", + "name": "hasExternalDisplay", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + } + } + } + }, + "TextTrackList": { + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "name": "TextTrackList", + "properties": { + "property": { + "length": { + "specs": "html5", + "name": "length", + "tags": "Captions", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + }, + "onaddtrack": { + "specs": "html5", + "name": "onaddtrack", + "tags": "Captions", + "type-original": "EventHandler?", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "addtrack" + } + } + }, + "tags": "Captions", + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "async", + "specs": "HTML5", + "name": "addtrack", + "type": "TrackEvent", + "skips-window": 1 + }, + { + "dispatch": "async", + "specs": "HTML5", + "name": "removetrack", + "type": "TrackEvent", + "skips-window": 1 + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "item": { + "getter": 1, + "signature": [ + { + "param-min-required": 1, + "type": "TextTrack", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "TextTrack" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "item", + "tags": "Captions" + } + } + }, + "extends": "EventTarget" + }, + "SVGFEFuncGElement": { + "specs": "filter-effects", + "anonymous-methods": { + "method": [] + }, + "name": "SVGFEFuncGElement", + "properties": { + "property": {} + }, + "element": [ + { + "specs": "filter-effects", + "namespace": "SVG", + "name": "feFuncG" + } + ], + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "SVGComponentTransferFunctionElement" + }, + "MediaKeySystemAccess": { + "constants": { + "constant": {} + }, + "specs": "encrypted-media", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "getConfiguration": { + "signature": [ + { + "type": "MediaKeySystemConfiguration", + "type-original": "MediaKeySystemConfiguration" + } + ], + "specs": "encrypted-media", + "exposed": "Window", + "name": "getConfiguration" + }, + "createMediaKeys": { + "signature": [ + { + "subtype": { + "type": "MediaKeys" + }, + "type": "Promise", + "type-original": "Promise" + } + ], + "specs": "encrypted-media", + "exposed": "Window", + "name": "createMediaKeys" + } + } + }, + "name": "MediaKeySystemAccess", + "extends": "Object", + "properties": { + "property": { + "keySystem": { + "specs": "encrypted-media", + "exposed": "Window", + "name": "keySystem", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + } + } + } + }, + "HTMLCollection": { + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "name": "HTMLCollection", + "properties": { + "property": { + "length": { + "specs": "html5", + "name": "length", + "tags": "TreeNavigation", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + } + } + }, + "tags": "TreeNavigation", + "constants": { + "constant": {} + }, + "methods": { + "method": { + "item": { + "getter": 1, + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "Element", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "Element?" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "item", + "tags": "TreeNavigation" + }, + "namedItem": { + "getter": 1, + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "Element", + "param": [ + { + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "Element?" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "namedItem", + "tags": "TreeNavigation" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "WebKitDirectoryReader": { + "constants": { + "constant": {} + }, + "specs": "file-system-api", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "readEntries": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "successCallback", + "type": "WebKitEntriesCallback", + "type-original": "WebKitEntriesCallback" + }, + { + "name": "errorCallback", + "type": "WebKitErrorCallback", + "optional": 1, + "type-original": "WebKitErrorCallback" + } + ], + "type-original": "void" + } + ], + "specs": "file-system-api", + "exposed": "Window", + "name": "readEntries" + } + } + }, + "name": "WebKitDirectoryReader", + "extends": "Object", + "properties": { + "property": {} + } + }, + "HTMLAreaElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLAreaElement", + "properties": { + "property": { + "rel": { + "content-attribute-enum-values": "alternate appendix bookmark chapter contents copyright dns-prefetch entry-content feedurl glossary help index next prefetch preload prev section start subsection", + "specs": "html5", + "ce-reactions": 1, + "name": "rel", + "content-attribute": "rel", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "space_separated_enums", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "target": { + "content-attribute-enum-values": "_blank _self _parent _top", + "specs": "html5", + "ce-reactions": 1, + "name": "target", + "content-attribute": "target", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "name_ref", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "alt": { + "specs": "html5", + "ce-reactions": 1, + "name": "alt", + "content-attribute": "alt", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "noHref": { + "specs": "html5", + "ce-reactions": 1, + "name": "noHref", + "type-original": "boolean", + "content-attribute": "nohref", + "deprecated": 1, + "interop": 1, + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "coords": { + "specs": "html5", + "ce-reactions": 1, + "name": "coords", + "content-attribute": "coords", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "comma_separated_signed_integers", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "shape": { + "content-attribute-enum-values": "circ circle poly polygon rect rectangle", + "specs": "html5", + "ce-reactions": 1, + "name": "shape", + "content-attribute": "shape", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "download": { + "specs": "html5", + "ce-reactions": 1, + "name": "download", + "content-attribute": "download", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "area", + "html-self-closing": 1 + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement", + "implements": [ + "HTMLHyperlinkElementUtils" + ] + }, + "EventTarget": { + "constants": { + "constant": {} + }, + "specs": "dom4", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "removeEventListener": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "nullable": 1, + "name": "listener", + "type": "EventListener", + "optional": 1, + "type-original": "EventListener?" + }, + { + "name": "options", + "type": [ + { + "type": "EventListenerOptions" + }, + { + "type": "boolean" + } + ], + "optional": 1, + "type-original": "(EventListenerOptions or boolean)" + } + ], + "type-original": "void" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "removeEventListener" + }, + "addEventListener": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "nullable": 1, + "name": "listener", + "type": "EventListener", + "optional": 1, + "type-original": "EventListener?" + }, + { + "name": "options", + "type": [ + { + "type": "AddEventListenerOptions" + }, + { + "type": "boolean" + } + ], + "optional": 1, + "type-original": "(AddEventListenerOptions or boolean)" + } + ], + "type-original": "void" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "addEventListener" + }, + "dispatchEvent": { + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "evt", + "type": "Event", + "type-original": "Event" + } + ], + "type-original": "boolean" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "dispatchEvent" + } + } + }, + "name": "EventTarget", + "extends": "Object", + "properties": { + "property": {} + } + }, + "IDBDatabase": { + "specs": "indexeddb", + "anonymous-methods": { + "method": [] + }, + "name": "IDBDatabase", + "properties": { + "property": { + "version": { + "specs": "indexeddb", + "exposed": "Window", + "name": "version", + "type": "unsigned long long", + "type-original": "unsigned long long", + "read-only": 1 + }, + "onerror": { + "specs": "indexeddb", + "name": "onerror", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "error" + }, + "objectStoreNames": { + "specs": "indexeddb", + "exposed": "Window", + "name": "objectStoreNames", + "type": "DOMStringList", + "type-original": "DOMStringList", + "read-only": 1 + }, + "name": { + "specs": "indexeddb", + "exposed": "Window", + "name": "name", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "onabort": { + "specs": "indexeddb", + "name": "onabort", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "abort" + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "IDB", + "name": "error", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "IDB", + "name": "abort", + "type": "Event", + "skips-window": 1 + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "close": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "indexeddb", + "exposed": "Window", + "name": "close" + }, + "createObjectStore": { + "signature": [ + { + "param-min-required": 1, + "type": "IDBObjectStore", + "param": [ + { + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "optionalParameters", + "default": "0", + "type": "IDBObjectStoreParameters", + "optional": 1, + "type-original": "IDBObjectStoreParameters" + } + ], + "type-original": "IDBObjectStore" + } + ], + "specs": "indexeddb", + "exposed": "Window", + "name": "createObjectStore" + }, + "transaction": { + "signature": [ + { + "param-min-required": 1, + "type": "IDBTransaction", + "param": [ + { + "name": "storeNames", + "type": [ + { + "type": "DOMString" + }, + { + "subtype": { + "type": "DOMString" + }, + "type": "sequence" + } + ], + "type-original": "(DOMString or sequence)" + }, + { + "name": "mode", + "default": "\"readonly\"", + "type": "IDBTransactionMode", + "optional": 1, + "type-original": "IDBTransactionMode" + } + ], + "type-original": "IDBTransaction" + } + ], + "specs": "indexeddb", + "exposed": "Window", + "name": "transaction" + }, + "deleteObjectStore": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "indexeddb", + "exposed": "Window", + "name": "deleteObjectStore" + } + } + }, + "extends": "EventTarget" + }, + "DOMStringList": { + "specs": "dom4", + "anonymous-methods": { + "method": [] + }, + "name": "DOMStringList", + "properties": { + "property": { + "length": { + "specs": "dom4", + "name": "length", + "tags": "TreeNavigation", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + } + } + }, + "tags": "TreeNavigation", + "constants": { + "constant": {} + }, + "methods": { + "method": { + "contains": { + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "str", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "boolean" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "contains", + "tags": "TreeNavigation" + }, + "item": { + "getter": 1, + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "DOMString", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "DOMString?" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "item", + "tags": "TreeNavigation" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "SVGAngle": { + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGAngle", + "properties": { + "property": { + "valueAsString": { + "specs": "svg2", + "exposed": "Window", + "name": "valueAsString", + "type": "DOMString", + "type-original": "DOMString" + }, + "valueInSpecifiedUnits": { + "specs": "svg2", + "exposed": "Window", + "name": "valueInSpecifiedUnits", + "type": "float", + "type-original": "float" + }, + "value": { + "specs": "svg2", + "exposed": "Window", + "name": "value", + "type": "float", + "type-original": "float" + }, + "unitType": { + "specs": "svg2", + "name": "unitType", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short", + "read-only": 1 + } + } + }, + "constants": { + "constant": { + "SVG_ANGLETYPE_RAD": { + "specs": "svg2", + "value": "3", + "exposed": "Window", + "name": "SVG_ANGLETYPE_RAD", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_ANGLETYPE_UNSPECIFIED": { + "specs": "svg2", + "value": "1", + "exposed": "Window", + "name": "SVG_ANGLETYPE_UNSPECIFIED", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_ANGLETYPE_UNKNOWN": { + "specs": "svg2", + "value": "0", + "exposed": "Window", + "name": "SVG_ANGLETYPE_UNKNOWN", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_ANGLETYPE_GRAD": { + "specs": "svg2", + "value": "4", + "exposed": "Window", + "name": "SVG_ANGLETYPE_GRAD", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_ANGLETYPE_DEG": { + "specs": "svg2", + "value": "2", + "exposed": "Window", + "name": "SVG_ANGLETYPE_DEG", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "methods": { + "method": { + "newValueSpecifiedUnits": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "unitType", + "type": "unsigned short", + "type-original": "unsigned short" + }, + { + "name": "valueInSpecifiedUnits", + "type": "float", + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "newValueSpecifiedUnits" + }, + "convertToSpecifiedUnits": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "unitType", + "type": "unsigned short", + "type-original": "unsigned short" + } + ], + "type-original": "void" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "convertToSpecifiedUnits" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "HTMLButtonElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLButtonElement", + "properties": { + "property": { + "validationMessage": { + "specs": "html5", + "exposed": "Window", + "name": "validationMessage", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "disabled": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "disabled", + "content-attribute": "disabled", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "status": { + "extension": 1, + "specs": "none", + "exposed": "Window", + "name": "status", + "type": "any", + "type-original": "any" + }, + "value": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "value", + "content-attribute": "value", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "name": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "name", + "content-attribute": "name", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "formTarget": { + "content-attribute-enum-values": "_blank _self _parent _top", + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "formTarget", + "content-attribute": "formtarget", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "name_ref", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "form": { + "pure": 1, + "specs": "html5", + "name": "form", + "type-original": "HTMLFormElement?", + "nullable": 1, + "exposed": "Window", + "type": "HTMLFormElement", + "read-only": 1 + }, + "willValidate": { + "specs": "html5", + "exposed": "Window", + "name": "willValidate", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "formAction": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "formAction", + "content-attribute": "formaction", + "type-original": "USVString", + "exposed": "Window", + "content-attribute-value-syntax": "url", + "type": "USVString", + "content-attribute-reflects": 1 + }, + "autofocus": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "autofocus", + "content-attribute": "autofocus", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "validity": { + "specs": "html5", + "exposed": "Window", + "name": "validity", + "type": "ValidityState", + "type-original": "ValidityState", + "read-only": 1 + }, + "formNoValidate": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "formNoValidate", + "content-attribute": "formnovalidate", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "formEnctype": { + "content-attribute-enum-values": "application/x-www-form-urlencoded multipart/form-data text/plain", + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "formEnctype", + "content-attribute": "formenctype", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "type": { + "content-attribute-enum-values": "button submit reset", + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "type", + "content-attribute": "type", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "formMethod": { + "content-attribute-enum-values": "GET POST", + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "formMethod", + "content-attribute": "formmethod", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "DOMString", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "button" + } + ], + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": { + "checkValidity": { + "signature": [ + { + "type": "boolean", + "type-original": "boolean" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "checkValidity" + }, + "setCustomValidity": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "error", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "setCustomValidity" + } + } + }, + "extends": "HTMLElement" + }, + "IDBOpenDBRequest": { + "specs": "indexeddb", + "anonymous-methods": { + "method": [] + }, + "name": "IDBOpenDBRequest", + "properties": { + "property": { + "onupgradeneeded": { + "specs": "indexeddb", + "name": "onupgradeneeded", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "upgradeneeded" + }, + "onblocked": { + "specs": "indexeddb", + "name": "onblocked", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "blocked" + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "IDB", + "name": "blocked", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "IDB", + "name": "upgradeneeded", + "type": "IDBVersionChangeEvent", + "skips-window": 1 + } + ] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "IDBRequest" + }, + "HTMLSourceElement": { + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLSourceElement", + "properties": { + "property": { + "srcset": { + "specs": "html5", + "ce-reactions": 1, + "name": "srcset", + "content-attribute": "srcset", + "type-original": "USVString", + "content-attribute-value-syntax": "image_candidates", + "exposed": "Window", + "type": "USVString", + "content-attribute-reflects": 1 + }, + "media": { + "specs": "html5", + "ce-reactions": 1, + "name": "media", + "content-attribute": "media", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "media_query", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "src": { + "specs": "html5", + "ce-reactions": 1, + "name": "src", + "content-attribute": "src", + "type-original": "USVString", + "exposed": "Window", + "content-attribute-value-syntax": "url", + "type": "USVString", + "content-attribute-reflects": 1 + }, + "type": { + "specs": "html5", + "ce-reactions": 1, + "name": "type", + "content-attribute": "type", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "mime_type", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "sizes": { + "specs": "html5", + "ce-reactions": 1, + "name": "sizes", + "content-attribute": "sizes", + "type-original": "DOMString", + "content-attribute-value-syntax": "image_sizes", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "msKeySystem": { + "deprecated": 1, + "specs": "encrypted-media-20130510", + "name": "msKeySystem", + "exposed": "Window", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "source", + "html-self-closing": 1 + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "WebGLTexture": { + "constants": { + "constant": {} + }, + "specs": "webgl", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "WebGLTexture", + "extends": "WebGLObject", + "properties": { + "property": {} + } + }, + "KeyboardEvent": { + "specs": "uievents", + "constructor": { + "specs": "uievents", + "signature": [ + { + "param-min-required": 1, + "type": "KeyboardEvent", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "KeyboardEventInit", + "optional": 1, + "type-original": "KeyboardEventInit" + } + ], + "type-original": "KeyboardEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "KeyboardEvent", + "properties": { + "property": { + "keyCode": { + "specs": "uievents", + "name": "keyCode", + "type-original": "long", + "deprecated": 1, + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "location": { + "specs": "uievents", + "name": "location", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + }, + "which": { + "specs": "uievents", + "name": "which", + "type-original": "long", + "deprecated": 1, + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "shiftKey": { + "specs": "uievents", + "name": "shiftKey", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "read-only": 1 + }, + "key": { + "specs": "uievents", + "name": "key", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "altKey": { + "specs": "uievents", + "name": "altKey", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "read-only": 1 + }, + "metaKey": { + "specs": "uievents", + "name": "metaKey", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "read-only": 1 + }, + "ctrlKey": { + "specs": "uievents", + "name": "ctrlKey", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "read-only": 1 + }, + "charCode": { + "specs": "uievents", + "name": "charCode", + "type-original": "long", + "deprecated": 1, + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "repeat": { + "specs": "uievents", + "name": "repeat", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "read-only": 1 + } + } + }, + "constants": { + "constant": { + "DOM_KEY_LOCATION_RIGHT": { + "specs": "uievents", + "value": "0x02", + "exposed": "Window", + "name": "DOM_KEY_LOCATION_RIGHT", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "DOM_KEY_LOCATION_LEFT": { + "specs": "uievents", + "value": "0x01", + "exposed": "Window", + "name": "DOM_KEY_LOCATION_LEFT", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "DOM_KEY_LOCATION_STANDARD": { + "specs": "uievents", + "value": "0x00", + "exposed": "Window", + "name": "DOM_KEY_LOCATION_STANDARD", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "DOM_KEY_LOCATION_NUMPAD": { + "specs": "uievents", + "value": "0x03", + "exposed": "Window", + "name": "DOM_KEY_LOCATION_NUMPAD", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "DOM_KEY_LOCATION_JOYSTICK": { + "specs": "none", + "value": "0x05", + "name": "DOM_KEY_LOCATION_JOYSTICK", + "exposed": "Window", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "DOM_KEY_LOCATION_MOBILE": { + "specs": "none", + "value": "0x04", + "name": "DOM_KEY_LOCATION_MOBILE", + "exposed": "Window", + "type": "unsigned long", + "type-original": "unsigned long" + } + } + }, + "exposed": "Window", + "methods": { + "method": { + "getModifierState": { + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "keyArg", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "boolean" + } + ], + "specs": "uievents", + "exposed": "Window", + "name": "getModifierState" + }, + "initKeyboardEvent": { + "deprecated": 1, + "specs": "WD-uievents-20151215", + "signature": [ + { + "param-min-required": 9, + "type": "void", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "canBubbleArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "cancelableArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "viewArg", + "type": "Window", + "type-original": "Window" + }, + { + "name": "keyArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "locationArg", + "type": "unsigned long", + "type-original": "unsigned long" + }, + { + "name": "modifiersListArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "repeat", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "locale", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "name": "initKeyboardEvent", + "exposed": "Window" + } + } + }, + "extends": "UIEvent" + }, + "CacheStorage": { + "specs": "service-workers", + "anonymous-methods": { + "method": [] + }, + "name": "CacheStorage", + "properties": { + "property": {} + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "keys": { + "signature": [ + { + "new-object": 1, + "subtype": { + "subtype": { + "type": "DOMString" + }, + "type": "sequence" + }, + "type": "Promise", + "type-original": "Promise>" + } + ], + "specs": "service-workers", + "exposed": "Window", + "name": "keys" + }, + "open": { + "signature": [ + { + "new-object": 1, + "subtype": { + "type": "Cache" + }, + "param-min-required": 1, + "type": "Promise", + "param": [ + { + "name": "cacheName", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "Promise" + } + ], + "specs": "service-workers", + "exposed": "Window", + "name": "open" + }, + "delete": { + "signature": [ + { + "new-object": 1, + "subtype": { + "type": "boolean" + }, + "param-min-required": 1, + "type": "Promise", + "param": [ + { + "name": "cacheName", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "Promise" + } + ], + "specs": "service-workers", + "exposed": "Window", + "name": "delete" + }, + "has": { + "signature": [ + { + "new-object": 1, + "subtype": { + "type": "boolean" + }, + "param-min-required": 1, + "type": "Promise", + "param": [ + { + "name": "cacheName", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "Promise" + } + ], + "specs": "service-workers", + "exposed": "Window", + "name": "has" + }, + "match": { + "signature": [ + { + "new-object": 1, + "subtype": { + "type": "any" + }, + "param-min-required": 1, + "type": "Promise", + "param": [ + { + "name": "request", + "type": [ + { + "type": "Request" + }, + { + "type": "USVString" + } + ], + "type-original": "RequestInfo" + }, + { + "name": "options", + "type": "CacheQueryOptions", + "optional": 1, + "type-original": "CacheQueryOptions" + } + ], + "type-original": "Promise" + } + ], + "specs": "service-workers", + "exposed": "Window", + "name": "match" + } + } + }, + "exposed": "Window", + "extends": "Object", + "secure-context": 1 + }, + "CanvasRenderingContext2D": { + "specs": "2dcontext", + "anonymous-methods": { + "method": [] + }, + "name": "CanvasRenderingContext2D", + "properties": { + "property": { + "imageSmoothingEnabled": { + "specs": "2dcontext", + "exposed": "Window", + "name": "imageSmoothingEnabled", + "type": "boolean", + "type-original": "boolean" + }, + "miterLimit": { + "specs": "2dcontext", + "exposed": "Window", + "name": "miterLimit", + "type": "float", + "type-original": "float" + }, + "font": { + "specs": "2dcontext", + "exposed": "Window", + "name": "font", + "type": "DOMString", + "type-original": "DOMString" + }, + "globalCompositeOperation": { + "specs": "2dcontext", + "exposed": "Window", + "name": "globalCompositeOperation", + "type": "DOMString", + "type-original": "DOMString" + }, + "msFillRule": { + "specs": "2dcontext", + "exposed": "Window", + "name": "msFillRule", + "type": "CanvasFillRule", + "type-original": "CanvasFillRule" + }, + "lineCap": { + "specs": "2dcontext", + "exposed": "Window", + "name": "lineCap", + "type": "DOMString", + "type-original": "DOMString" + }, + "lineDashOffset": { + "specs": "2dcontext", + "exposed": "Window", + "name": "lineDashOffset", + "type": "unrestricted double", + "type-original": "unrestricted double" + }, + "shadowColor": { + "specs": "2dcontext", + "exposed": "Window", + "name": "shadowColor", + "type": "DOMString", + "type-original": "DOMString" + }, + "lineJoin": { + "specs": "2dcontext", + "exposed": "Window", + "name": "lineJoin", + "type": "DOMString", + "type-original": "DOMString" + }, + "shadowOffsetX": { + "specs": "2dcontext", + "exposed": "Window", + "name": "shadowOffsetX", + "type": "float", + "type-original": "float" + }, + "lineWidth": { + "specs": "2dcontext", + "exposed": "Window", + "name": "lineWidth", + "type": "float", + "type-original": "float" + }, + "canvas": { + "specs": "2dcontext", + "exposed": "Window", + "name": "canvas", + "type": "HTMLCanvasElement", + "type-original": "HTMLCanvasElement", + "read-only": 1 + }, + "strokeStyle": { + "specs": "2dcontext", + "exposed": "Window", + "name": "strokeStyle", + "type": "any", + "type-original": "any" + }, + "globalAlpha": { + "specs": "2dcontext", + "exposed": "Window", + "name": "globalAlpha", + "type": "float", + "type-original": "float" + }, + "shadowOffsetY": { + "specs": "2dcontext", + "exposed": "Window", + "name": "shadowOffsetY", + "type": "float", + "type-original": "float" + }, + "fillStyle": { + "specs": "2dcontext", + "exposed": "Window", + "name": "fillStyle", + "type": "any", + "type-original": "any" + }, + "textAlign": { + "specs": "2dcontext", + "exposed": "Window", + "name": "textAlign", + "type": "DOMString", + "type-original": "DOMString" + }, + "shadowBlur": { + "specs": "2dcontext", + "exposed": "Window", + "name": "shadowBlur", + "type": "float", + "type-original": "float" + }, + "textBaseline": { + "specs": "2dcontext", + "exposed": "Window", + "name": "textBaseline", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "restore": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "restore" + }, + "setTransform": { + "signature": [ + { + "param-min-required": 6, + "type": "void", + "param": [ + { + "name": "m11", + "type": "float", + "type-original": "float" + }, + { + "name": "m12", + "type": "float", + "type-original": "float" + }, + { + "name": "m21", + "type": "float", + "type-original": "float" + }, + { + "name": "m22", + "type": "float", + "type-original": "float" + }, + { + "name": "dx", + "type": "float", + "type-original": "float" + }, + { + "name": "dy", + "type": "float", + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "setTransform" + }, + "getLineDash": { + "signature": [ + { + "subtype": { + "type": "unrestricted double" + }, + "type": "sequence", + "type-original": "sequence" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "getLineDash" + }, + "save": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "save" + }, + "fill": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "fillRule", + "default": "\"nonzero\"", + "type": "CanvasFillRule", + "optional": 1, + "type-original": "CanvasFillRule" + } + ], + "type-original": "void" + }, + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "path", + "type": "Path2D", + "type-original": "Path2D" + }, + { + "name": "fillRule", + "default": "\"nonzero\"", + "type": "CanvasFillRule", + "optional": 1, + "type-original": "CanvasFillRule" + } + ], + "type-original": "void" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "fill" + }, + "clip": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "fillRule", + "default": "\"nonzero\"", + "type": "CanvasFillRule", + "optional": 1, + "type-original": "CanvasFillRule" + } + ], + "type-original": "void" + }, + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "path", + "type": "Path2D", + "type-original": "Path2D" + }, + { + "name": "fillRule", + "default": "\"nonzero\"", + "type": "CanvasFillRule", + "optional": 1, + "type-original": "CanvasFillRule" + } + ], + "type-original": "void" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "clip" + }, + "createImageData": { + "signature": [ + { + "param-min-required": 1, + "type": "ImageData", + "param": [ + { + "name": "imageDataOrSw", + "type": [ + { + "type": "float" + }, + { + "type": "ImageData" + } + ], + "type-original": "(float or ImageData)" + }, + { + "name": "sh", + "type": "float", + "optional": 1, + "type-original": "float" + } + ], + "type-original": "ImageData" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "createImageData" + }, + "createPattern": { + "signature": [ + { + "param-min-required": 2, + "type": "CanvasPattern", + "param": [ + { + "name": "image", + "type": [ + { + "type": "HTMLImageElement" + }, + { + "type": "HTMLCanvasElement" + }, + { + "type": "HTMLVideoElement" + } + ], + "type-original": "(HTMLImageElement or HTMLCanvasElement or HTMLVideoElement)" + }, + { + "name": "repetition", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "CanvasPattern" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "createPattern" + }, + "clearRect": { + "signature": [ + { + "param-min-required": 4, + "type": "void", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + }, + { + "name": "w", + "type": "float", + "type-original": "float" + }, + { + "name": "h", + "type": "float", + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "clearRect" + }, + "getImageData": { + "signature": [ + { + "param-min-required": 4, + "type": "ImageData", + "param": [ + { + "name": "sx", + "type": "float", + "type-original": "float" + }, + { + "name": "sy", + "type": "float", + "type-original": "float" + }, + { + "name": "sw", + "type": "float", + "type-original": "float" + }, + { + "name": "sh", + "type": "float", + "type-original": "float" + } + ], + "type-original": "ImageData" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "getImageData" + }, + "measureText": { + "signature": [ + { + "param-min-required": 1, + "type": "TextMetrics", + "param": [ + { + "name": "text", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "TextMetrics" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "measureText" + }, + "fillRect": { + "signature": [ + { + "param-min-required": 4, + "type": "void", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + }, + { + "name": "w", + "type": "float", + "type-original": "float" + }, + { + "name": "h", + "type": "float", + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "fillRect" + }, + "drawImage": { + "signature": [ + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "name": "image", + "type": [ + { + "type": "HTMLImageElement" + }, + { + "type": "HTMLCanvasElement" + }, + { + "type": "HTMLVideoElement" + } + ], + "type-original": "(HTMLImageElement or HTMLCanvasElement or HTMLVideoElement)" + }, + { + "name": "offsetX", + "type": "float", + "type-original": "float" + }, + { + "name": "offsetY", + "type": "float", + "type-original": "float" + }, + { + "name": "width", + "type": "float", + "optional": 1, + "type-original": "float" + }, + { + "name": "height", + "type": "float", + "optional": 1, + "type-original": "float" + }, + { + "name": "canvasOffsetX", + "type": "float", + "optional": 1, + "type-original": "float" + }, + { + "name": "canvasOffsetY", + "type": "float", + "optional": 1, + "type-original": "float" + }, + { + "name": "canvasImageWidth", + "type": "float", + "optional": 1, + "type-original": "float" + }, + { + "name": "canvasImageHeight", + "type": "float", + "optional": 1, + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "drawImage" + }, + "isPointInPath": { + "signature": [ + { + "param-min-required": 2, + "type": "boolean", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + }, + { + "name": "fillRule", + "default": "\"nonzero\"", + "type": "CanvasFillRule", + "optional": 1, + "type-original": "CanvasFillRule" + } + ], + "type-original": "boolean" + }, + { + "param-min-required": 3, + "type": "boolean", + "param": [ + { + "name": "path", + "type": "Path2D", + "type-original": "Path2D" + }, + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + }, + { + "name": "fillRule", + "default": "\"nonzero\"", + "type": "CanvasFillRule", + "optional": 1, + "type-original": "CanvasFillRule" + } + ], + "type-original": "boolean" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "isPointInPath" + }, + "transform": { + "signature": [ + { + "param-min-required": 6, + "type": "void", + "param": [ + { + "name": "m11", + "type": "float", + "type-original": "float" + }, + { + "name": "m12", + "type": "float", + "type-original": "float" + }, + { + "name": "m21", + "type": "float", + "type-original": "float" + }, + { + "name": "m22", + "type": "float", + "type-original": "float" + }, + { + "name": "dx", + "type": "float", + "type-original": "float" + }, + { + "name": "dy", + "type": "float", + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "transform" + }, + "stroke": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "path", + "type": "Path2D", + "optional": 1, + "type-original": "Path2D" + } + ], + "type-original": "void" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "stroke" + }, + "drawFocusIfNeeded": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "element", + "type": "Element", + "type-original": "Element" + } + ], + "type-original": "void" + }, + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "path", + "type": "Path2D", + "type-original": "Path2D" + }, + { + "name": "element", + "type": "Element", + "type-original": "Element" + } + ], + "type-original": "void" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "drawFocusIfNeeded" + }, + "strokeRect": { + "signature": [ + { + "param-min-required": 4, + "type": "void", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + }, + { + "name": "w", + "type": "float", + "type-original": "float" + }, + { + "name": "h", + "type": "float", + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "strokeRect" + }, + "setLineDash": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "subtype": { + "type": "unrestricted double" + }, + "name": "segments", + "type": "sequence", + "type-original": "sequence" + } + ], + "type-original": "void" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "setLineDash" + }, + "strokeText": { + "signature": [ + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "name": "text", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + }, + { + "name": "maxWidth", + "type": "float", + "optional": 1, + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "strokeText" + }, + "putImageData": { + "signature": [ + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "name": "imagedata", + "type": "ImageData", + "type-original": "ImageData" + }, + { + "name": "dx", + "type": "float", + "type-original": "float" + }, + { + "name": "dy", + "type": "float", + "type-original": "float" + }, + { + "name": "dirtyX", + "type": "float", + "optional": 1, + "type-original": "float" + }, + { + "name": "dirtyY", + "type": "float", + "optional": 1, + "type-original": "float" + }, + { + "name": "dirtyWidth", + "type": "float", + "optional": 1, + "type-original": "float" + }, + { + "name": "dirtyHeight", + "type": "float", + "optional": 1, + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "putImageData" + }, + "rotate": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "angle", + "type": "float", + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "rotate" + }, + "translate": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "translate" + }, + "fillText": { + "signature": [ + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "name": "text", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + }, + { + "name": "maxWidth", + "type": "float", + "optional": 1, + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "fillText" + }, + "beginPath": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "beginPath" + }, + "scale": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "scale" + }, + "createRadialGradient": { + "signature": [ + { + "param-min-required": 6, + "type": "CanvasGradient", + "param": [ + { + "name": "x0", + "type": "float", + "type-original": "float" + }, + { + "name": "y0", + "type": "float", + "type-original": "float" + }, + { + "name": "r0", + "type": "float", + "type-original": "float" + }, + { + "name": "x1", + "type": "float", + "type-original": "float" + }, + { + "name": "y1", + "type": "float", + "type-original": "float" + }, + { + "name": "r1", + "type": "float", + "type-original": "float" + } + ], + "type-original": "CanvasGradient" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "createRadialGradient" + }, + "createLinearGradient": { + "signature": [ + { + "param-min-required": 4, + "type": "CanvasGradient", + "param": [ + { + "name": "x0", + "type": "float", + "type-original": "float" + }, + { + "name": "y0", + "type": "float", + "type-original": "float" + }, + { + "name": "x1", + "type": "float", + "type-original": "float" + }, + { + "name": "y1", + "type": "float", + "type-original": "float" + } + ], + "type-original": "CanvasGradient" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "createLinearGradient" + } + } + }, + "exposed": "Window", + "extends": "Object", + "implements": [ + "CanvasPathMethods" + ] + }, + "SVGPathSegLinetoHorizontalAbs": { + "specs": "svg11", + "anonymous-methods": { + "method": [] + }, + "name": "SVGPathSegLinetoHorizontalAbs", + "properties": { + "property": { + "x": { + "specs": "svg11", + "exposed": "Window", + "name": "x", + "type": "float", + "type-original": "float" + } + } + }, + "constants": { + "constant": {} + }, + "interop": 1, + "deprecated": 1, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGPathSeg" + }, + "SVGPathSegArcAbs": { + "specs": "svg11", + "anonymous-methods": { + "method": [] + }, + "name": "SVGPathSegArcAbs", + "properties": { + "property": { + "y": { + "specs": "svg11", + "exposed": "Window", + "name": "y", + "type": "float", + "type-original": "float" + }, + "sweepFlag": { + "specs": "svg11", + "exposed": "Window", + "name": "sweepFlag", + "type": "boolean", + "type-original": "boolean" + }, + "r2": { + "specs": "svg11", + "exposed": "Window", + "name": "r2", + "type": "float", + "type-original": "float" + }, + "angle": { + "specs": "svg11", + "exposed": "Window", + "name": "angle", + "type": "float", + "type-original": "float" + }, + "x": { + "specs": "svg11", + "exposed": "Window", + "name": "x", + "type": "float", + "type-original": "float" + }, + "largeArcFlag": { + "specs": "svg11", + "exposed": "Window", + "name": "largeArcFlag", + "type": "boolean", + "type-original": "boolean" + }, + "r1": { + "specs": "svg11", + "exposed": "Window", + "name": "r1", + "type": "float", + "type-original": "float" + } + } + }, + "constants": { + "constant": {} + }, + "interop": 1, + "deprecated": 1, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGPathSeg" + }, + "HTMLHtmlElement": { + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLHtmlElement", + "properties": { + "property": { + "version": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "version", + "type-original": "DOMString", + "content-attribute": "version", + "deprecated": 1, + "interop": 1, + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "html" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "SVGTransformList": { + "constants": { + "constant": {} + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "getItem": { + "signature": [ + { + "param-min-required": 1, + "type": "SVGTransform", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "SVGTransform" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "getItem" + }, + "consolidate": { + "signature": [ + { + "type": "SVGTransform", + "type-original": "SVGTransform" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "consolidate" + }, + "appendItem": { + "signature": [ + { + "param-min-required": 1, + "type": "SVGTransform", + "param": [ + { + "name": "newItem", + "type": "SVGTransform", + "type-original": "SVGTransform" + } + ], + "type-original": "SVGTransform" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "appendItem" + }, + "clear": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "clear" + }, + "removeItem": { + "signature": [ + { + "param-min-required": 1, + "type": "SVGTransform", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "SVGTransform" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "removeItem" + }, + "initialize": { + "signature": [ + { + "param-min-required": 1, + "type": "SVGTransform", + "param": [ + { + "name": "newItem", + "type": "SVGTransform", + "type-original": "SVGTransform" + } + ], + "type-original": "SVGTransform" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "initialize" + }, + "insertItemBefore": { + "signature": [ + { + "param-min-required": 2, + "type": "SVGTransform", + "param": [ + { + "name": "newItem", + "type": "SVGTransform", + "type-original": "SVGTransform" + }, + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "SVGTransform" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "insertItemBefore" + }, + "replaceItem": { + "signature": [ + { + "param-min-required": 2, + "type": "SVGTransform", + "param": [ + { + "name": "newItem", + "type": "SVGTransform", + "type-original": "SVGTransform" + }, + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "SVGTransform" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "replaceItem" + }, + "createSVGTransformFromMatrix": { + "signature": [ + { + "param-min-required": 1, + "type": "SVGTransform", + "param": [ + { + "name": "matrix", + "type": "SVGMatrix", + "type-original": "SVGMatrix" + } + ], + "type-original": "SVGTransform" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "createSVGTransformFromMatrix" + } + } + }, + "name": "SVGTransformList", + "extends": "Object", + "properties": { + "property": { + "numberOfItems": { + "specs": "svg2", + "name": "numberOfItems", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + } + } + } + }, + "EXT_frag_depth": { + "constants": { + "constant": {} + }, + "specs": "webgl", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "EXT_frag_depth", + "extends": "Object", + "properties": { + "property": {} + } + }, + "SVGPathSegClosePath": { + "specs": "svg11", + "anonymous-methods": { + "method": [] + }, + "name": "SVGPathSegClosePath", + "properties": { + "property": {} + }, + "constants": { + "constant": {} + }, + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "SVGPathSeg" + }, + "OES_standard_derivatives": { + "specs": "webgl", + "anonymous-methods": { + "method": [] + }, + "name": "OES_standard_derivatives", + "properties": { + "property": {} + }, + "constants": { + "constant": { + "FRAGMENT_SHADER_DERIVATIVE_HINT_OES": { + "specs": "webgl", + "value": "0x8B8B", + "exposed": "Window", + "name": "FRAGMENT_SHADER_DERIVATIVE_HINT_OES", + "type": "unsigned long", + "type-original": "GLenum" + } + } + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "Path2D": { + "specs": "2dcontext", + "constructor": { + "specs": "2dcontext", + "signature": [ + { + "param-min-required": 0, + "type": "Path2D", + "param": [ + { + "name": "path", + "type": "Path2D", + "optional": 1, + "type-original": "Path2D" + } + ], + "type-original": "Path2D" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "Path2D", + "properties": { + "property": {} + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object", + "implements": [ + "CanvasPathMethods" + ] + }, + "SVGAnimatedLength": { + "constants": { + "constant": {} + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "SVGAnimatedLength", + "extends": "Object", + "properties": { + "property": { + "animVal": { + "specs": "svg2", + "same-object": 1, + "name": "animVal", + "constant": 1, + "type-original": "SVGLength", + "exposed": "Window", + "type": "SVGLength", + "read-only": 1 + }, + "baseVal": { + "specs": "svg2", + "same-object": 1, + "name": "baseVal", + "constant": 1, + "type-original": "SVGLength", + "exposed": "Window", + "type": "SVGLength", + "read-only": 1 + } + } + } + }, + "ApplicationCache": { + "specs": "whatwg-html", + "anonymous-methods": { + "method": [] + }, + "name": "ApplicationCache", + "properties": { + "property": { + "status": { + "specs": "whatwg-html", + "name": "status", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short", + "read-only": 1 + }, + "onprogress": { + "specs": "whatwg-html", + "name": "onprogress", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "progress" + }, + "ondownloading": { + "specs": "whatwg-html", + "name": "ondownloading", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "downloading" + }, + "onupdateready": { + "specs": "whatwg-html", + "name": "onupdateready", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "updateready" + }, + "oncached": { + "specs": "whatwg-html", + "name": "oncached", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "cached" + }, + "onobsolete": { + "specs": "whatwg-html", + "name": "onobsolete", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "obsolete" + }, + "onerror": { + "specs": "whatwg-html", + "name": "onerror", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "error" + }, + "onchecking": { + "specs": "whatwg-html", + "name": "onchecking", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "checking" + }, + "onnoupdate": { + "specs": "whatwg-html", + "name": "onnoupdate", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "noupdate" + } + } + }, + "constants": { + "constant": { + "CHECKING": { + "specs": "whatwg-html", + "value": "2", + "exposed": "Window", + "name": "CHECKING", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "UPDATEREADY": { + "specs": "whatwg-html", + "value": "4", + "exposed": "Window", + "name": "UPDATEREADY", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "UNCACHED": { + "specs": "whatwg-html", + "value": "0", + "exposed": "Window", + "name": "UNCACHED", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "DOWNLOADING": { + "specs": "whatwg-html", + "value": "3", + "exposed": "Window", + "name": "DOWNLOADING", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "IDLE": { + "specs": "whatwg-html", + "value": "1", + "exposed": "Window", + "name": "IDLE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "OBSOLETE": { + "specs": "whatwg-html", + "value": "5", + "exposed": "Window", + "name": "OBSOLETE", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "events": { + "event": [ + { + "precedes": "updateready", + "dispatch": "sync", + "specs": "HTML5", + "name": "progress", + "follows": "downloading", + "type": "ProgressEvent", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "obsolete", + "follows": "downloading", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "error", + "follows": "downloading", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "cached", + "follows": "downloading", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "updateready", + "follows": "progress", + "type": "Event", + "skips-window": 1 + }, + { + "precedes": "noupdate progress obsolete cached", + "dispatch": "sync", + "specs": "HTML5", + "name": "downloading", + "follows": "checking", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "noupdate", + "follows": "downloading", + "type": "Event", + "skips-window": 1 + }, + { + "precedes": "downloading", + "dispatch": "sync", + "specs": "HTML5", + "name": "checking", + "type": "Event", + "skips-window": 1 + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "swapCache": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "whatwg-html", + "exposed": "Window", + "name": "swapCache" + }, + "abort": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "whatwg-html", + "exposed": "Window", + "name": "abort" + }, + "update": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "whatwg-html", + "exposed": "Window", + "name": "update" + } + } + }, + "extends": "EventTarget" + }, + "HTMLQuoteElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLQuoteElement", + "properties": { + "property": { + "cite": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "cite", + "content-attribute": "cite", + "type-original": "USVString", + "exposed": "Window", + "content-attribute-value-syntax": "url", + "type": "USVString", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "q" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "blockquote" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "SVGDefsElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "clip-path" + }, + { + "enum-values": "auto default none context-menu help pointer progress wait cell crosshair text vertical-text alias copy move no-drop not-allowed e-resize n-resize ne-resize nw-resize s-resize se-resize sw-resize w-resize ew-resize ns-resize nesw-resize nwse-resize col-resize row-resize all-scroll zoom-in zoom-out inherit", + "value-syntax": "comma_separated_css_url_with_optional_x_y_offset_followed_by_enum", + "name": "cursor" + }, + { + "enum-values": "accumulate inherit", + "value-syntax": "svg_enum_new_followed_by_svg_viewbox", + "name": "enable-background" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "filter" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "mask" + }, + { + "enum-values": "inherit initial", + "value-syntax": "0_to_1_floating_point_number", + "name": "opacity" + } + ] + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGDefsElement", + "properties": { + "property": {} + }, + "element": [ + { + "specs": "filter-effects", + "namespace": "SVG", + "name": "defs" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGGraphicsElement" + }, + "Clients": { + "constants": { + "constant": {} + }, + "specs": "service-workers", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": { + "openWindow": { + "signature": [ + { + "new-object": 1, + "subtype": { + "nullable": 1, + "type": "WindowClient" + }, + "param-min-required": 1, + "type": "Promise", + "param": [ + { + "name": "url", + "type": "USVString", + "type-original": "USVString" + } + ], + "type-original": "Promise" + } + ], + "specs": "service-workers", + "exposed": "Worker", + "name": "openWindow" + }, + "get": { + "signature": [ + { + "new-object": 1, + "subtype": { + "type": "any" + }, + "param-min-required": 1, + "type": "Promise", + "param": [ + { + "name": "id", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "Promise" + } + ], + "specs": "service-workers", + "exposed": "Worker", + "name": "get" + }, + "claim": { + "signature": [ + { + "new-object": 1, + "subtype": { + "type": "void" + }, + "type": "Promise", + "type-original": "Promise" + } + ], + "specs": "service-workers", + "exposed": "Worker", + "name": "claim" + }, + "matchAll": { + "signature": [ + { + "new-object": 1, + "subtype": { + "subtype": { + "type": "Client" + }, + "type": "sequence" + }, + "param-min-required": 0, + "type": "Promise", + "param": [ + { + "name": "options", + "type": "ClientQueryOptions", + "optional": 1, + "type-original": "ClientQueryOptions" + } + ], + "type-original": "Promise>" + } + ], + "specs": "service-workers", + "exposed": "Worker", + "name": "matchAll" + } + } + }, + "exposed": "Worker", + "name": "Clients", + "extends": "Object", + "properties": { + "property": {} + } + }, + "XMLHttpRequest": { + "specs": "xhr", + "constructor": { + "specs": "xhr", + "signature": [ + { + "type": "XMLHttpRequest", + "type-original": "XMLHttpRequest" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "XMLHttpRequest", + "properties": { + "property": { + "msCaching": { + "specs": "xhr", + "exposed": "Window", + "name": "msCaching", + "type": "DOMString", + "tags": "NetworkAccess", + "type-original": "DOMString" + }, + "response": { + "specs": "xhr", + "name": "response", + "tags": "NetworkAccess", + "type-original": "any", + "exposed": "Window", + "type": "any", + "read-only": 1 + }, + "status": { + "specs": "xhr", + "name": "status", + "tags": "NetworkAccess", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short", + "read-only": 1 + }, + "withCredentials": { + "specs": "xhr", + "exposed": "Window", + "name": "withCredentials", + "type": "boolean", + "tags": "NetworkAccess", + "type-original": "boolean" + }, + "responseXML": { + "specs": "xhr", + "name": "responseXML", + "tags": "NetworkAccess", + "type-original": "Document?", + "nullable": 1, + "exposed": "Window", + "type": "Document", + "read-only": 1 + }, + "responseText": { + "pure": 1, + "specs": "xhr", + "name": "responseText", + "tags": "NetworkAccess", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "readyState": { + "specs": "xhr", + "name": "readyState", + "tags": "NetworkAccess", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short", + "read-only": 1 + }, + "statusText": { + "specs": "xhr", + "name": "statusText", + "tags": "NetworkAccess", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "responseType": { + "specs": "xhr", + "exposed": "Window", + "name": "responseType", + "type": "XMLHttpRequestResponseType", + "tags": "NetworkAccess", + "type-original": "XMLHttpRequestResponseType" + }, + "responseURL": { + "specs": "xhr", + "name": "responseURL", + "tags": "NetworkAccess", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "onreadystatechange": { + "specs": "xhr", + "name": "onreadystatechange", + "tags": "NetworkAccess", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "readystatechange" + }, + "timeout": { + "specs": "xhr", + "exposed": "Window", + "name": "timeout", + "type": "unsigned long", + "tags": "NetworkAccess", + "type-original": "unsigned long" + }, + "upload": { + "specs": "xhr", + "name": "upload", + "tags": "NetworkAccess", + "type-original": "XMLHttpRequestUpload", + "exposed": "Window", + "type": "XMLHttpRequestUpload", + "read-only": 1 + } + } + }, + "tags": "NetworkAccess", + "constants": { + "constant": { + "LOADING": { + "specs": "xhr", + "value": "3", + "name": "LOADING", + "tags": "NetworkAccess", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "DONE": { + "specs": "xhr", + "value": "4", + "name": "DONE", + "tags": "NetworkAccess", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "HEADERS_RECEIVED": { + "specs": "xhr", + "value": "2", + "name": "HEADERS_RECEIVED", + "tags": "NetworkAccess", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "OPENED": { + "specs": "xhr", + "value": "1", + "name": "OPENED", + "tags": "NetworkAccess", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "UNSENT": { + "specs": "xhr", + "value": "0", + "name": "UNSENT", + "tags": "NetworkAccess", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + } + } + }, + "events": { + "event": [ + { + "precedes": "load", + "dispatch": "sync-or-async", + "specs": "XHR", + "name": "readystatechange", + "type": "Event", + "skips-window": 1 + }, + { + "precedes": "loadend", + "dispatch": "sync-or-async", + "specs": "XHR", + "name": "load", + "follows": "progress readystatechange", + "type": "ProgressEvent", + "skips-window": 1 + }, + { + "dispatch": "sync-or-async", + "specs": "XHR", + "name": "timeout", + "type": "Event", + "skips-window": 1 + }, + { + "precedes": "load", + "dispatch": "sync-or-async", + "specs": "XHR", + "name": "progress", + "follows": "readystatechange", + "type": "ProgressEvent", + "skips-window": 1 + }, + { + "dispatch": "sync-or-async", + "specs": "XHR", + "name": "abort", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync-or-async", + "specs": "XHR", + "name": "error", + "type": "Event", + "skips-window": 1 + }, + { + "precedes": "readystatechange", + "dispatch": "sync-or-async", + "specs": "XHR", + "name": "loadstart", + "type": "ProgressEvent", + "skips-window": 1 + }, + { + "dispatch": "sync-or-async", + "specs": "XHR", + "name": "loadend", + "follows": "load", + "type": "ProgressEvent", + "skips-window": 1 + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "msCachingEnabled": { + "signature": [ + { + "type": "boolean", + "type-original": "boolean" + } + ], + "specs": "xhr", + "exposed": "Window", + "name": "msCachingEnabled", + "tags": "NetworkAccess" + }, + "abort": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "xhr", + "exposed": "Window", + "name": "abort", + "tags": "NetworkAccess" + }, + "send": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "data", + "type": [ + { + "type": "Document" + }, + { + "type": "DOMString" + } + ], + "optional": 1, + "type-original": "(Document or DOMString)" + } + ], + "type-original": "void" + } + ], + "specs": "xhr", + "exposed": "Window", + "name": "send", + "tags": "NetworkAccess" + }, + "getAllResponseHeaders": { + "signature": [ + { + "type": "DOMString", + "type-original": "DOMString" + } + ], + "specs": "xhr", + "exposed": "Window", + "name": "getAllResponseHeaders", + "tags": "NetworkAccess" + }, + "getResponseHeader": { + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "DOMString", + "param": [ + { + "name": "header", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "DOMString?" + } + ], + "specs": "xhr", + "exposed": "Window", + "name": "getResponseHeader", + "tags": "NetworkAccess" + }, + "setRequestHeader": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "header", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "value", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "xhr", + "exposed": "Window", + "name": "setRequestHeader", + "tags": "NetworkAccess" + }, + "open": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "method", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "url", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "async", + "default": "true", + "type": "boolean", + "optional": 1, + "type-original": "boolean" + }, + { + "nullable": 1, + "name": "user", + "default": "null", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString?" + }, + { + "nullable": 1, + "name": "password", + "default": "null", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString?" + } + ], + "type-original": "void" + } + ], + "specs": "xhr", + "exposed": "Window", + "name": "open", + "tags": "NetworkAccess" + }, + "overrideMimeType": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "mime", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "xhr", + "exposed": "Window", + "name": "overrideMimeType", + "tags": "NetworkAccess" + } + } + }, + "extends": "EventTarget", + "implements": [ + "XMLHttpRequestEventTarget" + ] + }, + "WaveShaperNode": { + "constants": { + "constant": {} + }, + "specs": "webaudio", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "WaveShaperNode", + "extends": "AudioNode", + "properties": { + "property": { + "curve": { + "pure": 1, + "specs": "webaudio", + "name": "curve", + "type-original": "Float32Array?", + "nullable": 1, + "exposed": "Window", + "type": "Float32Array" + }, + "oversample": { + "specs": "webaudio", + "exposed": "Window", + "name": "oversample", + "type": "OverSampleType", + "type-original": "OverSampleType" + } + } + } + }, + "HTMLDListElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLDListElement", + "properties": { + "property": { + "compact": { + "specs": "html5", + "ce-reactions": 1, + "name": "compact", + "type-original": "boolean", + "content-attribute": "compact", + "deprecated": 1, + "interop": 1, + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "dl" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "DeviceRotationRate": { + "constants": { + "constant": {} + }, + "specs": "orientation-event", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "DeviceRotationRate", + "extends": "Object", + "properties": { + "property": { + "gamma": { + "specs": "orientation-event", + "name": "gamma", + "type-original": "double?", + "nullable": 1, + "exposed": "Window", + "type": "double", + "read-only": 1 + }, + "alpha": { + "specs": "orientation-event", + "name": "alpha", + "type-original": "double?", + "nullable": 1, + "exposed": "Window", + "type": "double", + "read-only": 1 + }, + "beta": { + "specs": "orientation-event", + "name": "beta", + "type-original": "double?", + "nullable": 1, + "exposed": "Window", + "type": "double", + "read-only": 1 + } + } + } + }, + "SVGAElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "clip-path" + }, + { + "enum-values": "auto default none context-menu help pointer progress wait cell crosshair text vertical-text alias copy move no-drop not-allowed e-resize n-resize ne-resize nw-resize s-resize se-resize sw-resize w-resize ew-resize ns-resize nesw-resize nwse-resize col-resize row-resize all-scroll zoom-in zoom-out inherit", + "value-syntax": "comma_separated_css_url_with_optional_x_y_offset_followed_by_enum", + "name": "cursor" + }, + { + "enum-values": "inline block inline-block list-item table inline-table table-header-group table-footer-group table-row-group table-column-group table-row table-column table-cell table-caption run-in ruby ruby-base ruby-text ruby-base-container flex inline-flex -ms-grid -ms-inline-grid none inherit initial", + "value-syntax": "enum", + "name": "display" + }, + { + "enum-values": "accumulate inherit", + "value-syntax": "svg_enum_new_followed_by_svg_viewbox", + "name": "enable-background" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "filter" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "mask" + }, + { + "enum-values": "inherit initial", + "value-syntax": "0_to_1_floating_point_number", + "name": "opacity" + }, + { + "enum-values": "visible hidden collapse inherit initial", + "value-syntax": "enum", + "name": "visibility" + } + ] + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGAElement", + "properties": { + "property": { + "target": { + "content-attribute-enum-values": "_blank _self _parent _top", + "specs": "svg2", + "same-object": 1, + "name": "target", + "content-attribute": "target", + "type-original": "SVGAnimatedString", + "exposed": "Window", + "content-attribute-value-syntax": "name_ref", + "type": "SVGAnimatedString", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "svg2", + "namespace": "SVG", + "name": "a" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGGraphicsElement", + "implements": [ + "SVGURIReference" + ] + }, + "MSMediaKeyError": { + "specs": "encrypted-media-20130510", + "anonymous-methods": { + "method": [] + }, + "name": "MSMediaKeyError", + "properties": { + "property": { + "systemCode": { + "specs": "encrypted-media-20130510", + "exposed": "Window", + "name": "systemCode", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + }, + "code": { + "specs": "encrypted-media-20130510", + "exposed": "Window", + "name": "code", + "type": "unsigned short", + "type-original": "unsigned short", + "read-only": 1 + } + } + }, + "constants": { + "constant": { + "MS_MEDIA_KEYERR_HARDWARECHANGE": { + "specs": "encrypted-media-20130510", + "value": "5", + "exposed": "Window", + "name": "MS_MEDIA_KEYERR_HARDWARECHANGE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "MS_MEDIA_KEYERR_SERVICE": { + "specs": "encrypted-media-20130510", + "value": "3", + "exposed": "Window", + "name": "MS_MEDIA_KEYERR_SERVICE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "MS_MEDIA_KEYERR_OUTPUT": { + "specs": "encrypted-media-20130510", + "value": "4", + "exposed": "Window", + "name": "MS_MEDIA_KEYERR_OUTPUT", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "MS_MEDIA_KEYERR_DOMAIN": { + "specs": "encrypted-media-20130510", + "value": "6", + "exposed": "Window", + "name": "MS_MEDIA_KEYERR_DOMAIN", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "MS_MEDIA_KEYERR_CLIENT": { + "specs": "encrypted-media-20130510", + "value": "2", + "exposed": "Window", + "name": "MS_MEDIA_KEYERR_CLIENT", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "MS_MEDIA_KEYERR_UNKNOWN": { + "specs": "encrypted-media-20130510", + "value": "1", + "exposed": "Window", + "name": "MS_MEDIA_KEYERR_UNKNOWN", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "HTMLFrameSetElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLFrameSetElement", + "properties": { + "property": { + "onresize": { + "specs": "html5", + "name": "onresize", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "resize", + "event-handler-map-to-window": 1 + }, + "name": { + "content-attribute-enum-values": "_blank _self _parent _top", + "extension": 1, + "specs": "none", + "ce-reactions": 1, + "name": "name", + "type-original": "DOMString", + "content-attribute": "name", + "content-attribute-value-syntax": "name_ref", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "rows": { + "specs": "html5", + "ce-reactions": 1, + "name": "rows", + "content-attribute": "rows", + "type-original": "DOMString", + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "content-attribute-value-syntax": "1_or_greater_integer", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "onblur": { + "specs": "html5", + "name": "onblur", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "blur", + "event-handler-map-to-window": 1 + }, + "cols": { + "specs": "html5", + "ce-reactions": 1, + "name": "cols", + "content-attribute": "cols", + "type-original": "DOMString", + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "content-attribute-value-syntax": "1_or_greater_integer", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "onfocus": { + "specs": "html5", + "name": "onfocus", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "focus", + "event-handler-map-to-window": 1 + }, + "onorientationchange": { + "specs": "whatwg-compat", + "name": "onorientationchange", + "type-original": "EventHandler", + "content-attribute": "onorientationchange", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler-map-to-window": 1, + "event-handler": "orientationchange" + }, + "onscroll": { + "specs": "html5", + "name": "onscroll", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "scroll", + "event-handler-map-to-window": 1 + }, + "onerror": { + "specs": "html5", + "name": "onerror", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "error", + "event-handler-map-to-window": 1 + }, + "onload": { + "specs": "html5", + "name": "onload", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "load", + "event-handler-map-to-window": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "frameset" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement", + "implements": [ + "WindowEventHandlers" + ] + }, + "Screen": { + "specs": "cssom-view", + "anonymous-methods": { + "method": [] + }, + "name": "Screen", + "properties": { + "property": { + "onmsorientationchange": { + "specs": "screen-orientation", + "name": "onmsorientationchange", + "tags": "CSSOM", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSOrientationChange" + }, + "deviceXDPI": { + "specs": "cssom-view", + "name": "deviceXDPI", + "tags": "CSSOM", + "type-original": "long", + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "width": { + "specs": "cssom-view", + "name": "width", + "tags": "CSSOM", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + }, + "bufferDepth": { + "specs": "cssom-view", + "name": "bufferDepth", + "tags": "CSSOM", + "type-original": "long", + "deprecated": 1, + "exposed": "Window", + "type": "long" + }, + "logicalXDPI": { + "specs": "cssom-view", + "name": "logicalXDPI", + "tags": "CSSOM", + "type-original": "long", + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "logicalYDPI": { + "specs": "cssom-view", + "name": "logicalYDPI", + "tags": "CSSOM", + "type-original": "long", + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "deviceYDPI": { + "specs": "cssom-view", + "name": "deviceYDPI", + "tags": "CSSOM", + "type-original": "long", + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "pixelDepth": { + "specs": "cssom-view", + "name": "pixelDepth", + "tags": "CSSOM", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + }, + "fontSmoothingEnabled": { + "specs": "cssom-view", + "name": "fontSmoothingEnabled", + "tags": "CSSOM", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "read-only": 1 + }, + "msOrientation": { + "specs": "screen-orientation", + "name": "msOrientation", + "tags": "CSSOM", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "systemXDPI": { + "specs": "cssom-view", + "name": "systemXDPI", + "tags": "CSSOM", + "type-original": "long", + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "availHeight": { + "specs": "cssom-view", + "name": "availHeight", + "tags": "CSSOM", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + }, + "height": { + "specs": "cssom-view", + "name": "height", + "tags": "CSSOM", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + }, + "systemYDPI": { + "specs": "cssom-view", + "name": "systemYDPI", + "tags": "CSSOM", + "type-original": "long", + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "colorDepth": { + "specs": "cssom-view", + "name": "colorDepth", + "tags": "CSSOM", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + }, + "availWidth": { + "specs": "cssom-view", + "name": "availWidth", + "tags": "CSSOM", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + } + } + }, + "tags": "CSSOM", + "constants": { + "constant": {} + }, + "events": { + "event": [] + }, + "exposed": "Window", + "methods": { + "method": { + "msUnlockOrientation": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "screen-orientation", + "exposed": "Window", + "name": "msUnlockOrientation", + "tags": "CSSOM" + }, + "msLockOrientation": { + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "orientations", + "type": [ + { + "type": "DOMString" + }, + { + "subtype": { + "type": "DOMString" + }, + "type": "sequence" + } + ], + "type-original": "(DOMString or sequence)" + } + ], + "type-original": "boolean" + } + ], + "specs": "screen-orientation", + "exposed": "Window", + "name": "msLockOrientation", + "tags": "CSSOM" + } + } + }, + "extends": "EventTarget" + }, + "ScriptProcessorNode": { + "specs": "webaudio", + "anonymous-methods": { + "method": [] + }, + "name": "ScriptProcessorNode", + "properties": { + "property": { + "onaudioprocess": { + "specs": "webaudio", + "name": "onaudioprocess", + "type-original": "EventHandler", + "deprecated": 1, + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "audioprocess" + }, + "bufferSize": { + "specs": "webaudio", + "name": "bufferSize", + "type-original": "long", + "deprecated": 1, + "exposed": "Window", + "type": "long", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "deprecated": 1, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "Audio", + "name": "audioprocess", + "type": "AudioProcessingEvent", + "skips-window": 1 + } + ] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "AudioNode" + }, + "Coordinates": { + "constants": { + "constant": {} + }, + "specs": "geolocation-api", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "Coordinates", + "extends": "Object", + "properties": { + "property": { + "altitudeAccuracy": { + "specs": "geolocation-api", + "name": "altitudeAccuracy", + "type-original": "double?", + "nullable": 1, + "exposed": "Window", + "type": "double", + "read-only": 1 + }, + "longitude": { + "specs": "geolocation-api", + "name": "longitude", + "type-original": "double", + "exposed": "Window", + "type": "double", + "read-only": 1 + }, + "speed": { + "specs": "geolocation-api", + "name": "speed", + "type-original": "double?", + "nullable": 1, + "exposed": "Window", + "type": "double", + "read-only": 1 + }, + "latitude": { + "specs": "geolocation-api", + "name": "latitude", + "type-original": "double", + "exposed": "Window", + "type": "double", + "read-only": 1 + }, + "heading": { + "specs": "geolocation-api", + "name": "heading", + "type-original": "double?", + "nullable": 1, + "exposed": "Window", + "type": "double", + "read-only": 1 + }, + "accuracy": { + "specs": "geolocation-api", + "name": "accuracy", + "type-original": "double", + "exposed": "Window", + "type": "double", + "read-only": 1 + }, + "altitude": { + "specs": "geolocation-api", + "name": "altitude", + "type-original": "double?", + "nullable": 1, + "exposed": "Window", + "type": "double", + "read-only": 1 + } + } + } + }, + "RTCDtlsTransportStateChangedEvent": { + "specs": "ortc", + "anonymous-methods": { + "method": [] + }, + "name": "RTCDtlsTransportStateChangedEvent", + "properties": { + "property": { + "state": { + "specs": "ortc", + "exposed": "Window", + "name": "state", + "type": "RTCDtlsTransportState", + "type-original": "RTCDtlsTransportState", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Event" + }, + "FocusEvent": { + "specs": "uievents", + "constructor": { + "specs": "uievents", + "signature": [ + { + "param-min-required": 1, + "type": "FocusEvent", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "FocusEventInit", + "optional": 1, + "type-original": "FocusEventInit" + } + ], + "type-original": "FocusEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "FocusEvent", + "properties": { + "property": { + "relatedTarget": { + "specs": "uievents", + "name": "relatedTarget", + "type-original": "EventTarget", + "exposed": "Window", + "type": "EventTarget", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "initFocusEvent": { + "signature": [ + { + "param-min-required": 6, + "type": "void", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "canBubbleArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "cancelableArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "viewArg", + "type": "Window", + "type-original": "Window" + }, + { + "name": "detailArg", + "type": "long", + "type-original": "long" + }, + { + "name": "relatedTargetArg", + "type": "EventTarget", + "type-original": "EventTarget" + } + ], + "type-original": "void" + } + ], + "specs": "uievents", + "exposed": "Window", + "name": "initFocusEvent" + } + } + }, + "exposed": "Window", + "extends": "UIEvent" + }, + "DOMSettableTokenList": { + "specs": "dom4", + "anonymous-methods": { + "method": [] + }, + "name": "DOMSettableTokenList", + "properties": { + "property": { + "value": { + "specs": "dom4", + "ce-reactions": 1, + "name": "value", + "tags": "TreeNavigation", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString" + } + } + }, + "tags": "TreeNavigation", + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "DOMTokenList" + }, + "PaymentResponse": { + "specs": "payment-request", + "anonymous-methods": { + "method": [] + }, + "name": "PaymentResponse", + "properties": { + "property": { + "shippingAddress": { + "specs": "payment-request", + "name": "shippingAddress", + "type-original": "PaymentAddress?", + "nullable": 1, + "exposed": "Window", + "type": "PaymentAddress", + "read-only": 1 + }, + "requestId": { + "specs": "payment-request", + "exposed": "Window", + "name": "requestId", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "payerName": { + "specs": "payment-request", + "name": "payerName", + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "payerEmail": { + "specs": "payment-request", + "name": "payerEmail", + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "details": { + "specs": "payment-request", + "exposed": "Window", + "name": "details", + "type": "object", + "type-original": "object", + "read-only": 1 + }, + "methodName": { + "specs": "payment-request", + "exposed": "Window", + "name": "methodName", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "payerPhone": { + "specs": "payment-request", + "name": "payerPhone", + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "shippingOption": { + "specs": "payment-request", + "name": "shippingOption", + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "toJSON": { + "serializer": 1, + "signature": [ + { + "type": "any", + "type-original": "any" + } + ], + "specs": "payment-request", + "exposed": "Window", + "serializer-info": "attribute", + "name": "toJSON" + }, + "complete": { + "signature": [ + { + "subtype": { + "type": "void" + }, + "param-min-required": 0, + "type": "Promise", + "param": [ + { + "name": "result", + "default": "\"unknown\"", + "type": "PaymentComplete", + "optional": 1, + "type-original": "PaymentComplete" + } + ], + "type-original": "Promise" + } + ], + "specs": "payment-request", + "exposed": "Window", + "name": "complete" + } + } + }, + "exposed": "Window", + "extends": "Object", + "secure-context": 1 + }, + "Range": { + "specs": "dom", + "constructor": { + "specs": "dom", + "signature": [ + { + "type": "Range", + "type-original": "Range" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "Range", + "properties": { + "property": { + "collapsed": { + "specs": "dom", + "name": "collapsed", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "read-only": 1 + }, + "startOffset": { + "specs": "dom", + "name": "startOffset", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + }, + "endOffset": { + "specs": "dom", + "name": "endOffset", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + }, + "startContainer": { + "specs": "dom", + "exposed": "Window", + "name": "startContainer", + "type": "Node", + "type-original": "Node", + "read-only": 1 + }, + "commonAncestorContainer": { + "specs": "dom", + "exposed": "Window", + "name": "commonAncestorContainer", + "type": "Node", + "type-original": "Node", + "read-only": 1 + }, + "endContainer": { + "specs": "dom", + "exposed": "Window", + "name": "endContainer", + "type": "Node", + "type-original": "Node", + "read-only": 1 + } + } + }, + "constants": { + "constant": { + "END_TO_END": { + "specs": "dom", + "value": "2", + "exposed": "Window", + "name": "END_TO_END", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "END_TO_START": { + "specs": "dom", + "value": "3", + "exposed": "Window", + "name": "END_TO_START", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "START_TO_END": { + "specs": "dom", + "value": "1", + "exposed": "Window", + "name": "START_TO_END", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "START_TO_START": { + "specs": "dom", + "value": "0", + "exposed": "Window", + "name": "START_TO_START", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "exposed": "Window", + "methods": { + "method": { + "createContextualFragment": { + "specs": "dom-parsing", + "signature": [ + { + "new-object": 1, + "param-min-required": 1, + "type": "DocumentFragment", + "param": [ + { + "name": "fragment", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "DocumentFragment" + } + ], + "ce-reactions": 1, + "name": "createContextualFragment", + "exposed": "Window" + }, + "setEndBefore": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "node", + "type": "Node", + "type-original": "Node" + } + ], + "type-original": "void" + } + ], + "specs": "dom", + "exposed": "Window", + "name": "setEndBefore" + }, + "setStart": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "node", + "type": "Node", + "type-original": "Node" + }, + { + "name": "offset", + "type": "long", + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "dom", + "exposed": "Window", + "name": "setStart" + }, + "setStartBefore": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "node", + "type": "Node", + "type-original": "Node" + } + ], + "type-original": "void" + } + ], + "specs": "dom", + "exposed": "Window", + "name": "setStartBefore" + }, + "detach": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "dom", + "exposed": "Window", + "name": "detach" + }, + "selectNode": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "node", + "type": "Node", + "type-original": "Node" + } + ], + "type-original": "void" + } + ], + "specs": "dom", + "exposed": "Window", + "name": "selectNode" + }, + "isPointInRange": { + "signature": [ + { + "param-min-required": 2, + "type": "boolean", + "param": [ + { + "name": "node", + "type": "Node", + "type-original": "Node" + }, + { + "name": "offset", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "boolean" + } + ], + "specs": "dom", + "exposed": "Window", + "name": "isPointInRange" + }, + "getBoundingClientRect": { + "specs": "cssom-view", + "signature": [ + { + "new-object": 1, + "type": "ClientRect", + "type-original": "ClientRect" + } + ], + "name": "getBoundingClientRect", + "exposed": "Window" + }, + "toString": { + "signature": [ + { + "type": "DOMString", + "type-original": "DOMString" + } + ], + "specs": "dom", + "exposed": "Window", + "name": "toString", + "stringifier": 1 + }, + "compareBoundaryPoints": { + "signature": [ + { + "param-min-required": 2, + "type": "short", + "param": [ + { + "name": "how", + "type": "unsigned short", + "type-original": "unsigned short" + }, + { + "name": "sourceRange", + "type": "Range", + "type-original": "Range" + } + ], + "type-original": "short" + } + ], + "specs": "dom", + "exposed": "Window", + "name": "compareBoundaryPoints" + }, + "insertNode": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "node", + "type": "Node", + "type-original": "Node" + } + ], + "type-original": "void" + } + ], + "specs": "dom", + "ce-reactions": 1, + "exposed": "Window", + "name": "insertNode" + }, + "collapse": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "toStart", + "default": "false", + "type": "boolean", + "optional": 1, + "type-original": "boolean" + } + ], + "type-original": "void" + } + ], + "specs": "dom", + "exposed": "Window", + "name": "collapse" + }, + "selectNodeContents": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "node", + "type": "Node", + "type-original": "Node" + } + ], + "type-original": "void" + } + ], + "specs": "dom", + "exposed": "Window", + "name": "selectNodeContents" + }, + "cloneContents": { + "signature": [ + { + "new-object": 1, + "type": "DocumentFragment", + "type-original": "DocumentFragment" + } + ], + "specs": "dom", + "ce-reactions": 1, + "exposed": "Window", + "name": "cloneContents" + }, + "setEnd": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "node", + "type": "Node", + "type-original": "Node" + }, + { + "name": "offset", + "type": "long", + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "dom", + "exposed": "Window", + "name": "setEnd" + }, + "cloneRange": { + "signature": [ + { + "new-object": 1, + "type": "Range", + "type-original": "Range" + } + ], + "specs": "dom", + "exposed": "Window", + "name": "cloneRange" + }, + "getClientRects": { + "specs": "cssom-view", + "signature": [ + { + "type": "ClientRectList", + "type-original": "ClientRectList" + } + ], + "name": "getClientRects", + "exposed": "Window" + }, + "surroundContents": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "newParent", + "type": "Node", + "type-original": "Node" + } + ], + "type-original": "void" + } + ], + "specs": "dom", + "ce-reactions": 1, + "exposed": "Window", + "name": "surroundContents" + }, + "setStartAfter": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "node", + "type": "Node", + "type-original": "Node" + } + ], + "type-original": "void" + } + ], + "specs": "dom", + "exposed": "Window", + "name": "setStartAfter" + }, + "deleteContents": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "dom", + "ce-reactions": 1, + "exposed": "Window", + "name": "deleteContents" + }, + "extractContents": { + "signature": [ + { + "new-object": 1, + "type": "DocumentFragment", + "type-original": "DocumentFragment" + } + ], + "specs": "dom", + "ce-reactions": 1, + "exposed": "Window", + "name": "extractContents" + }, + "expand": { + "extension": 1, + "interop": 1, + "specs": "none", + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "Unit", + "type": "ExpandGranularity", + "type-original": "ExpandGranularity" + } + ], + "type-original": "boolean" + } + ], + "name": "expand", + "exposed": "Window" + }, + "setEndAfter": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "node", + "type": "Node", + "type-original": "Node" + } + ], + "type-original": "void" + } + ], + "specs": "dom", + "exposed": "Window", + "name": "setEndAfter" + } + } + }, + "extends": "Object" + }, + "WorkerGlobalScope": { + "specs": "workers", + "anonymous-methods": { + "method": [] + }, + "name": "WorkerGlobalScope", + "properties": { + "property": { + "location": { + "property-descriptor-not-configurable": 1, + "specs": "workers", + "name": "location", + "type-original": "WorkerLocation", + "exposed": "Worker", + "type": "WorkerLocation", + "read-only": 1 + }, + "caches": { + "specs": "ServiceWorker", + "same-object": 1, + "name": "caches", + "type-original": "CacheStorage", + "exposed": "Worker", + "type": "CacheStorage", + "secure-context": 1, + "read-only": 1 + }, + "onerror": { + "specs": "workers", + "name": "onerror", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Worker", + "type": "EventHandlerNonNull", + "event-handler": "error" + }, + "self": { + "property-descriptor-not-configurable": 1, + "specs": "workers", + "name": "self", + "type-original": "WorkerGlobalScope", + "exposed": "Worker", + "type": "WorkerGlobalScope", + "read-only": 1 + }, + "isSecureContext": { + "specs": "SecureContext", + "exposed": "Worker", + "name": "isSecureContext", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "performance": { + "property-descriptor-not-configurable": 1, + "specs": "workers", + "name": "performance", + "type-original": "Performance", + "exposed": "Worker", + "type": "Performance", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Worker", + "methods": { + "method": { + "msWriteProfilerMark": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "profilerMarkName", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "workers", + "exposed": "Worker", + "name": "msWriteProfilerMark" + } + } + }, + "extends": "EventTarget", + "implements": [ + "WorkerUtils", + "WindowConsole", + "GlobalFetch" + ] + }, + "SVGPoint": { + "constants": { + "constant": {} + }, + "specs": "svg11", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "matrixTransform": { + "signature": [ + { + "param-min-required": 1, + "type": "SVGPoint", + "param": [ + { + "name": "matrix", + "type": "SVGMatrix", + "type-original": "SVGMatrix" + } + ], + "type-original": "SVGPoint" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "matrixTransform" + } + } + }, + "name": "SVGPoint", + "extends": "Object", + "properties": { + "property": { + "y": { + "specs": "svg11", + "exposed": "Window", + "name": "y", + "type": "float", + "type-original": "float" + }, + "x": { + "specs": "svg11", + "exposed": "Window", + "name": "x", + "type": "float", + "type-original": "float" + } + } + } + }, + "DelayNode": { + "constants": { + "constant": {} + }, + "specs": "webaudio", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "DelayNode", + "extends": "AudioNode", + "properties": { + "property": { + "delayTime": { + "specs": "webaudio", + "exposed": "Window", + "name": "delayTime", + "type": "AudioParam", + "type-original": "AudioParam", + "read-only": 1 + } + } + } + }, + "MSPointerEvent": { + "specs": "pointer-events", + "constructor": { + "specs": "pointer-events", + "signature": [ + { + "param-min-required": 1, + "type": "MSPointerEvent", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "PointerEventInit", + "optional": 1, + "type-original": "PointerEventInit" + } + ], + "type-original": "MSPointerEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "MSPointerEvent", + "properties": { + "property": { + "rotation": { + "specs": "pointer-events", + "exposed": "Window", + "name": "rotation", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "width": { + "specs": "pointer-events", + "exposed": "Window", + "name": "width", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "pressure": { + "specs": "pointer-events", + "exposed": "Window", + "name": "pressure", + "type": "float", + "type-original": "float", + "read-only": 1 + }, + "isPrimary": { + "specs": "pointer-events", + "exposed": "Window", + "name": "isPrimary", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "pointerType": { + "specs": "pointer-events", + "exposed": "Window", + "name": "pointerType", + "type": "any", + "type-original": "any", + "read-only": 1 + }, + "tiltY": { + "specs": "pointer-events", + "exposed": "Window", + "name": "tiltY", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "height": { + "specs": "pointer-events", + "exposed": "Window", + "name": "height", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "intermediatePoints": { + "specs": "pointer-events", + "name": "intermediatePoints", + "type-original": "any", + "exposed": "Window", + "type": "any", + "read-only": 1 + }, + "currentPoint": { + "specs": "pointer-events", + "name": "currentPoint", + "type-original": "any", + "exposed": "Window", + "type": "any", + "read-only": 1 + }, + "tiltX": { + "specs": "pointer-events", + "exposed": "Window", + "name": "tiltX", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "pointerId": { + "specs": "pointer-events", + "exposed": "Window", + "name": "pointerId", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "hwTimestamp": { + "specs": "pointer-events", + "exposed": "Window", + "name": "hwTimestamp", + "type": "unsigned long long", + "type-original": "unsigned long long", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": { + "getCurrentPoint": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "element", + "type": "Element", + "type-original": "Element" + } + ], + "type-original": "void" + } + ], + "specs": "pointer-events", + "exposed": "Window", + "name": "getCurrentPoint" + }, + "initPointerEvent": { + "signature": [ + { + "param-min-required": 27, + "type": "void", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "canBubbleArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "cancelableArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "viewArg", + "type": "Window", + "type-original": "Window" + }, + { + "name": "detailArg", + "type": "long", + "type-original": "long" + }, + { + "name": "screenXArg", + "type": "long", + "type-original": "long" + }, + { + "name": "screenYArg", + "type": "long", + "type-original": "long" + }, + { + "name": "clientXArg", + "type": "float", + "type-original": "float" + }, + { + "name": "clientYArg", + "type": "float", + "type-original": "float" + }, + { + "name": "ctrlKeyArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "altKeyArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "shiftKeyArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "metaKeyArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "buttonArg", + "type": "unsigned short", + "type-original": "unsigned short" + }, + { + "name": "relatedTargetArg", + "type": "EventTarget", + "type-original": "EventTarget" + }, + { + "name": "offsetXArg", + "type": "float", + "type-original": "float" + }, + { + "name": "offsetYArg", + "type": "float", + "type-original": "float" + }, + { + "name": "widthArg", + "type": "long", + "type-original": "long" + }, + { + "name": "heightArg", + "type": "long", + "type-original": "long" + }, + { + "name": "pressure", + "type": "float", + "type-original": "float" + }, + { + "name": "rotation", + "type": "long", + "type-original": "long" + }, + { + "name": "tiltX", + "type": "long", + "type-original": "long" + }, + { + "name": "tiltY", + "type": "long", + "type-original": "long" + }, + { + "name": "pointerIdArg", + "type": "long", + "type-original": "long" + }, + { + "name": "pointerType", + "type": "any", + "type-original": "any" + }, + { + "name": "hwTimestampArg", + "type": "unsigned long long", + "type-original": "unsigned long long" + }, + { + "name": "isPrimary", + "type": "boolean", + "type-original": "boolean" + } + ], + "type-original": "void" + } + ], + "specs": "pointer-events", + "exposed": "Window", + "name": "initPointerEvent" + }, + "getIntermediatePoints": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "element", + "type": "Element", + "type-original": "Element" + } + ], + "type-original": "void" + } + ], + "specs": "pointer-events", + "exposed": "Window", + "name": "getIntermediatePoints" + } + } + }, + "extends": "MouseEvent" + }, + "SVGSVGElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "value-syntax": "floating_point_number", + "name": "version" + }, + { + "name": "baseProfile" + }, + { + "enum-values": "false true", + "value-syntax": "enum", + "name": "externalResourcesRequired" + }, + { + "enum-values": "default preserve", + "value-syntax": "enum", + "name": "xml:space" + }, + { + "enum-values": "auto inherit", + "value-syntax": "css_shape_rect", + "name": "clip" + }, + { + "enum-values": "inline block inline-block list-item table inline-table table-header-group table-footer-group table-row-group table-column-group table-row table-column table-cell table-caption run-in ruby ruby-base ruby-text ruby-base-container flex inline-flex -ms-grid -ms-inline-grid none inherit initial", + "value-syntax": "enum", + "name": "display" + }, + { + "enum-values": "visible hidden scroll auto inherit", + "value-syntax": "enum", + "name": "overflow" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "clip-path" + }, + { + "enum-values": "auto default none context-menu help pointer progress wait cell crosshair text vertical-text alias copy move no-drop not-allowed e-resize n-resize ne-resize nw-resize s-resize se-resize sw-resize w-resize ew-resize ns-resize nesw-resize nwse-resize col-resize row-resize all-scroll zoom-in zoom-out inherit", + "value-syntax": "comma_separated_css_url_with_optional_x_y_offset_followed_by_enum", + "name": "cursor" + }, + { + "enum-values": "accumulate inherit", + "value-syntax": "svg_enum_new_followed_by_svg_viewbox", + "name": "enable-background" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "filter" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "mask" + }, + { + "enum-values": "inherit initial", + "value-syntax": "0_to_1_floating_point_number", + "name": "opacity" + } + ] + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGSVGElement", + "properties": { + "property": { + "width": { + "specs": "svg2", + "same-object": 1, + "name": "width", + "constant": 1, + "content-attribute": "width", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + }, + "contentStyleType": { + "specs": "svg11", + "name": "contentStyleType", + "type-original": "DOMString", + "content-attribute": "contentStyleType", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "mime_type", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "onzoom": { + "specs": "svg2", + "name": "onzoom", + "content-attribute": "onzoom", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "SVGZoom" + }, + "x": { + "specs": "svg2", + "same-object": 1, + "name": "x", + "constant": 1, + "content-attribute": "x", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + }, + "y": { + "specs": "svg2", + "same-object": 1, + "name": "y", + "constant": 1, + "content-attribute": "y", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + }, + "viewport": { + "specs": "svg11", + "name": "viewport", + "type-original": "SVGRect", + "deprecated": 1, + "interop": 1, + "exposed": "Window", + "type": "SVGRect", + "read-only": 1 + }, + "onerror": { + "specs": "svg2", + "name": "onerror", + "content-attribute": "onerror", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "SVGError" + }, + "pixelUnitToMillimeterY": { + "specs": "svg11", + "name": "pixelUnitToMillimeterY", + "constant": 1, + "type-original": "float", + "deprecated": 1, + "interop": 1, + "exposed": "Window", + "type": "float", + "read-only": 1 + }, + "onresize": { + "specs": "svg2", + "name": "onresize", + "content-attribute": "onresize", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "resize" + }, + "screenPixelToMillimeterY": { + "specs": "svg11", + "name": "screenPixelToMillimeterY", + "constant": 1, + "type-original": "float", + "deprecated": 1, + "interop": 1, + "exposed": "Window", + "type": "float", + "read-only": 1 + }, + "height": { + "specs": "svg2", + "same-object": 1, + "name": "height", + "constant": 1, + "content-attribute": "height", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + }, + "onabort": { + "specs": "svg2", + "name": "onabort", + "content-attribute": "onabort", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "SVGAbort" + }, + "contentScriptType": { + "specs": "svg11", + "name": "contentScriptType", + "type-original": "DOMString", + "content-attribute": "contentScriptType", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "mime_type", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "currentTranslate": { + "specs": "svg2", + "same-object": 1, + "name": "currentTranslate", + "type-original": "SVGPoint", + "exposed": "Window", + "type": "SVGPoint", + "read-only": 1 + }, + "pixelUnitToMillimeterX": { + "specs": "svg11", + "name": "pixelUnitToMillimeterX", + "constant": 1, + "type-original": "float", + "deprecated": 1, + "interop": 1, + "exposed": "Window", + "type": "float", + "read-only": 1 + }, + "onunload": { + "specs": "svg2", + "name": "onunload", + "content-attribute": "onunload", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "SVGUnload" + }, + "currentScale": { + "specs": "svg2", + "name": "currentScale", + "type-original": "float", + "exposed": "Window", + "type": "float" + }, + "onscroll": { + "specs": "svg2", + "name": "onscroll", + "content-attribute": "onscroll", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "scroll" + }, + "screenPixelToMillimeterX": { + "specs": "svg11", + "name": "screenPixelToMillimeterX", + "constant": 1, + "type-original": "float", + "deprecated": 1, + "interop": 1, + "exposed": "Window", + "type": "float", + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "svg2", + "namespace": "SVG", + "name": "svg" + } + ], + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync-or-async", + "specs": "svg11", + "name": "SVGScroll", + "type": "Event", + "bubbles": 1 + }, + { + "dispatch": "sync", + "specs": "svg11", + "name": "SVGZoom", + "type": "SVGZoomEvent", + "bubbles": 1 + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "setCurrentTime": { + "deprecated": 1, + "interop": 1, + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "seconds", + "type": "float", + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "setCurrentTime" + }, + "createSVGLength": { + "signature": [ + { + "type": "SVGLength", + "type-original": "SVGLength" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "createSVGLength" + }, + "getIntersectionList": { + "signature": [ + { + "param-min-required": 2, + "type": "NodeList", + "param": [ + { + "name": "rect", + "type": "SVGRect", + "type-original": "SVGRect" + }, + { + "nullable": 1, + "name": "referenceElement", + "type": "SVGElement", + "type-original": "SVGElement?" + } + ], + "type-original": "NodeList" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "getIntersectionList" + }, + "unpauseAnimations": { + "interop": 1, + "deprecated": 1, + "specs": "svg11", + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "name": "unpauseAnimations", + "exposed": "Window" + }, + "createSVGRect": { + "signature": [ + { + "type": "SVGRect", + "type-original": "SVGRect" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "createSVGRect" + }, + "pauseAnimations": { + "interop": 1, + "deprecated": 1, + "specs": "svg11", + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "name": "pauseAnimations", + "exposed": "Window" + }, + "unsuspendRedrawAll": { + "specs": "svg2", + "name": "unsuspendRedrawAll", + "constant": 1, + "interop": 1, + "deprecated": 1, + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "exposed": "Window" + }, + "checkIntersection": { + "signature": [ + { + "param-min-required": 2, + "type": "boolean", + "param": [ + { + "name": "element", + "type": "SVGElement", + "type-original": "SVGElement" + }, + { + "name": "rect", + "type": "SVGRect", + "type-original": "SVGRect" + } + ], + "type-original": "boolean" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "checkIntersection" + }, + "suspendRedraw": { + "specs": "svg2", + "name": "suspendRedraw", + "constant": 1, + "interop": 1, + "deprecated": 1, + "signature": [ + { + "param-min-required": 1, + "type": "unsigned long", + "param": [ + { + "name": "maxWaitMilliseconds", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "unsigned long" + } + ], + "exposed": "Window" + }, + "deselectAll": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "deselectAll" + }, + "createSVGAngle": { + "signature": [ + { + "type": "SVGAngle", + "type-original": "SVGAngle" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "createSVGAngle" + }, + "getEnclosureList": { + "signature": [ + { + "param-min-required": 2, + "type": "NodeList", + "param": [ + { + "name": "rect", + "type": "SVGRect", + "type-original": "SVGRect" + }, + { + "nullable": 1, + "name": "referenceElement", + "type": "SVGElement", + "type-original": "SVGElement?" + } + ], + "type-original": "NodeList" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "getEnclosureList" + }, + "createSVGTransform": { + "signature": [ + { + "type": "SVGTransform", + "type-original": "SVGTransform" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "createSVGTransform" + }, + "forceRedraw": { + "specs": "svg2", + "name": "forceRedraw", + "constant": 1, + "interop": 1, + "deprecated": 1, + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "exposed": "Window" + }, + "unsuspendRedraw": { + "specs": "svg2", + "name": "unsuspendRedraw", + "constant": 1, + "interop": 1, + "deprecated": 1, + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "suspendHandleID", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "void" + } + ], + "exposed": "Window" + }, + "getCurrentTime": { + "interop": 1, + "deprecated": 1, + "specs": "svg11", + "signature": [ + { + "type": "float", + "type-original": "float" + } + ], + "name": "getCurrentTime", + "exposed": "Window" + }, + "checkEnclosure": { + "signature": [ + { + "param-min-required": 2, + "type": "boolean", + "param": [ + { + "name": "element", + "type": "SVGElement", + "type-original": "SVGElement" + }, + { + "name": "rect", + "type": "SVGRect", + "type-original": "SVGRect" + } + ], + "type-original": "boolean" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "checkEnclosure" + }, + "createSVGMatrix": { + "signature": [ + { + "type": "SVGMatrix", + "type-original": "SVGMatrix" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "createSVGMatrix" + }, + "createSVGPoint": { + "signature": [ + { + "type": "SVGPoint", + "type-original": "SVGPoint" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "createSVGPoint" + }, + "createSVGNumber": { + "signature": [ + { + "type": "SVGNumber", + "type-original": "SVGNumber" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "createSVGNumber" + }, + "createSVGTransformFromMatrix": { + "signature": [ + { + "param-min-required": 1, + "type": "SVGTransform", + "param": [ + { + "name": "matrix", + "type": "SVGMatrix", + "type-original": "SVGMatrix" + } + ], + "type-original": "SVGTransform" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "createSVGTransformFromMatrix" + }, + "getComputedStyle": { + "specs": "svg2", + "name": "getComputedStyle", + "signature": [ + { + "param-min-required": 1, + "type": "CSSStyleDeclaration", + "param": [ + { + "name": "elt", + "type": "Element", + "type-original": "Element" + }, + { + "nullable": 1, + "name": "pseudoElt", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString?" + } + ], + "type-original": "CSSStyleDeclaration" + } + ], + "exposed": "Window" + }, + "getElementById": { + "signature": [ + { + "param-min-required": 1, + "type": "Element", + "param": [ + { + "name": "elementId", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "Element" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "getElementById" + } + } + }, + "extends": "SVGGraphicsElement", + "implements": [ + "DocumentEvent", + "SVGFitToViewBox", + "SVGZoomAndPan" + ] + }, + "SyncManager": { + "constants": { + "constant": {} + }, + "specs": "web-background-sync", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "register": { + "signature": [ + { + "subtype": { + "type": "void" + }, + "param-min-required": 1, + "type": "Promise", + "param": [ + { + "name": "tag", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "Promise" + } + ], + "specs": "web-background-sync", + "exposed": "Window", + "name": "register" + }, + "getTags": { + "signature": [ + { + "subtype": { + "subtype": { + "type": "DOMString" + }, + "type": "sequence" + }, + "type": "Promise", + "type-original": "Promise>" + } + ], + "specs": "web-background-sync", + "exposed": "Window", + "name": "getTags" + } + } + }, + "name": "SyncManager", + "extends": "Object", + "properties": { + "property": {} + } + }, + "HTMLLabelElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLLabelElement", + "properties": { + "property": { + "htmlFor": { + "specs": "html5", + "ce-reactions": 1, + "name": "htmlFor", + "content-attribute": "for", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "id_ref", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "form": { + "specs": "html5", + "name": "form", + "type-original": "HTMLFormElement?", + "nullable": 1, + "exposed": "Window", + "type": "HTMLFormElement", + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "label" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "WebGLContextEvent": { + "specs": "webgl", + "constructor": { + "specs": "webgl", + "signature": [ + { + "param-min-required": 1, + "type": "WebGLContextEvent", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "WebGLContextEventInit", + "optional": 1, + "type-original": "WebGLContextEventInit" + } + ], + "type-original": "WebGLContextEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "WebGLContextEvent", + "properties": { + "property": { + "statusMessage": { + "specs": "webgl", + "exposed": "Window", + "name": "statusMessage", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Event" + }, + "WebKitFileEntry": { + "constants": { + "constant": {} + }, + "specs": "file-system-api", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "file": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "successCallback", + "type": "WebKitFileCallback", + "type-original": "WebKitFileCallback" + }, + { + "name": "errorCallback", + "type": "WebKitErrorCallback", + "optional": 1, + "type-original": "WebKitErrorCallback" + } + ], + "type-original": "void" + } + ], + "specs": "file-system-api", + "exposed": "Window", + "name": "file" + } + } + }, + "name": "WebKitFileEntry", + "extends": "WebKitEntry", + "properties": { + "property": {} + } + }, + "HTMLDirectoryElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLDirectoryElement", + "properties": { + "property": { + "compact": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "compact", + "content-attribute": "compact", + "type-original": "boolean", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "boolean", + "content-attribute-boolean": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "dir" + } + ], + "constants": { + "constant": {} + }, + "interop": 1, + "deprecated": 1, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "HTMLLegendElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLLegendElement", + "properties": { + "property": { + "align": { + "content-attribute-enum-values": "bottom center left right top", + "specs": "html5", + "ce-reactions": 1, + "name": "align", + "type-original": "DOMString", + "content-attribute": "align", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "form": { + "specs": "html5", + "name": "form", + "type-original": "HTMLFormElement?", + "nullable": 1, + "exposed": "Window", + "type": "HTMLFormElement", + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "legend" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "WebGLRenderbuffer": { + "constants": { + "constant": {} + }, + "specs": "webgl", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "WebGLRenderbuffer", + "extends": "WebGLObject", + "properties": { + "property": {} + } + }, + "SVGAnimatedInteger": { + "constants": { + "constant": {} + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "SVGAnimatedInteger", + "extends": "Object", + "properties": { + "property": { + "animVal": { + "specs": "svg2", + "name": "animVal", + "type-original": "long", + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "baseVal": { + "specs": "svg2", + "exposed": "Window", + "name": "baseVal", + "type": "long", + "type-original": "long" + } + } + } + }, + "GamepadHapticActuator": { + "constants": { + "constant": {} + }, + "specs": "gamepad extension", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "pulse": { + "signature": [ + { + "subtype": { + "type": "boolean" + }, + "param-min-required": 2, + "type": "Promise", + "param": [ + { + "name": "value", + "type": "double", + "type-original": "double" + }, + { + "name": "duration", + "type": "double", + "type-original": "double" + } + ], + "type-original": "Promise" + } + ], + "specs": "gamepad extension", + "exposed": "Window", + "name": "pulse" + } + } + }, + "name": "GamepadHapticActuator", + "extends": "Object", + "properties": { + "property": { + "type": { + "specs": "gamepad extension", + "exposed": "Window", + "name": "type", + "type": "GamepadHapticActuatorType", + "type-original": "GamepadHapticActuatorType", + "read-only": 1 + } + } + } + }, + "SVGTSpanElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "auto baseline before-edge text-before-edge middle central after-edge text-after-edge ideographic alphabetic hanging mathematical inherit", + "value-syntax": "enum", + "name": "alignment-baseline" + }, + { + "enum-values": "baseline sub super inherit", + "value-syntax": "css_percentage_or_length", + "name": "baseline-shift" + }, + { + "enum-values": "inherit initial", + "value-syntax": "css_color", + "name": "color" + }, + { + "enum-values": "inline block inline-block list-item table inline-table table-header-group table-footer-group table-row-group table-column-group table-row table-column table-cell table-caption run-in ruby ruby-base ruby-text ruby-base-container flex inline-flex -ms-grid -ms-inline-grid none inherit initial", + "value-syntax": "enum", + "name": "display" + }, + { + "enum-values": "ltr rtl inherit", + "value-syntax": "enum", + "name": "direction" + }, + { + "enum-values": "auto use-script no-change reset-size ideographic alphabetic hanging mathematical central middle text-after-edge text-before-edge inherit", + "value-syntax": "enum", + "name": "dominant-baseline" + }, + { + "enum-values": "none currentColor inherit", + "value-syntax": "svg_paint_or_css_color", + "name": "fill" + }, + { + "enum-values": "inherit", + "value-syntax": "0_to_1_floating_point_number", + "name": "fill-opacity" + }, + { + "enum-values": "nonzero evenodd inherit", + "value-syntax": "enum", + "name": "fill-rule" + }, + { + "enum-values": "caption icon menu message-box small-caption status-bar inherit", + "value-syntax": "css_font", + "name": "font" + }, + { + "enum-values": "inherit", + "value-syntax": "comma_separated_css_font_family_followed_by_generic_family", + "name": "font-family" + }, + { + "enum-values": "smaller larger xx-small x-small small medium large x-large xx-large inherit initial", + "value-syntax": "css_percentage_or_length", + "name": "font-size" + }, + { + "enum-values": "none inherit", + "value-syntax": "floating_point_number", + "name": "font-size-adjust" + }, + { + "enum-values": "normal wider narrower ultra-condensed extra-condensed condensed semi-condensed semi-expanded expanded extra-expanded ultra-expanded inherit", + "value-syntax": "enum", + "name": "font-stretch" + }, + { + "enum-values": "normal italic oblique inherit initial", + "value-syntax": "enum", + "name": "font-style" + }, + { + "enum-values": "normal small-caps inherit initial", + "value-syntax": "enum", + "name": "font-variant" + }, + { + "enum-values": "normal bold bolder lighter 100 200 300 400 500 600 700 800 900 inherit initial", + "value-syntax": "enum", + "name": "font-weight" + }, + { + "enum-values": "inherit", + "value-syntax": "css_angle", + "name": "glyph-orientation-horizontal" + }, + { + "enum-values": "auto inherit", + "value-syntax": "css_angle", + "name": "glyph-orientation-vertical" + }, + { + "enum-values": "auto inherit", + "value-syntax": "css_length", + "name": "kerning" + }, + { + "enum-values": "normal inherit initial", + "value-syntax": "css_length", + "name": "letter-spacing" + }, + { + "enum-values": "none currentColor inherit", + "value-syntax": "svg_paint_or_css_color", + "name": "stroke" + }, + { + "enum-values": "none inherit", + "value-syntax": "comma_or_space_separated_css_percentage_or_length", + "name": "stroke-dasharray" + }, + { + "enum-values": "inherit", + "value-syntax": "css_percentage_or_length", + "name": "stroke-dashoffset" + }, + { + "enum-values": "butt round square inherit", + "value-syntax": "enum", + "name": "stroke-linecap" + }, + { + "enum-values": "miter round bevel inherit", + "value-syntax": "enum", + "name": "stroke-linejoin" + }, + { + "enum-values": "inherit", + "value-syntax": "1_or_greater_floating_point_number", + "name": "stroke-miterlimit" + }, + { + "enum-values": "inherit", + "value-syntax": "0_to_1_floating_point_number", + "name": "stroke-opacity" + }, + { + "enum-values": "inherit", + "value-syntax": "css_percentage_or_length", + "name": "stroke-width" + }, + { + "enum-values": "start middle end inherit", + "value-syntax": "enum", + "name": "text-anchor" + }, + { + "enum-values": "none underline overline line-through blink inherit", + "value-syntax": "enum", + "name": "text-decoration" + }, + { + "enum-values": "normal embed bidi-override inherit", + "value-syntax": "enum", + "name": "unicode-bidi" + }, + { + "enum-values": "visible hidden collapse inherit initial", + "value-syntax": "enum", + "name": "visibility" + }, + { + "enum-values": "normal inherit initial", + "value-syntax": "css_length", + "name": "word-spacing" + } + ] + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGTSpanElement", + "properties": { + "property": {} + }, + "element": [ + { + "specs": "svg2", + "namespace": "SVG", + "name": "tspan" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGTextPositioningElement" + }, + "HTMLLIElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLLIElement", + "properties": { + "property": { + "value": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "value", + "content-attribute": "value", + "type-original": "long", + "exposed": "Window", + "content-attribute-value-syntax": "signed_integer", + "type": "long", + "content-attribute-reflects": 1 + }, + "type": { + "specs": "html5", + "ce-reactions": 1, + "type-original": "DOMString", + "content-attribute": "type", + "interop": 1, + "pure": 1, + "content-attribute-enum-values": "1 a A i I disc circle square", + "name": "type", + "deprecated": 1, + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "li" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "RTCSrtpSdesTransport": { + "specs": "ortc", + "constructor": { + "specs": "ortc", + "signature": [ + { + "param-min-required": 3, + "type": "RTCSrtpSdesTransport", + "param": [ + { + "name": "transport", + "type": "RTCIceTransport", + "type-original": "RTCIceTransport" + }, + { + "name": "encryptParameters", + "type": "RTCSrtpSdesParameters", + "type-original": "RTCSrtpSdesParameters" + }, + { + "name": "decryptParameters", + "type": "RTCSrtpSdesParameters", + "type-original": "RTCSrtpSdesParameters" + } + ], + "type-original": "RTCSrtpSdesTransport" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "RTCSrtpSdesTransport", + "properties": { + "property": { + "transport": { + "specs": "ortc", + "exposed": "Window", + "name": "transport", + "type": "RTCIceTransport", + "type-original": "RTCIceTransport", + "read-only": 1 + }, + "onerror": { + "specs": "ortc", + "name": "onerror", + "type-original": "EventHandler?", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "error" + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "ORTC", + "name": "error", + "type": "Event", + "skips-window": 1 + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "getLocalParameters": { + "signature": [ + { + "subtype": { + "type": "RTCSrtpSdesParameters" + }, + "type": "sequence", + "type-original": "sequence" + } + ], + "specs": "ortc", + "exposed": "Window", + "name": "getLocalParameters", + "static": 1 + } + } + }, + "extends": "EventTarget" + }, + "SVGPathSegLinetoVerticalAbs": { + "specs": "svg11", + "anonymous-methods": { + "method": [] + }, + "name": "SVGPathSegLinetoVerticalAbs", + "properties": { + "property": { + "y": { + "specs": "svg11", + "exposed": "Window", + "name": "y", + "type": "float", + "type-original": "float" + } + } + }, + "constants": { + "constant": {} + }, + "interop": 1, + "deprecated": 1, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGPathSeg" + }, + "PerfWidgetExternal": { + "specs": "none", + "anonymous-methods": { + "method": [] + }, + "name": "PerfWidgetExternal", + "properties": { + "property": { + "maxCpuSpeed": { + "specs": "none", + "exposed": "Window", + "name": "maxCpuSpeed", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + }, + "irDisablingContentString": { + "specs": "none", + "exposed": "Window", + "name": "irDisablingContentString", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "independentRenderingEnabled": { + "specs": "none", + "exposed": "Window", + "name": "independentRenderingEnabled", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "irStatusAvailable": { + "specs": "none", + "exposed": "Window", + "name": "irStatusAvailable", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "performanceCounter": { + "specs": "none", + "exposed": "Window", + "name": "performanceCounter", + "type": "unsigned long long", + "type-original": "unsigned long long", + "read-only": 1 + }, + "averagePaintTime": { + "specs": "none", + "exposed": "Window", + "name": "averagePaintTime", + "type": "double", + "type-original": "double", + "read-only": 1 + }, + "paintRequestsPerSecond": { + "specs": "none", + "exposed": "Window", + "name": "paintRequestsPerSecond", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + }, + "activeNetworkRequestCount": { + "specs": "none", + "exposed": "Window", + "name": "activeNetworkRequestCount", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + }, + "extraInformationEnabled": { + "specs": "none", + "exposed": "Window", + "name": "extraInformationEnabled", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "averageFrameTime": { + "specs": "none", + "exposed": "Window", + "name": "averageFrameTime", + "type": "double", + "type-original": "double", + "read-only": 1 + }, + "performanceCounterFrequency": { + "specs": "none", + "exposed": "Window", + "name": "performanceCounterFrequency", + "type": "unsigned long long", + "type-original": "unsigned long long", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "repositionWindow": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "x", + "type": "long", + "type-original": "long" + }, + { + "name": "y", + "type": "long", + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "repositionWindow" + }, + "getRecentMemoryUsage": { + "signature": [ + { + "param-min-required": 1, + "type": "any", + "param": [ + { + "nullable": 1, + "name": "last", + "type": "unsigned long long", + "type-original": "unsigned long long?" + } + ], + "type-original": "any" + } + ], + "specs": "none", + "exposed": "Window", + "name": "getRecentMemoryUsage" + }, + "getMemoryUsage": { + "signature": [ + { + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "specs": "none", + "exposed": "Window", + "name": "getMemoryUsage" + }, + "resizeWindow": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "width", + "type": "unsigned long", + "type-original": "unsigned long" + }, + { + "name": "height", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "resizeWindow" + }, + "getProcessCpuUsage": { + "signature": [ + { + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "specs": "none", + "exposed": "Window", + "name": "getProcessCpuUsage" + }, + "removeEventListener": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "eventType", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "callback", + "type": "Function", + "type-original": "Function" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "removeEventListener" + }, + "getRecentCpuUsage": { + "signature": [ + { + "param-min-required": 1, + "type": "any", + "param": [ + { + "nullable": 1, + "name": "last", + "type": "unsigned long long", + "type-original": "unsigned long long?" + } + ], + "type-original": "any" + } + ], + "specs": "none", + "exposed": "Window", + "name": "getRecentCpuUsage" + }, + "addEventListener": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "eventType", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "callback", + "type": "Function", + "type-original": "Function" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "addEventListener" + }, + "getRecentFrames": { + "signature": [ + { + "param-min-required": 1, + "type": "any", + "param": [ + { + "nullable": 1, + "name": "last", + "type": "unsigned long long", + "type-original": "unsigned long long?" + } + ], + "type-original": "any" + } + ], + "specs": "none", + "exposed": "Window", + "name": "getRecentFrames" + }, + "getRecentPaintRequests": { + "signature": [ + { + "param-min-required": 1, + "type": "any", + "param": [ + { + "nullable": 1, + "name": "last", + "type": "unsigned long long", + "type-original": "unsigned long long?" + } + ], + "type-original": "any" + } + ], + "specs": "none", + "exposed": "Window", + "name": "getRecentPaintRequests" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "ReadableStreamReader": { + "constants": { + "constant": {} + }, + "specs": "whatwg-streams", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "releaseLock": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "whatwg-streams", + "exposed": "Window", + "name": "releaseLock" + }, + "read": { + "signature": [ + { + "subtype": { + "type": "any" + }, + "type": "Promise", + "type-original": "Promise" + } + ], + "specs": "whatwg-streams", + "exposed": "Window", + "name": "read" + }, + "cancel": { + "signature": [ + { + "subtype": { + "type": "void" + }, + "type": "Promise", + "type-original": "Promise" + } + ], + "specs": "whatwg-streams", + "exposed": "Window", + "name": "cancel" + } + } + }, + "name": "ReadableStreamReader", + "extends": "Object", + "properties": { + "property": {} + } + }, + "SVGFEImageElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "false true", + "value-syntax": "enum", + "name": "externalResourcesRequired" + }, + { + "enum-values": "default preserve", + "value-syntax": "enum", + "name": "xml:space" + }, + { + "enum-values": "linearRGB auto sRGB inherit", + "value-syntax": "enum", + "name": "color-interpolation-filters" + } + ] + }, + "specs": "filter-effects", + "anonymous-methods": { + "method": [] + }, + "name": "SVGFEImageElement", + "properties": { + "property": { + "preserveAspectRatio": { + "specs": "filter-effects", + "name": "preserveAspectRatio", + "constant": 1, + "type-original": "SVGAnimatedPreserveAspectRatio", + "exposed": "Window", + "type": "SVGAnimatedPreserveAspectRatio", + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "filter-effects", + "namespace": "SVG", + "name": "feImage" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGElement", + "implements": [ + "SVGFilterPrimitiveStandardAttributes", + "SVGURIReference" + ] + }, + "MediaKeySession": { + "specs": "encrypted-media", + "anonymous-methods": { + "method": [] + }, + "name": "MediaKeySession", + "properties": { + "property": { + "closed": { + "specs": "encrypted-media", + "name": "closed", + "type-original": "Promise", + "subtype": { + "type": "void" + }, + "exposed": "Window", + "type": "Promise", + "read-only": 1 + }, + "sessionId": { + "specs": "encrypted-media", + "exposed": "Window", + "name": "sessionId", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "keyStatuses": { + "specs": "encrypted-media", + "exposed": "Window", + "name": "keyStatuses", + "type": "MediaKeyStatusMap", + "type-original": "MediaKeyStatusMap", + "read-only": 1 + }, + "expiration": { + "specs": "encrypted-media", + "exposed": "Window", + "name": "expiration", + "type": "unrestricted double", + "type-original": "unrestricted double", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "EME", + "name": "keystatuseschange", + "type": "Event" + }, + { + "dispatch": "sync", + "specs": "EME", + "name": "message", + "type": "MediaKeyMessageEvent" + } + ] + }, + "methods": { + "method": { + "remove": { + "signature": [ + { + "subtype": { + "type": "void" + }, + "type": "Promise", + "type-original": "Promise" + } + ], + "specs": "encrypted-media", + "exposed": "Window", + "name": "remove" + }, + "close": { + "signature": [ + { + "subtype": { + "type": "void" + }, + "type": "Promise", + "type-original": "Promise" + } + ], + "specs": "encrypted-media", + "exposed": "Window", + "name": "close" + }, + "generateRequest": { + "signature": [ + { + "subtype": { + "type": "void" + }, + "param-min-required": 2, + "type": "Promise", + "param": [ + { + "name": "initDataType", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "initData", + "type": [ + { + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ] + }, + { + "nullable": 1, + "type": "ArrayBuffer" + } + ], + "type-original": "BufferSource" + } + ], + "type-original": "Promise" + } + ], + "specs": "encrypted-media", + "exposed": "Window", + "name": "generateRequest" + }, + "update": { + "signature": [ + { + "subtype": { + "type": "void" + }, + "param-min-required": 1, + "type": "Promise", + "param": [ + { + "name": "response", + "type": [ + { + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ] + }, + { + "nullable": 1, + "type": "ArrayBuffer" + } + ], + "type-original": "BufferSource" + } + ], + "type-original": "Promise" + } + ], + "specs": "encrypted-media", + "exposed": "Window", + "name": "update" + }, + "load": { + "signature": [ + { + "subtype": { + "type": "boolean" + }, + "param-min-required": 1, + "type": "Promise", + "param": [ + { + "name": "sessionId", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "Promise" + } + ], + "specs": "encrypted-media", + "exposed": "Window", + "name": "load" + } + } + }, + "exposed": "Window", + "extends": "EventTarget" + }, + "SVGStyleElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "default preserve", + "value-syntax": "enum", + "name": "xml:space" + } + ] + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGStyleElement", + "properties": { + "property": { + "disabled": { + "interop": 1, + "extension": 1, + "specs": "none", + "exposed": "Window", + "name": "disabled", + "type": "boolean", + "type-original": "boolean" + }, + "media": { + "specs": "svg2", + "name": "media", + "content-attribute": "media", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "media_query", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "title": { + "specs": "svg2", + "name": "title", + "content-attribute": "title", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "type": { + "specs": "svg2", + "name": "type", + "content-attribute": "type", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "mime_type", + "type": "DOMString", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "svg2", + "namespace": "SVG", + "name": "style" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGElement" + }, + "Worker": { + "specs": "workers", + "constructor": { + "specs": "workers", + "signature": [ + { + "param-min-required": 1, + "type": "Worker", + "param": [ + { + "name": "stringUrl", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "Worker" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "Worker", + "properties": { + "property": { + "onmessage": { + "specs": "workers", + "name": "onmessage", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "message" + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "async", + "specs": "Workers", + "name": "error", + "type": "ErrorEvent", + "skips-window": 1 + }, + { + "dispatch": "async", + "specs": "Workers", + "name": "message", + "type": "MessageEvent", + "skips-window": 1 + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "postMessage": { + "deprecated": 1, + "interop": 1, + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "message", + "type": "any", + "type-original": "any" + }, + { + "subtype": { + "type": "object" + }, + "name": "transfer", + "default": "[]", + "type": "sequence", + "optional": 1, + "type-original": "sequence" + } + ], + "type-original": "void" + } + ], + "specs": "workers", + "exposed": "Window", + "name": "postMessage" + }, + "terminate": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "workers", + "exposed": "Window", + "name": "terminate" + } + } + }, + "extends": "EventTarget", + "implements": [ + "AbstractWorker" + ] + }, + "Gamepad": { + "constants": { + "constant": {} + }, + "specs": "gamepad", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "Gamepad", + "extends": "Object", + "properties": { + "property": { + "mapping": { + "specs": "gamepad", + "exposed": "Window", + "name": "mapping", + "type": "GamepadMappingType", + "type-original": "GamepadMappingType", + "read-only": 1 + }, + "connected": { + "specs": "gamepad", + "exposed": "Window", + "name": "connected", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "axes": { + "pure": 1, + "specs": "gamepad", + "name": "axes", + "type-original": "sequence", + "subtype": { + "type": "double" + }, + "exposed": "Window", + "type": "sequence", + "read-only": 1 + }, + "displayId": { + "specs": "WebVR", + "name": "displayId", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1, + "type-original": "unsigned long" + }, + "index": { + "specs": "gamepad", + "exposed": "Window", + "name": "index", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "timestamp": { + "specs": "gamepad", + "exposed": "Window", + "name": "timestamp", + "type": "double", + "type-original": "DOMHighResTimeStamp", + "read-only": 1 + }, + "hand": { + "specs": "gamepad extension", + "name": "hand", + "exposed": "Window", + "type": "GamepadHand", + "read-only": 1, + "type-original": "GamepadHand" + }, + "id": { + "specs": "gamepad", + "exposed": "Window", + "name": "id", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "hapticActuators": { + "specs": "gamepad extension", + "name": "hapticActuators", + "constant": 1, + "type-original": "sequence", + "subtype": { + "type": "GamepadHapticActuator" + }, + "exposed": "Window", + "type": "sequence", + "read-only": 1 + }, + "pose": { + "specs": "gamepad extension", + "name": "pose", + "type-original": "GamepadPose?", + "nullable": 1, + "exposed": "Window", + "type": "GamepadPose", + "read-only": 1 + }, + "buttons": { + "pure": 1, + "specs": "gamepad", + "name": "buttons", + "type-original": "sequence", + "subtype": { + "type": "GamepadButton" + }, + "exposed": "Window", + "type": "sequence", + "read-only": 1 + } + } + } + }, + "NotificationEvent": { + "specs": "notifications", + "constructor": { + "specs": "notifications", + "signature": [ + { + "param-min-required": 2, + "type": "NotificationEvent", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "NotificationEventInit", + "type-original": "NotificationEventInit" + } + ], + "type-original": "NotificationEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "NotificationEvent", + "properties": { + "property": { + "notification": { + "specs": "notifications", + "exposed": "Worker", + "name": "notification", + "type": "Notification", + "type-original": "Notification", + "read-only": 1 + }, + "action": { + "specs": "notifications", + "exposed": "Worker", + "name": "action", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Worker", + "methods": { + "method": {} + }, + "extends": "ExtendableEvent" + }, + "WebKitPoint": { + "specs": "none", + "constructor": { + "specs": "none", + "signature": [ + { + "param-min-required": 0, + "type": "WebKitPoint", + "param": [ + { + "name": "x", + "default": "0", + "type": "float", + "optional": 1, + "type-original": "float" + }, + { + "name": "y", + "default": "0", + "type": "float", + "optional": 1, + "type-original": "float" + } + ], + "type-original": "WebKitPoint" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "WebKitPoint", + "properties": { + "property": { + "y": { + "specs": "none", + "exposed": "Window", + "name": "y", + "type": "float", + "tags": "CSSOM", + "type-original": "float" + }, + "x": { + "specs": "none", + "exposed": "Window", + "name": "x", + "type": "float", + "tags": "CSSOM", + "type-original": "float" + } + } + }, + "tags": "CSSOM", + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "Object" + }, + "DocumentType": { + "specs": "dom4 dom-level-3-core", + "anonymous-methods": { + "method": [] + }, + "name": "DocumentType", + "properties": { + "property": { + "name": { + "specs": "dom4 dom-level-3-core", + "name": "name", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "internalSubset": { + "specs": "dom4 dom-level-3-core", + "name": "internalSubset", + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "systemId": { + "specs": "dom4 dom-level-3-core", + "name": "systemId", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "notations": { + "specs": "dom4 dom-level-3-core", + "name": "notations", + "type-original": "NamedNodeMap", + "exposed": "Window", + "type": "NamedNodeMap", + "read-only": 1 + }, + "publicId": { + "specs": "dom4 dom-level-3-core", + "name": "publicId", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "entities": { + "specs": "dom4 dom-level-3-core", + "name": "entities", + "type-original": "NamedNodeMap", + "exposed": "Window", + "type": "NamedNodeMap", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Node", + "implements": [ + "ChildNode" + ] + }, + "SVGRadialGradientElement": { + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGRadialGradientElement", + "properties": { + "property": { + "cx": { + "specs": "svg2", + "same-object": 1, + "name": "cx", + "constant": 1, + "content-attribute": "cx", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + }, + "r": { + "specs": "svg2", + "same-object": 1, + "name": "r", + "constant": 1, + "content-attribute": "r", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + }, + "fx": { + "specs": "svg2", + "same-object": 1, + "name": "fx", + "constant": 1, + "content-attribute": "fx", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + }, + "cy": { + "specs": "svg2", + "same-object": 1, + "name": "cy", + "constant": 1, + "content-attribute": "cy", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + }, + "fy": { + "specs": "svg2", + "same-object": 1, + "name": "fy", + "constant": 1, + "content-attribute": "fy", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "svg2", + "namespace": "SVG", + "name": "radialGradient" + } + ], + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "SVGGradientElement" + }, + "MSGestureEvent": { + "specs": "none", + "anonymous-methods": { + "method": [] + }, + "name": "MSGestureEvent", + "properties": { + "property": { + "translationY": { + "specs": "none", + "exposed": "Window", + "name": "translationY", + "type": "float", + "type-original": "float", + "read-only": 1 + }, + "offsetY": { + "specs": "none", + "exposed": "Window", + "name": "offsetY", + "type": "float", + "type-original": "float", + "read-only": 1 + }, + "velocityExpansion": { + "specs": "none", + "exposed": "Window", + "name": "velocityExpansion", + "type": "float", + "type-original": "float", + "read-only": 1 + }, + "velocityAngular": { + "specs": "none", + "exposed": "Window", + "name": "velocityAngular", + "type": "float", + "type-original": "float", + "read-only": 1 + }, + "velocityY": { + "specs": "none", + "exposed": "Window", + "name": "velocityY", + "type": "float", + "type-original": "float", + "read-only": 1 + }, + "translationX": { + "specs": "none", + "exposed": "Window", + "name": "translationX", + "type": "float", + "type-original": "float", + "read-only": 1 + }, + "velocityX": { + "specs": "none", + "exposed": "Window", + "name": "velocityX", + "type": "float", + "type-original": "float", + "read-only": 1 + }, + "hwTimestamp": { + "specs": "none", + "exposed": "Window", + "name": "hwTimestamp", + "type": "unsigned long long", + "type-original": "unsigned long long", + "read-only": 1 + }, + "offsetX": { + "specs": "none", + "exposed": "Window", + "name": "offsetX", + "type": "float", + "type-original": "float", + "read-only": 1 + }, + "screenX": { + "specs": "none", + "exposed": "Window", + "name": "screenX", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "rotation": { + "specs": "none", + "exposed": "Window", + "name": "rotation", + "type": "float", + "type-original": "float", + "read-only": 1 + }, + "expansion": { + "specs": "none", + "exposed": "Window", + "name": "expansion", + "type": "float", + "type-original": "float", + "read-only": 1 + }, + "clientY": { + "specs": "none", + "exposed": "Window", + "name": "clientY", + "type": "float", + "type-original": "float", + "read-only": 1 + }, + "screenY": { + "specs": "none", + "exposed": "Window", + "name": "screenY", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "scale": { + "specs": "none", + "exposed": "Window", + "name": "scale", + "type": "float", + "type-original": "float", + "read-only": 1 + }, + "gestureObject": { + "specs": "none", + "exposed": "Window", + "name": "gestureObject", + "type": "any", + "type-original": "any", + "read-only": 1 + }, + "clientX": { + "specs": "none", + "exposed": "Window", + "name": "clientX", + "type": "float", + "type-original": "float", + "read-only": 1 + } + } + }, + "constants": { + "constant": { + "MSGESTURE_FLAG_BEGIN": { + "specs": "none", + "value": "0x00000001", + "exposed": "Window", + "name": "MSGESTURE_FLAG_BEGIN", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "MSGESTURE_FLAG_CANCEL": { + "specs": "none", + "value": "0x00000004", + "exposed": "Window", + "name": "MSGESTURE_FLAG_CANCEL", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "MSGESTURE_FLAG_END": { + "specs": "none", + "value": "0x00000002", + "exposed": "Window", + "name": "MSGESTURE_FLAG_END", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "MSGESTURE_FLAG_INERTIA": { + "specs": "none", + "value": "0x00000008", + "exposed": "Window", + "name": "MSGESTURE_FLAG_INERTIA", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "MSGESTURE_FLAG_NONE": { + "specs": "none", + "value": "0x00000000", + "exposed": "Window", + "name": "MSGESTURE_FLAG_NONE", + "type": "unsigned long", + "type-original": "unsigned long" + } + } + }, + "methods": { + "method": { + "initGestureEvent": { + "signature": [ + { + "param-min-required": 21, + "type": "void", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "canBubbleArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "cancelableArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "viewArg", + "type": "Window", + "type-original": "Window" + }, + { + "name": "detailArg", + "type": "long", + "type-original": "long" + }, + { + "name": "screenXArg", + "type": "long", + "type-original": "long" + }, + { + "name": "screenYArg", + "type": "long", + "type-original": "long" + }, + { + "name": "clientXArg", + "type": "float", + "type-original": "float" + }, + { + "name": "clientYArg", + "type": "float", + "type-original": "float" + }, + { + "name": "offsetXArg", + "type": "float", + "type-original": "float" + }, + { + "name": "offsetYArg", + "type": "float", + "type-original": "float" + }, + { + "name": "translationXArg", + "type": "float", + "type-original": "float" + }, + { + "name": "translationYArg", + "type": "float", + "type-original": "float" + }, + { + "name": "scaleArg", + "type": "float", + "type-original": "float" + }, + { + "name": "expansionArg", + "type": "float", + "type-original": "float" + }, + { + "name": "rotationArg", + "type": "float", + "type-original": "float" + }, + { + "name": "velocityXArg", + "type": "float", + "type-original": "float" + }, + { + "name": "velocityYArg", + "type": "float", + "type-original": "float" + }, + { + "name": "velocityExpansionArg", + "type": "float", + "type-original": "float" + }, + { + "name": "velocityAngularArg", + "type": "float", + "type-original": "float" + }, + { + "name": "hwTimestampArg", + "type": "unsigned long long", + "type-original": "unsigned long long" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "initGestureEvent" + } + } + }, + "exposed": "Window", + "extends": "UIEvent" + }, + "SubtleCrypto": { + "constants": { + "constant": {} + }, + "specs": "webcryptoapi", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "unwrapKey": { + "signature": [ + { + "subtype": { + "type": "CryptoKey" + }, + "param-min-required": 7, + "type": "Promise", + "param": [ + { + "name": "format", + "type": "DOMString", + "type-original": "KeyFormat" + }, + { + "name": "wrappedKey", + "type": [ + { + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ] + }, + { + "nullable": 1, + "type": "ArrayBuffer" + } + ], + "type-original": "BufferSource" + }, + { + "name": "unwrappingKey", + "type": "CryptoKey", + "type-original": "CryptoKey" + }, + { + "name": "unwrapAlgorithm", + "type": [ + { + "type": "DOMString" + }, + { + "type": "Algorithm" + } + ], + "type-original": "AlgorithmIdentifier" + }, + { + "name": "unwrappedKeyAlgorithm", + "type": [ + { + "type": "DOMString" + }, + { + "type": "Algorithm" + } + ], + "type-original": "AlgorithmIdentifier" + }, + { + "name": "extractable", + "type": "boolean", + "type-original": "boolean" + }, + { + "subtype": { + "type": "DOMString" + }, + "name": "keyUsages", + "type": "sequence", + "type-original": "sequence" + } + ], + "type-original": "Promise" + } + ], + "specs": "webcryptoapi", + "exposed": "Window", + "name": "unwrapKey" + }, + "encrypt": { + "signature": [ + { + "subtype": { + "type": "any" + }, + "param-min-required": 3, + "type": "Promise", + "param": [ + { + "name": "algorithm", + "type": [ + { + "type": "DOMString" + }, + { + "type": "Algorithm" + } + ], + "type-original": "AlgorithmIdentifier" + }, + { + "name": "key", + "type": "CryptoKey", + "type-original": "CryptoKey" + }, + { + "name": "data", + "type": [ + { + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ] + }, + { + "nullable": 1, + "type": "ArrayBuffer" + } + ], + "type-original": "BufferSource" + } + ], + "type-original": "Promise" + } + ], + "specs": "webcryptoapi", + "exposed": "Window", + "name": "encrypt" + }, + "importKey": { + "signature": [ + { + "subtype": { + "type": "CryptoKey" + }, + "param-min-required": 5, + "type": "Promise", + "param": [ + { + "name": "format", + "type": "DOMString", + "type-original": "KeyFormat" + }, + { + "name": "keyData", + "type": [ + { + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ] + }, + { + "nullable": 1, + "type": "ArrayBuffer" + }, + { + "type": "JsonWebKey" + } + ], + "type-original": "(BufferSource or JsonWebKey)" + }, + { + "name": "algorithm", + "type": [ + { + "type": "DOMString" + }, + { + "type": "Algorithm" + } + ], + "type-original": "AlgorithmIdentifier" + }, + { + "name": "extractable", + "type": "boolean", + "type-original": "boolean" + }, + { + "subtype": { + "type": "DOMString" + }, + "name": "keyUsages", + "type": "sequence", + "type-original": "sequence" + } + ], + "type-original": "Promise" + } + ], + "specs": "webcryptoapi", + "exposed": "Window", + "name": "importKey" + }, + "deriveBits": { + "signature": [ + { + "subtype": { + "type": "ArrayBuffer" + }, + "param-min-required": 3, + "type": "Promise", + "param": [ + { + "name": "algorithm", + "type": [ + { + "type": "DOMString" + }, + { + "type": "Algorithm" + } + ], + "type-original": "AlgorithmIdentifier" + }, + { + "name": "baseKey", + "type": "CryptoKey", + "type-original": "CryptoKey" + }, + { + "name": "length", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "Promise" + } + ], + "specs": "webcryptoapi", + "exposed": "Window", + "name": "deriveBits" + }, + "wrapKey": { + "signature": [ + { + "subtype": { + "type": "any" + }, + "param-min-required": 4, + "type": "Promise", + "param": [ + { + "name": "format", + "type": "DOMString", + "type-original": "KeyFormat" + }, + { + "name": "key", + "type": "CryptoKey", + "type-original": "CryptoKey" + }, + { + "name": "wrappingKey", + "type": "CryptoKey", + "type-original": "CryptoKey" + }, + { + "name": "wrapAlgorithm", + "type": [ + { + "type": "DOMString" + }, + { + "type": "Algorithm" + } + ], + "type-original": "AlgorithmIdentifier" + } + ], + "type-original": "Promise" + } + ], + "specs": "webcryptoapi", + "exposed": "Window", + "name": "wrapKey" + }, + "verify": { + "signature": [ + { + "subtype": { + "type": "any" + }, + "param-min-required": 4, + "type": "Promise", + "param": [ + { + "name": "algorithm", + "type": [ + { + "type": "DOMString" + }, + { + "type": "Algorithm" + } + ], + "type-original": "AlgorithmIdentifier" + }, + { + "name": "key", + "type": "CryptoKey", + "type-original": "CryptoKey" + }, + { + "name": "signature", + "type": [ + { + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ] + }, + { + "nullable": 1, + "type": "ArrayBuffer" + } + ], + "type-original": "BufferSource" + }, + { + "name": "data", + "type": [ + { + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ] + }, + { + "nullable": 1, + "type": "ArrayBuffer" + } + ], + "type-original": "BufferSource" + } + ], + "type-original": "Promise" + } + ], + "specs": "webcryptoapi", + "exposed": "Window", + "name": "verify" + }, + "deriveKey": { + "signature": [ + { + "subtype": { + "type": "any" + }, + "param-min-required": 5, + "type": "Promise", + "param": [ + { + "name": "algorithm", + "type": [ + { + "type": "DOMString" + }, + { + "type": "Algorithm" + } + ], + "type-original": "AlgorithmIdentifier" + }, + { + "name": "baseKey", + "type": "CryptoKey", + "type-original": "CryptoKey" + }, + { + "name": "derivedKeyType", + "type": [ + { + "type": "DOMString" + }, + { + "type": "Algorithm" + } + ], + "type-original": "AlgorithmIdentifier" + }, + { + "name": "extractable", + "type": "boolean", + "type-original": "boolean" + }, + { + "subtype": { + "type": "DOMString" + }, + "name": "keyUsages", + "type": "sequence", + "type-original": "sequence" + } + ], + "type-original": "Promise" + } + ], + "specs": "webcryptoapi", + "exposed": "Window", + "name": "deriveKey" + }, + "digest": { + "signature": [ + { + "subtype": { + "type": "any" + }, + "param-min-required": 2, + "type": "Promise", + "param": [ + { + "name": "algorithm", + "type": [ + { + "type": "DOMString" + }, + { + "type": "Algorithm" + } + ], + "type-original": "AlgorithmIdentifier" + }, + { + "name": "data", + "type": [ + { + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ] + }, + { + "nullable": 1, + "type": "ArrayBuffer" + } + ], + "type-original": "BufferSource" + } + ], + "type-original": "Promise" + } + ], + "specs": "webcryptoapi", + "exposed": "Window", + "name": "digest" + }, + "exportKey": { + "signature": [ + { + "subtype": { + "type": "any" + }, + "param-min-required": 2, + "type": "Promise", + "param": [ + { + "name": "format", + "type": "DOMString", + "type-original": "KeyFormat" + }, + { + "name": "key", + "type": "CryptoKey", + "type-original": "CryptoKey" + } + ], + "type-original": "Promise" + } + ], + "specs": "webcryptoapi", + "exposed": "Window", + "name": "exportKey" + }, + "generateKey": { + "signature": [ + { + "subtype": { + "type": "any" + }, + "param-min-required": 3, + "type": "Promise", + "param": [ + { + "name": "algorithm", + "type": [ + { + "type": "DOMString" + }, + { + "type": "Algorithm" + } + ], + "type-original": "AlgorithmIdentifier" + }, + { + "name": "extractable", + "type": "boolean", + "type-original": "boolean" + }, + { + "subtype": { + "type": "DOMString" + }, + "name": "keyUsages", + "type": "sequence", + "type-original": "sequence" + } + ], + "type-original": "Promise" + } + ], + "specs": "webcryptoapi", + "exposed": "Window", + "name": "generateKey" + }, + "decrypt": { + "signature": [ + { + "subtype": { + "type": "any" + }, + "param-min-required": 3, + "type": "Promise", + "param": [ + { + "name": "algorithm", + "type": [ + { + "type": "DOMString" + }, + { + "type": "Algorithm" + } + ], + "type-original": "AlgorithmIdentifier" + }, + { + "name": "key", + "type": "CryptoKey", + "type-original": "CryptoKey" + }, + { + "name": "data", + "type": [ + { + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ] + }, + { + "nullable": 1, + "type": "ArrayBuffer" + } + ], + "type-original": "BufferSource" + } + ], + "type-original": "Promise" + } + ], + "specs": "webcryptoapi", + "exposed": "Window", + "name": "decrypt" + }, + "sign": { + "signature": [ + { + "subtype": { + "type": "any" + }, + "param-min-required": 3, + "type": "Promise", + "param": [ + { + "name": "algorithm", + "type": [ + { + "type": "DOMString" + }, + { + "type": "Algorithm" + } + ], + "type-original": "AlgorithmIdentifier" + }, + { + "name": "key", + "type": "CryptoKey", + "type-original": "CryptoKey" + }, + { + "name": "data", + "type": [ + { + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ] + }, + { + "nullable": 1, + "type": "ArrayBuffer" + } + ], + "type-original": "BufferSource" + } + ], + "type-original": "Promise" + } + ], + "specs": "webcryptoapi", + "exposed": "Window", + "name": "sign" + } + } + }, + "name": "SubtleCrypto", + "secure-context": 1, + "extends": "Object", + "properties": { + "property": {} + } + }, + "HTMLTableSectionElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLTableSectionElement", + "properties": { + "property": { + "align": { + "content-attribute-enum-values": "center justify left right", + "specs": "html5", + "ce-reactions": 1, + "name": "align", + "type-original": "DOMString", + "content-attribute": "align", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "ch": { + "specs": "html5", + "ce-reactions": 1, + "name": "ch", + "type-original": "DOMString", + "content-attribute": "char", + "deprecated": 1, + "interop": 1, + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "vAlign": { + "content-attribute-enum-values": "middle baseline bottom top", + "specs": "html5", + "ce-reactions": 1, + "name": "vAlign", + "type-original": "DOMString", + "content-attribute": "valign", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "rows": { + "specs": "html5", + "same-object": 1, + "name": "rows", + "type-original": "HTMLCollection", + "exposed": "Window", + "type": "HTMLCollection", + "read-only": 1 + }, + "chOff": { + "specs": "html5", + "ce-reactions": 1, + "name": "chOff", + "type-original": "DOMString", + "content-attribute": "charoff", + "deprecated": 1, + "interop": 1, + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString" + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "thead" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "tbody" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "tfoot" + } + ], + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": { + "deleteRow": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "index", + "default": "-1", + "type": "long", + "optional": 1, + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "ce-reactions": 1, + "exposed": "Window", + "name": "deleteRow" + }, + "insertRow": { + "signature": [ + { + "param-min-required": 0, + "type": "HTMLElement", + "param": [ + { + "name": "index", + "default": "-1", + "type": "long", + "optional": 1, + "type-original": "long" + } + ], + "type-original": "HTMLElement" + } + ], + "specs": "html5", + "ce-reactions": 1, + "exposed": "Window", + "name": "insertRow" + } + } + }, + "extends": "HTMLElement" + }, + "HTMLInputElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLInputElement", + "properties": { + "property": { + "validationMessage": { + "specs": "html5", + "exposed": "Window", + "name": "validationMessage", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "files": { + "pure": 1, + "specs": "html5", + "name": "files", + "type-original": "FileList?", + "nullable": 1, + "exposed": "Window", + "type": "FileList", + "read-only": 1 + }, + "max": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "max", + "content-attribute": "max", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "formTarget": { + "content-attribute-enum-values": "_blank _self _parent _top", + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "formTarget", + "content-attribute": "formtarget", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "name_ref", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "form": { + "specs": "html5", + "name": "form", + "type-original": "HTMLFormElement?", + "nullable": 1, + "exposed": "Window", + "type": "HTMLFormElement", + "read-only": 1 + }, + "webkitdirectory": { + "specs": "entries-api", + "ce-reactions": 1, + "name": "webkitdirectory", + "type-original": "boolean", + "content-attribute": "webkitdirectory", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "boolean", + "content-attribute-boolean": 1 + }, + "selectionStart": { + "specs": "html5", + "nullable": 1, + "exposed": "Window", + "name": "selectionStart", + "type": "unsigned long", + "type-original": "unsigned long?" + }, + "willValidate": { + "pure": 1, + "specs": "html5", + "name": "willValidate", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "read-only": 1 + }, + "readOnly": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "readOnly", + "content-attribute": "readonly", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "step": { + "content-attribute-enum-values": "any", + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "step", + "content-attribute": "step", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "required": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "required", + "content-attribute": "required", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "list": { + "pure": 1, + "specs": "html5", + "name": "list", + "content-attribute": "list", + "type-original": "HTMLElement?", + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "id_ref", + "type": "HTMLElement", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "align": { + "pure": 1, + "content-attribute-enum-values": "absbottom absmiddle baseline bottom left middle right texttop top", + "specs": "html5", + "ce-reactions": 1, + "name": "align", + "type-original": "DOMString", + "content-attribute": "align", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "autocomplete": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "autocomplete", + "content-attribute": "autocomplete", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "space_separated_tokens", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "value": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "value", + "type-original": "DOMString", + "treat-null-as": "EmptyString", + "exposed": "Window", + "type": "DOMString" + }, + "src": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "src", + "content-attribute": "src", + "type-original": "USVString", + "exposed": "Window", + "content-attribute-value-syntax": "url", + "type": "USVString", + "content-attribute-reflects": 1 + }, + "useMap": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "useMap", + "type-original": "DOMString", + "content-attribute": "usemap", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "hash_name_ref", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "name": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "name", + "content-attribute": "name", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "formAction": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "formAction", + "content-attribute": "formaction", + "type-original": "USVString", + "exposed": "Window", + "content-attribute-value-syntax": "url", + "type": "USVString", + "content-attribute-reflects": 1 + }, + "checked": { + "pure": 1, + "specs": "html5", + "exposed": "Window", + "name": "checked", + "type": "boolean", + "type-original": "boolean" + }, + "validity": { + "pure": 1, + "specs": "html5", + "name": "validity", + "type-original": "ValidityState", + "exposed": "Window", + "type": "ValidityState", + "read-only": 1 + }, + "valueAsDate": { + "specs": "html5", + "nullable": 1, + "exposed": "Window", + "name": "valueAsDate", + "type": "object", + "type-original": "object?" + }, + "type": { + "content-attribute-enum-values": "text hidden search tel url email password month week number range checkbox radio file submit image reset button", + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "type", + "content-attribute": "type", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "defaultValue": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "defaultValue", + "content-attribute": "value", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "width": { + "specs": "html5", + "ce-reactions": 1, + "name": "width", + "content-attribute": "width", + "type-original": "unsigned long", + "exposed": "Window", + "content-attribute-value-syntax": "non_negative_integer", + "type": "unsigned long", + "content-attribute-reflects": 1 + }, + "disabled": { + "specs": "html5", + "ce-reactions": 1, + "name": "disabled", + "content-attribute": "disabled", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "indeterminate": { + "pure": 1, + "specs": "html5", + "name": "indeterminate", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean" + }, + "size": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "size", + "content-attribute": "size", + "type-original": "unsigned long", + "exposed": "Window", + "content-attribute-value-syntax": "1_or_greater_integer", + "type": "unsigned long", + "content-attribute-reflects": 1 + }, + "autofocus": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "autofocus", + "content-attribute": "autofocus", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "selectionEnd": { + "specs": "html5", + "nullable": 1, + "exposed": "Window", + "name": "selectionEnd", + "type": "unsigned long", + "type-original": "unsigned long?" + }, + "formEnctype": { + "content-attribute-enum-values": "application/x-www-form-urlencoded multipart/form-data text/plain", + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "formEnctype", + "content-attribute": "formenctype", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "valueAsNumber": { + "pure": 1, + "specs": "html5", + "name": "valueAsNumber", + "type-original": "double", + "exposed": "Window", + "type": "double" + }, + "placeholder": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "placeholder", + "content-attribute": "placeholder", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "formMethod": { + "content-attribute-enum-values": "GET POST", + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "formMethod", + "content-attribute": "formmethod", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "defaultChecked": { + "specs": "html5", + "ce-reactions": 1, + "name": "defaultChecked", + "content-attribute": "checked", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "alt": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "alt", + "content-attribute": "alt", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "accept": { + "content-attribute-enum-values": "audio/* video/* image/*", + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "accept", + "content-attribute": "accept", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "comma_separated_mime_types", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "min": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "min", + "content-attribute": "min", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "selectionDirection": { + "specs": "html5", + "nullable": 1, + "exposed": "Window", + "name": "selectionDirection", + "type": "DOMString", + "type-original": "DOMString?" + }, + "height": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "height", + "content-attribute": "height", + "type-original": "unsigned long", + "exposed": "Window", + "content-attribute-value-syntax": "non_negative_integer", + "type": "unsigned long", + "content-attribute-reflects": 1 + }, + "pattern": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "pattern", + "content-attribute": "pattern", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "regular_expression", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "formNoValidate": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "formNoValidate", + "content-attribute": "formnovalidate", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "maxLength": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "maxLength", + "content-attribute": "maxlength", + "type-original": "long", + "exposed": "Window", + "content-attribute-value-syntax": "non_negative_integer", + "type": "long", + "content-attribute-reflects": 1 + }, + "multiple": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "multiple", + "content-attribute": "multiple", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "input", + "html-self-closing": 1 + } + ], + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "HTML5", + "name": "change", + "type": "Event", + "bubbles": 1 + }, + { + "dispatch": "async", + "specs": "HTML5", + "name": "input", + "type": "Event", + "bubbles": 1 + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "error", + "type": "Event" + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "invalid", + "type": "Event", + "cancelable": 1 + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "checkValidity": { + "signature": [ + { + "type": "boolean", + "type-original": "boolean" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "checkValidity" + }, + "stepDown": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "n", + "default": "1", + "type": "long", + "optional": 1, + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "stepDown" + }, + "stepUp": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "n", + "default": "1", + "type": "long", + "optional": 1, + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "stepUp" + }, + "setSelectionRange": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "start", + "type": "unsigned long", + "optional": 1, + "type-original": "unsigned long" + }, + { + "name": "end", + "type": "unsigned long", + "optional": 1, + "type-original": "unsigned long" + }, + { + "name": "direction", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "setSelectionRange" + }, + "setCustomValidity": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "error", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "setCustomValidity" + }, + "select": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "select" + } + } + }, + "extends": "HTMLElement" + }, + "HTMLAnchorElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLAnchorElement", + "properties": { + "property": { + "rel": { + "content-attribute-enum-values": "alternate appendix bookmark chapter contents copyright dns-prefetch entry-content feedurl glossary help index next prefetch preload prev section start subsection", + "specs": "html5", + "ce-reactions": 1, + "name": "rel", + "content-attribute": "rel", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "space_separated_enums", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "coords": { + "specs": "html5", + "ce-reactions": 1, + "name": "coords", + "type-original": "DOMString", + "content-attribute": "coords", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "comma_separated_signed_integers", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "Methods": { + "extension": 1, + "specs": "none", + "name": "Methods", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString" + }, + "target": { + "content-attribute-enum-values": "_blank _self _parent _top", + "specs": "html5", + "ce-reactions": 1, + "name": "target", + "content-attribute": "target", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "name_ref", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "protocolLong": { + "extension": 1, + "specs": "none", + "name": "protocolLong", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "text": { + "specs": "html5", + "ce-reactions": 1, + "name": "text", + "type-original": "DOMString", + "treat-null-as": "EmptyString", + "exposed": "Window", + "type": "DOMString" + }, + "name": { + "specs": "html5", + "ce-reactions": 1, + "name": "name", + "type-original": "DOMString", + "content-attribute": "name", + "deprecated": 1, + "interop": 1, + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "charset": { + "specs": "html5", + "ce-reactions": 1, + "name": "charset", + "type-original": "DOMString", + "content-attribute": "charset", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "character_encoding", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "hreflang": { + "specs": "html5", + "ce-reactions": 1, + "name": "hreflang", + "content-attribute": "hreflang", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "bcp47_lang", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "urn": { + "extension": 1, + "specs": "none", + "name": "urn", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString" + }, + "nameProp": { + "extension": 1, + "specs": "none", + "name": "nameProp", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "rev": { + "content-attribute-enum-values": "alternate appendix bookmark chapter contents copyright glossary help index next prev section start stylesheet subsection", + "specs": "html5", + "ce-reactions": 1, + "name": "rev", + "type-original": "DOMString", + "content-attribute": "rev", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "space_separated_enums", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "type": { + "specs": "html5", + "ce-reactions": 1, + "name": "type", + "content-attribute": "type", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "mime_type", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "shape": { + "content-attribute-enum-values": "circ circle poly polygon rect rectangle", + "specs": "html5", + "ce-reactions": 1, + "name": "shape", + "type-original": "DOMString", + "content-attribute": "shape", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "mimeType": { + "extension": 1, + "specs": "none", + "name": "mimeType", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "download": { + "specs": "html5", + "ce-reactions": 1, + "name": "download", + "content-attribute": "download", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "a" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement", + "implements": [ + "HTMLHyperlinkElementUtils" + ] + }, + "AudioProcessingEvent": { + "constants": { + "constant": {} + }, + "specs": "webaudio", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "AudioProcessingEvent", + "extends": "Event", + "properties": { + "property": { + "playbackTime": { + "specs": "webaudio", + "exposed": "Window", + "name": "playbackTime", + "type": "double", + "type-original": "double", + "read-only": 1 + }, + "outputBuffer": { + "specs": "webaudio", + "exposed": "Window", + "name": "outputBuffer", + "type": "AudioBuffer", + "type-original": "AudioBuffer", + "read-only": 1 + }, + "inputBuffer": { + "specs": "webaudio", + "exposed": "Window", + "name": "inputBuffer", + "type": "AudioBuffer", + "type-original": "AudioBuffer", + "read-only": 1 + } + } + } + }, + "HTMLParamElement": { + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLParamElement", + "properties": { + "property": { + "value": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "value", + "content-attribute": "value", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "name": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "name", + "content-attribute": "name", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "type": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "type", + "type-original": "DOMString", + "content-attribute": "type", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "mime_type", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "valueType": { + "pure": 1, + "content-attribute-enum-values": "data ref object", + "specs": "html5", + "ce-reactions": 1, + "name": "valueType", + "type-original": "DOMString", + "content-attribute": "valuetype", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "param", + "html-self-closing": 1 + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "StereoPannerNode": { + "constants": { + "constant": {} + }, + "specs": "webaudio", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "StereoPannerNode", + "extends": "AudioNode", + "properties": { + "property": { + "pan": { + "specs": "webaudio", + "exposed": "Window", + "name": "pan", + "type": "AudioParam", + "type-original": "AudioParam", + "read-only": 1 + } + } + } + }, + "SVGAnimatedNumber": { + "constants": { + "constant": {} + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "SVGAnimatedNumber", + "extends": "Object", + "properties": { + "property": { + "animVal": { + "specs": "svg2", + "name": "animVal", + "type-original": "float", + "exposed": "Window", + "type": "float", + "read-only": 1 + }, + "baseVal": { + "specs": "svg2", + "exposed": "Window", + "name": "baseVal", + "type": "float", + "type-original": "float" + } + } + } + }, + "PushMessageData": { + "constants": { + "constant": {} + }, + "specs": "push-api", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": { + "arrayBuffer": { + "signature": [ + { + "type": "ArrayBuffer", + "type-original": "ArrayBuffer" + } + ], + "specs": "push-api", + "exposed": "Worker", + "name": "arrayBuffer" + }, + "text": { + "signature": [ + { + "type": "USVString", + "type-original": "USVString" + } + ], + "specs": "push-api", + "exposed": "Worker", + "name": "text" + }, + "blob": { + "signature": [ + { + "type": "Blob", + "type-original": "Blob" + } + ], + "specs": "push-api", + "exposed": "Worker", + "name": "blob" + }, + "json": { + "signature": [ + { + "type": "any", + "type-original": "JSON" + } + ], + "specs": "push-api", + "exposed": "Worker", + "name": "json" + } + } + }, + "exposed": "Worker", + "name": "PushMessageData", + "extends": "Object", + "properties": { + "property": {} + } + }, + "HTMLPreElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLPreElement", + "properties": { + "property": { + "width": { + "specs": "html5", + "ce-reactions": 1, + "name": "width", + "type-original": "long", + "content-attribute": "width", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "non_negative_integer", + "exposed": "Window", + "type": "long", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "pre" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "listing" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "xmp" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "PushSubscriptionOptions": { + "specs": "push-api", + "anonymous-methods": { + "method": [] + }, + "name": "PushSubscriptionOptions", + "properties": { + "property": { + "userVisibleOnly": { + "specs": "push-api", + "exposed": "Window", + "name": "userVisibleOnly", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "applicationServerKey": { + "specs": "push-api", + "name": "applicationServerKey", + "type-original": "ArrayBuffer?", + "nullable": 1, + "exposed": "Window", + "type": "ArrayBuffer", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "DOMTokenList": { + "specs": "dom", + "anonymous-methods": { + "method": [] + }, + "name": "DOMTokenList", + "properties": { + "property": { + "length": { + "specs": "dom", + "exposed": "Window", + "name": "length", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "contains": { + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "token", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "boolean" + } + ], + "specs": "dom", + "exposed": "Window", + "name": "contains" + }, + "toggle": { + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "token", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "force", + "type": "boolean", + "optional": 1, + "type-original": "boolean" + } + ], + "type-original": "boolean" + } + ], + "specs": "dom", + "ce-reactions": 1, + "exposed": "Window", + "name": "toggle" + }, + "remove": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "variadic": 1, + "name": "tokens", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "dom", + "ce-reactions": 1, + "exposed": "Window", + "name": "remove" + }, + "add": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "variadic": 1, + "name": "tokens", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "dom", + "ce-reactions": 1, + "exposed": "Window", + "name": "add" + }, + "item": { + "getter": 1, + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "DOMString", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "DOMString?" + } + ], + "specs": "dom", + "exposed": "Window", + "name": "item" + }, + "toString": { + "signature": [ + { + "type": "DOMString", + "type-original": "DOMString" + } + ], + "specs": "dom", + "exposed": "Window", + "name": "toString", + "stringifier": 1 + } + } + }, + "exposed": "Window", + "iterable": "value", + "extends": "Object" + }, + "Response": { + "specs": "whatwg-fetch", + "constructor": { + "specs": "whatwg-fetch", + "signature": [ + { + "param-min-required": 0, + "type": "Response", + "param": [ + { + "name": "body", + "default": "null", + "type": [ + { + "nullable": 1, + "type": "Blob" + }, + { + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + }, + { + "nullable": 1, + "type": "ArrayBuffer" + } + ] + }, + { + "nullable": 1, + "type": "FormData" + }, + { + "nullable": 1, + "type": "USVString" + } + ], + "optional": 1, + "type-original": "BodyInit?" + }, + { + "name": "init", + "type": "ResponseInit", + "optional": 1, + "type-original": "ResponseInit" + } + ], + "type-original": "Response" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "Response", + "properties": { + "property": { + "headers": { + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "headers", + "type": "Headers", + "type-original": "Headers", + "read-only": 1 + }, + "status": { + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "status", + "type": "unsigned short", + "type-original": "unsigned short", + "read-only": 1 + }, + "statusText": { + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "statusText", + "type": "ByteString", + "type-original": "ByteString", + "read-only": 1 + }, + "ok": { + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "ok", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "body": { + "specs": "whatwg-fetch", + "name": "body", + "type-original": "ReadableStream?", + "nullable": 1, + "exposed": "Window", + "type": "ReadableStream", + "read-only": 1 + }, + "redirected": { + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "redirected", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "url": { + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "url", + "type": "USVString", + "type-original": "USVString", + "read-only": 1 + }, + "type": { + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "type", + "type": "ResponseType", + "type-original": "ResponseType", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "clone": { + "signature": [ + { + "new-object": 1, + "type": "Response", + "type-original": "Response" + } + ], + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "clone" + }, + "redirect": { + "signature": [ + { + "param-min-required": 1, + "type": "Response", + "param": [ + { + "name": "url", + "type": "USVString", + "type-original": "USVString" + }, + { + "name": "status", + "default": "302", + "type": "unsigned short", + "optional": 1, + "type-original": "unsigned short" + } + ], + "type-original": "Response" + } + ], + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "redirect", + "static": 1 + }, + "error": { + "signature": [ + { + "type": "Response", + "type-original": "Response" + } + ], + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "error", + "static": 1 + } + } + }, + "exposed": "Window", + "extends": "Object", + "implements": [ + "Body" + ] + }, + "SVGMetadataElement": { + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGMetadataElement", + "properties": { + "property": {} + }, + "element": [ + { + "specs": "svg2", + "namespace": "SVG", + "name": "metadata" + } + ], + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "SVGElement" + }, + "SVGPathSegMovetoAbs": { + "specs": "svg11", + "anonymous-methods": { + "method": [] + }, + "name": "SVGPathSegMovetoAbs", + "properties": { + "property": { + "y": { + "specs": "svg11", + "exposed": "Window", + "name": "y", + "type": "float", + "type-original": "float" + }, + "x": { + "specs": "svg11", + "exposed": "Window", + "name": "x", + "type": "float", + "type-original": "float" + } + } + }, + "constants": { + "constant": {} + }, + "interop": 1, + "deprecated": 1, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGPathSeg" + }, + "WebKitCSSMatrix": { + "specs": "none", + "constructor": { + "specs": "none", + "signature": [ + { + "param-min-required": 0, + "type": "WebKitCSSMatrix", + "param": [ + { + "name": "text", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + } + ], + "type-original": "WebKitCSSMatrix" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "WebKitCSSMatrix", + "properties": { + "property": { + "m24": { + "specs": "none", + "exposed": "Window", + "name": "m24", + "type": "float", + "tags": "CSSOM", + "type-original": "float" + }, + "m34": { + "specs": "none", + "exposed": "Window", + "name": "m34", + "type": "float", + "tags": "CSSOM", + "type-original": "float" + }, + "a": { + "specs": "none", + "exposed": "Window", + "name": "a", + "type": "float", + "tags": "CSSOM", + "type-original": "float" + }, + "d": { + "specs": "none", + "exposed": "Window", + "name": "d", + "type": "float", + "tags": "CSSOM", + "type-original": "float" + }, + "m41": { + "specs": "none", + "exposed": "Window", + "name": "m41", + "type": "float", + "tags": "CSSOM", + "type-original": "float" + }, + "m32": { + "specs": "none", + "exposed": "Window", + "name": "m32", + "type": "float", + "tags": "CSSOM", + "type-original": "float" + }, + "m11": { + "specs": "none", + "exposed": "Window", + "name": "m11", + "type": "float", + "tags": "CSSOM", + "type-original": "float" + }, + "f": { + "specs": "none", + "exposed": "Window", + "name": "f", + "type": "float", + "tags": "CSSOM", + "type-original": "float" + }, + "e": { + "specs": "none", + "exposed": "Window", + "name": "e", + "type": "float", + "tags": "CSSOM", + "type-original": "float" + }, + "m23": { + "specs": "none", + "exposed": "Window", + "name": "m23", + "type": "float", + "tags": "CSSOM", + "type-original": "float" + }, + "m14": { + "specs": "none", + "exposed": "Window", + "name": "m14", + "type": "float", + "tags": "CSSOM", + "type-original": "float" + }, + "m33": { + "specs": "none", + "exposed": "Window", + "name": "m33", + "type": "float", + "tags": "CSSOM", + "type-original": "float" + }, + "m22": { + "specs": "none", + "exposed": "Window", + "name": "m22", + "type": "float", + "tags": "CSSOM", + "type-original": "float" + }, + "m21": { + "specs": "none", + "exposed": "Window", + "name": "m21", + "type": "float", + "tags": "CSSOM", + "type-original": "float" + }, + "c": { + "specs": "none", + "exposed": "Window", + "name": "c", + "type": "float", + "tags": "CSSOM", + "type-original": "float" + }, + "m12": { + "specs": "none", + "exposed": "Window", + "name": "m12", + "type": "float", + "tags": "CSSOM", + "type-original": "float" + }, + "m42": { + "specs": "none", + "exposed": "Window", + "name": "m42", + "type": "float", + "tags": "CSSOM", + "type-original": "float" + }, + "b": { + "specs": "none", + "exposed": "Window", + "name": "b", + "type": "float", + "tags": "CSSOM", + "type-original": "float" + }, + "m43": { + "specs": "none", + "exposed": "Window", + "name": "m43", + "type": "float", + "tags": "CSSOM", + "type-original": "float" + }, + "m31": { + "specs": "none", + "exposed": "Window", + "name": "m31", + "type": "float", + "tags": "CSSOM", + "type-original": "float" + }, + "m13": { + "specs": "none", + "exposed": "Window", + "name": "m13", + "type": "float", + "tags": "CSSOM", + "type-original": "float" + }, + "m44": { + "specs": "none", + "exposed": "Window", + "name": "m44", + "type": "float", + "tags": "CSSOM", + "type-original": "float" + } + } + }, + "tags": "CSSOM", + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": { + "skewY": { + "signature": [ + { + "param-min-required": 1, + "type": "WebKitCSSMatrix", + "param": [ + { + "name": "angle", + "type": "float", + "type-original": "float" + } + ], + "type-original": "WebKitCSSMatrix" + } + ], + "specs": "none", + "exposed": "Window", + "name": "skewY", + "tags": "CSSOM" + }, + "multiply": { + "signature": [ + { + "param-min-required": 1, + "type": "WebKitCSSMatrix", + "param": [ + { + "name": "secondMatrix", + "type": "WebKitCSSMatrix", + "type-original": "WebKitCSSMatrix" + } + ], + "type-original": "WebKitCSSMatrix" + } + ], + "specs": "none", + "exposed": "Window", + "name": "multiply", + "tags": "CSSOM" + }, + "setMatrixValue": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "value", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "setMatrixValue", + "tags": "CSSOM" + }, + "toString": { + "signature": [ + { + "type": "DOMString", + "type-original": "DOMString" + } + ], + "specs": "none", + "exposed": "Window", + "name": "toString", + "stringifier": 1, + "tags": "CSSOM" + }, + "rotateAxisAngle": { + "signature": [ + { + "param-min-required": 4, + "type": "WebKitCSSMatrix", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + }, + { + "name": "z", + "type": "float", + "type-original": "float" + }, + { + "name": "angle", + "type": "float", + "type-original": "float" + } + ], + "type-original": "WebKitCSSMatrix" + } + ], + "specs": "none", + "exposed": "Window", + "name": "rotateAxisAngle", + "tags": "CSSOM" + }, + "inverse": { + "signature": [ + { + "type": "WebKitCSSMatrix", + "type-original": "WebKitCSSMatrix" + } + ], + "specs": "none", + "exposed": "Window", + "name": "inverse", + "tags": "CSSOM" + }, + "rotate": { + "signature": [ + { + "param-min-required": 1, + "type": "WebKitCSSMatrix", + "param": [ + { + "name": "angleX", + "type": "float", + "type-original": "float" + }, + { + "name": "angleY", + "default": "0", + "type": "float", + "optional": 1, + "type-original": "float" + }, + { + "name": "angleZ", + "default": "0", + "type": "float", + "optional": 1, + "type-original": "float" + } + ], + "type-original": "WebKitCSSMatrix" + } + ], + "specs": "none", + "exposed": "Window", + "name": "rotate", + "tags": "CSSOM" + }, + "translate": { + "signature": [ + { + "param-min-required": 2, + "type": "WebKitCSSMatrix", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + }, + { + "name": "z", + "default": "0", + "type": "float", + "optional": 1, + "type-original": "float" + } + ], + "type-original": "WebKitCSSMatrix" + } + ], + "specs": "none", + "exposed": "Window", + "name": "translate", + "tags": "CSSOM" + }, + "scale": { + "signature": [ + { + "param-min-required": 1, + "type": "WebKitCSSMatrix", + "param": [ + { + "name": "scaleX", + "type": "float", + "type-original": "float" + }, + { + "name": "scaleY", + "type": "float", + "optional": 1, + "type-original": "float" + }, + { + "name": "scaleZ", + "default": "1", + "type": "float", + "optional": 1, + "type-original": "float" + } + ], + "type-original": "WebKitCSSMatrix" + } + ], + "specs": "none", + "exposed": "Window", + "name": "scale", + "tags": "CSSOM" + }, + "skewX": { + "signature": [ + { + "param-min-required": 1, + "type": "WebKitCSSMatrix", + "param": [ + { + "name": "angle", + "type": "float", + "type-original": "float" + } + ], + "type-original": "WebKitCSSMatrix" + } + ], + "specs": "none", + "exposed": "Window", + "name": "skewX", + "tags": "CSSOM" + } + } + }, + "extends": "Object" + }, + "PeriodicWave": { + "constants": { + "constant": {} + }, + "specs": "webaudio", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "PeriodicWave", + "extends": "Object", + "properties": { + "property": {} + } + }, + "RTCSsrcConflictEvent": { + "specs": "ortc", + "anonymous-methods": { + "method": [] + }, + "name": "RTCSsrcConflictEvent", + "properties": { + "property": { + "ssrc": { + "specs": "ortc", + "exposed": "Window", + "name": "ssrc", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Event" + }, + "CryptoKeyPair": { + "constants": { + "constant": {} + }, + "specs": "webcryptoapi", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "CryptoKeyPair", + "extends": "Object", + "properties": { + "property": { + "privateKey": { + "specs": "webcryptoapi", + "exposed": "Window", + "name": "privateKey", + "type": "CryptoKey", + "type-original": "CryptoKey" + }, + "publicKey": { + "specs": "webcryptoapi", + "exposed": "Window", + "name": "publicKey", + "type": "CryptoKey", + "type-original": "CryptoKey" + } + } + } + }, + "SVGPolygonElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "clip-path" + }, + { + "enum-values": "nonzero evenodd inherit", + "value-syntax": "enum", + "name": "clip-rule" + }, + { + "enum-values": "inherit initial", + "value-syntax": "css_color", + "name": "color" + }, + { + "enum-values": "auto default none context-menu help pointer progress wait cell crosshair text vertical-text alias copy move no-drop not-allowed e-resize n-resize ne-resize nw-resize s-resize se-resize sw-resize w-resize ew-resize ns-resize nesw-resize nwse-resize col-resize row-resize all-scroll zoom-in zoom-out inherit", + "value-syntax": "comma_separated_css_url_with_optional_x_y_offset_followed_by_enum", + "name": "cursor" + }, + { + "enum-values": "inline block inline-block list-item table inline-table table-header-group table-footer-group table-row-group table-column-group table-row table-column table-cell table-caption run-in ruby ruby-base ruby-text ruby-base-container flex inline-flex -ms-grid -ms-inline-grid none inherit initial", + "value-syntax": "enum", + "name": "display" + }, + { + "enum-values": "none currentColor inherit", + "value-syntax": "svg_paint_or_css_color", + "name": "fill" + }, + { + "enum-values": "inherit", + "value-syntax": "0_to_1_floating_point_number", + "name": "fill-opacity" + }, + { + "enum-values": "nonzero evenodd inherit", + "value-syntax": "enum", + "name": "fill-rule" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "filter" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "marker" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "marker-end" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "marker-mid" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "marker-start" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "mask" + }, + { + "enum-values": "inherit initial", + "value-syntax": "0_to_1_floating_point_number", + "name": "opacity" + }, + { + "enum-values": "auto none visiblePainted visibleFill visibleStroke visible painted fill stroke all inherit initial", + "value-syntax": "enum", + "name": "pointer-events" + }, + { + "enum-values": "none currentColor inherit", + "value-syntax": "svg_paint_or_css_color", + "name": "stroke" + }, + { + "enum-values": "none inherit", + "value-syntax": "comma_or_space_separated_css_percentage_or_length", + "name": "stroke-dasharray" + }, + { + "enum-values": "inherit", + "value-syntax": "css_percentage_or_length", + "name": "stroke-dashoffset" + }, + { + "enum-values": "butt round square inherit", + "value-syntax": "enum", + "name": "stroke-linecap" + }, + { + "enum-values": "miter round bevel inherit", + "value-syntax": "enum", + "name": "stroke-linejoin" + }, + { + "enum-values": "inherit", + "value-syntax": "1_or_greater_floating_point_number", + "name": "stroke-miterlimit" + }, + { + "enum-values": "inherit", + "value-syntax": "0_to_1_floating_point_number", + "name": "stroke-opacity" + }, + { + "enum-values": "inherit", + "value-syntax": "css_percentage_or_length", + "name": "stroke-width" + }, + { + "enum-values": "visible hidden collapse inherit initial", + "value-syntax": "enum", + "name": "visibility" + } + ] + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGPolygonElement", + "properties": { + "property": {} + }, + "element": [ + { + "specs": "svg2", + "namespace": "SVG", + "name": "polygon" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGGraphicsElement", + "implements": [ + "SVGAnimatedPoints" + ] + }, + "MediaStreamAudioSourceNode": { + "constants": { + "constant": {} + }, + "specs": "webaudio", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "MediaStreamAudioSourceNode", + "extends": "AudioNode", + "properties": { + "property": {} + } + }, + "WebSocket": { + "specs": "html5", + "constructor": { + "specs": "html5", + "signature": [ + { + "param-min-required": 1, + "type": "WebSocket", + "param": [ + { + "name": "url", + "type": "USVString", + "type-original": "USVString" + }, + { + "name": "protocols", + "default": "[]", + "type": [ + { + "type": "DOMString" + }, + { + "subtype": { + "type": "DOMString" + }, + "type": "sequence" + } + ], + "optional": 1, + "type-original": "(DOMString or sequence)" + } + ], + "type-original": "WebSocket" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "WebSocket", + "properties": { + "property": { + "protocol": { + "specs": "html5", + "exposed": "Window Worker", + "name": "protocol", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "onopen": { + "specs": "html5", + "name": "onopen", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window Worker", + "type": "EventHandlerNonNull", + "event-handler": "open" + }, + "bufferedAmount": { + "specs": "html5", + "exposed": "Window Worker", + "name": "bufferedAmount", + "type": "unsigned long long", + "type-original": "unsigned long long", + "read-only": 1 + }, + "readyState": { + "specs": "html5", + "exposed": "Window Worker", + "name": "readyState", + "type": "unsigned short", + "type-original": "unsigned short", + "read-only": 1 + }, + "extensions": { + "specs": "html5", + "exposed": "Window Worker", + "name": "extensions", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "onmessage": { + "specs": "html5", + "name": "onmessage", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window Worker", + "type": "EventHandlerNonNull", + "event-handler": "message" + }, + "onclose": { + "specs": "html5", + "name": "onclose", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window Worker", + "type": "EventHandlerNonNull", + "event-handler": "close" + }, + "binaryType": { + "specs": "html5", + "exposed": "Window Worker", + "name": "binaryType", + "type": "BinaryType", + "type-original": "BinaryType" + }, + "url": { + "specs": "html5", + "exposed": "Window Worker", + "name": "url", + "type": "USVString", + "type-original": "USVString", + "read-only": 1 + }, + "onerror": { + "specs": "html5", + "name": "onerror", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window Worker", + "type": "EventHandlerNonNull", + "event-handler": "error" + } + } + }, + "constants": { + "constant": { + "CLOSING": { + "specs": "html5", + "value": "2", + "exposed": "Window Worker", + "name": "CLOSING", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "OPEN": { + "specs": "html5", + "value": "1", + "exposed": "Window Worker", + "name": "OPEN", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "CLOSED": { + "specs": "html5", + "value": "3", + "exposed": "Window Worker", + "name": "CLOSED", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "CONNECTING": { + "specs": "html5", + "value": "0", + "exposed": "Window Worker", + "name": "CONNECTING", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "Sockets", + "name": "error", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "async", + "specs": "Sockets", + "name": "message", + "type": "MessageEvent", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "Sockets", + "name": "open", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "Sockets", + "name": "close", + "type": "CloseEvent", + "skips-window": 1 + } + ] + }, + "exposed": "Window Worker", + "methods": { + "method": { + "close": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "clamp": 1, + "name": "code", + "type": "unsigned short", + "optional": 1, + "type-original": "unsigned short" + }, + { + "name": "reason", + "type": "USVString", + "optional": 1, + "type-original": "USVString" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window Worker", + "name": "close" + }, + "send": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "data", + "type": "any", + "type-original": "any" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window Worker", + "name": "send" + } + } + }, + "extends": "EventTarget" + }, + "RTCIceCandidatePairChangedEvent": { + "specs": "ortc", + "anonymous-methods": { + "method": [] + }, + "name": "RTCIceCandidatePairChangedEvent", + "properties": { + "property": { + "pair": { + "specs": "ortc", + "exposed": "Window", + "name": "pair", + "type": "RTCIceCandidatePair", + "type-original": "RTCIceCandidatePair", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Event" + }, + "SVGTextContentElement": { + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGTextContentElement", + "properties": { + "property": { + "textLength": { + "specs": "svg2", + "same-object": 1, + "name": "textLength", + "constant": 1, + "content-attribute": "textLength", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "type": "SVGAnimatedLength", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "lengthAdjust": { + "content-attribute-enum-values": "spacing spacingAndGlyphs", + "specs": "svg2", + "same-object": 1, + "name": "lengthAdjust", + "constant": 1, + "content-attribute": "lengthAdjust", + "type-original": "SVGAnimatedEnumeration", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "SVGAnimatedEnumeration", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "constants": { + "constant": { + "LENGTHADJUST_SPACING": { + "specs": "svg2", + "value": "1", + "exposed": "Window", + "name": "LENGTHADJUST_SPACING", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "LENGTHADJUST_SPACINGANDGLYPHS": { + "specs": "svg2", + "value": "2", + "exposed": "Window", + "name": "LENGTHADJUST_SPACINGANDGLYPHS", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "LENGTHADJUST_UNKNOWN": { + "specs": "svg2", + "value": "0", + "exposed": "Window", + "name": "LENGTHADJUST_UNKNOWN", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "methods": { + "method": { + "getCharNumAtPosition": { + "signature": [ + { + "param-min-required": 1, + "type": "long", + "param": [ + { + "name": "point", + "type": "SVGPoint", + "type-original": "SVGPoint" + } + ], + "type-original": "long" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "getCharNumAtPosition" + }, + "getStartPositionOfChar": { + "signature": [ + { + "param-min-required": 1, + "type": "SVGPoint", + "param": [ + { + "name": "charnum", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "SVGPoint" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "getStartPositionOfChar" + }, + "getExtentOfChar": { + "signature": [ + { + "param-min-required": 1, + "type": "SVGRect", + "param": [ + { + "name": "charnum", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "SVGRect" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "getExtentOfChar" + }, + "selectSubString": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "charnum", + "type": "unsigned long", + "type-original": "unsigned long" + }, + { + "name": "nchars", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "void" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "selectSubString" + }, + "getSubStringLength": { + "signature": [ + { + "param-min-required": 2, + "type": "float", + "param": [ + { + "name": "charnum", + "type": "unsigned long", + "type-original": "unsigned long" + }, + { + "name": "nchars", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "float" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "getSubStringLength" + }, + "getComputedTextLength": { + "signature": [ + { + "type": "float", + "type-original": "float" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "getComputedTextLength" + }, + "getNumberOfChars": { + "signature": [ + { + "type": "long", + "type-original": "long" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "getNumberOfChars" + }, + "getRotationOfChar": { + "signature": [ + { + "param-min-required": 1, + "type": "float", + "param": [ + { + "name": "charnum", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "float" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "getRotationOfChar" + }, + "getEndPositionOfChar": { + "signature": [ + { + "param-min-required": 1, + "type": "SVGPoint", + "param": [ + { + "name": "charnum", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "SVGPoint" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "getEndPositionOfChar" + } + } + }, + "exposed": "Window", + "extends": "SVGGraphicsElement" + }, + "OES_texture_half_float": { + "specs": "webgl", + "anonymous-methods": { + "method": [] + }, + "name": "OES_texture_half_float", + "properties": { + "property": {} + }, + "constants": { + "constant": { + "HALF_FLOAT_OES": { + "specs": "webgl", + "value": "0x8D61", + "exposed": "Window", + "name": "HALF_FLOAT_OES", + "type": "unsigned long", + "type-original": "GLenum" + } + } + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "Location": { + "constants": { + "constant": {} + }, + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "reload": { + "property-descriptor-not-configurable": 1, + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "forcedReload", + "default": "false", + "type": "boolean", + "optional": 1, + "type-original": "boolean" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "property-descriptor-not-writable": 1, + "unforgeable": 1, + "exposed": "Window", + "name": "reload" + }, + "replace": { + "property-descriptor-not-configurable": 1, + "specs": "html5", + "name": "replace", + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "url", + "type": "USVString", + "type-original": "USVString" + } + ], + "type-original": "void" + } + ], + "unforgeable": 1, + "property-descriptor-not-writable": 1, + "exposed": "Window" + }, + "assign": { + "property-descriptor-not-configurable": 1, + "specs": "html5", + "name": "assign", + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "url", + "type": "USVString", + "type-original": "USVString" + } + ], + "type-original": "void" + } + ], + "unforgeable": 1, + "property-descriptor-not-writable": 1, + "exposed": "Window" + }, + "toString": { + "property-descriptor-not-configurable": 1, + "specs": "html5", + "name": "toString", + "signature": [ + { + "type": "USVString", + "type-original": "USVString" + } + ], + "exposed": "Window", + "stringifier": 1 + } + } + }, + "name": "Location", + "extends": "Object", + "properties": { + "property": { + "protocol": { + "specs": "html5", + "name": "protocol", + "type-original": "USVString", + "unforgeable": 1, + "exposed": "Window", + "type": "USVString" + }, + "search": { + "property-descriptor-not-configurable": 1, + "specs": "html5", + "name": "search", + "type-original": "USVString", + "unforgeable": 1, + "exposed": "Window", + "type": "USVString" + }, + "origin": { + "specs": "html5", + "name": "origin", + "type-original": "USVString", + "unforgeable": 1, + "exposed": "Window", + "type": "USVString", + "read-only": 1 + }, + "hostname": { + "property-descriptor-not-configurable": 1, + "specs": "html5", + "name": "hostname", + "type-original": "USVString", + "unforgeable": 1, + "exposed": "Window", + "type": "USVString" + }, + "pathname": { + "specs": "html5", + "name": "pathname", + "type-original": "USVString", + "unforgeable": 1, + "exposed": "Window", + "type": "USVString" + }, + "port": { + "specs": "html5", + "name": "port", + "type-original": "USVString", + "unforgeable": 1, + "exposed": "Window", + "type": "USVString" + }, + "host": { + "property-descriptor-not-configurable": 1, + "specs": "html5", + "name": "host", + "type-original": "USVString", + "unforgeable": 1, + "exposed": "Window", + "type": "USVString" + }, + "hash": { + "property-descriptor-not-configurable": 1, + "specs": "html5", + "name": "hash", + "type-original": "USVString", + "unforgeable": 1, + "exposed": "Window", + "type": "USVString" + }, + "href": { + "property-descriptor-not-configurable": 1, + "specs": "html5", + "name": "href", + "type-original": "USVString", + "unforgeable": 1, + "exposed": "Window", + "type": "USVString", + "stringifier": 1 + } + } + } + }, + "RTCDTMFToneChangeEvent": { + "specs": "ortc", + "constructor": { + "specs": "ortc", + "signature": [ + { + "param-min-required": 2, + "type": "RTCDTMFToneChangeEvent", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "RTCDTMFToneChangeEventInit", + "type-original": "RTCDTMFToneChangeEventInit" + } + ], + "type-original": "RTCDTMFToneChangeEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "RTCDTMFToneChangeEvent", + "properties": { + "property": { + "tone": { + "specs": "ortc", + "exposed": "Window", + "name": "tone", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "Event" + }, + "SVGFEGaussianBlurElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "linearRGB auto sRGB inherit", + "value-syntax": "enum", + "name": "color-interpolation-filters" + } + ] + }, + "specs": "filter-effects", + "anonymous-methods": { + "method": [] + }, + "name": "SVGFEGaussianBlurElement", + "properties": { + "property": { + "stdDeviationX": { + "specs": "filter-effects", + "name": "stdDeviationX", + "constant": 1, + "content-attribute": "stdDeviation", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "stdDeviationY": { + "specs": "filter-effects", + "name": "stdDeviationY", + "constant": 1, + "content-attribute": "stdDeviation", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "in1": { + "content-attribute-enum-values": "SourceGraphic SourceAlpha BackgroundImage BackgroundAlpha FillPaint StrokePaint", + "specs": "filter-effects", + "name": "in1", + "constant": 1, + "content-attribute": "in", + "type-original": "SVGAnimatedString", + "exposed": "Window", + "content-attribute-value-syntax": "filter_result_ref", + "type": "SVGAnimatedString", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "filter-effects", + "namespace": "SVG", + "name": "feGaussianBlur" + } + ], + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": { + "setStdDeviation": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "stdDeviationX", + "type": "float", + "type-original": "float" + }, + { + "name": "stdDeviationY", + "type": "float", + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "filter-effects", + "exposed": "Window", + "name": "setStdDeviation" + } + } + }, + "extends": "SVGElement", + "implements": [ + "SVGFilterPrimitiveStandardAttributes" + ] + }, + "TouchList": { + "specs": "touch-events", + "anonymous-methods": { + "method": [] + }, + "name": "TouchList", + "properties": { + "property": { + "length": { + "pure": 1, + "specs": "touch-events", + "name": "length", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "item": { + "getter": 1, + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "Touch", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "Touch?" + } + ], + "specs": "touch-events", + "exposed": "Window", + "name": "item" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "RTCIceCandidate": { + "specs": "webrtc", + "constructor": { + "specs": "webrtc", + "signature": [ + { + "param-min-required": 0, + "type": "RTCIceCandidate", + "param": [ + { + "name": "candidateInitDict", + "type": "RTCIceCandidateInit", + "optional": 1, + "type-original": "RTCIceCandidateInit" + } + ], + "type-original": "RTCIceCandidate" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "RTCIceCandidate", + "properties": { + "property": { + "sdpMLineIndex": { + "specs": "webrtc", + "nullable": 1, + "exposed": "Window", + "name": "sdpMLineIndex", + "type": "unsigned short", + "type-original": "unsigned short?" + }, + "candidate": { + "specs": "webrtc", + "nullable": 1, + "exposed": "Window", + "name": "candidate", + "type": "DOMString", + "type-original": "DOMString?" + }, + "sdpMid": { + "specs": "webrtc", + "nullable": 1, + "exposed": "Window", + "name": "sdpMid", + "type": "DOMString", + "type-original": "DOMString?" + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": { + "toJSON": { + "serializer": 1, + "signature": [ + { + "type": "any", + "type-original": "any" + } + ], + "specs": "webrtc", + "exposed": "Window", + "serializer-info": "attribute", + "name": "toJSON" + } + } + }, + "extends": "Object" + }, + "PerformanceEntry": { + "constants": { + "constant": {} + }, + "specs": "performance-timeline", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": { + "toJSON": { + "signature": [ + { + "type": "object", + "type-original": "object" + } + ], + "specs": "performance-timeline", + "exposed": "Window Worker", + "name": "toJSON" + } + } + }, + "exposed": "Window Worker", + "name": "PerformanceEntry", + "extends": "Object", + "properties": { + "property": { + "name": { + "specs": "performance-timeline", + "exposed": "Window Worker", + "name": "name", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "duration": { + "specs": "performance-timeline", + "exposed": "Window Worker", + "name": "duration", + "type": "double", + "type-original": "DOMHighResTimeStamp", + "read-only": 1 + }, + "startTime": { + "specs": "performance-timeline", + "exposed": "Window Worker", + "name": "startTime", + "type": "double", + "type-original": "DOMHighResTimeStamp", + "read-only": 1 + }, + "entryType": { + "specs": "performance-timeline", + "exposed": "Window Worker", + "name": "entryType", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + } + } + } + }, + "XSLTProcessor": { + "constants": { + "constant": {} + }, + "specs": "none", + "constructor": { + "specs": "none", + "signature": [ + { + "type": "XSLTProcessor", + "type-original": "XSLTProcessor" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "clearParameters": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "clearParameters" + }, + "transformToDocument": { + "signature": [ + { + "param-min-required": 1, + "type": "Document", + "param": [ + { + "name": "source", + "type": "Node", + "type-original": "Node" + } + ], + "type-original": "Document" + } + ], + "specs": "none", + "exposed": "Window", + "name": "transformToDocument" + }, + "reset": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "reset" + }, + "transformToFragment": { + "signature": [ + { + "param-min-required": 2, + "type": "DocumentFragment", + "param": [ + { + "name": "source", + "type": "Node", + "type-original": "Node" + }, + { + "name": "document", + "type": "Document", + "type-original": "Document" + } + ], + "type-original": "DocumentFragment" + } + ], + "specs": "none", + "exposed": "Window", + "name": "transformToFragment" + }, + "importStylesheet": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "style", + "type": "Node", + "type-original": "Node" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "importStylesheet" + }, + "setParameter": { + "signature": [ + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "treat-null-as": "EmptyString", + "name": "namespaceURI", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "localName", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "value", + "type": "any", + "type-original": "any" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "setParameter" + }, + "removeParameter": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "treat-null-as": "EmptyString", + "name": "namespaceURI", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "localName", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "removeParameter" + }, + "getParameter": { + "signature": [ + { + "param-min-required": 2, + "type": "any", + "param": [ + { + "treat-null-as": "EmptyString", + "name": "namespaceURI", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "localName", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "any" + } + ], + "specs": "none", + "exposed": "Window", + "name": "getParameter" + } + } + }, + "name": "XSLTProcessor", + "extends": "Object", + "properties": { + "property": {} + } + }, + "MSMediaKeys": { + "specs": "encrypted-media-20130510", + "constructor": { + "specs": "encrypted-media-20130510", + "signature": [ + { + "param-min-required": 1, + "type": "MSMediaKeys", + "param": [ + { + "name": "keySystem", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "MSMediaKeys" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "MSMediaKeys", + "properties": { + "property": { + "keySystem": { + "specs": "encrypted-media-20130510", + "exposed": "Window", + "name": "keySystem", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "createSession": { + "signature": [ + { + "param-min-required": 2, + "type": "MSMediaKeySession", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "initData", + "type": "Uint8Array", + "type-original": "Uint8Array" + }, + { + "nullable": 1, + "name": "cdmData", + "type": "Uint8Array", + "optional": 1, + "type-original": "Uint8Array?" + } + ], + "type-original": "MSMediaKeySession" + } + ], + "specs": "encrypted-media-20130510", + "exposed": "Window", + "name": "createSession" + }, + "isTypeSupported": { + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "keySystem", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "nullable": 1, + "name": "type", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString?" + } + ], + "type-original": "boolean" + } + ], + "specs": "encrypted-media-20130510", + "exposed": "Window", + "name": "isTypeSupported", + "static": 1 + }, + "isTypeSupportedWithFeatures": { + "signature": [ + { + "param-min-required": 1, + "type": "DOMString", + "param": [ + { + "name": "keySystem", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "nullable": 1, + "name": "type", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString?" + } + ], + "type-original": "DOMString" + } + ], + "specs": "encrypted-media-20130510", + "exposed": "Window", + "name": "isTypeSupportedWithFeatures", + "static": 1 + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "WheelEvent": { + "specs": "uievents", + "constructor": { + "specs": "uievents", + "signature": [ + { + "param-min-required": 1, + "type": "WheelEvent", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "WheelEventInit", + "optional": 1, + "type-original": "WheelEventInit" + } + ], + "type-original": "WheelEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "WheelEvent", + "properties": { + "property": { + "deltaZ": { + "specs": "uievents", + "exposed": "Window", + "name": "deltaZ", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "wheelDeltaY": { + "specs": "uievents", + "exposed": "Window", + "name": "wheelDeltaY", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "wheelDelta": { + "specs": "uievents", + "exposed": "Window", + "name": "wheelDelta", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "deltaX": { + "specs": "uievents", + "exposed": "Window", + "name": "deltaX", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "deltaMode": { + "specs": "uievents", + "name": "deltaMode", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + }, + "deltaY": { + "specs": "uievents", + "exposed": "Window", + "name": "deltaY", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "wheelDeltaX": { + "specs": "uievents", + "exposed": "Window", + "name": "wheelDeltaX", + "type": "long", + "type-original": "long", + "read-only": 1 + } + } + }, + "constants": { + "constant": { + "DOM_DELTA_PIXEL": { + "specs": "uievents", + "value": "0x00", + "exposed": "Window", + "name": "DOM_DELTA_PIXEL", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "DOM_DELTA_LINE": { + "specs": "uievents", + "value": "0x01", + "exposed": "Window", + "name": "DOM_DELTA_LINE", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "DOM_DELTA_PAGE": { + "specs": "uievents", + "value": "0x02", + "exposed": "Window", + "name": "DOM_DELTA_PAGE", + "type": "unsigned long", + "type-original": "unsigned long" + } + } + }, + "exposed": "Window", + "methods": { + "method": { + "getCurrentPoint": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "element", + "type": "Element", + "type-original": "Element" + } + ], + "type-original": "void" + } + ], + "specs": "uievents", + "exposed": "Window", + "name": "getCurrentPoint" + }, + "initWheelEvent": { + "signature": [ + { + "param-min-required": 16, + "type": "void", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "canBubbleArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "cancelableArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "viewArg", + "type": "Window", + "type-original": "Window" + }, + { + "name": "detailArg", + "type": "long", + "type-original": "long" + }, + { + "name": "screenXArg", + "type": "long", + "type-original": "long" + }, + { + "name": "screenYArg", + "type": "long", + "type-original": "long" + }, + { + "name": "clientXArg", + "type": "long", + "type-original": "long" + }, + { + "name": "clientYArg", + "type": "long", + "type-original": "long" + }, + { + "name": "buttonArg", + "type": "unsigned short", + "type-original": "unsigned short" + }, + { + "name": "relatedTargetArg", + "type": "EventTarget", + "type-original": "EventTarget" + }, + { + "name": "modifiersListArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "deltaXArg", + "type": "long", + "type-original": "long" + }, + { + "name": "deltaYArg", + "type": "long", + "type-original": "long" + }, + { + "name": "deltaZArg", + "type": "long", + "type-original": "long" + }, + { + "name": "deltaMode", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "void" + } + ], + "specs": "uievents", + "exposed": "Window", + "name": "initWheelEvent" + } + } + }, + "extends": "MouseEvent" + }, + "SVGPathElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "value-syntax": "svg_path_data", + "name": "d" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "clip-path" + }, + { + "enum-values": "nonzero evenodd inherit", + "value-syntax": "enum", + "name": "clip-rule" + }, + { + "enum-values": "inherit initial", + "value-syntax": "css_color", + "name": "color" + }, + { + "enum-values": "auto default none context-menu help pointer progress wait cell crosshair text vertical-text alias copy move no-drop not-allowed e-resize n-resize ne-resize nw-resize s-resize se-resize sw-resize w-resize ew-resize ns-resize nesw-resize nwse-resize col-resize row-resize all-scroll zoom-in zoom-out inherit", + "value-syntax": "comma_separated_css_url_with_optional_x_y_offset_followed_by_enum", + "name": "cursor" + }, + { + "enum-values": "inline block inline-block list-item table inline-table table-header-group table-footer-group table-row-group table-column-group table-row table-column table-cell table-caption run-in ruby ruby-base ruby-text ruby-base-container flex inline-flex -ms-grid -ms-inline-grid none inherit initial", + "value-syntax": "enum", + "name": "display" + }, + { + "enum-values": "none currentColor inherit", + "value-syntax": "svg_paint_or_css_color", + "name": "fill" + }, + { + "enum-values": "inherit", + "value-syntax": "0_to_1_floating_point_number", + "name": "fill-opacity" + }, + { + "enum-values": "nonzero evenodd inherit", + "value-syntax": "enum", + "name": "fill-rule" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "filter" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "marker" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "marker-end" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "marker-mid" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "marker-start" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "mask" + }, + { + "enum-values": "inherit initial", + "value-syntax": "0_to_1_floating_point_number", + "name": "opacity" + }, + { + "enum-values": "auto none visiblePainted visibleFill visibleStroke visible painted fill stroke all inherit initial", + "value-syntax": "enum", + "name": "pointer-events" + }, + { + "enum-values": "none currentColor inherit", + "value-syntax": "svg_paint_or_css_color", + "name": "stroke" + }, + { + "enum-values": "none inherit", + "value-syntax": "comma_or_space_separated_css_percentage_or_length", + "name": "stroke-dasharray" + }, + { + "enum-values": "inherit", + "value-syntax": "css_percentage_or_length", + "name": "stroke-dashoffset" + }, + { + "enum-values": "butt round square inherit", + "value-syntax": "enum", + "name": "stroke-linecap" + }, + { + "enum-values": "miter round bevel inherit", + "value-syntax": "enum", + "name": "stroke-linejoin" + }, + { + "enum-values": "inherit", + "value-syntax": "1_or_greater_floating_point_number", + "name": "stroke-miterlimit" + }, + { + "enum-values": "inherit", + "value-syntax": "0_to_1_floating_point_number", + "name": "stroke-opacity" + }, + { + "enum-values": "inherit", + "value-syntax": "css_percentage_or_length", + "name": "stroke-width" + }, + { + "enum-values": "visible hidden collapse inherit initial", + "value-syntax": "enum", + "name": "visibility" + } + ] + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGPathElement", + "properties": { + "property": { + "pathSegList": { + "specs": "svg11", + "name": "pathSegList", + "type-original": "SVGPathSegList", + "deprecated": 1, + "interop": 1, + "exposed": "Window", + "type": "SVGPathSegList", + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "svg2", + "namespace": "SVG", + "name": "path" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": { + "getPathSegAtLength": { + "deprecated": 1, + "interop": 1, + "signature": [ + { + "param-min-required": 1, + "type": "unsigned long", + "param": [ + { + "name": "distance", + "type": "float", + "type-original": "float" + } + ], + "type-original": "unsigned long" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "getPathSegAtLength" + }, + "getPointAtLength": { + "specs": "svg11", + "signature": [ + { + "param-min-required": 1, + "type": "SVGPoint", + "param": [ + { + "name": "distance", + "type": "float", + "type-original": "float" + } + ], + "type-original": "SVGPoint" + } + ], + "name": "getPointAtLength", + "exposed": "Window" + }, + "createSVGPathSegCurvetoQuadraticAbs": { + "deprecated": 1, + "interop": 1, + "signature": [ + { + "param-min-required": 4, + "type": "SVGPathSegCurvetoQuadraticAbs", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + }, + { + "name": "x1", + "type": "float", + "type-original": "float" + }, + { + "name": "y1", + "type": "float", + "type-original": "float" + } + ], + "type-original": "SVGPathSegCurvetoQuadraticAbs" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "createSVGPathSegCurvetoQuadraticAbs" + }, + "createSVGPathSegLinetoRel": { + "deprecated": 1, + "interop": 1, + "signature": [ + { + "param-min-required": 2, + "type": "SVGPathSegLinetoRel", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + } + ], + "type-original": "SVGPathSegLinetoRel" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "createSVGPathSegLinetoRel" + }, + "createSVGPathSegCurvetoQuadraticRel": { + "deprecated": 1, + "interop": 1, + "signature": [ + { + "param-min-required": 4, + "type": "SVGPathSegCurvetoQuadraticRel", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + }, + { + "name": "x1", + "type": "float", + "type-original": "float" + }, + { + "name": "y1", + "type": "float", + "type-original": "float" + } + ], + "type-original": "SVGPathSegCurvetoQuadraticRel" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "createSVGPathSegCurvetoQuadraticRel" + }, + "createSVGPathSegCurvetoCubicAbs": { + "deprecated": 1, + "interop": 1, + "signature": [ + { + "param-min-required": 6, + "type": "SVGPathSegCurvetoCubicAbs", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + }, + { + "name": "x1", + "type": "float", + "type-original": "float" + }, + { + "name": "y1", + "type": "float", + "type-original": "float" + }, + { + "name": "x2", + "type": "float", + "type-original": "float" + }, + { + "name": "y2", + "type": "float", + "type-original": "float" + } + ], + "type-original": "SVGPathSegCurvetoCubicAbs" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "createSVGPathSegCurvetoCubicAbs" + }, + "createSVGPathSegLinetoAbs": { + "deprecated": 1, + "interop": 1, + "signature": [ + { + "param-min-required": 2, + "type": "SVGPathSegLinetoAbs", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + } + ], + "type-original": "SVGPathSegLinetoAbs" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "createSVGPathSegLinetoAbs" + }, + "createSVGPathSegClosePath": { + "interop": 1, + "deprecated": 1, + "specs": "svg11", + "signature": [ + { + "type": "SVGPathSegClosePath", + "type-original": "SVGPathSegClosePath" + } + ], + "name": "createSVGPathSegClosePath", + "exposed": "Window" + }, + "createSVGPathSegCurvetoCubicRel": { + "deprecated": 1, + "interop": 1, + "signature": [ + { + "param-min-required": 6, + "type": "SVGPathSegCurvetoCubicRel", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + }, + { + "name": "x1", + "type": "float", + "type-original": "float" + }, + { + "name": "y1", + "type": "float", + "type-original": "float" + }, + { + "name": "x2", + "type": "float", + "type-original": "float" + }, + { + "name": "y2", + "type": "float", + "type-original": "float" + } + ], + "type-original": "SVGPathSegCurvetoCubicRel" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "createSVGPathSegCurvetoCubicRel" + }, + "createSVGPathSegCurvetoQuadraticSmoothRel": { + "deprecated": 1, + "interop": 1, + "signature": [ + { + "param-min-required": 2, + "type": "SVGPathSegCurvetoQuadraticSmoothRel", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + } + ], + "type-original": "SVGPathSegCurvetoQuadraticSmoothRel" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "createSVGPathSegCurvetoQuadraticSmoothRel" + }, + "createSVGPathSegMovetoRel": { + "deprecated": 1, + "interop": 1, + "signature": [ + { + "param-min-required": 2, + "type": "SVGPathSegMovetoRel", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + } + ], + "type-original": "SVGPathSegMovetoRel" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "createSVGPathSegMovetoRel" + }, + "createSVGPathSegCurvetoCubicSmoothAbs": { + "deprecated": 1, + "interop": 1, + "signature": [ + { + "param-min-required": 4, + "type": "SVGPathSegCurvetoCubicSmoothAbs", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + }, + { + "name": "x2", + "type": "float", + "type-original": "float" + }, + { + "name": "y2", + "type": "float", + "type-original": "float" + } + ], + "type-original": "SVGPathSegCurvetoCubicSmoothAbs" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "createSVGPathSegCurvetoCubicSmoothAbs" + }, + "createSVGPathSegMovetoAbs": { + "deprecated": 1, + "interop": 1, + "signature": [ + { + "param-min-required": 2, + "type": "SVGPathSegMovetoAbs", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + } + ], + "type-original": "SVGPathSegMovetoAbs" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "createSVGPathSegMovetoAbs" + }, + "createSVGPathSegLinetoVerticalRel": { + "deprecated": 1, + "interop": 1, + "signature": [ + { + "param-min-required": 1, + "type": "SVGPathSegLinetoVerticalRel", + "param": [ + { + "name": "y", + "type": "float", + "type-original": "float" + } + ], + "type-original": "SVGPathSegLinetoVerticalRel" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "createSVGPathSegLinetoVerticalRel" + }, + "createSVGPathSegArcRel": { + "deprecated": 1, + "interop": 1, + "signature": [ + { + "param-min-required": 7, + "type": "SVGPathSegArcRel", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + }, + { + "name": "r1", + "type": "float", + "type-original": "float" + }, + { + "name": "r2", + "type": "float", + "type-original": "float" + }, + { + "name": "angle", + "type": "float", + "type-original": "float" + }, + { + "name": "largeArcFlag", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "sweepFlag", + "type": "boolean", + "type-original": "boolean" + } + ], + "type-original": "SVGPathSegArcRel" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "createSVGPathSegArcRel" + }, + "createSVGPathSegCurvetoQuadraticSmoothAbs": { + "deprecated": 1, + "interop": 1, + "signature": [ + { + "param-min-required": 2, + "type": "SVGPathSegCurvetoQuadraticSmoothAbs", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + } + ], + "type-original": "SVGPathSegCurvetoQuadraticSmoothAbs" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "createSVGPathSegCurvetoQuadraticSmoothAbs" + }, + "createSVGPathSegLinetoHorizontalRel": { + "deprecated": 1, + "interop": 1, + "signature": [ + { + "param-min-required": 1, + "type": "SVGPathSegLinetoHorizontalRel", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + } + ], + "type-original": "SVGPathSegLinetoHorizontalRel" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "createSVGPathSegLinetoHorizontalRel" + }, + "getTotalLength": { + "specs": "svg11", + "signature": [ + { + "type": "float", + "type-original": "float" + } + ], + "name": "getTotalLength", + "exposed": "Window" + }, + "createSVGPathSegCurvetoCubicSmoothRel": { + "deprecated": 1, + "interop": 1, + "signature": [ + { + "param-min-required": 4, + "type": "SVGPathSegCurvetoCubicSmoothRel", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + }, + { + "name": "x2", + "type": "float", + "type-original": "float" + }, + { + "name": "y2", + "type": "float", + "type-original": "float" + } + ], + "type-original": "SVGPathSegCurvetoCubicSmoothRel" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "createSVGPathSegCurvetoCubicSmoothRel" + }, + "createSVGPathSegLinetoHorizontalAbs": { + "deprecated": 1, + "interop": 1, + "signature": [ + { + "param-min-required": 1, + "type": "SVGPathSegLinetoHorizontalAbs", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + } + ], + "type-original": "SVGPathSegLinetoHorizontalAbs" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "createSVGPathSegLinetoHorizontalAbs" + }, + "createSVGPathSegLinetoVerticalAbs": { + "deprecated": 1, + "interop": 1, + "signature": [ + { + "param-min-required": 1, + "type": "SVGPathSegLinetoVerticalAbs", + "param": [ + { + "name": "y", + "type": "float", + "type-original": "float" + } + ], + "type-original": "SVGPathSegLinetoVerticalAbs" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "createSVGPathSegLinetoVerticalAbs" + }, + "createSVGPathSegArcAbs": { + "deprecated": 1, + "interop": 1, + "signature": [ + { + "param-min-required": 7, + "type": "SVGPathSegArcAbs", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + }, + { + "name": "r1", + "type": "float", + "type-original": "float" + }, + { + "name": "r2", + "type": "float", + "type-original": "float" + }, + { + "name": "angle", + "type": "float", + "type-original": "float" + }, + { + "name": "largeArcFlag", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "sweepFlag", + "type": "boolean", + "type-original": "boolean" + } + ], + "type-original": "SVGPathSegArcAbs" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "createSVGPathSegArcAbs" + } + } + }, + "exposed": "Window", + "extends": "SVGGraphicsElement" + }, + "IDBCursor": { + "specs": "indexeddb", + "anonymous-methods": { + "method": [] + }, + "name": "IDBCursor", + "properties": { + "property": { + "direction": { + "specs": "indexeddb", + "exposed": "Window", + "name": "direction", + "type": "IDBCursorDirection", + "type-original": "IDBCursorDirection", + "read-only": 1 + }, + "source": { + "specs": "indexeddb", + "exposed": "Window", + "name": "source", + "type": [ + { + "type": "IDBObjectStore" + }, + { + "type": "IDBIndex" + } + ], + "type-original": "(IDBObjectStore or IDBIndex)", + "read-only": 1 + }, + "primaryKey": { + "specs": "indexeddb", + "exposed": "Window", + "name": "primaryKey", + "type": "any", + "type-original": "any", + "read-only": 1 + }, + "key": { + "specs": "indexeddb", + "exposed": "Window", + "name": "key", + "type": "any", + "type-original": "any", + "read-only": 1 + } + } + }, + "constants": { + "constant": { + "PREV": { + "specs": "indexeddb", + "value": "prev", + "exposed": "Window", + "name": "PREV", + "type": "DOMString", + "type-original": "DOMString" + }, + "PREV_NO_DUPLICATE": { + "specs": "indexeddb", + "value": "prevunique", + "exposed": "Window", + "name": "PREV_NO_DUPLICATE", + "type": "DOMString", + "type-original": "DOMString" + }, + "NEXT": { + "specs": "indexeddb", + "value": "next", + "exposed": "Window", + "name": "NEXT", + "type": "DOMString", + "type-original": "DOMString" + }, + "NEXT_NO_DUPLICATE": { + "specs": "indexeddb", + "value": "nextunique", + "exposed": "Window", + "name": "NEXT_NO_DUPLICATE", + "type": "DOMString", + "type-original": "DOMString" + } + } + }, + "exposed": "Window", + "methods": { + "method": { + "advance": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "count", + "enforce-range": 1, + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "void" + } + ], + "specs": "indexeddb", + "exposed": "Window", + "name": "advance" + }, + "delete": { + "signature": [ + { + "type": "IDBRequest", + "type-original": "IDBRequest" + } + ], + "specs": "indexeddb", + "exposed": "Window", + "name": "delete" + }, + "continue": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "key", + "default": "0", + "type": "any", + "optional": 1, + "type-original": "any" + } + ], + "type-original": "void" + } + ], + "specs": "indexeddb", + "exposed": "Window", + "name": "continue" + }, + "update": { + "signature": [ + { + "param-min-required": 1, + "type": "IDBRequest", + "param": [ + { + "name": "value", + "type": "any", + "type-original": "any" + } + ], + "type-original": "IDBRequest" + } + ], + "specs": "indexeddb", + "exposed": "Window", + "name": "update" + } + } + }, + "extends": "Object" + }, + "SVGPathSegList": { + "specs": "svg11", + "anonymous-methods": { + "method": [] + }, + "name": "SVGPathSegList", + "properties": { + "property": { + "numberOfItems": { + "specs": "svg11", + "name": "numberOfItems", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "methods": { + "method": { + "replaceItem": { + "signature": [ + { + "param-min-required": 2, + "type": "SVGPathSeg", + "param": [ + { + "name": "newItem", + "type": "SVGPathSeg", + "type-original": "SVGPathSeg" + }, + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "SVGPathSeg" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "replaceItem" + }, + "getItem": { + "signature": [ + { + "param-min-required": 1, + "type": "SVGPathSeg", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "SVGPathSeg" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "getItem" + }, + "appendItem": { + "signature": [ + { + "param-min-required": 1, + "type": "SVGPathSeg", + "param": [ + { + "name": "newItem", + "type": "SVGPathSeg", + "type-original": "SVGPathSeg" + } + ], + "type-original": "SVGPathSeg" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "appendItem" + }, + "clear": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "clear" + }, + "removeItem": { + "signature": [ + { + "param-min-required": 1, + "type": "SVGPathSeg", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "SVGPathSeg" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "removeItem" + }, + "initialize": { + "signature": [ + { + "param-min-required": 1, + "type": "SVGPathSeg", + "param": [ + { + "name": "newItem", + "type": "SVGPathSeg", + "type-original": "SVGPathSeg" + } + ], + "type-original": "SVGPathSeg" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "initialize" + }, + "insertItemBefore": { + "signature": [ + { + "param-min-required": 2, + "type": "SVGPathSeg", + "param": [ + { + "name": "newItem", + "type": "SVGPathSeg", + "type-original": "SVGPathSeg" + }, + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "SVGPathSeg" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "insertItemBefore" + } + } + }, + "extends": "Object" + }, + "HTMLAudioElement": { + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLAudioElement", + "named-constructor": { + "specs": "html5", + "signature": [ + { + "param-min-required": 0, + "type": "HTMLAudioElement", + "param": [ + { + "name": "src", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + } + ], + "type-original": "HTMLAudioElement" + } + ], + "name": "Audio" + }, + "properties": { + "property": {} + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "audio" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLMediaElement" + }, + "Client": { + "specs": "service-workers", + "anonymous-methods": { + "method": [] + }, + "name": "Client", + "properties": { + "property": { + "url": { + "specs": "service-workers", + "exposed": "Worker", + "name": "url", + "type": "USVString", + "type-original": "USVString", + "read-only": 1 + }, + "type": { + "specs": "service-workers", + "exposed": "Worker", + "name": "type", + "type": "ClientType", + "type-original": "ClientType", + "read-only": 1 + }, + "id": { + "specs": "service-workers", + "exposed": "Worker", + "name": "id", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "reserved": { + "specs": "service-workers", + "name": "reserved", + "type-original": "boolean", + "exposed": "Worker", + "type": "boolean", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Worker", + "methods": { + "method": { + "postMessage": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "message", + "type": "any", + "type-original": "any" + }, + { + "subtype": { + "type": "object" + }, + "name": "transfer", + "type": "sequence", + "optional": 1, + "type-original": "sequence" + } + ], + "type-original": "void" + } + ], + "specs": "service-workers", + "exposed": "Worker", + "name": "postMessage" + } + } + }, + "extends": "Object" + }, + "WebKitDirectoryEntry": { + "constants": { + "constant": {} + }, + "specs": "file-system-api", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "createReader": { + "signature": [ + { + "type": "WebKitDirectoryReader", + "type-original": "WebKitDirectoryReader" + } + ], + "specs": "file-system-api", + "exposed": "Window", + "name": "createReader" + } + } + }, + "name": "WebKitDirectoryEntry", + "extends": "WebKitEntry", + "properties": { + "property": {} + } + }, + "MimeType": { + "constants": { + "constant": {} + }, + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "MimeType", + "extends": "Object", + "properties": { + "property": { + "enabledPlugin": { + "specs": "html5", + "exposed": "Window", + "name": "enabledPlugin", + "type": "Plugin", + "type-original": "Plugin", + "read-only": 1 + }, + "suffixes": { + "specs": "html5", + "exposed": "Window", + "name": "suffixes", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "type": { + "specs": "html5", + "exposed": "Window", + "name": "type", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "description": { + "specs": "html5", + "exposed": "Window", + "name": "description", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + } + } + } + }, + "AudioBufferSourceNode": { + "specs": "webaudio", + "anonymous-methods": { + "method": [] + }, + "name": "AudioBufferSourceNode", + "properties": { + "property": { + "detune": { + "specs": "webaudio", + "exposed": "Window", + "name": "detune", + "type": "AudioParam", + "type-original": "AudioParam", + "read-only": 1 + }, + "playbackRate": { + "specs": "webaudio", + "exposed": "Window", + "name": "playbackRate", + "type": "AudioParam", + "type-original": "AudioParam", + "read-only": 1 + }, + "onended": { + "specs": "webaudio", + "name": "onended", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "ended" + }, + "loopEnd": { + "specs": "webaudio", + "exposed": "Window", + "name": "loopEnd", + "type": "double", + "type-original": "double" + }, + "buffer": { + "specs": "webaudio", + "nullable": 1, + "exposed": "Window", + "name": "buffer", + "type": "AudioBuffer", + "type-original": "AudioBuffer?" + }, + "loopStart": { + "specs": "webaudio", + "exposed": "Window", + "name": "loopStart", + "type": "double", + "type-original": "double" + }, + "loop": { + "specs": "webaudio", + "exposed": "Window", + "name": "loop", + "type": "boolean", + "type-original": "boolean" + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "Audio", + "name": "end", + "type": "Event", + "skips-window": 1 + } + ] + }, + "methods": { + "method": { + "stop": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "when", + "default": "0", + "type": "double", + "optional": 1, + "type-original": "double" + } + ], + "type-original": "void" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "stop" + }, + "start": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "when", + "default": "0", + "type": "double", + "optional": 1, + "type-original": "double" + }, + { + "name": "offset", + "type": "double", + "optional": 1, + "type-original": "double" + }, + { + "name": "duration", + "type": "double", + "optional": 1, + "type-original": "double" + } + ], + "type-original": "void" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "start" + } + } + }, + "exposed": "Window", + "extends": "AudioNode" + }, + "PointerEvent": { + "specs": "pointer-events", + "constructor": { + "specs": "pointer-events", + "signature": [ + { + "param-min-required": 1, + "type": "PointerEvent", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "PointerEventInit", + "optional": 1, + "type-original": "PointerEventInit" + } + ], + "type-original": "PointerEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "PointerEvent", + "properties": { + "property": { + "rotation": { + "specs": "pointer-events", + "exposed": "Window", + "name": "rotation", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "width": { + "specs": "pointer-events", + "exposed": "Window", + "name": "width", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "pressure": { + "specs": "pointer-events", + "exposed": "Window", + "name": "pressure", + "type": "float", + "type-original": "float", + "read-only": 1 + }, + "isPrimary": { + "specs": "pointer-events", + "exposed": "Window", + "name": "isPrimary", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "pointerType": { + "specs": "pointer-events", + "exposed": "Window", + "name": "pointerType", + "type": "any", + "type-original": "any", + "read-only": 1 + }, + "tiltY": { + "specs": "pointer-events", + "exposed": "Window", + "name": "tiltY", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "height": { + "specs": "pointer-events", + "exposed": "Window", + "name": "height", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "intermediatePoints": { + "specs": "pointer-events", + "name": "intermediatePoints", + "type-original": "any", + "exposed": "Window", + "type": "any", + "read-only": 1 + }, + "currentPoint": { + "specs": "pointer-events", + "name": "currentPoint", + "type-original": "any", + "exposed": "Window", + "type": "any", + "read-only": 1 + }, + "tiltX": { + "specs": "pointer-events", + "exposed": "Window", + "name": "tiltX", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "pointerId": { + "specs": "pointer-events", + "exposed": "Window", + "name": "pointerId", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "hwTimestamp": { + "specs": "pointer-events", + "exposed": "Window", + "name": "hwTimestamp", + "type": "unsigned long long", + "type-original": "unsigned long long", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "getCurrentPoint": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "element", + "type": "Element", + "type-original": "Element" + } + ], + "type-original": "void" + } + ], + "specs": "pointer-events", + "exposed": "Window", + "name": "getCurrentPoint" + }, + "initPointerEvent": { + "signature": [ + { + "param-min-required": 27, + "type": "void", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "canBubbleArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "cancelableArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "viewArg", + "type": "Window", + "type-original": "Window" + }, + { + "name": "detailArg", + "type": "long", + "type-original": "long" + }, + { + "name": "screenXArg", + "type": "long", + "type-original": "long" + }, + { + "name": "screenYArg", + "type": "long", + "type-original": "long" + }, + { + "name": "clientXArg", + "type": "float", + "type-original": "float" + }, + { + "name": "clientYArg", + "type": "float", + "type-original": "float" + }, + { + "name": "ctrlKeyArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "altKeyArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "shiftKeyArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "metaKeyArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "buttonArg", + "type": "unsigned short", + "type-original": "unsigned short" + }, + { + "name": "relatedTargetArg", + "type": "EventTarget", + "type-original": "EventTarget" + }, + { + "name": "offsetXArg", + "type": "float", + "type-original": "float" + }, + { + "name": "offsetYArg", + "type": "float", + "type-original": "float" + }, + { + "name": "widthArg", + "type": "long", + "type-original": "long" + }, + { + "name": "heightArg", + "type": "long", + "type-original": "long" + }, + { + "name": "pressure", + "type": "float", + "type-original": "float" + }, + { + "name": "rotation", + "type": "long", + "type-original": "long" + }, + { + "name": "tiltX", + "type": "long", + "type-original": "long" + }, + { + "name": "tiltY", + "type": "long", + "type-original": "long" + }, + { + "name": "pointerIdArg", + "type": "long", + "type-original": "long" + }, + { + "name": "pointerType", + "type": "any", + "type-original": "any" + }, + { + "name": "hwTimestampArg", + "type": "unsigned long long", + "type-original": "unsigned long long" + }, + { + "name": "isPrimary", + "type": "boolean", + "type-original": "boolean" + } + ], + "type-original": "void" + } + ], + "specs": "pointer-events", + "exposed": "Window", + "name": "initPointerEvent" + }, + "getIntermediatePoints": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "element", + "type": "Element", + "type-original": "Element" + } + ], + "type-original": "void" + } + ], + "specs": "pointer-events", + "exposed": "Window", + "name": "getIntermediatePoints" + } + } + }, + "exposed": "Window", + "extends": "MouseEvent" + }, + "SVGCircleElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "clip-path" + }, + { + "enum-values": "nonzero evenodd inherit", + "value-syntax": "enum", + "name": "clip-rule" + }, + { + "enum-values": "inherit initial", + "value-syntax": "css_color", + "name": "color" + }, + { + "enum-values": "auto default none context-menu help pointer progress wait cell crosshair text vertical-text alias copy move no-drop not-allowed e-resize n-resize ne-resize nw-resize s-resize se-resize sw-resize w-resize ew-resize ns-resize nesw-resize nwse-resize col-resize row-resize all-scroll zoom-in zoom-out inherit", + "value-syntax": "comma_separated_css_url_with_optional_x_y_offset_followed_by_enum", + "name": "cursor" + }, + { + "enum-values": "inline block inline-block list-item table inline-table table-header-group table-footer-group table-row-group table-column-group table-row table-column table-cell table-caption run-in ruby ruby-base ruby-text ruby-base-container flex inline-flex -ms-grid -ms-inline-grid none inherit initial", + "value-syntax": "enum", + "name": "display" + }, + { + "enum-values": "none currentColor inherit", + "value-syntax": "svg_paint_or_css_color", + "name": "fill" + }, + { + "enum-values": "inherit", + "value-syntax": "0_to_1_floating_point_number", + "name": "fill-opacity" + }, + { + "enum-values": "nonzero evenodd inherit", + "value-syntax": "enum", + "name": "fill-rule" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "filter" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "mask" + }, + { + "enum-values": "inherit initial", + "value-syntax": "0_to_1_floating_point_number", + "name": "opacity" + }, + { + "enum-values": "auto none visiblePainted visibleFill visibleStroke visible painted fill stroke all inherit initial", + "value-syntax": "enum", + "name": "pointer-events" + }, + { + "enum-values": "none currentColor inherit", + "value-syntax": "svg_paint_or_css_color", + "name": "stroke" + }, + { + "enum-values": "none inherit", + "value-syntax": "comma_or_space_separated_css_percentage_or_length", + "name": "stroke-dasharray" + }, + { + "enum-values": "inherit", + "value-syntax": "css_percentage_or_length", + "name": "stroke-dashoffset" + }, + { + "enum-values": "butt round square inherit", + "value-syntax": "enum", + "name": "stroke-linecap" + }, + { + "enum-values": "miter round bevel inherit", + "value-syntax": "enum", + "name": "stroke-linejoin" + }, + { + "enum-values": "inherit", + "value-syntax": "1_or_greater_floating_point_number", + "name": "stroke-miterlimit" + }, + { + "enum-values": "inherit", + "value-syntax": "0_to_1_floating_point_number", + "name": "stroke-opacity" + }, + { + "enum-values": "inherit", + "value-syntax": "css_percentage_or_length", + "name": "stroke-width" + }, + { + "enum-values": "visible hidden collapse inherit initial", + "value-syntax": "enum", + "name": "visibility" + } + ] + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGCircleElement", + "properties": { + "property": { + "cx": { + "specs": "svg2", + "same-object": 1, + "name": "cx", + "constant": 1, + "content-attribute": "cx", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + }, + "r": { + "specs": "svg2", + "same-object": 1, + "name": "r", + "constant": 1, + "content-attribute": "r", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + }, + "cy": { + "specs": "svg2", + "same-object": 1, + "name": "cy", + "constant": 1, + "content-attribute": "cy", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "svg2", + "namespace": "SVG", + "name": "circle" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGGraphicsElement" + }, + "HTMLBaseFontElement": { + "specs": "DOM-Level-2-HTML", + "anonymous-methods": { + "method": [] + }, + "name": "HTMLBaseFontElement", + "properties": { + "property": { + "face": { + "specs": "DOM-Level-2-HTML", + "name": "face", + "content-attribute": "face", + "type-original": "DOMString", + "deprecated": 1, + "exposed": "Window", + "content-attribute-value-syntax": "font_family", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "size": { + "specs": "DOM-Level-2-HTML", + "name": "size", + "content-attribute": "size", + "type-original": "long", + "deprecated": 1, + "exposed": "Window", + "content-attribute-value-syntax": "1_or_greater_integer", + "type": "long", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "basefont", + "html-self-closing": 1 + } + ], + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "HTMLElement", + "implements": [ + "DOML2DeprecatedColorProperty" + ] + }, + "CSSImportRule": { + "constants": { + "constant": {} + }, + "specs": "cssom", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "CSSImportRule", + "extends": "CSSRule", + "properties": { + "property": { + "styleSheet": { + "specs": "cssom", + "same-object": 1, + "name": "styleSheet", + "type-original": "CSSStyleSheet", + "exposed": "Window", + "type": "CSSStyleSheet", + "read-only": 1 + }, + "media": { + "put-forwards": "mediaText", + "specs": "cssom", + "same-object": 1, + "name": "media", + "type-original": "MediaList", + "exposed": "Window", + "type": "MediaList", + "read-only": 1 + }, + "href": { + "specs": "cssom", + "exposed": "Window", + "name": "href", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + } + } + } + }, + "Geolocation": { + "constants": { + "constant": {} + }, + "specs": "geolocation-api", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "clearWatch": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "watchId", + "type": "long", + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "geolocation-api", + "exposed": "Window", + "name": "clearWatch" + }, + "getCurrentPosition": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "successCallback", + "type": "PositionCallback", + "type-original": "PositionCallback" + }, + { + "name": "errorCallback", + "default": "0", + "type": "PositionErrorCallback", + "optional": 1, + "type-original": "PositionErrorCallback" + }, + { + "name": "options", + "default": "0", + "type": "PositionOptions", + "optional": 1, + "type-original": "PositionOptions" + } + ], + "type-original": "void" + } + ], + "specs": "geolocation-api", + "exposed": "Window", + "name": "getCurrentPosition" + }, + "watchPosition": { + "signature": [ + { + "param-min-required": 1, + "type": "long", + "param": [ + { + "name": "successCallback", + "type": "PositionCallback", + "type-original": "PositionCallback" + }, + { + "name": "errorCallback", + "default": "0", + "type": "PositionErrorCallback", + "optional": 1, + "type-original": "PositionErrorCallback" + }, + { + "name": "options", + "default": "0", + "type": "PositionOptions", + "optional": 1, + "type-original": "PositionOptions" + } + ], + "type-original": "long" + } + ], + "specs": "geolocation-api", + "exposed": "Window", + "name": "watchPosition" + } + } + }, + "name": "Geolocation", + "extends": "Object", + "properties": { + "property": {} + } + }, + "XMLHttpRequestUpload": { + "specs": "xhr", + "anonymous-methods": { + "method": [] + }, + "name": "XMLHttpRequestUpload", + "properties": { + "property": {} + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "precedes": "progress", + "dispatch": "sync-or-async", + "specs": "XHR", + "name": "readystatechange", + "follows": "loadstart", + "type": "ProgressEvent", + "skips-window": 1 + }, + { + "precedes": "load", + "dispatch": "sync-or-async", + "specs": "XHR", + "name": "progress", + "follows": "readystatechange", + "type": "ProgressEvent", + "skips-window": 1 + }, + { + "dispatch": "sync-or-async", + "specs": "XHR", + "name": "abort", + "type": "ProgressEvent", + "skips-window": 1 + }, + { + "dispatch": "sync-or-async", + "specs": "XHR", + "name": "error", + "type": "ProgressEvent", + "skips-window": 1 + }, + { + "precedes": "loadend", + "dispatch": "sync-or-async", + "specs": "XHR", + "name": "load", + "follows": "progress", + "type": "ProgressEvent", + "skips-window": 1 + }, + { + "precedes": "readystatechange", + "dispatch": "sync-or-async", + "specs": "XHR", + "name": "loadstart", + "type": "ProgressEvent", + "skips-window": 1 + }, + { + "dispatch": "sync-or-async", + "specs": "XHR", + "name": "loadend", + "follows": "load", + "type": "ProgressEvent", + "skips-window": 1 + }, + { + "dispatch": "sync-or-async", + "specs": "XHR", + "name": "timeout", + "type": "ProgressEvent", + "skips-window": 1 + } + ] + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "EventTarget", + "implements": [ + "XMLHttpRequestEventTarget" + ] + }, + "HTMLMarqueeElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLMarqueeElement", + "properties": { + "property": { + "onbounce": { + "specs": "html5", + "name": "onbounce", + "content-attribute": "onbounce", + "type-original": "EventHandler", + "deprecated": 1, + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "javascript", + "type": "EventHandlerNonNull", + "event-handler": "bounce" + }, + "width": { + "specs": "html5", + "ce-reactions": 1, + "name": "width", + "content-attribute": "width", + "type-original": "DOMString", + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "content-attribute-value-syntax": "non_negative_integer", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "vspace": { + "specs": "html5", + "ce-reactions": 1, + "name": "vspace", + "content-attribute": "vspace", + "type-original": "unsigned long", + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "content-attribute-value-syntax": "non_negative_integer", + "content-attribute-reflects": 1, + "type": "unsigned long" + }, + "trueSpeed": { + "specs": "html5", + "ce-reactions": 1, + "name": "trueSpeed", + "content-attribute": "truespeed", + "type-original": "boolean", + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "boolean", + "content-attribute-boolean": 1 + }, + "scrollDelay": { + "specs": "html5", + "ce-reactions": 1, + "name": "scrollDelay", + "content-attribute": "scrolldelay", + "type-original": "unsigned long", + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "content-attribute-value-syntax": "non_negative_integer", + "content-attribute-reflects": 1, + "type": "unsigned long" + }, + "scrollAmount": { + "specs": "html5", + "ce-reactions": 1, + "name": "scrollAmount", + "content-attribute": "scrollamount", + "type-original": "unsigned long", + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "content-attribute-value-syntax": "non_negative_integer", + "content-attribute-reflects": 1, + "type": "unsigned long" + }, + "height": { + "specs": "html5", + "ce-reactions": 1, + "name": "height", + "content-attribute": "height", + "type-original": "DOMString", + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "content-attribute-value-syntax": "non_negative_integer", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "behavior": { + "content-attribute-enum-values": "scroll slide alternate", + "specs": "html5", + "ce-reactions": 1, + "name": "behavior", + "content-attribute": "behavior", + "type-original": "DOMString", + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "loop": { + "specs": "html5", + "ce-reactions": 1, + "name": "loop", + "content-attribute": "loop", + "type-original": "long", + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "long", + "content-attribute-boolean": 1 + }, + "direction": { + "content-attribute-enum-values": "left right up down", + "specs": "html5", + "ce-reactions": 1, + "name": "direction", + "content-attribute": "direction", + "type-original": "DOMString", + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "bgColor": { + "specs": "html5", + "ce-reactions": 1, + "name": "bgColor", + "content-attribute": "bgcolor", + "type-original": "DOMString", + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "content-attribute-value-syntax": "simple_color", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "hspace": { + "specs": "html5", + "ce-reactions": 1, + "name": "hspace", + "content-attribute": "hspace", + "type-original": "unsigned long", + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "content-attribute-value-syntax": "non_negative_integer", + "content-attribute-reflects": 1, + "type": "unsigned long" + }, + "onstart": { + "specs": "html5", + "name": "onstart", + "content-attribute": "onstart", + "type-original": "EventHandler", + "deprecated": 1, + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "javascript", + "type": "EventHandlerNonNull", + "event-handler": "start" + }, + "onfinish": { + "specs": "html5", + "name": "onfinish", + "content-attribute": "onfinish", + "type-original": "EventHandler", + "deprecated": 1, + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "javascript", + "type": "EventHandlerNonNull", + "event-handler": "finish" + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "marquee" + } + ], + "constants": { + "constant": {} + }, + "events": { + "event": [] + }, + "exposed": "Window", + "methods": { + "method": { + "stop": { + "deprecated": 1, + "interop": 1, + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "stop" + }, + "start": { + "deprecated": 1, + "interop": 1, + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "start" + } + } + }, + "extends": "HTMLElement" + }, + "EXT_texture_filter_anisotropic": { + "specs": "webgl", + "anonymous-methods": { + "method": [] + }, + "name": "EXT_texture_filter_anisotropic", + "properties": { + "property": {} + }, + "constants": { + "constant": { + "TEXTURE_MAX_ANISOTROPY_EXT": { + "specs": "webgl", + "value": "0x84FE", + "exposed": "Window", + "name": "TEXTURE_MAX_ANISOTROPY_EXT", + "type": "unsigned long", + "type-original": "GLenum" + }, + "MAX_TEXTURE_MAX_ANISOTROPY_EXT": { + "specs": "webgl", + "value": "0x84FF", + "exposed": "Window", + "name": "MAX_TEXTURE_MAX_ANISOTROPY_EXT", + "type": "unsigned long", + "type-original": "GLenum" + } + } + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "FileReaderSync": { + "constants": { + "constant": {} + }, + "specs": "fileapi", + "constructor": { + "specs": "fileapi", + "signature": [ + { + "type": "FileReaderSync", + "type-original": "FileReaderSync" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": { + "readAsArrayBuffer": { + "signature": [ + { + "param-min-required": 1, + "type": "any", + "param": [ + { + "name": "blob", + "type": "Blob", + "type-original": "Blob" + } + ], + "type-original": "any" + } + ], + "specs": "fileapi", + "exposed": "Worker", + "name": "readAsArrayBuffer" + }, + "readAsDataURL": { + "signature": [ + { + "param-min-required": 1, + "type": "DOMString", + "param": [ + { + "name": "blob", + "type": "Blob", + "type-original": "Blob" + } + ], + "type-original": "DOMString" + } + ], + "specs": "fileapi", + "exposed": "Worker", + "name": "readAsDataURL" + }, + "readAsBinaryString": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "blob", + "type": "Blob", + "type-original": "Blob" + } + ], + "type-original": "void" + } + ], + "specs": "fileapi", + "exposed": "Worker", + "name": "readAsBinaryString" + }, + "readAsText": { + "signature": [ + { + "param-min-required": 1, + "type": "DOMString", + "param": [ + { + "name": "blob", + "type": "Blob", + "type-original": "Blob" + }, + { + "name": "encoding", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + } + ], + "type-original": "DOMString" + } + ], + "specs": "fileapi", + "exposed": "Worker", + "name": "readAsText" + } + } + }, + "exposed": "Worker", + "name": "FileReaderSync", + "extends": "Object", + "properties": { + "property": {} + } + }, + "OscillatorNode": { + "specs": "webaudio", + "anonymous-methods": { + "method": [] + }, + "name": "OscillatorNode", + "properties": { + "property": { + "frequency": { + "specs": "webaudio", + "exposed": "Window", + "name": "frequency", + "type": "AudioParam", + "type-original": "AudioParam", + "read-only": 1 + }, + "detune": { + "specs": "webaudio", + "exposed": "Window", + "name": "detune", + "type": "AudioParam", + "type-original": "AudioParam", + "read-only": 1 + }, + "onended": { + "specs": "webaudio", + "name": "onended", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "ended" + }, + "type": { + "specs": "webaudio", + "exposed": "Window", + "name": "type", + "type": "OscillatorType", + "type-original": "OscillatorType" + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "Audio", + "name": "end", + "type": "Event", + "skips-window": 1 + } + ] + }, + "methods": { + "method": { + "stop": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "when", + "default": "0", + "type": "double", + "optional": 1, + "type-original": "double" + } + ], + "type-original": "void" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "stop" + }, + "setPeriodicWave": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "periodicWave", + "type": "PeriodicWave", + "type-original": "PeriodicWave" + } + ], + "type-original": "void" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "setPeriodicWave" + }, + "start": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "when", + "default": "0", + "type": "double", + "optional": 1, + "type-original": "double" + } + ], + "type-original": "void" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "start" + } + } + }, + "exposed": "Window", + "extends": "AudioNode" + }, + "SVGPathSegCurvetoCubicAbs": { + "specs": "svg11", + "anonymous-methods": { + "method": [] + }, + "name": "SVGPathSegCurvetoCubicAbs", + "properties": { + "property": { + "y1": { + "specs": "svg11", + "exposed": "Window", + "name": "y1", + "type": "float", + "type-original": "float" + }, + "y": { + "specs": "svg11", + "exposed": "Window", + "name": "y", + "type": "float", + "type-original": "float" + }, + "x2": { + "specs": "svg11", + "exposed": "Window", + "name": "x2", + "type": "float", + "type-original": "float" + }, + "x": { + "specs": "svg11", + "exposed": "Window", + "name": "x", + "type": "float", + "type-original": "float" + }, + "y2": { + "specs": "svg11", + "exposed": "Window", + "name": "y2", + "type": "float", + "type-original": "float" + }, + "x1": { + "specs": "svg11", + "exposed": "Window", + "name": "x1", + "type": "float", + "type-original": "float" + } + } + }, + "constants": { + "constant": {} + }, + "interop": 1, + "deprecated": 1, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGPathSeg" + }, + "ListeningStateChangedEvent": { + "specs": "none", + "anonymous-methods": { + "method": [] + }, + "name": "ListeningStateChangedEvent", + "properties": { + "property": { + "label": { + "specs": "none", + "exposed": "Window", + "name": "label", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "state": { + "specs": "none", + "exposed": "Window", + "name": "state", + "type": "ListeningState", + "type-original": "ListeningState", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Event" + }, + "CSSRule": { + "specs": "cssom", + "anonymous-methods": { + "method": [] + }, + "name": "CSSRule", + "properties": { + "property": { + "cssText": { + "specs": "cssom", + "exposed": "Window", + "name": "cssText", + "type": "DOMString", + "type-original": "DOMString" + }, + "parentStyleSheet": { + "specs": "cssom", + "name": "parentStyleSheet", + "type-original": "CSSStyleSheet?", + "nullable": 1, + "exposed": "Window", + "type": "CSSStyleSheet", + "read-only": 1 + }, + "parentRule": { + "specs": "cssom", + "name": "parentRule", + "type-original": "CSSRule?", + "nullable": 1, + "exposed": "Window", + "type": "CSSRule", + "read-only": 1 + }, + "type": { + "specs": "cssom", + "exposed": "Window", + "name": "type", + "type": "unsigned short", + "type-original": "unsigned short", + "read-only": 1 + } + } + }, + "constants": { + "constant": { + "SUPPORTS_RULE": { + "specs": "css-conditional", + "value": "12", + "name": "SUPPORTS_RULE", + "exposed": "Window", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "VIEWPORT_RULE": { + "specs": "css-device-adapt", + "value": "15", + "name": "VIEWPORT_RULE", + "exposed": "Window", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "KEYFRAME_RULE": { + "specs": "css-animation", + "value": "8", + "name": "KEYFRAME_RULE", + "exposed": "Window", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "FONT_FACE_RULE": { + "specs": "cssom", + "value": "5", + "exposed": "Window", + "name": "FONT_FACE_RULE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "IMPORT_RULE": { + "specs": "cssom", + "value": "3", + "exposed": "Window", + "name": "IMPORT_RULE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "STYLE_RULE": { + "specs": "cssom", + "value": "1", + "exposed": "Window", + "name": "STYLE_RULE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "MEDIA_RULE": { + "specs": "cssom", + "value": "4", + "exposed": "Window", + "name": "MEDIA_RULE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "KEYFRAMES_RULE": { + "specs": "css-animation", + "value": "7", + "name": "KEYFRAMES_RULE", + "exposed": "Window", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "UNKNOWN_RULE": { + "specs": "cssom", + "value": "0", + "exposed": "Window", + "name": "UNKNOWN_RULE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "PAGE_RULE": { + "specs": "cssom", + "value": "6", + "exposed": "Window", + "name": "PAGE_RULE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "NAMESPACE_RULE": { + "specs": "cssom", + "value": "10", + "exposed": "Window", + "name": "NAMESPACE_RULE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "CHARSET_RULE": { + "specs": "cssom", + "value": "2", + "exposed": "Window", + "name": "CHARSET_RULE", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "SVGFEFuncRElement": { + "specs": "filter-effects", + "anonymous-methods": { + "method": [] + }, + "name": "SVGFEFuncRElement", + "properties": { + "property": {} + }, + "element": [ + { + "specs": "filter-effects", + "namespace": "SVG", + "name": "feFuncR" + } + ], + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "SVGComponentTransferFunctionElement" + }, + "WritableStreamDefaultWriter": { + "constants": { + "constant": {} + }, + "specs": "whatwg-streams", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "close": { + "signature": [ + { + "subtype": { + "type": "void" + }, + "type": "Promise", + "type-original": "Promise" + } + ], + "specs": "whatwg-streams", + "exposed": "Window", + "name": "close" + }, + "abort": { + "signature": [ + { + "subtype": { + "type": "void" + }, + "param-min-required": 0, + "type": "Promise", + "param": [ + { + "name": "reason", + "type": "any", + "optional": 1, + "type-original": "any" + } + ], + "type-original": "Promise" + } + ], + "specs": "whatwg-streams", + "exposed": "Window", + "name": "abort" + }, + "releaseLock": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "whatwg-streams", + "exposed": "Window", + "name": "releaseLock" + }, + "write": { + "signature": [ + { + "subtype": { + "type": "any" + }, + "param-min-required": 0, + "type": "Promise", + "param": [ + { + "name": "chunk", + "type": "any", + "optional": 1, + "type-original": "any" + } + ], + "type-original": "Promise" + } + ], + "specs": "whatwg-streams", + "exposed": "Window", + "name": "write" + } + } + }, + "name": "WritableStreamDefaultWriter", + "extends": "Object", + "properties": { + "property": { + "closed": { + "specs": "whatwg-streams", + "name": "closed", + "type-original": "Promise", + "subtype": { + "type": "void" + }, + "exposed": "Window", + "type": "Promise", + "read-only": 1 + }, + "desiredSize": { + "specs": "whatwg-streams", + "exposed": "Window", + "name": "desiredSize", + "type": "double", + "type-original": "double", + "read-only": 1 + }, + "ready": { + "specs": "whatwg-streams", + "name": "ready", + "type-original": "Promise", + "subtype": { + "type": "void" + }, + "exposed": "Window", + "type": "Promise", + "read-only": 1 + } + } + } + }, + "SVGFEDisplacementMapElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "linearRGB auto sRGB inherit", + "value-syntax": "enum", + "name": "color-interpolation-filters" + } + ] + }, + "specs": "filter-effects", + "anonymous-methods": { + "method": [] + }, + "name": "SVGFEDisplacementMapElement", + "properties": { + "property": { + "in2": { + "content-attribute-enum-values": "SourceGraphic SourceAlpha BackgroundImage BackgroundAlpha FillPaint StrokePaint", + "specs": "filter-effects", + "name": "in2", + "constant": 1, + "content-attribute": "in2", + "type-original": "SVGAnimatedString", + "exposed": "Window", + "content-attribute-value-syntax": "filter_result_ref", + "type": "SVGAnimatedString", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "xChannelSelector": { + "content-attribute-enum-values": "A R G B", + "specs": "filter-effects", + "name": "xChannelSelector", + "constant": 1, + "content-attribute": "xChannelSelector", + "type-original": "SVGAnimatedEnumeration", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "SVGAnimatedEnumeration", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "yChannelSelector": { + "content-attribute-enum-values": "A R G B", + "specs": "filter-effects", + "name": "yChannelSelector", + "constant": 1, + "content-attribute": "yChannelSelector", + "type-original": "SVGAnimatedEnumeration", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "SVGAnimatedEnumeration", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "scale": { + "specs": "filter-effects", + "name": "scale", + "constant": 1, + "content-attribute": "scale", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "in1": { + "content-attribute-enum-values": "SourceGraphic SourceAlpha BackgroundImage BackgroundAlpha FillPaint StrokePaint", + "specs": "filter-effects", + "name": "in1", + "constant": 1, + "content-attribute": "in", + "type-original": "SVGAnimatedString", + "exposed": "Window", + "content-attribute-value-syntax": "filter_result_ref", + "type": "SVGAnimatedString", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "filter-effects", + "namespace": "SVG", + "name": "feDisplacementMap" + } + ], + "constants": { + "constant": { + "SVG_CHANNEL_B": { + "specs": "filter-effects", + "value": "3", + "exposed": "Window", + "name": "SVG_CHANNEL_B", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_CHANNEL_R": { + "specs": "filter-effects", + "value": "1", + "exposed": "Window", + "name": "SVG_CHANNEL_R", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_CHANNEL_G": { + "specs": "filter-effects", + "value": "2", + "exposed": "Window", + "name": "SVG_CHANNEL_G", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_CHANNEL_UNKNOWN": { + "specs": "filter-effects", + "value": "0", + "exposed": "Window", + "name": "SVG_CHANNEL_UNKNOWN", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_CHANNEL_A": { + "specs": "filter-effects", + "value": "4", + "exposed": "Window", + "name": "SVG_CHANNEL_A", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGElement", + "implements": [ + "SVGFilterPrimitiveStandardAttributes" + ] + }, + "SVGPathSegLinetoAbs": { + "specs": "svg11", + "anonymous-methods": { + "method": [] + }, + "name": "SVGPathSegLinetoAbs", + "properties": { + "property": { + "y": { + "specs": "svg11", + "exposed": "Window", + "name": "y", + "type": "float", + "type-original": "float" + }, + "x": { + "specs": "svg11", + "exposed": "Window", + "name": "x", + "type": "float", + "type-original": "float" + } + } + }, + "constants": { + "constant": {} + }, + "interop": 1, + "deprecated": 1, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGPathSeg" + }, + "HTMLOptionsCollection": { + "specs": "html5", + "anonymous-methods": { + "method": [ + { + "specs": "html5", + "creator": 1, + "ce-reactions": 1, + "name": "", + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + }, + { + "nullable": 1, + "name": "option", + "type": "HTMLOptionElement", + "type-original": "HTMLOptionElement?" + } + ], + "type-original": "void" + } + ], + "setter": 1 + } + ] + }, + "name": "HTMLOptionsCollection", + "properties": { + "property": { + "selectedIndex": { + "specs": "html5", + "exposed": "Window", + "name": "selectedIndex", + "type": "long", + "type-original": "long" + }, + "length": { + "specs": "html5", + "ce-reactions": 1, + "exposed": "Window", + "name": "length", + "type": "unsigned long", + "type-original": "unsigned long" + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "remove": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "index", + "type": "long", + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "ce-reactions": 1, + "exposed": "Window", + "name": "remove" + }, + "add": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "element", + "type": [ + { + "type": "HTMLOptionElement" + }, + { + "type": "HTMLOptGroupElement" + } + ], + "type-original": "(HTMLOptionElement or HTMLOptGroupElement)" + }, + { + "name": "before", + "default": "null", + "type": [ + { + "nullable": 1, + "type": "HTMLElement" + }, + { + "nullable": 1, + "type": "long" + } + ], + "optional": 1, + "type-original": "(HTMLElement or long)?" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "ce-reactions": 1, + "exposed": "Window", + "name": "add" + } + } + }, + "exposed": "Window", + "extends": "HTMLCollection" + }, + "RTCIceGathererEvent": { + "specs": "ortc", + "anonymous-methods": { + "method": [] + }, + "name": "RTCIceGathererEvent", + "properties": { + "property": { + "candidate": { + "specs": "ortc", + "exposed": "Window", + "name": "candidate", + "type": [ + { + "type": "RTCIceCandidateDictionary" + }, + { + "type": "RTCIceCandidateComplete" + } + ], + "type-original": "RTCIceGatherCandidate", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Event" + }, + "BeforeUnloadEvent": { + "constants": { + "constant": {} + }, + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "BeforeUnloadEvent", + "extends": "Event", + "properties": { + "property": { + "returnValue": { + "specs": "html5", + "name": "returnValue", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString" + } + } + } + }, + "SVGMatrix": { + "constants": { + "constant": {} + }, + "specs": "svg11", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "skewY": { + "signature": [ + { + "param-min-required": 1, + "type": "SVGMatrix", + "param": [ + { + "name": "angle", + "type": "float", + "type-original": "float" + } + ], + "type-original": "SVGMatrix" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "skewY" + }, + "flipY": { + "signature": [ + { + "type": "SVGMatrix", + "type-original": "SVGMatrix" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "flipY" + }, + "multiply": { + "signature": [ + { + "param-min-required": 1, + "type": "SVGMatrix", + "param": [ + { + "name": "secondMatrix", + "type": "SVGMatrix", + "type-original": "SVGMatrix" + } + ], + "type-original": "SVGMatrix" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "multiply" + }, + "inverse": { + "signature": [ + { + "type": "SVGMatrix", + "type-original": "SVGMatrix" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "inverse" + }, + "scaleNonUniform": { + "signature": [ + { + "param-min-required": 2, + "type": "SVGMatrix", + "param": [ + { + "name": "scaleFactorX", + "type": "float", + "type-original": "float" + }, + { + "name": "scaleFactorY", + "type": "float", + "type-original": "float" + } + ], + "type-original": "SVGMatrix" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "scaleNonUniform" + }, + "rotate": { + "signature": [ + { + "param-min-required": 1, + "type": "SVGMatrix", + "param": [ + { + "name": "angle", + "type": "float", + "type-original": "float" + } + ], + "type-original": "SVGMatrix" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "rotate" + }, + "flipX": { + "signature": [ + { + "type": "SVGMatrix", + "type-original": "SVGMatrix" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "flipX" + }, + "translate": { + "signature": [ + { + "param-min-required": 2, + "type": "SVGMatrix", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + } + ], + "type-original": "SVGMatrix" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "translate" + }, + "scale": { + "signature": [ + { + "param-min-required": 1, + "type": "SVGMatrix", + "param": [ + { + "name": "scaleFactor", + "type": "float", + "type-original": "float" + } + ], + "type-original": "SVGMatrix" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "scale" + }, + "rotateFromVector": { + "signature": [ + { + "param-min-required": 2, + "type": "SVGMatrix", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + } + ], + "type-original": "SVGMatrix" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "rotateFromVector" + }, + "skewX": { + "signature": [ + { + "param-min-required": 1, + "type": "SVGMatrix", + "param": [ + { + "name": "angle", + "type": "float", + "type-original": "float" + } + ], + "type-original": "SVGMatrix" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "skewX" + } + } + }, + "name": "SVGMatrix", + "extends": "Object", + "properties": { + "property": { + "e": { + "specs": "svg11", + "exposed": "Window", + "name": "e", + "type": "float", + "type-original": "float" + }, + "c": { + "specs": "svg11", + "exposed": "Window", + "name": "c", + "type": "float", + "type-original": "float" + }, + "a": { + "specs": "svg11", + "exposed": "Window", + "name": "a", + "type": "float", + "type-original": "float" + }, + "b": { + "specs": "svg11", + "exposed": "Window", + "name": "b", + "type": "float", + "type-original": "float" + }, + "d": { + "specs": "svg11", + "exposed": "Window", + "name": "d", + "type": "float", + "type-original": "float" + }, + "f": { + "specs": "svg11", + "exposed": "Window", + "name": "f", + "type": "float", + "type-original": "float" + } + } + } + }, + "DataTransferItem": { + "constants": { + "constant": {} + }, + "specs": "html51", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "getAsFile": { + "signature": [ + { + "nullable": 1, + "type": "File", + "type-original": "File?" + } + ], + "specs": "html51", + "exposed": "Window", + "name": "getAsFile" + }, + "getAsString": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "nullable": 1, + "name": "_callback", + "type": "FunctionStringCallback", + "type-original": "FunctionStringCallback?" + } + ], + "type-original": "void" + } + ], + "specs": "html51", + "exposed": "Window", + "name": "getAsString" + }, + "webkitGetAsEntry": { + "signature": [ + { + "nullable": 1, + "type": "WebKitEntry", + "type-original": "WebKitEntry?" + } + ], + "specs": "html51", + "exposed": "Window", + "name": "webkitGetAsEntry" + } + } + }, + "name": "DataTransferItem", + "extends": "Object", + "properties": { + "property": { + "kind": { + "specs": "html51", + "exposed": "Window", + "name": "kind", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "type": { + "specs": "html51", + "exposed": "Window", + "name": "type", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + } + } + } + }, + "CryptoKey": { + "constants": { + "constant": {} + }, + "specs": "webcryptoapi", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "CryptoKey", + "extends": "Object", + "properties": { + "property": { + "algorithm": { + "specs": "webcryptoapi", + "exposed": "Window", + "name": "algorithm", + "type": "KeyAlgorithm", + "type-original": "KeyAlgorithm", + "read-only": 1 + }, + "usages": { + "specs": "webcryptoapi", + "name": "usages", + "type-original": "sequence", + "subtype": { + "type": "DOMString" + }, + "exposed": "Window", + "type": "sequence", + "read-only": 1 + }, + "type": { + "specs": "webcryptoapi", + "exposed": "Window", + "name": "type", + "type": "DOMString", + "type-original": "KeyType", + "read-only": 1 + }, + "extractable": { + "specs": "webcryptoapi", + "exposed": "Window", + "name": "extractable", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + } + } + } + }, + "SVGLinearGradientElement": { + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGLinearGradientElement", + "properties": { + "property": { + "y1": { + "specs": "svg2", + "same-object": 1, + "name": "y1", + "constant": 1, + "content-attribute": "y1", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + }, + "x2": { + "specs": "svg2", + "same-object": 1, + "name": "x2", + "constant": 1, + "content-attribute": "x2", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + }, + "y2": { + "specs": "svg2", + "same-object": 1, + "name": "y2", + "constant": 1, + "content-attribute": "y2", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + }, + "x1": { + "specs": "svg2", + "same-object": 1, + "name": "x1", + "constant": 1, + "content-attribute": "x1", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "svg2", + "namespace": "SVG", + "name": "linearGradient" + } + ], + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "SVGGradientElement" + }, + "SVGRectElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "clip-path" + }, + { + "enum-values": "nonzero evenodd inherit", + "value-syntax": "enum", + "name": "clip-rule" + }, + { + "enum-values": "inherit initial", + "value-syntax": "css_color", + "name": "color" + }, + { + "enum-values": "auto default none context-menu help pointer progress wait cell crosshair text vertical-text alias copy move no-drop not-allowed e-resize n-resize ne-resize nw-resize s-resize se-resize sw-resize w-resize ew-resize ns-resize nesw-resize nwse-resize col-resize row-resize all-scroll zoom-in zoom-out inherit", + "value-syntax": "comma_separated_css_url_with_optional_x_y_offset_followed_by_enum", + "name": "cursor" + }, + { + "enum-values": "inline block inline-block list-item table inline-table table-header-group table-footer-group table-row-group table-column-group table-row table-column table-cell table-caption run-in ruby ruby-base ruby-text ruby-base-container flex inline-flex -ms-grid -ms-inline-grid none inherit initial", + "value-syntax": "enum", + "name": "display" + }, + { + "enum-values": "none currentColor inherit", + "value-syntax": "svg_paint_or_css_color", + "name": "fill" + }, + { + "enum-values": "inherit", + "value-syntax": "0_to_1_floating_point_number", + "name": "fill-opacity" + }, + { + "enum-values": "nonzero evenodd inherit", + "value-syntax": "enum", + "name": "fill-rule" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "filter" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "mask" + }, + { + "enum-values": "inherit initial", + "value-syntax": "0_to_1_floating_point_number", + "name": "opacity" + }, + { + "enum-values": "auto none visiblePainted visibleFill visibleStroke visible painted fill stroke all inherit initial", + "value-syntax": "enum", + "name": "pointer-events" + }, + { + "enum-values": "none currentColor inherit", + "value-syntax": "svg_paint_or_css_color", + "name": "stroke" + }, + { + "enum-values": "none inherit", + "value-syntax": "comma_or_space_separated_css_percentage_or_length", + "name": "stroke-dasharray" + }, + { + "enum-values": "inherit", + "value-syntax": "css_percentage_or_length", + "name": "stroke-dashoffset" + }, + { + "enum-values": "butt round square inherit", + "value-syntax": "enum", + "name": "stroke-linecap" + }, + { + "enum-values": "miter round bevel inherit", + "value-syntax": "enum", + "name": "stroke-linejoin" + }, + { + "enum-values": "inherit", + "value-syntax": "1_or_greater_floating_point_number", + "name": "stroke-miterlimit" + }, + { + "enum-values": "inherit", + "value-syntax": "0_to_1_floating_point_number", + "name": "stroke-opacity" + }, + { + "enum-values": "inherit", + "value-syntax": "css_percentage_or_length", + "name": "stroke-width" + }, + { + "enum-values": "visible hidden collapse inherit initial", + "value-syntax": "enum", + "name": "visibility" + } + ] + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGRectElement", + "properties": { + "property": { + "ry": { + "specs": "svg2", + "same-object": 1, + "name": "ry", + "constant": 1, + "content-attribute": "ry", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + }, + "width": { + "specs": "svg2", + "same-object": 1, + "name": "width", + "constant": 1, + "content-attribute": "width", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + }, + "y": { + "specs": "svg2", + "same-object": 1, + "name": "y", + "constant": 1, + "content-attribute": "y", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + }, + "rx": { + "specs": "svg2", + "same-object": 1, + "name": "rx", + "constant": 1, + "content-attribute": "rx", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + }, + "x": { + "specs": "svg2", + "same-object": 1, + "name": "x", + "constant": 1, + "content-attribute": "x", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + }, + "height": { + "specs": "svg2", + "same-object": 1, + "name": "height", + "constant": 1, + "content-attribute": "height", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "content-attribute-reflects": 1, + "type": "SVGAnimatedLength", + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "svg2", + "namespace": "SVG", + "name": "rect" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGGraphicsElement" + }, + "IDBKeyRange": { + "specs": "indexeddb", + "anonymous-methods": { + "method": [] + }, + "name": "IDBKeyRange", + "properties": { + "property": { + "upperOpen": { + "specs": "indexeddb", + "name": "upperOpen", + "constant": 1, + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "read-only": 1 + }, + "upper": { + "specs": "indexeddb", + "exposed": "Window", + "name": "upper", + "type": "any", + "type-original": "any", + "read-only": 1 + }, + "lowerOpen": { + "specs": "indexeddb", + "name": "lowerOpen", + "constant": 1, + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "read-only": 1 + }, + "lower": { + "specs": "indexeddb", + "exposed": "Window", + "name": "lower", + "type": "any", + "type-original": "any", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "bound": { + "signature": [ + { + "param-min-required": 2, + "type": "IDBKeyRange", + "param": [ + { + "name": "lower", + "type": "any", + "type-original": "any" + }, + { + "name": "upper", + "type": "any", + "type-original": "any" + }, + { + "name": "lowerOpen", + "default": "false", + "type": "boolean", + "optional": 1, + "type-original": "boolean" + }, + { + "name": "upperOpen", + "default": "false", + "type": "boolean", + "optional": 1, + "type-original": "boolean" + } + ], + "type-original": "IDBKeyRange" + } + ], + "specs": "indexeddb", + "exposed": "Window", + "name": "bound", + "static": 1 + }, + "only": { + "signature": [ + { + "param-min-required": 1, + "type": "IDBKeyRange", + "param": [ + { + "name": "value", + "type": "any", + "type-original": "any" + } + ], + "type-original": "IDBKeyRange" + } + ], + "specs": "indexeddb", + "exposed": "Window", + "name": "only", + "static": 1 + }, + "upperBound": { + "signature": [ + { + "param-min-required": 1, + "type": "IDBKeyRange", + "param": [ + { + "name": "upper", + "type": "any", + "type-original": "any" + }, + { + "name": "open", + "default": "false", + "type": "boolean", + "optional": 1, + "type-original": "boolean" + } + ], + "type-original": "IDBKeyRange" + } + ], + "specs": "indexeddb", + "exposed": "Window", + "name": "upperBound", + "static": 1 + }, + "lowerBound": { + "signature": [ + { + "param-min-required": 1, + "type": "IDBKeyRange", + "param": [ + { + "name": "lower", + "type": "any", + "type-original": "any" + }, + { + "name": "open", + "default": "false", + "type": "boolean", + "optional": 1, + "type-original": "boolean" + } + ], + "type-original": "IDBKeyRange" + } + ], + "specs": "indexeddb", + "exposed": "Window", + "name": "lowerBound", + "static": 1 + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "NamedNodeMap": { + "legacy-unenumerable-named-properties": 1, + "specs": "dom", + "anonymous-methods": { + "method": [] + }, + "name": "NamedNodeMap", + "properties": { + "property": { + "length": { + "specs": "dom", + "exposed": "Window", + "name": "length", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": { + "removeNamedItemNS": { + "signature": [ + { + "param-min-required": 2, + "type": "Attr", + "param": [ + { + "nullable": 1, + "name": "namespace", + "type": "DOMString", + "type-original": "DOMString?" + }, + { + "name": "localName", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "Attr" + } + ], + "specs": "dom", + "ce-reactions": 1, + "exposed": "Window", + "name": "removeNamedItemNS" + }, + "item": { + "getter": 1, + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "Attr", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "Attr?" + } + ], + "specs": "dom", + "exposed": "Window", + "name": "item" + }, + "removeNamedItem": { + "signature": [ + { + "param-min-required": 1, + "type": "Attr", + "param": [ + { + "name": "qualifiedName", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "Attr" + } + ], + "specs": "dom", + "ce-reactions": 1, + "exposed": "Window", + "name": "removeNamedItem" + }, + "getNamedItem": { + "getter": 1, + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "Attr", + "param": [ + { + "name": "qualifiedName", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "Attr?" + } + ], + "specs": "dom", + "exposed": "Window", + "name": "getNamedItem" + }, + "setNamedItemNS": { + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "Attr", + "param": [ + { + "name": "attr", + "type": "Attr", + "type-original": "Attr" + } + ], + "type-original": "Attr?" + } + ], + "specs": "dom", + "ce-reactions": 1, + "exposed": "Window", + "name": "setNamedItemNS" + }, + "setNamedItem": { + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "Attr", + "param": [ + { + "name": "attr", + "type": "Attr", + "type-original": "Attr" + } + ], + "type-original": "Attr?" + } + ], + "specs": "dom", + "ce-reactions": 1, + "exposed": "Window", + "name": "setNamedItem" + }, + "getNamedItemNS": { + "signature": [ + { + "nullable": 1, + "param-min-required": 2, + "type": "Attr", + "param": [ + { + "nullable": 1, + "name": "namespace", + "type": "DOMString", + "type-original": "DOMString?" + }, + { + "name": "localName", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "Attr?" + } + ], + "specs": "dom", + "exposed": "Window", + "name": "getNamedItemNS" + } + } + }, + "extends": "Object" + }, + "SVGPathSegCurvetoQuadraticSmoothAbs": { + "specs": "svg11", + "anonymous-methods": { + "method": [] + }, + "name": "SVGPathSegCurvetoQuadraticSmoothAbs", + "properties": { + "property": { + "y": { + "specs": "svg11", + "exposed": "Window", + "name": "y", + "type": "float", + "type-original": "float" + }, + "x": { + "specs": "svg11", + "exposed": "Window", + "name": "x", + "type": "float", + "type-original": "float" + } + } + }, + "constants": { + "constant": {} + }, + "interop": 1, + "deprecated": 1, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGPathSeg" + }, + "SVGLengthList": { + "constants": { + "constant": {} + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "replaceItem": { + "signature": [ + { + "param-min-required": 2, + "type": "SVGLength", + "param": [ + { + "name": "newItem", + "type": "SVGLength", + "type-original": "SVGLength" + }, + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "SVGLength" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "replaceItem" + }, + "getItem": { + "signature": [ + { + "param-min-required": 1, + "type": "SVGLength", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "SVGLength" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "getItem" + }, + "appendItem": { + "signature": [ + { + "param-min-required": 1, + "type": "SVGLength", + "param": [ + { + "name": "newItem", + "type": "SVGLength", + "type-original": "SVGLength" + } + ], + "type-original": "SVGLength" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "appendItem" + }, + "clear": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "clear" + }, + "removeItem": { + "signature": [ + { + "param-min-required": 1, + "type": "SVGLength", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "SVGLength" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "removeItem" + }, + "initialize": { + "signature": [ + { + "param-min-required": 1, + "type": "SVGLength", + "param": [ + { + "name": "newItem", + "type": "SVGLength", + "type-original": "SVGLength" + } + ], + "type-original": "SVGLength" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "initialize" + }, + "insertItemBefore": { + "signature": [ + { + "param-min-required": 2, + "type": "SVGLength", + "param": [ + { + "name": "newItem", + "type": "SVGLength", + "type-original": "SVGLength" + }, + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "SVGLength" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "insertItemBefore" + } + } + }, + "name": "SVGLengthList", + "extends": "Object", + "properties": { + "property": { + "numberOfItems": { + "specs": "svg2", + "name": "numberOfItems", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + } + } + } + }, + "ProcessingInstruction": { + "specs": "dom", + "anonymous-methods": { + "method": [] + }, + "name": "ProcessingInstruction", + "properties": { + "property": { + "target": { + "specs": "dom", + "exposed": "Window", + "name": "target", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "UIEvents", + "name": "DOMCharacterDataModified", + "type": "MutationEvent", + "bubbles": 1 + } + ] + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "CharacterData" + }, + "MSGraphicsTrust": { + "constants": { + "constant": {} + }, + "specs": "none", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "MSGraphicsTrust", + "extends": "Object", + "properties": { + "property": { + "status": { + "specs": "none", + "exposed": "Window", + "name": "status", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "constrictionActive": { + "specs": "none", + "exposed": "Window", + "name": "constrictionActive", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + } + } + } + }, + "CSSFontFaceRule": { + "constants": { + "constant": {} + }, + "specs": "cssom", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "CSSFontFaceRule", + "extends": "CSSRule", + "properties": { + "property": { + "style": { + "specs": "cssom", + "exposed": "Window", + "name": "style", + "type": "CSSStyleDeclaration", + "type-original": "CSSStyleDeclaration", + "read-only": 1 + } + } + } + }, + "GainNode": { + "constants": { + "constant": {} + }, + "specs": "webaudio", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "GainNode", + "extends": "AudioNode", + "properties": { + "property": { + "gain": { + "specs": "webaudio", + "exposed": "Window", + "name": "gain", + "type": "AudioParam", + "type-original": "AudioParam", + "read-only": 1 + } + } + } + }, + "TextEvent": { + "specs": "none", + "anonymous-methods": { + "method": [] + }, + "name": "TextEvent", + "properties": { + "property": { + "data": { + "specs": "none", + "name": "data", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + } + } + }, + "constants": { + "constant": { + "DOM_INPUT_METHOD_DROP": { + "specs": "none", + "value": "0x03", + "exposed": "Window", + "name": "DOM_INPUT_METHOD_DROP", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "DOM_INPUT_METHOD_KEYBOARD": { + "specs": "none", + "value": "0x01", + "exposed": "Window", + "name": "DOM_INPUT_METHOD_KEYBOARD", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "DOM_INPUT_METHOD_IME": { + "specs": "none", + "value": "0x04", + "exposed": "Window", + "name": "DOM_INPUT_METHOD_IME", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "DOM_INPUT_METHOD_SCRIPT": { + "specs": "none", + "value": "0x09", + "exposed": "Window", + "name": "DOM_INPUT_METHOD_SCRIPT", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "DOM_INPUT_METHOD_VOICE": { + "specs": "none", + "value": "0x07", + "exposed": "Window", + "name": "DOM_INPUT_METHOD_VOICE", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "DOM_INPUT_METHOD_UNKNOWN": { + "specs": "none", + "value": "0x00", + "exposed": "Window", + "name": "DOM_INPUT_METHOD_UNKNOWN", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "DOM_INPUT_METHOD_PASTE": { + "specs": "none", + "value": "0x02", + "exposed": "Window", + "name": "DOM_INPUT_METHOD_PASTE", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "DOM_INPUT_METHOD_HANDWRITING": { + "specs": "none", + "value": "0x06", + "exposed": "Window", + "name": "DOM_INPUT_METHOD_HANDWRITING", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "DOM_INPUT_METHOD_OPTION": { + "specs": "none", + "value": "0x05", + "exposed": "Window", + "name": "DOM_INPUT_METHOD_OPTION", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "DOM_INPUT_METHOD_MULTIMODAL": { + "specs": "none", + "value": "0x08", + "exposed": "Window", + "name": "DOM_INPUT_METHOD_MULTIMODAL", + "type": "unsigned long", + "type-original": "unsigned long" + } + } + }, + "deprecated": 1, + "exposed": "Window", + "methods": { + "method": { + "initTextEvent": { + "signature": [ + { + "param-min-required": 7, + "type": "void", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "canBubbleArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "cancelableArg", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "viewArg", + "type": "Window", + "type-original": "Window" + }, + { + "name": "dataArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "inputMethod", + "type": "unsigned long", + "type-original": "unsigned long" + }, + { + "name": "locale", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "initTextEvent" + } + } + }, + "extends": "UIEvent" + }, + "SVGPolylineElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "clip-path" + }, + { + "enum-values": "nonzero evenodd inherit", + "value-syntax": "enum", + "name": "clip-rule" + }, + { + "enum-values": "inherit initial", + "value-syntax": "css_color", + "name": "color" + }, + { + "enum-values": "auto default none context-menu help pointer progress wait cell crosshair text vertical-text alias copy move no-drop not-allowed e-resize n-resize ne-resize nw-resize s-resize se-resize sw-resize w-resize ew-resize ns-resize nesw-resize nwse-resize col-resize row-resize all-scroll zoom-in zoom-out inherit", + "value-syntax": "comma_separated_css_url_with_optional_x_y_offset_followed_by_enum", + "name": "cursor" + }, + { + "enum-values": "inline block inline-block list-item table inline-table table-header-group table-footer-group table-row-group table-column-group table-row table-column table-cell table-caption run-in ruby ruby-base ruby-text ruby-base-container flex inline-flex -ms-grid -ms-inline-grid none inherit initial", + "value-syntax": "enum", + "name": "display" + }, + { + "enum-values": "none currentColor inherit", + "value-syntax": "svg_paint_or_css_color", + "name": "fill" + }, + { + "enum-values": "inherit", + "value-syntax": "0_to_1_floating_point_number", + "name": "fill-opacity" + }, + { + "enum-values": "nonzero evenodd inherit", + "value-syntax": "enum", + "name": "fill-rule" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "filter" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "marker" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "marker-end" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "marker-mid" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "marker-start" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "mask" + }, + { + "enum-values": "inherit initial", + "value-syntax": "0_to_1_floating_point_number", + "name": "opacity" + }, + { + "enum-values": "auto none visiblePainted visibleFill visibleStroke visible painted fill stroke all inherit initial", + "value-syntax": "enum", + "name": "pointer-events" + }, + { + "enum-values": "none currentColor inherit", + "value-syntax": "svg_paint_or_css_color", + "name": "stroke" + }, + { + "enum-values": "none inherit", + "value-syntax": "comma_or_space_separated_css_percentage_or_length", + "name": "stroke-dasharray" + }, + { + "enum-values": "inherit", + "value-syntax": "css_percentage_or_length", + "name": "stroke-dashoffset" + }, + { + "enum-values": "butt round square inherit", + "value-syntax": "enum", + "name": "stroke-linecap" + }, + { + "enum-values": "miter round bevel inherit", + "value-syntax": "enum", + "name": "stroke-linejoin" + }, + { + "enum-values": "inherit", + "value-syntax": "1_or_greater_floating_point_number", + "name": "stroke-miterlimit" + }, + { + "enum-values": "inherit", + "value-syntax": "0_to_1_floating_point_number", + "name": "stroke-opacity" + }, + { + "enum-values": "inherit", + "value-syntax": "css_percentage_or_length", + "name": "stroke-width" + }, + { + "enum-values": "visible hidden collapse inherit initial", + "value-syntax": "enum", + "name": "visibility" + } + ] + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGPolylineElement", + "properties": { + "property": {} + }, + "element": [ + { + "specs": "svg2", + "namespace": "SVG", + "name": "polyline" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGGraphicsElement", + "implements": [ + "SVGAnimatedPoints" + ] + }, + "RTCSessionDescription": { + "specs": "webrtc", + "constructor": { + "specs": "webrtc", + "signature": [ + { + "param-min-required": 0, + "type": "RTCSessionDescription", + "param": [ + { + "name": "descriptionInitDict", + "type": "RTCSessionDescriptionInit", + "optional": 1, + "type-original": "RTCSessionDescriptionInit" + } + ], + "type-original": "RTCSessionDescription" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "RTCSessionDescription", + "properties": { + "property": { + "sdp": { + "specs": "webrtc", + "nullable": 1, + "exposed": "Window", + "name": "sdp", + "type": "DOMString", + "type-original": "DOMString?" + }, + "type": { + "specs": "webrtc", + "nullable": 1, + "exposed": "Window", + "name": "type", + "type": "RTCSdpType", + "type-original": "RTCSdpType?" + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": { + "toJSON": { + "serializer": 1, + "signature": [ + { + "type": "any", + "type-original": "any" + } + ], + "specs": "webrtc", + "exposed": "Window", + "serializer-info": "attribute", + "name": "toJSON" + } + } + }, + "extends": "Object" + }, + "DeviceAcceleration": { + "constants": { + "constant": {} + }, + "specs": "orientation-event", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "DeviceAcceleration", + "extends": "Object", + "properties": { + "property": { + "y": { + "specs": "orientation-event", + "name": "y", + "type-original": "double?", + "nullable": 1, + "exposed": "Window", + "type": "double", + "read-only": 1 + }, + "x": { + "specs": "orientation-event", + "name": "x", + "type-original": "double?", + "nullable": 1, + "exposed": "Window", + "type": "double", + "read-only": 1 + }, + "z": { + "specs": "orientation-event", + "name": "z", + "type-original": "double?", + "nullable": 1, + "exposed": "Window", + "type": "double", + "read-only": 1 + } + } + } + }, + "RTCIceGatherer": { + "specs": "ortc", + "constructor": { + "specs": "ortc", + "signature": [ + { + "param-min-required": 1, + "type": "RTCIceGatherer", + "param": [ + { + "name": "options", + "type": "RTCIceGatherOptions", + "type-original": "RTCIceGatherOptions" + } + ], + "type-original": "RTCIceGatherer" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "RTCIceGatherer", + "properties": { + "property": { + "component": { + "specs": "ortc", + "exposed": "Window", + "name": "component", + "type": "RTCIceComponent", + "type-original": "RTCIceComponent", + "read-only": 1 + }, + "onerror": { + "specs": "ortc", + "name": "onerror", + "type-original": "EventHandler?", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "error" + }, + "onlocalcandidate": { + "specs": "ortc", + "name": "onlocalcandidate", + "type-original": "EventHandler?", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "localcandidate" + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "ORTC", + "name": "error", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "ORTC", + "name": "localcandidate", + "type": "RTCIceGathererEvent", + "skips-window": 1 + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "createAssociatedGatherer": { + "signature": [ + { + "type": "RTCIceGatherer", + "type-original": "RTCIceGatherer" + } + ], + "specs": "ortc", + "exposed": "Window", + "name": "createAssociatedGatherer" + }, + "getLocalCandidates": { + "signature": [ + { + "subtype": { + "type": "RTCIceCandidateDictionary" + }, + "type": "sequence", + "type-original": "sequence" + } + ], + "specs": "ortc", + "exposed": "Window", + "name": "getLocalCandidates" + }, + "getLocalParameters": { + "signature": [ + { + "type": "RTCIceParameters", + "type-original": "RTCIceParameters" + } + ], + "specs": "ortc", + "exposed": "Window", + "name": "getLocalParameters" + } + } + }, + "extends": "RTCStatsProvider" + }, + "MediaKeys": { + "constants": { + "constant": {} + }, + "specs": "encrypted-media", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "setServerCertificate": { + "signature": [ + { + "subtype": { + "type": "void" + }, + "param-min-required": 1, + "type": "Promise", + "param": [ + { + "name": "serverCertificate", + "type": [ + { + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + } + ] + }, + { + "nullable": 1, + "type": "ArrayBuffer" + } + ], + "type-original": "BufferSource" + } + ], + "type-original": "Promise" + } + ], + "specs": "encrypted-media", + "exposed": "Window", + "name": "setServerCertificate" + }, + "createSession": { + "signature": [ + { + "param-min-required": 0, + "type": "MediaKeySession", + "param": [ + { + "name": "sessionType", + "default": "\"temporary\"", + "type": "MediaKeySessionType", + "optional": 1, + "type-original": "MediaKeySessionType" + } + ], + "type-original": "MediaKeySession" + } + ], + "specs": "encrypted-media", + "exposed": "Window", + "name": "createSession" + } + } + }, + "name": "MediaKeys", + "extends": "Object", + "properties": { + "property": {} + } + }, + "TextEncoder": { + "specs": "encoding", + "constructor": { + "specs": "encoding", + "signature": [ + { + "type": "TextEncoder", + "type-original": "TextEncoder" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "TextEncoder", + "properties": { + "property": { + "encoding": { + "specs": "encoding", + "exposed": "Window Worker", + "name": "encoding", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window Worker", + "methods": { + "method": { + "encode": { + "signature": [ + { + "new-object": 1, + "param-min-required": 0, + "type": "Uint8Array", + "param": [ + { + "name": "input", + "default": "\"\"", + "type": "USVString", + "optional": 1, + "type-original": "USVString" + } + ], + "type-original": "Uint8Array" + } + ], + "specs": "encoding", + "exposed": "Window Worker", + "name": "encode" + } + } + }, + "extends": "Object" + }, + "HTMLSpanElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLSpanElement", + "properties": { + "property": {} + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "span" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "HTMLHeadingElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLHeadingElement", + "properties": { + "property": { + "align": { + "content-attribute-enum-values": "center justify left right", + "specs": "html5", + "ce-reactions": 1, + "name": "align", + "type-original": "DOMString", + "content-attribute": "align", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "h1" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "h2" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "h3" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "h4" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "h5" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "h6" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "SVGFEOffsetElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "linearRGB auto sRGB inherit", + "value-syntax": "enum", + "name": "color-interpolation-filters" + } + ] + }, + "specs": "filter-effects", + "anonymous-methods": { + "method": [] + }, + "name": "SVGFEOffsetElement", + "properties": { + "property": { + "dy": { + "specs": "filter-effects", + "name": "dy", + "constant": 1, + "content-attribute": "dy", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "dx": { + "specs": "filter-effects", + "name": "dx", + "constant": 1, + "content-attribute": "dx", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "in1": { + "content-attribute-enum-values": "SourceGraphic SourceAlpha BackgroundImage BackgroundAlpha FillPaint StrokePaint", + "specs": "filter-effects", + "name": "in1", + "constant": 1, + "content-attribute": "in", + "type-original": "SVGAnimatedString", + "exposed": "Window", + "content-attribute-value-syntax": "filter_result_ref", + "type": "SVGAnimatedString", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "filter-effects", + "namespace": "SVG", + "name": "feOffset" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGElement", + "implements": [ + "SVGFilterPrimitiveStandardAttributes" + ] + }, + "HTMLFormElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "name": "HTMLFormElement", + "properties": { + "property": { + "acceptCharset": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "acceptCharset", + "content-attribute": "accept-charset", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "space_separated_tokens", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "elements": { + "specs": "html5", + "name": "elements", + "constant": 1, + "tags": "TreeNavigation", + "type-original": "HTMLFormControlsCollection", + "exposed": "Window", + "type": "HTMLFormControlsCollection", + "read-only": 1 + }, + "enctype": { + "content-attribute-enum-values": "application/x-www-form-urlencoded multipart/form-data text/plain", + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "enctype", + "content-attribute": "enctype", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "autocomplete": { + "content-attribute-enum-values": "on off", + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "autocomplete", + "content-attribute": "autocomplete", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "name": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "name", + "content-attribute": "name", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "noValidate": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "noValidate", + "content-attribute": "novalidate", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "length": { + "pure": 1, + "specs": "html5", + "name": "length", + "tags": "TreeNavigation", + "type-original": "long", + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "target": { + "content-attribute-enum-values": "_blank _self _parent _top", + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "target", + "content-attribute": "target", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "name_ref", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "action": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "action", + "content-attribute": "action", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "url", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "method": { + "content-attribute-enum-values": "GET POST", + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "method", + "content-attribute": "method", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "encoding": { + "content-attribute-enum-values": "application/x-www-form-urlencoded multipart/form-data text/plain", + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "encoding", + "content-attribute": "enctype", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "DOMString", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "form" + } + ], + "constants": { + "constant": {} + }, + "override-builtins": 1, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "HTML5", + "name": "reset", + "type": "Event", + "cancelable": 1, + "bubbles": 1 + }, + { + "dispatch": "sync", + "specs": "HTML5", + "name": "submit", + "type": "Event", + "cancelable": 1, + "bubbles": 1 + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "reset": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "html5", + "ce-reactions": 1, + "exposed": "Window", + "name": "reset", + "tags": "TreeMutation" + }, + "checkValidity": { + "signature": [ + { + "type": "boolean", + "type-original": "boolean" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "checkValidity" + }, + "item": { + "specs": "html5", + "name": "item", + "tags": "TreeNavigation", + "getter": 1, + "signature": [ + { + "param-min-required": 0, + "type": "any", + "param": [ + { + "name": "name", + "type": "any", + "optional": 1, + "type-original": "any" + }, + { + "name": "index", + "type": "any", + "optional": 1, + "type-original": "any" + } + ], + "type-original": "any" + } + ], + "exposed": "Window" + }, + "submit": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "submit", + "tags": "NetworkAccess" + }, + "namedItem": { + "specs": "html5", + "name": "namedItem", + "tags": "TreeNavigation", + "getter": 1, + "signature": [ + { + "param-min-required": 1, + "type": "any", + "param": [ + { + "name": "name", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "any" + } + ], + "exposed": "Window" + } + } + }, + "extends": "HTMLElement" + }, + "MediaStreamErrorEvent": { + "specs": "media-capture-api", + "constructor": { + "specs": "media-capture-api", + "signature": [ + { + "param-min-required": 1, + "type": "MediaStreamErrorEvent", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "MediaStreamErrorEventInit", + "optional": 1, + "type-original": "MediaStreamErrorEventInit" + } + ], + "type-original": "MediaStreamErrorEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "MediaStreamErrorEvent", + "properties": { + "property": { + "error": { + "specs": "media-capture-api", + "name": "error", + "type-original": "MediaStreamError?", + "nullable": 1, + "exposed": "Window", + "type": "MediaStreamError", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Event" + }, + "DOMParser": { + "constants": { + "constant": {} + }, + "specs": "dom-parsing", + "constructor": { + "specs": "dom-parsing", + "signature": [ + { + "type": "DOMParser", + "type-original": "DOMParser" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "parseFromString": { + "signature": [ + { + "param-min-required": 2, + "type": "Document", + "param": [ + { + "name": "source", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "mimeType", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "Document" + } + ], + "specs": "dom-parsing", + "exposed": "Window", + "name": "parseFromString", + "tags": "TreeMutation" + } + } + }, + "name": "DOMParser", + "extends": "Object", + "properties": { + "property": {} + } + }, + "AudioParam": { + "constants": { + "constant": {} + }, + "specs": "webaudio", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "setTargetAtTime": { + "signature": [ + { + "param-min-required": 3, + "type": "AudioParam", + "param": [ + { + "name": "target", + "type": "float", + "type-original": "float" + }, + { + "name": "startTime", + "type": "double", + "type-original": "double" + }, + { + "name": "timeConstant", + "type": "double", + "type-original": "double" + } + ], + "type-original": "AudioParam" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "setTargetAtTime" + }, + "cancelScheduledValues": { + "signature": [ + { + "param-min-required": 1, + "type": "AudioParam", + "param": [ + { + "name": "cancelTime", + "type": "double", + "type-original": "double" + } + ], + "type-original": "AudioParam" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "cancelScheduledValues" + }, + "exponentialRampToValueAtTime": { + "signature": [ + { + "param-min-required": 2, + "type": "AudioParam", + "param": [ + { + "name": "value", + "type": "float", + "type-original": "float" + }, + { + "name": "endTime", + "type": "double", + "type-original": "double" + } + ], + "type-original": "AudioParam" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "exponentialRampToValueAtTime" + }, + "setValueAtTime": { + "signature": [ + { + "param-min-required": 2, + "type": "AudioParam", + "param": [ + { + "name": "value", + "type": "float", + "type-original": "float" + }, + { + "name": "startTime", + "type": "double", + "type-original": "double" + } + ], + "type-original": "AudioParam" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "setValueAtTime" + }, + "setValueCurveAtTime": { + "signature": [ + { + "param-min-required": 3, + "type": "AudioParam", + "param": [ + { + "subtype": { + "type": "float" + }, + "name": "values", + "type": "sequence", + "type-original": "sequence" + }, + { + "name": "startTime", + "type": "double", + "type-original": "double" + }, + { + "name": "duration", + "type": "double", + "type-original": "double" + } + ], + "type-original": "AudioParam" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "setValueCurveAtTime" + }, + "linearRampToValueAtTime": { + "signature": [ + { + "param-min-required": 2, + "type": "AudioParam", + "param": [ + { + "name": "value", + "type": "float", + "type-original": "float" + }, + { + "name": "endTime", + "type": "double", + "type-original": "double" + } + ], + "type-original": "AudioParam" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "linearRampToValueAtTime" + } + } + }, + "name": "AudioParam", + "extends": "Object", + "properties": { + "property": { + "value": { + "specs": "webaudio", + "exposed": "Window", + "name": "value", + "type": "float", + "type-original": "float" + }, + "defaultValue": { + "specs": "webaudio", + "exposed": "Window", + "name": "defaultValue", + "type": "float", + "type-original": "float", + "read-only": 1 + } + } + } + }, + "ServiceWorker": { + "specs": "service-workers", + "anonymous-methods": { + "method": [] + }, + "name": "ServiceWorker", + "properties": { + "property": { + "scriptURL": { + "specs": "service-workers", + "exposed": "Window", + "name": "scriptURL", + "type": "USVString", + "type-original": "USVString", + "read-only": 1 + }, + "onstatechange": { + "specs": "service-workers", + "name": "onstatechange", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "statechange" + }, + "state": { + "specs": "service-workers", + "exposed": "Window", + "name": "state", + "type": "ServiceWorkerState", + "type-original": "ServiceWorkerState", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "async", + "specs": "Workers", + "name": "error", + "type": "ErrorEvent", + "skips-window": 1 + }, + { + "dispatch": "async", + "specs": "ServiceWorker", + "name": "statechange", + "type": "Event", + "skips-window": 1 + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "postMessage": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "message", + "type": "any", + "type-original": "any" + }, + { + "subtype": { + "type": "object" + }, + "name": "transfer", + "type": "sequence", + "optional": 1, + "type-original": "sequence" + } + ], + "type-original": "void" + } + ], + "specs": "service-workers", + "exposed": "Window", + "name": "postMessage" + } + } + }, + "extends": "EventTarget", + "implements": [ + "AbstractWorker" + ] + }, + "RTCRtpReceiver": { + "specs": "ortc", + "constructor": { + "specs": "ortc", + "signature": [ + { + "param-min-required": 2, + "type": "RTCRtpReceiver", + "param": [ + { + "name": "transport", + "type": [ + { + "type": "RTCDtlsTransport" + }, + { + "type": "RTCSrtpSdesTransport" + } + ], + "type-original": "RTCTransport" + }, + { + "name": "kind", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "rtcpTransport", + "type": "RTCDtlsTransport", + "optional": 1, + "type-original": "RTCDtlsTransport" + } + ], + "type-original": "RTCRtpReceiver" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "RTCRtpReceiver", + "properties": { + "property": { + "onmsdsh": { + "specs": "ortc", + "name": "onmsdsh", + "type-original": "EventHandler?", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "msdsh" + }, + "rtcpTransport": { + "specs": "ortc", + "exposed": "Window", + "name": "rtcpTransport", + "type": "RTCDtlsTransport", + "type-original": "RTCDtlsTransport", + "read-only": 1 + }, + "transport": { + "specs": "ortc", + "exposed": "Window", + "name": "transport", + "type": [ + { + "type": "RTCDtlsTransport" + }, + { + "type": "RTCSrtpSdesTransport" + } + ], + "type-original": "RTCTransport", + "read-only": 1 + }, + "onmsdecodercapacitychange": { + "specs": "ortc", + "name": "onmsdecodercapacitychange", + "type-original": "EventHandler?", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "msdecodercapacitychange" + }, + "track": { + "specs": "ortc", + "name": "track", + "type-original": "MediaStreamTrack?", + "nullable": 1, + "exposed": "Window", + "type": "MediaStreamTrack", + "read-only": 1 + }, + "onerror": { + "specs": "ortc", + "name": "onerror", + "type-original": "EventHandler?", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "error" + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "ORTC", + "name": "error", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "ORTC", + "name": "msdsh", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "ORTC", + "name": "decodercapacitychange", + "type": "Event", + "skips-window": 1 + } + ] + }, + "exposed": "Window", + "methods": { + "method": { + "receive": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "parameters", + "type": "RTCRtpParameters", + "type-original": "RTCRtpParameters" + } + ], + "type-original": "void" + } + ], + "specs": "ortc", + "exposed": "Window", + "name": "receive" + }, + "requestSendCSRC": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "csrc", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "void" + } + ], + "specs": "ortc", + "exposed": "Window", + "name": "requestSendCSRC" + }, + "stop": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "ortc", + "exposed": "Window", + "name": "stop" + }, + "setTransport": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "transport", + "type": [ + { + "type": "RTCDtlsTransport" + }, + { + "type": "RTCSrtpSdesTransport" + } + ], + "type-original": "RTCTransport" + }, + { + "name": "rtcpTransport", + "type": "RTCDtlsTransport", + "optional": 1, + "type-original": "RTCDtlsTransport" + } + ], + "type-original": "void" + } + ], + "specs": "ortc", + "exposed": "Window", + "name": "setTransport" + }, + "getContributingSources": { + "signature": [ + { + "subtype": { + "type": "RTCRtpContributingSource" + }, + "type": "sequence", + "type-original": "sequence" + } + ], + "specs": "ortc", + "exposed": "Window", + "name": "getContributingSources" + }, + "getCapabilities": { + "signature": [ + { + "param-min-required": 0, + "type": "RTCRtpCapabilities", + "param": [ + { + "name": "kind", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + } + ], + "type-original": "RTCRtpCapabilities" + } + ], + "specs": "ortc", + "exposed": "Window", + "name": "getCapabilities", + "static": 1 + } + } + }, + "extends": "RTCStatsProvider" + }, + "DeviceOrientationEvent": { + "specs": "orientation-event", + "constructor": { + "specs": "orientation-event", + "signature": [ + { + "param-min-required": 1, + "type": "DeviceOrientationEvent", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "DeviceOrientationEventInit", + "optional": 1, + "type-original": "DeviceOrientationEventInit" + } + ], + "type-original": "DeviceOrientationEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "DeviceOrientationEvent", + "properties": { + "property": { + "gamma": { + "specs": "orientation-event", + "name": "gamma", + "type-original": "double?", + "nullable": 1, + "exposed": "Window", + "type": "double", + "read-only": 1 + }, + "absolute": { + "specs": "orientation-event", + "exposed": "Window", + "name": "absolute", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "alpha": { + "specs": "orientation-event", + "name": "alpha", + "type-original": "double?", + "nullable": 1, + "exposed": "Window", + "type": "double", + "read-only": 1 + }, + "beta": { + "specs": "orientation-event", + "name": "beta", + "type-original": "double?", + "nullable": 1, + "exposed": "Window", + "type": "double", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "initDeviceOrientationEvent": { + "signature": [ + { + "param-min-required": 7, + "type": "void", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "bubbles", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "cancelable", + "type": "boolean", + "type-original": "boolean" + }, + { + "nullable": 1, + "name": "alpha", + "type": "double", + "type-original": "double?" + }, + { + "nullable": 1, + "name": "beta", + "type": "double", + "type-original": "double?" + }, + { + "nullable": 1, + "name": "gamma", + "type": "double", + "type-original": "double?" + }, + { + "name": "absolute", + "type": "boolean", + "type-original": "boolean" + } + ], + "type-original": "void" + } + ], + "specs": "orientation-event", + "exposed": "Window", + "name": "initDeviceOrientationEvent" + } + } + }, + "exposed": "Window", + "extends": "Event" + }, + "Blob": { + "specs": "fileapi", + "constructor": { + "specs": "fileapi", + "signature": [ + { + "type": "Blob", + "type-original": "Blob" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "Blob", + "properties": { + "property": { + "type": { + "specs": "fileapi", + "name": "type", + "type-original": "DOMString", + "exposed": "Window Worker", + "type": "DOMString", + "read-only": 1 + }, + "size": { + "specs": "fileapi", + "name": "size", + "type-original": "unsigned long long", + "exposed": "Window Worker", + "type": "unsigned long long", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window Worker", + "methods": { + "method": { + "msDetachStream": { + "extension": 1, + "specs": "none", + "signature": [ + { + "type": "any", + "type-original": "any" + } + ], + "name": "msDetachStream", + "exposed": "Window Worker" + }, + "msClose": { + "extension": 1, + "specs": "none", + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "name": "msClose", + "exposed": "Window Worker" + }, + "slice": { + "signature": [ + { + "param-min-required": 0, + "type": "Blob", + "param": [ + { + "clamp": 1, + "name": "start", + "type": "long long", + "optional": 1, + "type-original": "long long" + }, + { + "clamp": 1, + "name": "end", + "type": "long long", + "optional": 1, + "type-original": "long long" + }, + { + "name": "contentType", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + } + ], + "type-original": "Blob" + } + ], + "specs": "fileapi", + "exposed": "Window Worker", + "name": "slice" + } + } + }, + "extends": "Object" + }, + "ContentScriptGlobalScope": { + "specs": "none", + "anonymous-methods": { + "method": [] + }, + "name": "ContentScriptGlobalScope", + "properties": { + "property": { + "window": { + "specs": "none", + "exposed": "Extension", + "name": "window", + "type": "Window", + "type-original": "Window", + "read-only": 1 + }, + "msContentScript": { + "specs": "none", + "exposed": "Extension", + "name": "msContentScript", + "type": "ExtensionScriptApis", + "type-original": "ExtensionScriptApis", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "mirror-from": "Window", + "exposed": "Extension", + "methods": { + "method": {} + }, + "extends": "EventTarget" + }, + "AudioDestinationNode": { + "constants": { + "constant": {} + }, + "specs": "webaudio", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "AudioDestinationNode", + "extends": "AudioNode", + "properties": { + "property": { + "maxChannelCount": { + "specs": "webaudio", + "exposed": "Window", + "name": "maxChannelCount", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + } + } + } + }, + "PopStateEvent": { + "specs": "html5", + "constructor": { + "specs": "html5", + "signature": [ + { + "param-min-required": 1, + "type": "PopStateEvent", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "PopStateEventInit", + "optional": 1, + "type-original": "PopStateEventInit" + } + ], + "type-original": "PopStateEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "PopStateEvent", + "properties": { + "property": { + "state": { + "specs": "html5", + "exposed": "Window", + "name": "state", + "type": "any", + "type-original": "any", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Event" + }, + "NodeFilter": { + "specs": "dom", + "anonymous-methods": { + "method": [] + }, + "name": "NodeFilter", + "static": 1, + "properties": { + "property": {} + }, + "constants": { + "constant": { + "SHOW_NOTATION": { + "specs": "dom", + "value": "0x800", + "exposed": "Window", + "name": "SHOW_NOTATION", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "SHOW_DOCUMENT": { + "specs": "dom", + "value": "0x100", + "exposed": "Window", + "name": "SHOW_DOCUMENT", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "FILTER_REJECT": { + "specs": "dom", + "value": "2", + "exposed": "Window", + "name": "FILTER_REJECT", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SHOW_CDATA_SECTION": { + "specs": "dom", + "value": "0x8", + "exposed": "Window", + "name": "SHOW_CDATA_SECTION", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "SHOW_DOCUMENT_TYPE": { + "specs": "dom", + "value": "0x200", + "exposed": "Window", + "name": "SHOW_DOCUMENT_TYPE", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "SHOW_TEXT": { + "specs": "dom", + "value": "0x4", + "exposed": "Window", + "name": "SHOW_TEXT", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "SHOW_COMMENT": { + "specs": "dom", + "value": "0x80", + "exposed": "Window", + "name": "SHOW_COMMENT", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "SHOW_ATTRIBUTE": { + "specs": "dom", + "value": "0x2", + "exposed": "Window", + "name": "SHOW_ATTRIBUTE", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "SHOW_ENTITY_REFERENCE": { + "specs": "dom", + "value": "0x10", + "exposed": "Window", + "name": "SHOW_ENTITY_REFERENCE", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "SHOW_ENTITY": { + "specs": "dom", + "value": "0x20", + "exposed": "Window", + "name": "SHOW_ENTITY", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "SHOW_PROCESSING_INSTRUCTION": { + "specs": "dom", + "value": "0x40", + "exposed": "Window", + "name": "SHOW_PROCESSING_INSTRUCTION", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "SHOW_ALL": { + "specs": "dom", + "value": "0xFFFFFFFF", + "exposed": "Window", + "name": "SHOW_ALL", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "FILTER_ACCEPT": { + "specs": "dom", + "value": "1", + "exposed": "Window", + "name": "FILTER_ACCEPT", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SHOW_ELEMENT": { + "specs": "dom", + "value": "0x1", + "exposed": "Window", + "name": "SHOW_ELEMENT", + "type": "unsigned long", + "type-original": "unsigned long" + }, + "FILTER_SKIP": { + "specs": "dom", + "value": "3", + "exposed": "Window", + "name": "FILTER_SKIP", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SHOW_DOCUMENT_FRAGMENT": { + "specs": "dom", + "value": "0x400", + "exposed": "Window", + "name": "SHOW_DOCUMENT_FRAGMENT", + "type": "unsigned long", + "type-original": "unsigned long" + } + } + }, + "exposed": "Window", + "methods": { + "method": { + "acceptNode": { + "signature": [ + { + "param-min-required": 1, + "type": "unsigned short", + "param": [ + { + "name": "node", + "type": "Node", + "type-original": "Node" + } + ], + "type-original": "unsigned short" + } + ], + "specs": "dom", + "exposed": "Window", + "name": "acceptNode" + } + } + }, + "extends": "Object" + }, + "PushSubscription": { + "specs": "push-api", + "anonymous-methods": { + "method": [] + }, + "name": "PushSubscription", + "properties": { + "property": { + "expirationTime": { + "specs": "push-api", + "name": "expirationTime", + "type-original": "DOMTimeStamp?", + "nullable": 1, + "exposed": "Window", + "type": "unsigned long long", + "read-only": 1 + }, + "options": { + "specs": "push-api", + "same-object": 1, + "name": "options", + "type-original": "PushSubscriptionOptions", + "exposed": "Window", + "type": "PushSubscriptionOptions", + "read-only": 1 + }, + "endpoint": { + "specs": "push-api", + "exposed": "Window", + "name": "endpoint", + "type": "USVString", + "type-original": "USVString", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "toJSON": { + "serializer": 1, + "signature": [ + { + "type": "any", + "type-original": "any" + } + ], + "specs": "push-api", + "exposed": "Window", + "name": "toJSON" + }, + "getKey": { + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "ArrayBuffer", + "param": [ + { + "name": "name", + "type": "PushEncryptionKeyName", + "type-original": "PushEncryptionKeyName" + } + ], + "type-original": "ArrayBuffer?" + } + ], + "specs": "push-api", + "exposed": "Window", + "name": "getKey" + }, + "unsubscribe": { + "signature": [ + { + "subtype": { + "type": "boolean" + }, + "type": "Promise", + "type-original": "Promise" + } + ], + "specs": "push-api", + "exposed": "Window", + "name": "unsubscribe" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "OverflowEvent": { + "specs": "none", + "anonymous-methods": { + "method": [] + }, + "name": "OverflowEvent", + "properties": { + "property": { + "verticalOverflow": { + "specs": "none", + "exposed": "Window", + "name": "verticalOverflow", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "orient": { + "specs": "none", + "exposed": "Window", + "name": "orient", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + }, + "horizontalOverflow": { + "specs": "none", + "exposed": "Window", + "name": "horizontalOverflow", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + } + } + }, + "constants": { + "constant": { + "BOTH": { + "specs": "none", + "value": "2", + "exposed": "Window", + "name": "BOTH", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "HORIZONTAL": { + "specs": "none", + "value": "0", + "exposed": "Window", + "name": "HORIZONTAL", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "VERTICAL": { + "specs": "none", + "value": "1", + "exposed": "Window", + "name": "VERTICAL", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "UIEvent" + }, + "SVGGraphicsElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "default preserve", + "value-syntax": "enum", + "name": "xml:space" + }, + { + "enum-values": "false true", + "value-syntax": "enum", + "name": "externalResourcesRequired" + } + ] + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGGraphicsElement", + "properties": { + "property": { + "transform": { + "specs": "svg2", + "same-object": 1, + "name": "transform", + "content-attribute": "transform", + "type-original": "SVGAnimatedTransformList", + "exposed": "Window", + "content-attribute-value-syntax": "svg_transform_list", + "content-attribute-reflects": 1, + "type": "SVGAnimatedTransformList", + "read-only": 1 + }, + "farthestViewportElement": { + "specs": "svg2-20140211", + "name": "farthestViewportElement", + "type-original": "SVGElement?", + "deprecated": 1, + "interop": 1, + "nullable": 1, + "exposed": "Window", + "type": "SVGElement", + "read-only": 1 + }, + "nearestViewportElement": { + "specs": "svg2-20140211", + "name": "nearestViewportElement", + "type-original": "SVGElement?", + "deprecated": 1, + "interop": 1, + "nullable": 1, + "exposed": "Window", + "type": "SVGElement", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "getBBox": { + "signature": [ + { + "type": "SVGRect", + "type-original": "SVGRect" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "getBBox" + }, + "getTransformToElement": { + "deprecated": 1, + "interop": 1, + "signature": [ + { + "param-min-required": 1, + "type": "SVGMatrix", + "param": [ + { + "name": "element", + "type": "SVGElement", + "type-original": "SVGElement" + } + ], + "type-original": "SVGMatrix" + } + ], + "specs": "svg2-20140211", + "exposed": "Window", + "name": "getTransformToElement" + }, + "getScreenCTM": { + "signature": [ + { + "nullable": 1, + "type": "SVGMatrix", + "type-original": "SVGMatrix?" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "getScreenCTM" + }, + "getCTM": { + "signature": [ + { + "nullable": 1, + "type": "SVGMatrix", + "type-original": "SVGMatrix?" + } + ], + "specs": "svg2", + "exposed": "Window", + "name": "getCTM" + } + } + }, + "exposed": "Window", + "extends": "SVGElement", + "implements": [ + "SVGTests" + ] + }, + "MediaError": { + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "name": "MediaError", + "properties": { + "property": { + "msExtendedCode": { + "specs": "html5", + "name": "msExtendedCode", + "tags": "Media", + "type-original": "long", + "exposed": "Window", + "type": "long", + "read-only": 1 + }, + "code": { + "specs": "html5", + "name": "code", + "constant": 1, + "tags": "Media", + "type-original": "short", + "exposed": "Window", + "type": "short", + "read-only": 1 + } + } + }, + "tags": "Media", + "constants": { + "constant": { + "MEDIA_ERR_SRC_NOT_SUPPORTED": { + "specs": "html5", + "value": "4", + "name": "MEDIA_ERR_SRC_NOT_SUPPORTED", + "tags": "Media", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "MEDIA_ERR_NETWORK": { + "specs": "html5", + "value": "2", + "name": "MEDIA_ERR_NETWORK", + "tags": "Media", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "MEDIA_ERR_ABORTED": { + "specs": "html5", + "value": "1", + "name": "MEDIA_ERR_ABORTED", + "tags": "Media", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "MS_MEDIA_ERR_ENCRYPTED": { + "specs": "html5", + "value": "5", + "name": "MS_MEDIA_ERR_ENCRYPTED", + "tags": "Media", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "MEDIA_ERR_DECODE": { + "specs": "html5", + "value": "3", + "name": "MEDIA_ERR_DECODE", + "tags": "Media", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + } + } + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "Object" + }, + "HTMLFieldSetElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLFieldSetElement", + "properties": { + "property": { + "validationMessage": { + "specs": "html5", + "exposed": "Window", + "name": "validationMessage", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "disabled": { + "specs": "html5", + "ce-reactions": 1, + "name": "disabled", + "content-attribute": "disabled", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "align": { + "content-attribute-enum-values": "absbottom absmiddle baseline bottom left middle right texttop top", + "extension": 1, + "specs": "none", + "ce-reactions": 1, + "name": "align", + "type-original": "DOMString", + "content-attribute": "align", + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "DOMString" + }, + "validity": { + "specs": "html5", + "same-object": 1, + "name": "validity", + "type-original": "ValidityState", + "exposed": "Window", + "type": "ValidityState", + "read-only": 1 + }, + "name": { + "specs": "html5", + "ce-reactions": 1, + "name": "name", + "content-attribute": "name", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "form": { + "specs": "html5", + "name": "form", + "type-original": "HTMLFormElement?", + "nullable": 1, + "exposed": "Window", + "type": "HTMLFormElement", + "read-only": 1 + }, + "willValidate": { + "specs": "html5", + "exposed": "Window", + "name": "willValidate", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "fieldset" + } + ], + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": { + "checkValidity": { + "signature": [ + { + "type": "boolean", + "type-original": "boolean" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "checkValidity" + }, + "setCustomValidity": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "error", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "setCustomValidity" + } + } + }, + "extends": "HTMLElement" + }, + "SourceBufferList": { + "specs": "media-source", + "anonymous-methods": { + "method": [] + }, + "name": "SourceBufferList", + "properties": { + "property": { + "length": { + "specs": "media-source", + "exposed": "Window", + "name": "length", + "type": "unsigned long", + "type-original": "unsigned long", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "MSE", + "name": "addsourcebuffer", + "type": "Event", + "skips-window": 1 + }, + { + "dispatch": "sync", + "specs": "MSE", + "name": "removesourcebuffer", + "type": "Event", + "skips-window": 1 + } + ] + }, + "methods": { + "method": { + "item": { + "getter": 1, + "signature": [ + { + "param-min-required": 1, + "type": "SourceBuffer", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "SourceBuffer" + } + ], + "specs": "media-source", + "exposed": "Window", + "name": "item" + } + } + }, + "exposed": "Window", + "extends": "EventTarget" + }, + "WebGLActiveInfo": { + "constants": { + "constant": {} + }, + "specs": "webgl", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "WebGLActiveInfo", + "extends": "Object", + "properties": { + "property": { + "name": { + "specs": "webgl", + "exposed": "Window", + "name": "name", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "type": { + "specs": "webgl", + "exposed": "Window", + "name": "type", + "type": "unsigned long", + "type-original": "GLenum", + "read-only": 1 + }, + "size": { + "specs": "webgl", + "exposed": "Window", + "name": "size", + "type": "long", + "type-original": "GLint", + "read-only": 1 + } + } + } + }, + "DeviceMotionEvent": { + "specs": "orientation-event", + "constructor": { + "specs": "orientation-event", + "signature": [ + { + "param-min-required": 1, + "type": "DeviceMotionEvent", + "param": [ + { + "name": "typeArg", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "DeviceMotionEventInit", + "optional": 1, + "type-original": "DeviceMotionEventInit" + } + ], + "type-original": "DeviceMotionEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "DeviceMotionEvent", + "properties": { + "property": { + "rotationRate": { + "specs": "orientation-event", + "name": "rotationRate", + "type-original": "DeviceRotationRate?", + "nullable": 1, + "exposed": "Window", + "type": "DeviceRotationRate", + "read-only": 1 + }, + "acceleration": { + "specs": "orientation-event", + "name": "acceleration", + "type-original": "DeviceAcceleration?", + "nullable": 1, + "exposed": "Window", + "type": "DeviceAcceleration", + "read-only": 1 + }, + "interval": { + "specs": "orientation-event", + "name": "interval", + "type-original": "double?", + "nullable": 1, + "exposed": "Window", + "type": "double", + "read-only": 1 + }, + "accelerationIncludingGravity": { + "specs": "orientation-event", + "name": "accelerationIncludingGravity", + "type-original": "DeviceAcceleration?", + "nullable": 1, + "exposed": "Window", + "type": "DeviceAcceleration", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "initDeviceMotionEvent": { + "signature": [ + { + "param-min-required": 7, + "type": "void", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "bubbles", + "type": "boolean", + "type-original": "boolean" + }, + { + "name": "cancelable", + "type": "boolean", + "type-original": "boolean" + }, + { + "nullable": 1, + "name": "acceleration", + "type": "DeviceAccelerationDict", + "type-original": "DeviceAccelerationDict?" + }, + { + "nullable": 1, + "name": "accelerationIncludingGravity", + "type": "DeviceAccelerationDict", + "type-original": "DeviceAccelerationDict?" + }, + { + "nullable": 1, + "name": "rotationRate", + "type": "DeviceRotationRateDict", + "type-original": "DeviceRotationRateDict?" + }, + { + "nullable": 1, + "name": "interval", + "type": "double", + "type-original": "double?" + } + ], + "type-original": "void" + } + ], + "specs": "orientation-event", + "exposed": "Window", + "name": "initDeviceMotionEvent" + } + } + }, + "exposed": "Window", + "extends": "Event" + }, + "CountQueuingStrategy": { + "specs": "whatwg-streams", + "constructor": { + "specs": "whatwg-streams", + "signature": [ + { + "param-min-required": 1, + "type": "CountQueuingStrategy", + "param": [ + { + "name": "strategy", + "type": "QueuingStrategy", + "type-original": "QueuingStrategy" + } + ], + "type-original": "CountQueuingStrategy" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "CountQueuingStrategy", + "properties": { + "property": { + "highWaterMark": { + "specs": "whatwg-streams", + "exposed": "Window", + "name": "highWaterMark", + "type": "double", + "type-original": "double" + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": { + "size": { + "signature": [ + { + "type": "long", + "type-original": "long" + } + ], + "specs": "whatwg-streams", + "exposed": "Window", + "name": "size" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "HTMLElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "name": "x-ms-acceleratorkey" + }, + { + "enum-values": "all none phone", + "value-syntax": "enum", + "name": "x-ms-format-detection" + } + ] + }, + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "name": "HTMLElement", + "properties": { + "property": { + "onmouseleave": { + "specs": "html5", + "name": "onmouseleave", + "content-attribute": "onmouseleave", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "mouseleave" + }, + "onbeforecut": { + "specs": "html5", + "name": "onbeforecut", + "content-attribute": "onbeforecut", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "beforecut" + }, + "ondragend": { + "specs": "html5", + "name": "ondragend", + "content-attribute": "ondragend", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "dragend" + }, + "onbeforepaste": { + "specs": "html5", + "name": "onbeforepaste", + "content-attribute": "onbeforepaste", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "beforepaste" + }, + "onkeydown": { + "specs": "html5", + "name": "onkeydown", + "content-attribute": "onkeydown", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "keydown" + }, + "ondragover": { + "specs": "html5", + "name": "ondragover", + "content-attribute": "ondragover", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "dragover" + }, + "onkeyup": { + "specs": "html5", + "name": "onkeyup", + "content-attribute": "onkeyup", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "keyup" + }, + "offsetTop": { + "specs": "cssom-view", + "exposed": "Window", + "name": "offsetTop", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "onreset": { + "specs": "html5", + "name": "onreset", + "content-attribute": "onreset", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "reset" + }, + "onmouseup": { + "specs": "html5", + "name": "onmouseup", + "content-attribute": "onmouseup", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "mouseup" + }, + "ondragstart": { + "specs": "html5", + "name": "ondragstart", + "content-attribute": "ondragstart", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "dragstart" + }, + "onbeforecopy": { + "specs": "html5", + "name": "onbeforecopy", + "content-attribute": "onbeforecopy", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "beforecopy" + }, + "ondrag": { + "specs": "html5", + "name": "ondrag", + "content-attribute": "ondrag", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "drag" + }, + "onmouseover": { + "specs": "html5", + "name": "onmouseover", + "content-attribute": "onmouseover", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "mouseover" + }, + "ondragleave": { + "specs": "html5", + "name": "ondragleave", + "content-attribute": "ondragleave", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "dragleave" + }, + "lang": { + "content-attribute-aliases": "language", + "specs": "html5", + "ce-reactions": 1, + "name": "lang", + "tags": "Accessibility", + "content-attribute": "lang", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "bcp47_lang", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "onpause": { + "specs": "html5", + "name": "onpause", + "content-attribute": "onpause", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "pause" + }, + "onseeked": { + "specs": "html5", + "name": "onseeked", + "content-attribute": "onseeked", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "seeked" + }, + "onmousedown": { + "specs": "html5", + "name": "onmousedown", + "content-attribute": "onmousedown", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "mousedown" + }, + "title": { + "specs": "html5", + "ce-reactions": 1, + "name": "title", + "content-attribute": "title", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "onclick": { + "specs": "html5", + "name": "onclick", + "content-attribute": "onclick", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "click" + }, + "onwaiting": { + "specs": "html5", + "name": "onwaiting", + "content-attribute": "onwaiting", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "waiting" + }, + "offsetLeft": { + "specs": "cssom-view", + "exposed": "Window", + "name": "offsetLeft", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "ondurationchange": { + "specs": "html5", + "name": "ondurationchange", + "content-attribute": "ondurationchange", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "durationchange" + }, + "offsetHeight": { + "specs": "cssom-view", + "exposed": "Window", + "name": "offsetHeight", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "dir": { + "content-attribute-enum-values": "ltr rtl auto", + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "dir", + "tags": "CSSOM", + "content-attribute": "dir", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "onblur": { + "specs": "html5", + "name": "onblur", + "content-attribute": "onblur", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "blur" + }, + "onmscontentzoom": { + "specs": "html5", + "name": "onmscontentzoom", + "content-attribute": "onmscontentzoom", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSContentZoom" + }, + "onemptied": { + "specs": "html5", + "name": "onemptied", + "content-attribute": "onemptied", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "emptied" + }, + "onpaste": { + "specs": "html5", + "name": "onpaste", + "content-attribute": "onpaste", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "paste" + }, + "onseeking": { + "specs": "html5", + "name": "onseeking", + "content-attribute": "onseeking", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "seeking" + }, + "ondeactivate": { + "specs": "html5", + "name": "ondeactivate", + "content-attribute": "ondeactivate", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "deactivate" + }, + "oncanplay": { + "specs": "html5", + "name": "oncanplay", + "content-attribute": "oncanplay", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "canplay" + }, + "onstalled": { + "specs": "html5", + "name": "onstalled", + "content-attribute": "onstalled", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "stalled" + }, + "onmousemove": { + "specs": "html5", + "name": "onmousemove", + "content-attribute": "onmousemove", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "mousemove" + }, + "isContentEditable": { + "pure": 1, + "specs": "html5", + "name": "isContentEditable", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "read-only": 1 + }, + "onratechange": { + "specs": "html5", + "name": "onratechange", + "content-attribute": "onratechange", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "ratechange" + }, + "onloadstart": { + "specs": "html5", + "name": "onloadstart", + "content-attribute": "onloadstart", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "loadstart" + }, + "ondragenter": { + "specs": "html5", + "name": "ondragenter", + "content-attribute": "ondragenter", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "dragenter" + }, + "contentEditable": { + "content-attribute-enum-values": "true false", + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "contentEditable", + "content-attribute": "contenteditable", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "DOMString" + }, + "onsubmit": { + "specs": "html5", + "name": "onsubmit", + "content-attribute": "onsubmit", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "submit" + }, + "tabIndex": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "tabIndex", + "content-attribute": "tabindex", + "type-original": "short", + "exposed": "Window", + "content-attribute-value-syntax": "signed_integer", + "type": "short", + "content-attribute-reflects": 1 + }, + "onprogress": { + "specs": "html5", + "name": "onprogress", + "content-attribute": "onprogress", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "progress" + }, + "oninvalid": { + "specs": "html5", + "name": "oninvalid", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "invalid" + }, + "ondblclick": { + "specs": "html5", + "name": "ondblclick", + "content-attribute": "ondblclick", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "dblclick" + }, + "oncontextmenu": { + "specs": "html5", + "name": "oncontextmenu", + "content-attribute": "oncontextmenu", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "contextmenu" + }, + "onchange": { + "specs": "html5", + "name": "onchange", + "content-attribute": "onchange", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "change" + }, + "onloadedmetadata": { + "specs": "html5", + "name": "onloadedmetadata", + "content-attribute": "onloadedmetadata", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "loadedmetadata" + }, + "onerror": { + "specs": "html5", + "name": "onerror", + "content-attribute": "onerror", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "error" + }, + "onplay": { + "specs": "html5", + "name": "onplay", + "content-attribute": "onplay", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "play" + }, + "onplaying": { + "specs": "html5", + "name": "onplaying", + "content-attribute": "onplaying", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "playing" + }, + "onbeforeactivate": { + "specs": "html5", + "name": "onbeforeactivate", + "content-attribute": "onbeforeactivate", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "beforeactivate" + }, + "oncanplaythrough": { + "specs": "html5", + "name": "oncanplaythrough", + "content-attribute": "oncanplaythrough", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "canplaythrough" + }, + "onabort": { + "specs": "html5", + "name": "onabort", + "content-attribute": "onabort", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "abort" + }, + "hideFocus": { + "content-attribute-enum-values": "false true", + "specs": "html5", + "name": "hideFocus", + "content-attribute": "hidefocus", + "type-original": "boolean", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "boolean" + }, + "oncuechange": { + "specs": "html5", + "name": "oncuechange", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "cuechange" + }, + "onkeypress": { + "specs": "html5", + "name": "onkeypress", + "content-attribute": "onkeypress", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "keypress" + }, + "offsetParent": { + "specs": "cssom-view", + "name": "offsetParent", + "type-original": "Element", + "exposed": "Window", + "type": "Element", + "read-only": 1 + }, + "onloadeddata": { + "specs": "html5", + "name": "onloadeddata", + "content-attribute": "onloadeddata", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "loadeddata" + }, + "onbeforedeactivate": { + "specs": "html5", + "name": "onbeforedeactivate", + "content-attribute": "onbeforedeactivate", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "beforedeactivate" + }, + "outerText": { + "specs": "html5", + "ce-reactions": 1, + "name": "outerText", + "tags": "TreeMutation", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString" + }, + "onactivate": { + "specs": "html5", + "name": "onactivate", + "content-attribute": "onactivate", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "activate" + }, + "spellcheck": { + "content-attribute-enum-values": "true false", + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "spellcheck", + "content-attribute": "spellcheck", + "type-original": "boolean", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "boolean" + }, + "onsuspend": { + "specs": "html5", + "name": "onsuspend", + "content-attribute": "onsuspend", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "suspend" + }, + "accessKey": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "accessKey", + "tags": "Accessibility", + "content-attribute": "accesskey", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "space_separated_tokens", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "onmsmanipulationstatechanged": { + "specs": "html5", + "name": "onmsmanipulationstatechanged", + "content-attribute": "onmsmanipulationstatechanged", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "MSManipulationStateChanged" + }, + "onmouseenter": { + "specs": "html5", + "name": "onmouseenter", + "content-attribute": "onmouseenter", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "mouseenter" + }, + "onselectstart": { + "specs": "selection-api", + "name": "onselectstart", + "content-attribute": "onselectstart", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "selectstart" + }, + "onfocus": { + "specs": "html5", + "name": "onfocus", + "content-attribute": "onfocus", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "focus" + }, + "ontimeupdate": { + "specs": "html5", + "name": "ontimeupdate", + "content-attribute": "ontimeupdate", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "timeupdate" + }, + "innerText": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "innerText", + "tags": "TreeMutation", + "type-original": "DOMString", + "treat-null-as": "EmptyString", + "exposed": "Window", + "type": "DOMString" + }, + "oncut": { + "specs": "html5", + "name": "oncut", + "content-attribute": "oncut", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "cut" + }, + "onselect": { + "specs": "html5", + "name": "onselect", + "content-attribute": "onselect", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "select" + }, + "offsetWidth": { + "specs": "cssom-view", + "exposed": "Window", + "name": "offsetWidth", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "ondrop": { + "specs": "html5", + "name": "ondrop", + "content-attribute": "ondrop", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "drop" + }, + "dataset": { + "specs": "html5", + "name": "dataset", + "constant": 1, + "content-attribute": "data-", + "type-original": "DOMStringMap", + "exposed": "Window", + "type": "DOMStringMap", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "onmouseout": { + "specs": "html5", + "name": "onmouseout", + "content-attribute": "onmouseout", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "mouseout" + }, + "oncopy": { + "specs": "html5", + "name": "oncopy", + "content-attribute": "oncopy", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "copy" + }, + "onended": { + "specs": "html5", + "name": "onended", + "content-attribute": "onended", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "ended" + }, + "onscroll": { + "specs": "html5", + "name": "onscroll", + "content-attribute": "onscroll", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "scroll" + }, + "onmousewheel": { + "specs": "html5", + "name": "onmousewheel", + "content-attribute": "onmousewheel", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "mousewheel" + }, + "onload": { + "specs": "html5", + "name": "onload", + "content-attribute": "onload", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "load" + }, + "onvolumechange": { + "specs": "html5", + "name": "onvolumechange", + "content-attribute": "onvolumechange", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "volumechange" + }, + "hidden": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "hidden", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean" + }, + "oninput": { + "specs": "html5", + "name": "oninput", + "content-attribute": "oninput", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "input" + }, + "draggable": { + "content-attribute-enum-values": "true false", + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "draggable", + "content-attribute": "draggable", + "type-original": "boolean", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "boolean" + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "noframes" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "noscript" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "wbr", + "html-self-closing": 1 + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "section" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "nav" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "article" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "aside" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "hgroup" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "header" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "footer" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "figure" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "figcaption" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "mark" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "dd" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "dt" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "abbr" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "acronym" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "b" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "bdo" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "big" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "cite" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "code" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "dfn" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "em" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "i" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "kbd" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "nobr" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "rt" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "ruby" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "s" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "samp" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "small" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "strike" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "strong" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "sub" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "sup" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "tt" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "u" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "var" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "address" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "center" + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "keygen", + "html-self-closing": 1 + }, + { + "specs": "HTML5", + "namespace": "HTML", + "name": "plaintext" + } + ], + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": { + "dragDrop": { + "signature": [ + { + "type": "boolean", + "type-original": "boolean" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "dragDrop" + }, + "scrollIntoView": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "top", + "default": "VARIANT_TRUE", + "type": "boolean", + "optional": 1, + "type-original": "boolean" + } + ], + "type-original": "void" + } + ], + "specs": "cssom-view", + "exposed": "Window", + "name": "scrollIntoView" + }, + "focus": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "focus" + }, + "click": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "click" + }, + "msGetInputContext": { + "signature": [ + { + "type": "MSInputMethodContext", + "type-original": "MSInputMethodContext" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "msGetInputContext" + }, + "insertAdjacentText": { + "specs": "html5", + "ce-reactions": 1, + "name": "insertAdjacentText", + "tags": "TreeMutation", + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "where", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "text", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "exposed": "Window" + }, + "insertAdjacentElement": { + "specs": "html5", + "ce-reactions": 1, + "name": "insertAdjacentElement", + "tags": "TreeMutation", + "signature": [ + { + "param-min-required": 2, + "type": "Element", + "param": [ + { + "name": "position", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "insertedElement", + "type": "Element", + "type-original": "Element" + } + ], + "type-original": "Element" + } + ], + "exposed": "Window" + }, + "blur": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "blur" + }, + "insertAdjacentHTML": { + "specs": "html5", + "ce-reactions": 1, + "name": "insertAdjacentHTML", + "tags": "TreeMutation", + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "where", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "html", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "exposed": "Window" + } + } + }, + "extends": "Element", + "implements": [ + "ElementCSSInlineStyle" + ] + }, + "Comment": { + "specs": "dom", + "constructor": { + "specs": "dom", + "signature": [ + { + "param-min-required": 0, + "type": "Comment", + "param": [ + { + "name": "data", + "default": "\"\"", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + } + ], + "type-original": "Comment" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "Comment", + "properties": { + "property": { + "text": { + "extension": 1, + "specs": "none", + "name": "text", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString" + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "CharacterData" + }, + "PerformanceResourceTiming": { + "constants": { + "constant": {} + }, + "specs": "resource-timing", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window Worker", + "name": "PerformanceResourceTiming", + "extends": "PerformanceEntry", + "properties": { + "property": { + "responseStart": { + "specs": "resource-timing", + "exposed": "Window Worker", + "name": "responseStart", + "type": "double", + "type-original": "DOMHighResTimeStamp", + "read-only": 1 + }, + "domainLookupEnd": { + "specs": "resource-timing", + "exposed": "Window Worker", + "name": "domainLookupEnd", + "type": "double", + "type-original": "DOMHighResTimeStamp", + "read-only": 1 + }, + "redirectEnd": { + "specs": "resource-timing", + "exposed": "Window Worker", + "name": "redirectEnd", + "type": "double", + "type-original": "DOMHighResTimeStamp", + "read-only": 1 + }, + "redirectStart": { + "specs": "resource-timing", + "exposed": "Window Worker", + "name": "redirectStart", + "type": "double", + "type-original": "DOMHighResTimeStamp", + "read-only": 1 + }, + "domainLookupStart": { + "specs": "resource-timing", + "exposed": "Window Worker", + "name": "domainLookupStart", + "type": "double", + "type-original": "DOMHighResTimeStamp", + "read-only": 1 + }, + "requestStart": { + "specs": "resource-timing", + "exposed": "Window Worker", + "name": "requestStart", + "type": "double", + "type-original": "DOMHighResTimeStamp", + "read-only": 1 + }, + "fetchStart": { + "specs": "resource-timing", + "exposed": "Window Worker", + "name": "fetchStart", + "type": "double", + "type-original": "DOMHighResTimeStamp", + "read-only": 1 + }, + "connectEnd": { + "specs": "resource-timing", + "exposed": "Window Worker", + "name": "connectEnd", + "type": "double", + "type-original": "DOMHighResTimeStamp", + "read-only": 1 + }, + "initiatorType": { + "specs": "resource-timing", + "exposed": "Window Worker", + "name": "initiatorType", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "connectStart": { + "specs": "resource-timing", + "exposed": "Window Worker", + "name": "connectStart", + "type": "double", + "type-original": "DOMHighResTimeStamp", + "read-only": 1 + }, + "workerStart": { + "specs": "resource-timing", + "exposed": "Window Worker", + "name": "workerStart", + "type": "double", + "type-original": "DOMHighResTimeStamp", + "read-only": 1 + }, + "responseEnd": { + "specs": "resource-timing", + "exposed": "Window Worker", + "name": "responseEnd", + "type": "double", + "type-original": "DOMHighResTimeStamp", + "read-only": 1 + } + } + } + }, + "CanvasPattern": { + "constants": { + "constant": {} + }, + "specs": "2dcontext", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "CanvasPattern", + "extends": "Object", + "properties": { + "property": {} + } + }, + "MediaStreamError": { + "constants": { + "constant": {} + }, + "specs": "media-capture-api", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "MediaStreamError", + "extends": "Object", + "properties": { + "property": { + "constraintName": { + "specs": "media-capture-api", + "name": "constraintName", + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "name": { + "specs": "media-capture-api", + "exposed": "Window", + "name": "name", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "message": { + "specs": "media-capture-api", + "name": "message", + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + } + } + } + }, + "HTMLHRElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "off on", + "value-syntax": "enum", + "name": "unselectable" + } + ] + }, + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLHRElement", + "properties": { + "property": { + "width": { + "specs": "html5", + "ce-reactions": 1, + "name": "width", + "type-original": "DOMString", + "content-attribute": "width", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "non_negative_integer", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "align": { + "content-attribute-enum-values": "center justify left right", + "specs": "html5", + "ce-reactions": 1, + "name": "align", + "type-original": "DOMString", + "content-attribute": "align", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "enum", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "noShade": { + "specs": "html5", + "ce-reactions": 1, + "name": "noShade", + "type-original": "boolean", + "content-attribute": "noshade", + "deprecated": 1, + "interop": 1, + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "hr", + "html-self-closing": 1 + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement", + "implements": [ + "DOML2DeprecatedColorProperty", + "DOML2DeprecatedSizeProperty" + ] + }, + "FocusNavigationEvent": { + "specs": "none", + "constructor": { + "specs": "none", + "signature": [ + { + "param-min-required": 1, + "type": "FocusNavigationEvent", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "FocusNavigationEventInit", + "optional": 1, + "type-original": "FocusNavigationEventInit" + } + ], + "type-original": "FocusNavigationEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "FocusNavigationEvent", + "properties": { + "property": { + "navigationReason": { + "specs": "none", + "exposed": "Window", + "name": "navigationReason", + "type": "NavigationReason", + "type-original": "NavigationReason", + "read-only": 1 + }, + "originHeight": { + "specs": "none", + "exposed": "Window", + "name": "originHeight", + "type": "float", + "type-original": "float", + "read-only": 1 + }, + "originTop": { + "specs": "none", + "exposed": "Window", + "name": "originTop", + "type": "float", + "type-original": "float", + "read-only": 1 + }, + "originLeft": { + "specs": "none", + "exposed": "Window", + "name": "originLeft", + "type": "float", + "type-original": "float", + "read-only": 1 + }, + "originWidth": { + "specs": "none", + "exposed": "Window", + "name": "originWidth", + "type": "float", + "type-original": "float", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": { + "requestFocus": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "none", + "exposed": "Window", + "name": "requestFocus" + } + } + }, + "extends": "Event" + }, + "CharacterData": { + "specs": "dom4", + "anonymous-methods": { + "method": [] + }, + "name": "CharacterData", + "properties": { + "property": { + "length": { + "pure": 1, + "specs": "dom4", + "name": "length", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + }, + "data": { + "pure": 1, + "specs": "dom4", + "name": "data", + "type-original": "DOMString", + "treat-null-as": "EmptyString", + "exposed": "Window", + "type": "DOMString" + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "UIEvents", + "name": "DOMCharacterDataModified", + "type": "MutationEvent", + "bubbles": 1 + }, + { + "dispatch": "async-and-combine", + "specs": "UIEvents", + "name": "DOMSubtreeModified", + "type": "MutationEvent", + "bubbles": 1 + } + ] + }, + "methods": { + "method": { + "replaceData": { + "signature": [ + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "name": "offset", + "type": "unsigned long", + "type-original": "unsigned long" + }, + { + "name": "count", + "type": "unsigned long", + "type-original": "unsigned long" + }, + { + "name": "arg", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "replaceData" + }, + "deleteData": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "offset", + "type": "unsigned long", + "type-original": "unsigned long" + }, + { + "name": "count", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "void" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "deleteData" + }, + "appendData": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "arg", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "appendData" + }, + "insertData": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "offset", + "type": "unsigned long", + "type-original": "unsigned long" + }, + { + "name": "arg", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "insertData" + }, + "substringData": { + "signature": [ + { + "param-min-required": 2, + "type": "DOMString", + "param": [ + { + "name": "offset", + "type": "unsigned long", + "type-original": "unsigned long" + }, + { + "name": "count", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "DOMString" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "substringData" + } + } + }, + "exposed": "Window", + "extends": "Node", + "implements": [ + "ChildNode" + ] + }, + "HTMLOptGroupElement": { + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLOptGroupElement", + "properties": { + "property": { + "disabled": { + "specs": "html5", + "ce-reactions": 1, + "name": "disabled", + "content-attribute": "disabled", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "label": { + "specs": "html5", + "ce-reactions": 1, + "name": "label", + "content-attribute": "label", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "optgroup" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "WritableStreamDefaultController": { + "constants": { + "constant": {} + }, + "specs": "whatwg-streams", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "error": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "error", + "type": "any", + "optional": 1, + "type-original": "any" + } + ], + "type-original": "void" + } + ], + "specs": "whatwg-streams", + "exposed": "Window", + "name": "error" + } + } + }, + "name": "WritableStreamDefaultController", + "extends": "Object", + "properties": { + "property": {} + } + }, + "SVGPathSegLinetoRel": { + "specs": "svg11", + "anonymous-methods": { + "method": [] + }, + "name": "SVGPathSegLinetoRel", + "properties": { + "property": { + "y": { + "specs": "svg11", + "exposed": "Window", + "name": "y", + "type": "float", + "type-original": "float" + }, + "x": { + "specs": "svg11", + "exposed": "Window", + "name": "x", + "type": "float", + "type-original": "float" + } + } + }, + "constants": { + "constant": {} + }, + "interop": 1, + "deprecated": 1, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGPathSeg" + }, + "XPathExpression": { + "constants": { + "constant": {} + }, + "specs": "dom-level-3-xpath", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "evaluate": { + "signature": [ + { + "param-min-required": 3, + "type": "XPathResult", + "param": [ + { + "name": "contextNode", + "type": "Node", + "type-original": "Node" + }, + { + "name": "type", + "type": "unsigned short", + "type-original": "unsigned short" + }, + { + "name": "result", + "type": "XPathResult", + "type-original": "XPathResult" + } + ], + "type-original": "XPathResult" + } + ], + "specs": "dom-level-3-xpath", + "exposed": "Window", + "name": "evaluate" + } + } + }, + "name": "XPathExpression", + "extends": "Object", + "properties": { + "property": {} + } + }, + "SVGSwitchElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "clip-path" + }, + { + "enum-values": "auto default none context-menu help pointer progress wait cell crosshair text vertical-text alias copy move no-drop not-allowed e-resize n-resize ne-resize nw-resize s-resize se-resize sw-resize w-resize ew-resize ns-resize nesw-resize nwse-resize col-resize row-resize all-scroll zoom-in zoom-out inherit", + "value-syntax": "comma_separated_css_url_with_optional_x_y_offset_followed_by_enum", + "name": "cursor" + }, + { + "enum-values": "inline block inline-block list-item table inline-table table-header-group table-footer-group table-row-group table-column-group table-row table-column table-cell table-caption run-in ruby ruby-base ruby-text ruby-base-container flex inline-flex -ms-grid -ms-inline-grid none inherit initial", + "value-syntax": "enum", + "name": "display" + }, + { + "enum-values": "accumulate inherit", + "value-syntax": "svg_enum_new_followed_by_svg_viewbox", + "name": "enable-background" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "filter" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "mask" + }, + { + "enum-values": "inherit initial", + "value-syntax": "0_to_1_floating_point_number", + "name": "opacity" + } + ] + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGSwitchElement", + "properties": { + "property": {} + }, + "element": [ + { + "specs": "svg2", + "namespace": "SVG", + "name": "switch" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGGraphicsElement" + }, + "SVGPreserveAspectRatio": { + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGPreserveAspectRatio", + "properties": { + "property": { + "align": { + "specs": "svg2", + "name": "align", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + }, + "meetOrSlice": { + "specs": "svg2", + "name": "meetOrSlice", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short" + } + } + }, + "constants": { + "constant": { + "SVG_PRESERVEASPECTRATIO_XMINYMID": { + "specs": "svg2", + "value": "5", + "exposed": "Window", + "name": "SVG_PRESERVEASPECTRATIO_XMINYMID", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_PRESERVEASPECTRATIO_NONE": { + "specs": "svg2", + "value": "1", + "exposed": "Window", + "name": "SVG_PRESERVEASPECTRATIO_NONE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_PRESERVEASPECTRATIO_XMAXYMIN": { + "specs": "svg2", + "value": "4", + "exposed": "Window", + "name": "SVG_PRESERVEASPECTRATIO_XMAXYMIN", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_PRESERVEASPECTRATIO_XMAXYMAX": { + "specs": "svg2", + "value": "10", + "exposed": "Window", + "name": "SVG_PRESERVEASPECTRATIO_XMAXYMAX", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_PRESERVEASPECTRATIO_XMINYMAX": { + "specs": "svg2", + "value": "8", + "exposed": "Window", + "name": "SVG_PRESERVEASPECTRATIO_XMINYMAX", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_MEETORSLICE_UNKNOWN": { + "specs": "svg2", + "value": "0", + "exposed": "Window", + "name": "SVG_MEETORSLICE_UNKNOWN", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_PRESERVEASPECTRATIO_XMIDYMAX": { + "specs": "svg2", + "value": "9", + "exposed": "Window", + "name": "SVG_PRESERVEASPECTRATIO_XMIDYMAX", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_PRESERVEASPECTRATIO_XMINYMIN": { + "specs": "svg2", + "value": "2", + "exposed": "Window", + "name": "SVG_PRESERVEASPECTRATIO_XMINYMIN", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_PRESERVEASPECTRATIO_XMAXYMID": { + "specs": "svg2", + "value": "7", + "exposed": "Window", + "name": "SVG_PRESERVEASPECTRATIO_XMAXYMID", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_MEETORSLICE_MEET": { + "specs": "svg2", + "value": "1", + "exposed": "Window", + "name": "SVG_MEETORSLICE_MEET", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_PRESERVEASPECTRATIO_XMIDYMIN": { + "specs": "svg2", + "value": "3", + "exposed": "Window", + "name": "SVG_PRESERVEASPECTRATIO_XMIDYMIN", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_PRESERVEASPECTRATIO_XMIDYMID": { + "specs": "svg2", + "value": "6", + "exposed": "Window", + "name": "SVG_PRESERVEASPECTRATIO_XMIDYMID", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_MEETORSLICE_SLICE": { + "specs": "svg2", + "value": "2", + "exposed": "Window", + "name": "SVG_MEETORSLICE_SLICE", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "SVG_PRESERVEASPECTRATIO_UNKNOWN": { + "specs": "svg2", + "value": "0", + "exposed": "Window", + "name": "SVG_PRESERVEASPECTRATIO_UNKNOWN", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "Attr": { + "constants": { + "constant": {} + }, + "specs": "dom", + "anonymous-methods": { + "method": [] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "name": "Attr", + "extends": "Node", + "properties": { + "property": { + "specified": { + "specs": "dom", + "exposed": "Window", + "name": "specified", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "ownerElement": { + "specs": "dom", + "name": "ownerElement", + "type-original": "Element?", + "nullable": 1, + "exposed": "Window", + "type": "Element", + "read-only": 1 + }, + "value": { + "specs": "dom", + "ce-reactions": 1, + "exposed": "Window", + "name": "value", + "type": "DOMString", + "type-original": "DOMString" + }, + "name": { + "specs": "dom", + "name": "name", + "constant": 1, + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "prefix": { + "specs": "dom", + "name": "prefix", + "constant": 1, + "type-original": "DOMString?", + "nullable": 1, + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + } + } + } + }, + "PerformanceNavigation": { + "specs": "navigation-timing", + "anonymous-methods": { + "method": [] + }, + "name": "PerformanceNavigation", + "properties": { + "property": { + "redirectCount": { + "specs": "navigation-timing", + "name": "redirectCount", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short", + "read-only": 1 + }, + "type": { + "specs": "navigation-timing", + "name": "type", + "type-original": "unsigned short", + "exposed": "Window", + "type": "unsigned short", + "read-only": 1 + } + } + }, + "constants": { + "constant": { + "TYPE_RELOAD": { + "specs": "navigation-timing", + "value": "1", + "exposed": "Window", + "name": "TYPE_RELOAD", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "TYPE_RESERVED": { + "specs": "navigation-timing", + "value": "255", + "exposed": "Window", + "name": "TYPE_RESERVED", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "TYPE_BACK_FORWARD": { + "specs": "navigation-timing", + "value": "2", + "exposed": "Window", + "name": "TYPE_BACK_FORWARD", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "TYPE_NAVIGATE": { + "specs": "navigation-timing", + "value": "0", + "exposed": "Window", + "name": "TYPE_NAVIGATE", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "interop": 1, + "deprecated": 1, + "exposed": "Window", + "methods": { + "method": { + "toJSON": { + "signature": [ + { + "type": "any", + "type-original": "any" + } + ], + "specs": "navigation-timing", + "exposed": "Window", + "name": "toJSON" + } + } + }, + "extends": "Object" + }, + "HTMLDataListElement": { + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLDataListElement", + "properties": { + "property": { + "options": { + "specs": "html5", + "same-object": 1, + "name": "options", + "type-original": "HTMLCollection", + "exposed": "Window", + "type": "HTMLCollection", + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "datalist" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "SVGStopElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "inherit initial", + "value-syntax": "css_color", + "name": "color" + }, + { + "enum-values": "currentColor inherit initial", + "value-syntax": "css_color", + "name": "stop-color" + }, + { + "enum-values": "inherit", + "value-syntax": "0_to_1_floating_point_number", + "name": "stop-opacity" + } + ] + }, + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGStopElement", + "properties": { + "property": { + "offset": { + "specs": "svg2", + "same-object": 1, + "name": "offset", + "constant": 1, + "content-attribute": "offset", + "type-original": "SVGAnimatedNumber", + "exposed": "Window", + "content-attribute-value-syntax": "floating_point_number", + "type": "SVGAnimatedNumber", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "svg2", + "namespace": "SVG", + "name": "stop" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGElement" + }, + "ExtendableEvent": { + "specs": "service-workers", + "constructor": { + "specs": "service-workers", + "signature": [ + { + "param-min-required": 1, + "type": "ExtendableEvent", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "ExtendableEventInit", + "optional": 1, + "type-original": "ExtendableEventInit" + } + ], + "type-original": "ExtendableEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "ExtendableEvent", + "properties": { + "property": {} + }, + "constants": { + "constant": {} + }, + "exposed": "Worker", + "methods": { + "method": { + "waitUntil": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "subtype": { + "type": "any" + }, + "name": "f", + "type": "Promise", + "type-original": "Promise" + } + ], + "type-original": "void" + } + ], + "specs": "service-workers", + "exposed": "Worker", + "name": "waitUntil" + } + } + }, + "extends": "Event" + }, + "XPathNSResolver": { + "constants": { + "constant": {} + }, + "specs": "dom-level-3-xpath", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "lookupNamespaceURI": { + "signature": [ + { + "param-min-required": 1, + "type": "DOMString", + "param": [ + { + "name": "prefix", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "DOMString" + } + ], + "specs": "dom-level-3-xpath", + "exposed": "Window", + "name": "lookupNamespaceURI" + } + } + }, + "name": "XPathNSResolver", + "extends": "Object", + "properties": { + "property": {} + } + }, + "MediaStreamEvent": { + "specs": "webrtc", + "constructor": { + "specs": "webrtc", + "signature": [ + { + "param-min-required": 2, + "type": "MediaStreamEvent", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "MediaStreamEventInit", + "type-original": "MediaStreamEventInit" + } + ], + "type-original": "MediaStreamEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "MediaStreamEvent", + "properties": { + "property": { + "stream": { + "specs": "webrtc", + "name": "stream", + "type-original": "MediaStream?", + "nullable": 1, + "exposed": "Window", + "type": "MediaStream", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "Event" + }, + "CSSRuleList": { + "constants": { + "constant": {} + }, + "specs": "cssom", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "item": { + "specs": "cssom", + "name": "item", + "getter": 1, + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "CSSRule", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "CSSRule?" + } + ], + "exposed": "Window" + } + } + }, + "name": "CSSRuleList", + "extends": "Object", + "properties": { + "property": { + "length": { + "specs": "cssom", + "name": "length", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + } + } + } + }, + "SecurityPolicyViolationEvent": { + "specs": "csp", + "constructor": { + "specs": "csp", + "signature": [ + { + "param-min-required": 1, + "type": "SecurityPolicyViolationEvent", + "param": [ + { + "name": "type", + "type": "DOMString", + "type-original": "DOMString" + }, + { + "name": "eventInitDict", + "type": "SecurityPolicyViolationEventInit", + "optional": 1, + "type-original": "SecurityPolicyViolationEventInit" + } + ], + "type-original": "SecurityPolicyViolationEvent" + } + ], + "name": "" + }, + "anonymous-methods": { + "method": [] + }, + "name": "SecurityPolicyViolationEvent", + "properties": { + "property": { + "sourceFile": { + "specs": "csp", + "exposed": "Window", + "name": "sourceFile", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "violatedDirective": { + "specs": "csp", + "exposed": "Window", + "name": "violatedDirective", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "lineNumber": { + "specs": "csp", + "exposed": "Window", + "name": "lineNumber", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "referrer": { + "specs": "csp", + "exposed": "Window", + "name": "referrer", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "columnNumber": { + "specs": "csp", + "exposed": "Window", + "name": "columnNumber", + "type": "long", + "type-original": "long", + "read-only": 1 + }, + "statusCode": { + "specs": "csp", + "exposed": "Window", + "name": "statusCode", + "type": "unsigned short", + "type-original": "unsigned short", + "read-only": 1 + }, + "originalPolicy": { + "specs": "csp", + "exposed": "Window", + "name": "originalPolicy", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "effectiveDirective": { + "specs": "csp", + "exposed": "Window", + "name": "effectiveDirective", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "blockedURI": { + "specs": "csp", + "exposed": "Window", + "name": "blockedURI", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "documentURI": { + "specs": "csp", + "exposed": "Window", + "name": "documentURI", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Event" + }, + "MSMediaKeySession": { + "specs": "encrypted-media-20130510", + "anonymous-methods": { + "method": [] + }, + "name": "MSMediaKeySession", + "properties": { + "property": { + "sessionId": { + "specs": "encrypted-media-20130510", + "exposed": "Window", + "name": "sessionId", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "error": { + "specs": "encrypted-media-20130510", + "name": "error", + "type-original": "MSMediaKeyError?", + "nullable": 1, + "exposed": "Window", + "type": "MSMediaKeyError", + "read-only": 1 + }, + "keySystem": { + "specs": "encrypted-media-20130510", + "exposed": "Window", + "name": "keySystem", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "events": { + "event": [] + }, + "methods": { + "method": { + "close": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "encrypted-media-20130510", + "exposed": "Window", + "name": "close" + }, + "update": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "key", + "type": "Uint8Array", + "type-original": "Uint8Array" + } + ], + "type-original": "void" + } + ], + "specs": "encrypted-media-20130510", + "exposed": "Window", + "name": "update" + } + } + }, + "exposed": "Window", + "extends": "EventTarget" + }, + "HTMLTrackElement": { + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLTrackElement", + "properties": { + "property": { + "kind": { + "content-attribute-enum-values": "subtitles captions descriptions chapters metadata", + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "kind", + "content-attribute": "kind", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "track": { + "specs": "html5", + "exposed": "Window", + "name": "track", + "type": "TextTrack", + "type-original": "TextTrack", + "read-only": 1 + }, + "srclang": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "srclang", + "content-attribute": "srclang", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "bcp47_lang", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "src": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "src", + "content-attribute": "src", + "type-original": "USVString", + "exposed": "Window", + "content-attribute-value-syntax": "url", + "type": "USVString", + "content-attribute-reflects": 1 + }, + "readyState": { + "specs": "html5", + "exposed": "Window", + "name": "readyState", + "type": "unsigned short", + "type-original": "unsigned short", + "read-only": 1 + }, + "default": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "default", + "content-attribute": "default", + "type-original": "boolean", + "exposed": "Window", + "type": "boolean", + "content-attribute-reflects": 1, + "content-attribute-boolean": 1 + }, + "label": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "label", + "content-attribute": "label", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "track", + "html-self-closing": 1 + } + ], + "constants": { + "constant": { + "ERROR": { + "specs": "html5", + "value": "3", + "exposed": "Window", + "name": "ERROR", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "LOADED": { + "specs": "html5", + "value": "2", + "exposed": "Window", + "name": "LOADED", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "LOADING": { + "specs": "html5", + "value": "1", + "exposed": "Window", + "name": "LOADING", + "type": "unsigned short", + "type-original": "unsigned short" + }, + "NONE": { + "specs": "html5", + "value": "0", + "exposed": "Window", + "name": "NONE", + "type": "unsigned short", + "type-original": "unsigned short" + } + } + }, + "events": { + "event": [ + { + "dispatch": "sync", + "specs": "HTML5", + "name": "cuechange", + "type": "Event" + } + ] + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "HTMLOutputElement": { + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLOutputElement", + "properties": { + "property": { + "validationMessage": { + "specs": "html5", + "exposed": "Window", + "name": "validationMessage", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "validity": { + "specs": "html5", + "exposed": "Window", + "name": "validity", + "type": "ValidityState", + "type-original": "ValidityState", + "read-only": 1 + }, + "value": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "value", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString" + }, + "htmlFor": { + "put-forwards": "value", + "specs": "html5", + "same-object": 1, + "name": "htmlFor", + "constant": 1, + "content-attribute": "for", + "type-original": "DOMTokenList", + "exposed": "Window", + "content-attribute-value-syntax": "space_separated_id_refs", + "type": "DOMTokenList", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "name": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "name", + "content-attribute": "name", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + }, + "form": { + "pure": 1, + "specs": "html5", + "name": "form", + "type-original": "HTMLFormElement?", + "nullable": 1, + "exposed": "Window", + "type": "HTMLFormElement", + "read-only": 1 + }, + "type": { + "specs": "html5", + "name": "type", + "constant": 1, + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "willValidate": { + "specs": "html5", + "exposed": "Window", + "name": "willValidate", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + }, + "defaultValue": { + "pure": 1, + "specs": "html5", + "ce-reactions": 1, + "name": "defaultValue", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString" + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "output" + } + ], + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": { + "checkValidity": { + "signature": [ + { + "type": "boolean", + "type-original": "boolean" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "checkValidity" + }, + "reportValidity": { + "signature": [ + { + "type": "boolean", + "type-original": "boolean" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "reportValidity" + }, + "setCustomValidity": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "error", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "setCustomValidity" + } + } + }, + "extends": "HTMLElement" + }, + "ClientRectList": { + "specs": "cssom-view", + "anonymous-methods": { + "method": [] + }, + "name": "ClientRectList", + "properties": { + "property": { + "length": { + "specs": "cssom-view", + "name": "length", + "tags": "CSSOM", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + } + } + }, + "tags": "CSSOM", + "constants": { + "constant": {} + }, + "methods": { + "method": { + "item": { + "specs": "cssom-view", + "name": "item", + "tags": "CSSOM", + "getter": 1, + "signature": [ + { + "param-min-required": 1, + "type": "ClientRect", + "param": [ + { + "name": "index", + "type": "unsigned long", + "type-original": "unsigned long" + } + ], + "type-original": "ClientRect" + } + ], + "exposed": "Window" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "HTMLDataElement": { + "specs": "html5", + "html-constructor": 1, + "anonymous-methods": { + "method": [] + }, + "name": "HTMLDataElement", + "properties": { + "property": { + "value": { + "specs": "html5", + "ce-reactions": 1, + "name": "value", + "content-attribute": "value", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "content-attribute-reflects": 1 + } + } + }, + "element": [ + { + "specs": "HTML5", + "namespace": "HTML", + "name": "data" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "HTMLElement" + }, + "AudioListener": { + "constants": { + "constant": {} + }, + "specs": "webaudio", + "anonymous-methods": { + "method": [] + }, + "exposed": "Window", + "methods": { + "method": { + "setPosition": { + "deprecated": 1, + "signature": [ + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + }, + { + "name": "z", + "type": "float", + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "setPosition" + }, + "setOrientation": { + "deprecated": 1, + "signature": [ + { + "param-min-required": 6, + "type": "void", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + }, + { + "name": "z", + "type": "float", + "type-original": "float" + }, + { + "name": "xUp", + "type": "float", + "type-original": "float" + }, + { + "name": "yUp", + "type": "float", + "type-original": "float" + }, + { + "name": "zUp", + "type": "float", + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "webaudio", + "exposed": "Window", + "name": "setOrientation" + }, + "setVelocity": { + "interop": 1, + "deprecated": 1, + "specs": "WD-webaudio-20131010", + "signature": [ + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "name": "x", + "type": "double", + "type-original": "double" + }, + { + "name": "y", + "type": "double", + "type-original": "double" + }, + { + "name": "z", + "type": "double", + "type-original": "double" + } + ], + "type-original": "void" + } + ], + "name": "setVelocity", + "exposed": "Window" + } + } + }, + "name": "AudioListener", + "extends": "Object", + "properties": { + "property": { + "dopplerFactor": { + "deprecated": 1, + "interop": 1, + "specs": "WD-webaudio-20131010", + "exposed": "Window", + "name": "dopplerFactor", + "type": "double", + "type-original": "double" + }, + "speedOfSound": { + "deprecated": 1, + "interop": 1, + "specs": "WD-webaudio-20131010", + "exposed": "Window", + "name": "speedOfSound", + "type": "double", + "type-original": "double" + } + } + } + }, + "SVGMaskElement": { + "anonymous-content-attributes": { + "parsedattribute": [ + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "clip-path" + }, + { + "enum-values": "auto default none context-menu help pointer progress wait cell crosshair text vertical-text alias copy move no-drop not-allowed e-resize n-resize ne-resize nw-resize s-resize se-resize sw-resize w-resize ew-resize ns-resize nesw-resize nwse-resize col-resize row-resize all-scroll zoom-in zoom-out inherit", + "value-syntax": "comma_separated_css_url_with_optional_x_y_offset_followed_by_enum", + "name": "cursor" + }, + { + "enum-values": "accumulate inherit", + "value-syntax": "svg_enum_new_followed_by_svg_viewbox", + "name": "enable-background" + }, + { + "enum-values": "false true", + "value-syntax": "enum", + "name": "externalResourcesRequired" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "filter" + }, + { + "enum-values": "none inherit", + "value-syntax": "css_url_of_local_id_ref", + "name": "mask" + }, + { + "enum-values": "inherit initial", + "value-syntax": "0_to_1_floating_point_number", + "name": "opacity" + }, + { + "enum-values": "default preserve", + "value-syntax": "enum", + "name": "xml:space" + } + ] + }, + "specs": "css-masking", + "anonymous-methods": { + "method": [] + }, + "name": "SVGMaskElement", + "properties": { + "property": { + "width": { + "specs": "css-masking", + "name": "width", + "constant": 1, + "content-attribute": "width", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "type": "SVGAnimatedLength", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "y": { + "specs": "css-masking", + "name": "y", + "constant": 1, + "content-attribute": "y", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "type": "SVGAnimatedLength", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "maskUnits": { + "content-attribute-enum-values": "objectBoundingBox userSpaceOnUse", + "specs": "css-masking", + "name": "maskUnits", + "constant": 1, + "content-attribute": "maskUnits", + "type-original": "SVGAnimatedEnumeration", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "SVGAnimatedEnumeration", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "maskContentUnits": { + "content-attribute-enum-values": "userSpaceOnUse objectBoundingBox", + "specs": "css-masking", + "name": "maskContentUnits", + "constant": 1, + "content-attribute": "maskContentUnits", + "type-original": "SVGAnimatedEnumeration", + "exposed": "Window", + "content-attribute-value-syntax": "enum", + "type": "SVGAnimatedEnumeration", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "x": { + "specs": "css-masking", + "name": "x", + "constant": 1, + "content-attribute": "x", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "type": "SVGAnimatedLength", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "height": { + "specs": "css-masking", + "name": "height", + "constant": 1, + "content-attribute": "height", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "type": "SVGAnimatedLength", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "element": [ + { + "specs": "svg2", + "namespace": "SVG", + "name": "mask" + } + ], + "constants": { + "constant": {} + }, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "SVGElement", + "implements": [ + "SVGTests", + "SVGUnitTypes" + ] + }, + "External": { + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "name": "External", + "properties": { + "property": {} + }, + "constants": { + "constant": {} + }, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + } + } + }, + "mixins": { + "mixin": { + "NavigatorID": { + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "name": "NavigatorID", + "properties": { + "property": { + "appVersion": { + "specs": "html5", + "name": "appVersion", + "constant": 1, + "type-original": "DOMString", + "exposed": "Window Worker", + "type": "DOMString", + "read-only": 1 + }, + "appName": { + "specs": "html5", + "name": "appName", + "constant": 1, + "type-original": "DOMString", + "exposed": "Window Worker", + "type": "DOMString", + "read-only": 1 + }, + "appCodeName": { + "specs": "html5", + "name": "appCodeName", + "constant": 1, + "type-original": "DOMString", + "exposed": "Window Worker", + "type": "DOMString", + "read-only": 1 + }, + "userAgent": { + "property-descriptor-not-configurable": 1, + "pure": 1, + "specs": "html5", + "name": "userAgent", + "type-original": "DOMString", + "exposed": "Window Worker", + "type": "DOMString", + "read-only": 1 + }, + "productSub": { + "specs": "html5", + "exposed": "Window Worker", + "name": "productSub", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "product": { + "specs": "html5", + "name": "product", + "constant": 1, + "type-original": "DOMString", + "exposed": "Window Worker", + "type": "DOMString", + "read-only": 1 + }, + "platform": { + "specs": "html5", + "name": "platform", + "constant": 1, + "type-original": "DOMString", + "exposed": "Window Worker", + "type": "DOMString", + "read-only": 1 + }, + "vendorSub": { + "specs": "html5", + "exposed": "Window Worker", + "name": "vendorSub", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + }, + "vendor": { + "specs": "html5", + "exposed": "Window Worker", + "name": "vendor", + "type": "DOMString", + "type-original": "DOMString", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "exposed": "Window Worker", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "SVGFitToViewBox": { + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGFitToViewBox", + "properties": { + "property": { + "viewBox": { + "specs": "svg2", + "same-object": 1, + "name": "viewBox", + "constant": 1, + "content-attribute": "viewBox", + "type-original": "SVGAnimatedRect", + "exposed": "Window", + "content-attribute-value-syntax": "svg_viewbox", + "type": "SVGAnimatedRect", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "preserveAspectRatio": { + "specs": "svg2", + "same-object": 1, + "name": "preserveAspectRatio", + "constant": 1, + "content-attribute": "preserveAspectRatio", + "type-original": "SVGAnimatedPreserveAspectRatio", + "exposed": "Window", + "content-attribute-value-syntax": "svg_aspect_ratio", + "type": "SVGAnimatedPreserveAspectRatio", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "ParentNode": { + "specs": "selectors-api", + "anonymous-methods": { + "method": [] + }, + "name": "ParentNode", + "properties": { + "property": { + "children": { + "specs": "selectors-api", + "same-object": 1, + "name": "children", + "tags": "TreeNavigation", + "type-original": "HTMLCollection", + "exposed": "Window", + "type": "HTMLCollection", + "read-only": 1 + } + } + }, + "tags": "TreeNavigation", + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "exposed": "Window", + "methods": { + "method": { + "querySelectorAll": { + "pure": 1, + "signature": [ + { + "new-object": 1, + "param-min-required": 1, + "type": "NodeList", + "param": [ + { + "name": "selectors", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "NodeList" + } + ], + "specs": "selectors-api", + "exposed": "Window", + "name": "querySelectorAll", + "tags": "TreeNavigation" + }, + "querySelector": { + "pure": 1, + "signature": [ + { + "nullable": 1, + "param-min-required": 1, + "type": "Element", + "param": [ + { + "name": "selectors", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "Element?" + } + ], + "specs": "selectors-api", + "exposed": "Window", + "name": "querySelector", + "tags": "TreeNavigation" + } + } + }, + "extends": "Object" + }, + "MSFileSaver": { + "specs": "file-writer-api", + "anonymous-methods": { + "method": [] + }, + "name": "MSFileSaver", + "properties": { + "property": {} + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "methods": { + "method": { + "msSaveBlob": { + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "blob", + "type": "any", + "type-original": "any" + }, + { + "name": "defaultName", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + } + ], + "type-original": "boolean" + } + ], + "specs": "file-writer-api", + "exposed": "Window", + "name": "msSaveBlob" + }, + "msSaveOrOpenBlob": { + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "blob", + "type": "any", + "type-original": "any" + }, + { + "name": "defaultName", + "type": "DOMString", + "optional": 1, + "type-original": "DOMString" + } + ], + "type-original": "boolean" + } + ], + "specs": "file-writer-api", + "exposed": "Window", + "name": "msSaveOrOpenBlob" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "GlobalEventHandlers": { + "specs": "pointer-events", + "anonymous-methods": { + "method": [] + }, + "name": "GlobalEventHandlers", + "properties": { + "property": { + "onpointerout": { + "specs": "pointer-events", + "name": "onpointerout", + "content-attribute": "onpointerout", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "javascript", + "type": "EventHandlerNonNull", + "event-handler": "pointerout" + }, + "onpointerup": { + "specs": "pointer-events", + "name": "onpointerup", + "content-attribute": "onpointerup", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "javascript", + "type": "EventHandlerNonNull", + "event-handler": "pointerup" + }, + "onpointermove": { + "specs": "pointer-events", + "name": "onpointermove", + "content-attribute": "onpointermove", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "javascript", + "type": "EventHandlerNonNull", + "event-handler": "pointermove" + }, + "onpointerenter": { + "specs": "pointer-events", + "name": "onpointerenter", + "content-attribute": "onpointerenter", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "javascript", + "type": "EventHandlerNonNull", + "event-handler": "pointerenter" + }, + "onpointerdown": { + "specs": "pointer-events", + "name": "onpointerdown", + "content-attribute": "onpointerdown", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "javascript", + "type": "EventHandlerNonNull", + "event-handler": "pointerdown" + }, + "onpointercancel": { + "specs": "pointer-events", + "name": "onpointercancel", + "content-attribute": "onpointercancel", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "javascript", + "type": "EventHandlerNonNull", + "event-handler": "pointercancel" + }, + "onpointerover": { + "specs": "pointer-events", + "name": "onpointerover", + "content-attribute": "onpointerover", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "javascript", + "type": "EventHandlerNonNull", + "event-handler": "pointerover" + }, + "onpointerleave": { + "specs": "pointer-events", + "name": "onpointerleave", + "content-attribute": "onpointerleave", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "content-attribute-value-syntax": "javascript", + "type": "EventHandlerNonNull", + "event-handler": "pointerleave" + }, + "onwheel": { + "specs": "pointer-events", + "name": "onwheel", + "content-attribute": "onwheel", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "wheel" + } + } + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "Body": { + "specs": "whatwg-fetch", + "anonymous-methods": { + "method": [] + }, + "name": "Body", + "properties": { + "property": { + "bodyUsed": { + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "bodyUsed", + "type": "boolean", + "type-original": "boolean", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "methods": { + "method": { + "arrayBuffer": { + "signature": [ + { + "new-object": 1, + "subtype": { + "type": "ArrayBuffer" + }, + "type": "Promise", + "type-original": "Promise" + } + ], + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "arrayBuffer" + }, + "text": { + "signature": [ + { + "new-object": 1, + "subtype": { + "type": "USVString" + }, + "type": "Promise", + "type-original": "Promise" + } + ], + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "text" + }, + "blob": { + "signature": [ + { + "new-object": 1, + "subtype": { + "type": "Blob" + }, + "type": "Promise", + "type-original": "Promise" + } + ], + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "blob" + }, + "json": { + "signature": [ + { + "new-object": 1, + "subtype": { + "type": "any" + }, + "type": "Promise", + "type-original": "Promise" + } + ], + "specs": "whatwg-fetch", + "exposed": "Window", + "name": "json" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "GetSVGDocument": { + "specs": "svg11", + "anonymous-methods": { + "method": [] + }, + "name": "GetSVGDocument", + "properties": { + "property": {} + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "methods": { + "method": { + "getSVGDocument": { + "signature": [ + { + "type": "Document", + "type-original": "Document" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "getSVGDocument" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "GlobalFetch": { + "specs": "whatwg-fetch", + "anonymous-methods": { + "method": [] + }, + "name": "GlobalFetch", + "properties": { + "property": {} + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "exposed": "Window Worker", + "methods": { + "method": { + "fetch": { + "signature": [ + { + "new-object": 1, + "subtype": { + "type": "Response" + }, + "param-min-required": 0, + "type": "Promise", + "param": [ + { + "name": "input", + "type": [ + { + "type": "Request" + }, + { + "type": "USVString" + } + ], + "optional": 1, + "type-original": "RequestInfo" + }, + { + "name": "init", + "type": "RequestInit", + "optional": 1, + "type-original": "RequestInit" + } + ], + "type-original": "Promise" + } + ], + "specs": "whatwg-fetch", + "exposed": "Window Worker", + "name": "fetch" + } + } + }, + "extends": "Object" + }, + "NavigatorContentUtils": { + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "name": "NavigatorContentUtils", + "properties": { + "property": {} + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "CanvasPathMethods": { + "specs": "2dcontext", + "anonymous-methods": { + "method": [] + }, + "name": "CanvasPathMethods", + "properties": { + "property": {} + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "methods": { + "method": { + "quadraticCurveTo": { + "signature": [ + { + "param-min-required": 4, + "type": "void", + "param": [ + { + "name": "cpx", + "type": "float", + "type-original": "float" + }, + { + "name": "cpy", + "type": "float", + "type-original": "float" + }, + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "quadraticCurveTo" + }, + "lineTo": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "lineTo" + }, + "closePath": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "closePath" + }, + "rect": { + "signature": [ + { + "param-min-required": 4, + "type": "void", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + }, + { + "name": "w", + "type": "float", + "type-original": "float" + }, + { + "name": "h", + "type": "float", + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "rect" + }, + "ellipse": { + "signature": [ + { + "param-min-required": 7, + "type": "void", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + }, + { + "name": "radiusX", + "type": "float", + "type-original": "float" + }, + { + "name": "radiusY", + "type": "float", + "type-original": "float" + }, + { + "name": "rotation", + "type": "float", + "type-original": "float" + }, + { + "name": "startAngle", + "type": "float", + "type-original": "float" + }, + { + "name": "endAngle", + "type": "float", + "type-original": "float" + }, + { + "name": "anticlockwise", + "default": "false", + "type": "boolean", + "optional": 1, + "type-original": "boolean" + } + ], + "type-original": "void" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "ellipse" + }, + "moveTo": { + "signature": [ + { + "param-min-required": 2, + "type": "void", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "moveTo" + }, + "arcTo": { + "signature": [ + { + "param-min-required": 5, + "type": "void", + "param": [ + { + "name": "x1", + "type": "float", + "type-original": "float" + }, + { + "name": "y1", + "type": "float", + "type-original": "float" + }, + { + "name": "x2", + "type": "float", + "type-original": "float" + }, + { + "name": "y2", + "type": "float", + "type-original": "float" + }, + { + "name": "radius", + "type": "float", + "type-original": "float" + } + ], + "type-original": "void" + }, + { + "param-min-required": 7, + "type": "void", + "param": [ + { + "name": "x1", + "type": "float", + "type-original": "float" + }, + { + "name": "y1", + "type": "float", + "type-original": "float" + }, + { + "name": "x2", + "type": "float", + "type-original": "float" + }, + { + "name": "y2", + "type": "float", + "type-original": "float" + }, + { + "name": "radiusX", + "type": "float", + "type-original": "float" + }, + { + "name": "radiusY", + "type": "float", + "type-original": "float" + }, + { + "name": "rotation", + "type": "float", + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "arcTo" + }, + "arc": { + "signature": [ + { + "param-min-required": 5, + "type": "void", + "param": [ + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + }, + { + "name": "radius", + "type": "float", + "type-original": "float" + }, + { + "name": "startAngle", + "type": "float", + "type-original": "float" + }, + { + "name": "endAngle", + "type": "float", + "type-original": "float" + }, + { + "name": "anticlockwise", + "default": "false", + "type": "boolean", + "optional": 1, + "type-original": "boolean" + } + ], + "type-original": "void" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "arc" + }, + "bezierCurveTo": { + "signature": [ + { + "param-min-required": 6, + "type": "void", + "param": [ + { + "name": "cp1x", + "type": "float", + "type-original": "float" + }, + { + "name": "cp1y", + "type": "float", + "type-original": "float" + }, + { + "name": "cp2x", + "type": "float", + "type-original": "float" + }, + { + "name": "cp2y", + "type": "float", + "type-original": "float" + }, + { + "name": "x", + "type": "float", + "type-original": "float" + }, + { + "name": "y", + "type": "float", + "type-original": "float" + } + ], + "type-original": "void" + } + ], + "specs": "2dcontext", + "exposed": "Window", + "name": "bezierCurveTo" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "MSNavigatorDoNotTrack": { + "specs": "tracking-dnt", + "anonymous-methods": { + "method": [] + }, + "name": "MSNavigatorDoNotTrack", + "properties": { + "property": {} + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "methods": { + "method": { + "removeWebWideTrackingException": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "args", + "type": "ExceptionInformation", + "type-original": "ExceptionInformation" + } + ], + "type-original": "void" + } + ], + "specs": "tracking-dnt", + "exposed": "Window", + "name": "removeWebWideTrackingException" + }, + "removeSiteSpecificTrackingException": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "args", + "type": "ExceptionInformation", + "type-original": "ExceptionInformation" + } + ], + "type-original": "void" + } + ], + "specs": "tracking-dnt", + "exposed": "Window", + "name": "removeSiteSpecificTrackingException" + }, + "storeWebWideTrackingException": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "args", + "type": "StoreExceptionsInformation", + "type-original": "StoreExceptionsInformation" + } + ], + "type-original": "void" + } + ], + "specs": "tracking-dnt", + "exposed": "Window", + "name": "storeWebWideTrackingException" + }, + "confirmWebWideTrackingException": { + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "args", + "type": "ExceptionInformation", + "type-original": "ExceptionInformation" + } + ], + "type-original": "boolean" + } + ], + "specs": "tracking-dnt", + "exposed": "Window", + "name": "confirmWebWideTrackingException" + }, + "confirmSiteSpecificTrackingException": { + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "args", + "type": "ConfirmSiteSpecificExceptionsInformation", + "type-original": "ConfirmSiteSpecificExceptionsInformation" + } + ], + "type-original": "boolean" + } + ], + "specs": "tracking-dnt", + "exposed": "Window", + "name": "confirmSiteSpecificTrackingException" + }, + "storeSiteSpecificTrackingException": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "args", + "type": "StoreSiteSpecificExceptionsInformation", + "type-original": "StoreSiteSpecificExceptionsInformation" + } + ], + "type-original": "void" + } + ], + "specs": "tracking-dnt", + "exposed": "Window", + "name": "storeSiteSpecificTrackingException" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "NavigatorOnLine": { + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "name": "NavigatorOnLine", + "properties": { + "property": { + "onLine": { + "specs": "html5", + "name": "onLine", + "tags": "Offline", + "type-original": "boolean", + "exposed": "Window Worker", + "type": "boolean", + "read-only": 1 + } + } + }, + "tags": "Offline", + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "methods": { + "method": {} + }, + "exposed": "Window Worker", + "extends": "Object" + }, + "WindowBase64": { + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "name": "WindowBase64", + "properties": { + "property": {} + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "exposed": "Window Worker", + "methods": { + "method": { + "btoa": { + "signature": [ + { + "param-min-required": 1, + "type": "DOMString", + "param": [ + { + "name": "rawString", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "DOMString" + } + ], + "specs": "html5", + "exposed": "Window Worker", + "name": "btoa" + }, + "atob": { + "signature": [ + { + "param-min-required": 1, + "type": "DOMString", + "param": [ + { + "name": "encodedString", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "DOMString" + } + ], + "specs": "html5", + "exposed": "Window Worker", + "name": "atob" + } + } + }, + "extends": "Object" + }, + "ChildNode": { + "specs": "dom4", + "anonymous-methods": { + "method": [] + }, + "name": "ChildNode", + "properties": { + "property": {} + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "methods": { + "method": { + "remove": { + "signature": [ + { + "type": "void", + "type-original": "void" + } + ], + "specs": "dom4", + "ce-reactions": 1, + "exposed": "Window", + "name": "remove", + "tags": "TreeMutation" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "XMLHttpRequestEventTarget": { + "specs": "xhr", + "anonymous-methods": { + "method": [] + }, + "name": "XMLHttpRequestEventTarget", + "properties": { + "property": { + "onload": { + "specs": "xhr", + "name": "onload", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "load" + }, + "onerror": { + "specs": "xhr", + "name": "onerror", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "error" + }, + "onprogress": { + "specs": "xhr", + "name": "onprogress", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "progress" + }, + "ontimeout": { + "specs": "xhr", + "name": "ontimeout", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "timeout" + }, + "onabort": { + "specs": "xhr", + "name": "onabort", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "abort" + }, + "onloadend": { + "specs": "xhr", + "name": "onloadend", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "loadend" + }, + "onloadstart": { + "specs": "xhr", + "name": "onloadstart", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "loadstart" + } + } + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "WindowLocalStorage": { + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "name": "WindowLocalStorage", + "properties": { + "property": { + "localStorage": { + "specs": "html5", + "exposed": "Window", + "name": "localStorage", + "type": "Storage", + "type-original": "Storage", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "NavigatorBeacon": { + "specs": "beacon", + "anonymous-methods": { + "method": [] + }, + "name": "NavigatorBeacon", + "properties": { + "property": {} + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "exposed": "Window Worker", + "methods": { + "method": { + "sendBeacon": { + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "url", + "type": "USVString", + "type-original": "USVString" + }, + { + "name": "data", + "default": "null", + "type": [ + { + "nullable": 1, + "type": "Blob" + }, + { + "type": [ + { + "nullable": 1, + "type": "Int8Array" + }, + { + "nullable": 1, + "type": "Int16Array" + }, + { + "nullable": 1, + "type": "Int32Array" + }, + { + "nullable": 1, + "type": "Uint8Array" + }, + { + "nullable": 1, + "type": "Uint16Array" + }, + { + "nullable": 1, + "type": "Uint32Array" + }, + { + "nullable": 1, + "type": "Uint8ClampedArray" + }, + { + "nullable": 1, + "type": "Float32Array" + }, + { + "nullable": 1, + "type": "Float64Array" + }, + { + "nullable": 1, + "type": "DataView" + }, + { + "nullable": 1, + "type": "ArrayBuffer" + } + ] + }, + { + "nullable": 1, + "type": "FormData" + }, + { + "nullable": 1, + "type": "USVString" + } + ], + "optional": 1, + "type-original": "BodyInit?" + } + ], + "type-original": "boolean" + } + ], + "specs": "beacon", + "exposed": "Window Worker", + "name": "sendBeacon" + } + } + }, + "extends": "Object" + }, + "DocumentEvent": { + "specs": "dom4", + "anonymous-methods": { + "method": [] + }, + "name": "DocumentEvent", + "properties": { + "property": {} + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "methods": { + "method": { + "createEvent": { + "signature": [ + { + "param-min-required": 1, + "type": "Event", + "param": [ + { + "name": "eventInterface", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "Event" + } + ], + "specs": "dom4", + "exposed": "Window", + "name": "createEvent" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "IDBEnvironment": { + "specs": "indexeddb", + "anonymous-methods": { + "method": [] + }, + "name": "IDBEnvironment", + "properties": { + "property": { + "indexedDB": { + "specs": "indexeddb", + "name": "indexedDB", + "type-original": "IDBFactory", + "exposed": "Window", + "type": "IDBFactory", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "HTMLHyperlinkElementUtils": { + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "name": "HTMLHyperlinkElementUtils", + "properties": { + "property": { + "protocol": { + "specs": "html5", + "ce-reactions": 1, + "name": "protocol", + "type-original": "USVString", + "exposed": "Window", + "type": "USVString" + }, + "search": { + "specs": "html5", + "ce-reactions": 1, + "name": "search", + "type-original": "USVString", + "exposed": "Window", + "type": "USVString" + }, + "hostname": { + "specs": "html5", + "ce-reactions": 1, + "name": "hostname", + "type-original": "USVString", + "exposed": "Window", + "type": "USVString" + }, + "pathname": { + "specs": "html5", + "ce-reactions": 1, + "name": "pathname", + "type-original": "USVString", + "exposed": "Window", + "type": "USVString" + }, + "port": { + "specs": "html5", + "ce-reactions": 1, + "name": "port", + "type-original": "USVString", + "exposed": "Window", + "type": "USVString" + }, + "host": { + "specs": "html5", + "ce-reactions": 1, + "name": "host", + "type-original": "USVString", + "exposed": "Window", + "type": "USVString" + }, + "hash": { + "specs": "html5", + "ce-reactions": 1, + "name": "hash", + "type-original": "USVString", + "exposed": "Window", + "type": "USVString" + }, + "href": { + "specs": "html5", + "ce-reactions": 1, + "name": "href", + "content-attribute": "href", + "type-original": "USVString", + "exposed": "Window", + "content-attribute-value-syntax": "url", + "type": "USVString", + "content-attribute-reflects": 1, + "stringifier": 1 + } + } + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "methods": { + "method": { + "toString": { + "signature": [ + { + "type": "USVString", + "type-original": "USVString" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "toString", + "stringifier": 1 + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "WindowTimers": { + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "name": "WindowTimers", + "properties": { + "property": {} + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "methods": { + "method": { + "clearTimeout": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "handle", + "default": "0", + "type": "long", + "optional": 1, + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "clearTimeout" + }, + "setTimeout": { + "signature": [ + { + "param-min-required": 1, + "type": "long", + "param": [ + { + "name": "handler", + "type": "any", + "type-original": "any" + }, + { + "name": "timeout", + "type": "any", + "optional": 1, + "type-original": "any" + }, + { + "variadic": 1, + "name": "args", + "type": "any", + "type-original": "any" + } + ], + "type-original": "long" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "setTimeout" + }, + "clearInterval": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "name": "handle", + "default": "0", + "type": "long", + "optional": 1, + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "clearInterval" + }, + "setInterval": { + "signature": [ + { + "param-min-required": 1, + "type": "long", + "param": [ + { + "name": "handler", + "type": "any", + "type-original": "any" + }, + { + "name": "timeout", + "type": "any", + "optional": 1, + "type-original": "any" + }, + { + "variadic": 1, + "name": "args", + "type": "any", + "type-original": "any" + } + ], + "type-original": "long" + } + ], + "specs": "html5", + "exposed": "Window", + "name": "setInterval" + } + } + }, + "exposed": "Window", + "extends": "Object", + "implements": [ + "WindowTimersExtension" + ] + }, + "ElementTraversal": { + "specs": "dom4", + "anonymous-methods": { + "method": [] + }, + "name": "ElementTraversal", + "properties": { + "property": { + "previousElementSibling": { + "specs": "dom4", + "name": "previousElementSibling", + "tags": "TreeNavigation", + "type-original": "Element?", + "nullable": 1, + "exposed": "Window", + "type": "Element", + "read-only": 1 + }, + "childElementCount": { + "specs": "dom4", + "name": "childElementCount", + "tags": "TreeNavigation", + "type-original": "unsigned long", + "exposed": "Window", + "type": "unsigned long", + "read-only": 1 + }, + "nextElementSibling": { + "specs": "dom4", + "name": "nextElementSibling", + "tags": "TreeNavigation", + "type-original": "Element?", + "nullable": 1, + "exposed": "Window", + "type": "Element", + "read-only": 1 + }, + "lastElementChild": { + "specs": "dom4", + "name": "lastElementChild", + "tags": "TreeNavigation", + "type-original": "Element?", + "nullable": 1, + "exposed": "Window", + "type": "Element", + "read-only": 1 + }, + "firstElementChild": { + "specs": "dom4", + "name": "firstElementChild", + "tags": "TreeNavigation", + "type-original": "Element?", + "nullable": 1, + "exposed": "Window", + "type": "Element", + "read-only": 1 + } + } + }, + "tags": "TreeNavigation", + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "methods": { + "method": {} + }, + "exposed": "Window", + "extends": "Object" + }, + "WindowEventHandlers": { + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "name": "WindowEventHandlers", + "properties": { + "property": { + "ononline": { + "specs": "html5", + "name": "ononline", + "content-attribute": "ononline", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "online", + "event-handler-map-to-window": 1 + }, + "onpageshow": { + "specs": "html5", + "name": "onpageshow", + "content-attribute": "onpageshow", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "pageshow", + "event-handler-map-to-window": 1 + }, + "onafterprint": { + "specs": "html5", + "name": "onafterprint", + "content-attribute": "onafterprint", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "afterprint", + "event-handler-map-to-window": 1 + }, + "onbeforeprint": { + "specs": "html5", + "name": "onbeforeprint", + "content-attribute": "onbeforeprint", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "beforeprint", + "event-handler-map-to-window": 1 + }, + "onoffline": { + "specs": "html5", + "name": "onoffline", + "content-attribute": "onoffline", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "offline", + "event-handler-map-to-window": 1 + }, + "onunload": { + "specs": "html5", + "name": "onunload", + "content-attribute": "onunload", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "unload", + "event-handler-map-to-window": 1 + }, + "onhashchange": { + "specs": "html5", + "name": "onhashchange", + "content-attribute": "onhashchange", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "hashchange", + "event-handler-map-to-window": 1 + }, + "onmessage": { + "specs": "html5", + "name": "onmessage", + "content-attribute": "onmessage", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "message", + "event-handler-map-to-window": 1 + }, + "onbeforeunload": { + "specs": "html5", + "name": "onbeforeunload", + "content-attribute": "onbeforeunload", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "beforeunload", + "event-handler-map-to-window": 1 + }, + "onstorage": { + "specs": "html5", + "name": "onstorage", + "content-attribute": "onstorage", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "storage", + "event-handler-map-to-window": 1 + }, + "onpopstate": { + "specs": "html5", + "name": "onpopstate", + "content-attribute": "onpopstate", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "popstate", + "event-handler-map-to-window": 1 + }, + "onpagehide": { + "specs": "html5", + "name": "onpagehide", + "content-attribute": "onpagehide", + "type-original": "EventHandler", + "nullable": 1, + "content-attribute-value-syntax": "javascript", + "exposed": "Window", + "type": "EventHandlerNonNull", + "event-handler": "pagehide", + "event-handler-map-to-window": 1 + } + } + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "SVGTests": { + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGTests", + "properties": { + "property": { + "requiredFeatures": { + "specs": "svg11", + "name": "requiredFeatures", + "type-original": "SVGStringList", + "content-attribute": "requiredFeatures", + "deprecated": 1, + "interop": 1, + "content-attribute-value-syntax": "space_separated_tokens", + "exposed": "Window", + "content-attribute-reflects": 1, + "type": "SVGStringList", + "read-only": 1 + }, + "requiredExtensions": { + "specs": "svg2", + "same-object": 1, + "name": "requiredExtensions", + "content-attribute": "requiredExtensions", + "type-original": "SVGStringList", + "exposed": "Window", + "content-attribute-value-syntax": "space_separated_urls", + "type": "SVGStringList", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "systemLanguage": { + "specs": "svg2", + "same-object": 1, + "name": "systemLanguage", + "content-attribute": "systemLanguage", + "type-original": "SVGStringList", + "exposed": "Window", + "content-attribute-value-syntax": "comma_separated_bcp47_langs", + "type": "SVGStringList", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "exposed": "Window", + "methods": { + "method": { + "hasExtension": { + "deprecated": 1, + "interop": 1, + "signature": [ + { + "param-min-required": 1, + "type": "boolean", + "param": [ + { + "name": "extension", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "boolean" + } + ], + "specs": "svg11", + "exposed": "Window", + "name": "hasExtension" + } + } + }, + "extends": "Object" + }, + "NavigatorStorageUtils": { + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "name": "NavigatorStorageUtils", + "properties": { + "property": {} + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "WindowTimersExtension": { + "specs": "setimmediate", + "anonymous-methods": { + "method": [] + }, + "name": "WindowTimersExtension", + "properties": { + "property": {} + }, + "tags": "Timers", + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "methods": { + "method": { + "clearImmediate": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "handle", + "type": "long", + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "setimmediate", + "exposed": "Window", + "name": "clearImmediate", + "tags": "Timers" + }, + "setImmediate": { + "signature": [ + { + "param-min-required": 1, + "type": "long", + "param": [ + { + "name": "expression", + "type": "any", + "type-original": "any" + }, + { + "variadic": 1, + "name": "args", + "type": "any", + "type-original": "any" + } + ], + "type-original": "long" + } + ], + "specs": "setimmediate", + "exposed": "Window", + "name": "setImmediate", + "tags": "Timers" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "ElementCSSInlineStyle": { + "specs": "cssom", + "anonymous-methods": { + "method": [] + }, + "name": "ElementCSSInlineStyle", + "properties": { + "property": { + "style": { + "put-forwards": "cssText", + "specs": "cssom", + "same-object": 1, + "name": "style", + "constant": 1, + "content-attribute": "style", + "type-original": "CSSStyleDeclaration", + "exposed": "Window", + "content-attribute-value-syntax": "css", + "type": "CSSStyleDeclaration", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "DOML2DeprecatedColorProperty": { + "specs": "dom-level-2-html", + "anonymous-methods": { + "method": [] + }, + "name": "DOML2DeprecatedColorProperty", + "properties": { + "property": { + "color": { + "specs": "dom-level-2-html", + "ce-reactions": 1, + "name": "color", + "tags": "CSSOM", + "content-attribute": "color", + "type-original": "DOMString", + "exposed": "Window", + "content-attribute-value-syntax": "simple_color", + "type": "DOMString", + "content-attribute-reflects": 1 + } + } + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "NavigatorUserMedia": { + "specs": "media-capture-api", + "anonymous-methods": { + "method": [] + }, + "name": "NavigatorUserMedia", + "properties": { + "property": { + "mediaDevices": { + "specs": "media-capture-api", + "exposed": "Window", + "name": "mediaDevices", + "type": "MediaDevices", + "type-original": "MediaDevices", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "methods": { + "method": { + "getUserMedia": { + "signature": [ + { + "param-min-required": 3, + "type": "void", + "param": [ + { + "name": "constraints", + "type": "MediaStreamConstraints", + "type-original": "MediaStreamConstraints" + }, + { + "name": "successCallback", + "type": "NavigatorUserMediaSuccessCallback", + "type-original": "NavigatorUserMediaSuccessCallback" + }, + { + "name": "errorCallback", + "type": "NavigatorUserMediaErrorCallback", + "type-original": "NavigatorUserMediaErrorCallback" + } + ], + "type-original": "void" + } + ], + "specs": "media-capture-api", + "exposed": "Window", + "name": "getUserMedia" + }, + "getDisplayMedia": { + "specs": "screen-capture", + "signature": [ + { + "subtype": { + "type": "MediaStream" + }, + "param-min-required": 1, + "type": "Promise", + "param": [ + { + "name": "constraints", + "type": "MediaStreamConstraints", + "type-original": "MediaStreamConstraints" + } + ], + "type-original": "Promise" + } + ], + "name": "getDisplayMedia", + "exposed": "Window" + } + } + }, + "exposed": "Window", + "extends": "Object" + }, + "NavigatorConcurrentHardware": { + "specs": "none", + "anonymous-methods": { + "method": [] + }, + "name": "NavigatorConcurrentHardware", + "properties": { + "property": { + "hardwareConcurrency": { + "specs": "none", + "name": "hardwareConcurrency", + "constant": 1, + "type-original": "unsigned long long", + "exposed": "Window Worker", + "type": "unsigned long long", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "exposed": "Window Worker", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "AbstractWorker": { + "specs": "workers", + "anonymous-methods": { + "method": [] + }, + "name": "AbstractWorker", + "properties": { + "property": { + "onerror": { + "specs": "workers", + "name": "onerror", + "type-original": "EventHandler", + "nullable": 1, + "exposed": "Window Worker", + "type": "EventHandlerNonNull", + "event-handler": "error" + } + } + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "exposed": "Window Worker", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "LinkStyle": { + "specs": "cssom", + "anonymous-methods": { + "method": [] + }, + "name": "LinkStyle", + "properties": { + "property": { + "sheet": { + "specs": "cssom", + "name": "sheet", + "type-original": "StyleSheet?", + "nullable": 1, + "exposed": "Window", + "type": "StyleSheet", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "DOML2DeprecatedSizeProperty": { + "specs": "dom-level-2-html", + "anonymous-methods": { + "method": [] + }, + "name": "DOML2DeprecatedSizeProperty", + "properties": { + "property": { + "size": { + "specs": "dom-level-2-html", + "ce-reactions": 1, + "name": "size", + "tags": "CSSOM", + "content-attribute": "size", + "type-original": "long", + "exposed": "Window", + "content-attribute-value-syntax": "1_or_greater_integer", + "type": "long", + "content-attribute-reflects": 1 + } + } + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "NavigatorLanguage": { + "specs": "whatwg-html", + "anonymous-methods": { + "method": [] + }, + "name": "NavigatorLanguage", + "properties": { + "property": { + "language": { + "pure": 1, + "specs": "whatwg-html", + "name": "language", + "type-original": "DOMString", + "exposed": "Window", + "type": "DOMString", + "read-only": 1 + }, + "languages": { + "pure": 1, + "specs": "whatwg-html", + "name": "languages", + "type-original": "FrozenArray", + "subtype": { + "type": "DOMString" + }, + "exposed": "Window", + "type": "FrozenArray", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "WindowConsole": { + "specs": "none", + "anonymous-methods": { + "method": [] + }, + "name": "WindowConsole", + "properties": { + "property": { + "console": { + "specs": "none", + "name": "console", + "tags": "Console", + "type-original": "Console", + "replaceable": 1, + "exposed": "Window Worker", + "type": "Console", + "read-only": 1 + } + } + }, + "tags": "Console", + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "methods": { + "method": {} + }, + "exposed": "Window Worker", + "extends": "Object" + }, + "SVGAnimatedPoints": { + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGAnimatedPoints", + "properties": { + "property": { + "animatedPoints": { + "specs": "svg2", + "same-object": 1, + "name": "animatedPoints", + "constant": 1, + "type-original": "SVGPointList", + "exposed": "Window", + "type": "SVGPointList", + "read-only": 1 + }, + "points": { + "specs": "svg2", + "same-object": 1, + "name": "points", + "constant": 1, + "content-attribute": "points", + "type-original": "SVGPointList", + "exposed": "Window", + "content-attribute-value-syntax": "svg_coordinate_pair_list", + "content-attribute-reflects": 1, + "type": "SVGPointList", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "WindowSessionStorage": { + "specs": "html5", + "anonymous-methods": { + "method": [] + }, + "name": "WindowSessionStorage", + "properties": { + "property": { + "sessionStorage": { + "specs": "html5", + "exposed": "Window", + "name": "sessionStorage", + "type": "Storage", + "type-original": "Storage", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "SVGFilterPrimitiveStandardAttributes": { + "specs": "filter-effects", + "anonymous-methods": { + "method": [] + }, + "name": "SVGFilterPrimitiveStandardAttributes", + "properties": { + "property": { + "width": { + "specs": "filter-effects", + "name": "width", + "constant": 1, + "content-attribute": "width", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "type": "SVGAnimatedLength", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "y": { + "specs": "filter-effects", + "name": "y", + "constant": 1, + "content-attribute": "y", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "type": "SVGAnimatedLength", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "x": { + "specs": "filter-effects", + "name": "x", + "constant": 1, + "content-attribute": "x", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "type": "SVGAnimatedLength", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "height": { + "specs": "filter-effects", + "name": "height", + "constant": 1, + "content-attribute": "height", + "type-original": "SVGAnimatedLength", + "exposed": "Window", + "content-attribute-value-syntax": "svg_number_with_optional_unit", + "type": "SVGAnimatedLength", + "content-attribute-reflects": 1, + "read-only": 1 + }, + "result": { + "specs": "filter-effects", + "name": "result", + "constant": 1, + "content-attribute": "result", + "type-original": "SVGAnimatedString", + "exposed": "Window", + "type": "SVGAnimatedString", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + }, + "WorkerUtils": { + "specs": "workers", + "anonymous-methods": { + "method": [] + }, + "name": "WorkerUtils", + "properties": { + "property": { + "navigator": { + "property-descriptor-not-configurable": 1, + "specs": "workers", + "name": "navigator", + "type-original": "WorkerNavigator", + "exposed": "Worker", + "type": "WorkerNavigator", + "read-only": 1 + }, + "msIndexedDB": { + "specs": "indexeddb", + "name": "msIndexedDB", + "type-original": "IDBFactory", + "exposed": "Worker", + "type": "IDBFactory", + "read-only": 1 + }, + "indexedDB": { + "specs": "indexeddb", + "name": "indexedDB", + "type-original": "IDBFactory", + "exposed": "Worker", + "type": "IDBFactory", + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "exposed": "Worker", + "methods": { + "method": { + "clearImmediate": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "handle", + "type": "long", + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "workers", + "exposed": "Worker", + "name": "clearImmediate" + }, + "importScripts": { + "signature": [ + { + "param-min-required": 0, + "type": "void", + "param": [ + { + "variadic": 1, + "name": "urls", + "type": "DOMString", + "type-original": "DOMString" + } + ], + "type-original": "void" + } + ], + "specs": "workers", + "exposed": "Worker", + "name": "importScripts" + }, + "clearTimeout": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "handle", + "type": "long", + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "workers", + "exposed": "Worker", + "name": "clearTimeout" + }, + "setImmediate": { + "signature": [ + { + "param-min-required": 1, + "type": "long", + "param": [ + { + "name": "handler", + "type": "any", + "type-original": "any" + }, + { + "variadic": 1, + "name": "args", + "type": "any", + "optional": 1, + "type-original": "any" + } + ], + "type-original": "long" + } + ], + "specs": "setimmediate", + "exposed": "Worker", + "name": "setImmediate" + }, + "setTimeout": { + "signature": [ + { + "param-min-required": 1, + "type": "long", + "param": [ + { + "name": "handler", + "type": "any", + "type-original": "any" + }, + { + "name": "timeout", + "type": "any", + "optional": 1, + "type-original": "any" + }, + { + "variadic": 1, + "name": "args", + "type": "any", + "type-original": "any" + } + ], + "type-original": "long" + } + ], + "specs": "workers", + "exposed": "Worker", + "name": "setTimeout" + }, + "clearInterval": { + "signature": [ + { + "param-min-required": 1, + "type": "void", + "param": [ + { + "name": "handle", + "type": "long", + "type-original": "long" + } + ], + "type-original": "void" + } + ], + "specs": "workers", + "exposed": "Worker", + "name": "clearInterval" + }, + "setInterval": { + "signature": [ + { + "param-min-required": 1, + "type": "long", + "param": [ + { + "name": "handler", + "type": "any", + "type-original": "any" + }, + { + "name": "timeout", + "type": "any", + "optional": 1, + "type-original": "any" + }, + { + "variadic": 1, + "name": "args", + "type": "any", + "type-original": "any" + } + ], + "type-original": "long" + } + ], + "specs": "workers", + "exposed": "Worker", + "name": "setInterval" + } + } + }, + "extends": "Object", + "implements": [ + "WindowBase64" + ] + }, + "SVGURIReference": { + "specs": "svg2", + "anonymous-methods": { + "method": [] + }, + "name": "SVGURIReference", + "properties": { + "property": { + "href": { + "content-attribute-aliases": "xlink:href", + "specs": "svg2", + "same-object": 1, + "name": "href", + "constant": 1, + "content-attribute": "href", + "type-original": "SVGAnimatedString", + "exposed": "Window", + "content-attribute-value-syntax": "url", + "type": "SVGAnimatedString", + "content-attribute-reflects": 1, + "read-only": 1 + } + } + }, + "constants": { + "constant": {} + }, + "no-interface-object": 1, + "exposed": "Window", + "methods": { + "method": {} + }, + "extends": "Object" + } + } + } +} \ No newline at end of file diff --git a/inputfiles/browser.webidl.xml b/inputfiles/browser.webidl.xml deleted file mode 100644 index 4ae841ac2..000000000 --- a/inputfiles/browser.webidl.xml +++ /dev/null @@ -1,13505 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - segments - sequence - - - suspended - running - closed - - - lowpass - highpass - bandpass - lowshelf - highshelf - peaking - notch - allpass - - - nonzero - evenodd - - - max - clamped-max - explicit - - - speakers - discrete - - - linear - inverse - exponential - - - character - word - sentence - textedit - - - mouse - keyboard - gamepad - - - next - nextunique - prev - prevunique - - - pending - done - - - readonly - readwrite - versionchange - - - inactive - active - disambiguation - - - audioinput - audiooutput - videoinput - - - license-request - license-renewal - license-release - individualization-request - - - temporary - persistent-license - persistent-release-message - - - required - optional - not-allowed - - - usable - expired - output-downscaled - output-not-allowed - status-pending - internal-error - - - live - ended - - - FIDO_2_0 - - - os - stun - turn - peer-derived - - - failed - direct - relay - - - description - localclientevent - inbound-network - outbound-network - inbound-payload - outbound-payload - transportdiagnostics - - - Embedded - USB - NFC - BT - - - unknown - defer - allow - deny - - - geolocation - unlimitedIndexedDBQuota - media - pointerlock - webnotifications - - - up - down - left - right - - - navigate - reload - back_forward - prerender - - - auto - ltr - rtl - - - default - denied - granted - - - sine - square - sawtooth - triangle - custom - - - none - 2x - 4x - - - equalpower - - - success - fail - - - - shipping - delivery - pickup - - - p256dh - auth - - - granted - denied - prompt - - - - no-referrer - no-referrer-when-downgrade - origin-only - origin-when-cross-origin - unsafe-url - - - default - no-store - reload - no-cache - force-cache - - - omit - same-origin - include - - - - document - sharedworker - subresource - unknown - worker - - - navigate - same-origin - no-cors - cors - - - follow - error - manual - - - - audio - font - image - script - style - track - video - - - basic - cors - default - error - opaque - opaqueredirect - - - balanced - max-compat - max-bundle - - - maintain-framerate - maintain-resolution - balanced - - - auto - client - server - - - new - connecting - connected - closed - - - host - srflx - prflx - relay - - - RTP - RTCP - - - new - checking - connected - completed - failed - disconnected - closed - - - new - gathering - complete - - - new - gathering - complete - - - all - nohost - relay - - - udp - tcp - - - controlling - controlled - - - active - passive - so - - - none - relay - all - - - new - checking - connected - completed - disconnected - closed - - - offer - pranswer - answer - - - stable - have-local-offer - have-remote-offer - have-local-pranswer - have-remote-pranswer - closed - - - frozen - waiting - inprogress - failed - succeeded - cancelled - - - host - serverreflexive - peerreflexive - relayed - - - inboundrtp - outboundrtp - session - datachannel - track - transport - candidatepair - localcandidate - remotecandidate - - - ScopedCred - - - installing - installed - activating - activated - redundant - - - usb - nfc - ble - - - user - environment - left - right - - - hidden - visible - prerender - unloaded - - - - arraybuffer - blob - document - json - text - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - CanvasPathMethods - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ChildNode - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - RandomSource - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GlobalEventHandlers - NodeSelector - DocumentEvent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - NodeSelector - - - ChildNode - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GlobalEventHandlers - ElementTraversal - NodeSelector - ChildNode - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - MSBaseReader - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - DOML2DeprecatedColorProperty - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GetSVGDocument - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - DOML2DeprecatedColorProperty - DOML2DeprecatedSizeProperty - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GetSVGDocument - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - DOML2DeprecatedColorProperty - DOML2DeprecatedSizeProperty - - - - - - - - - - - - - - - - - - - - - - - - GetSVGDocument - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - LinkStyle - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GetSVGDocument - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - LinkStyle - - - - - - - - - - - - - - - - - - HTMLTableAlignment - - - - - - - - - - - - - - - - - - - HTMLTableAlignment - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - HTMLTableAlignment - - - - - - - - - - - - - - - - - - - - - - - - - HTMLTableAlignment - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - MSBaseReader - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - NavigatorID - NavigatorOnLine - NavigatorContentUtils - NavigatorStorageUtils - NavigatorGeolocation - MSNavigatorDoNotTrack - MSFileSaver - NavigatorBeacon - NavigatorConcurrentHardware - NavigatorUserMedia - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - CanvasPathMethods - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Body - - - - - - - - - - - - - - - - - - - - - - - - - Body - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AbstractWorker - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SVGURIReference - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SVGUnitTypes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SVGFilterPrimitiveStandardAttributes - - - - - - - - - - - - - - - - - - - SVGFilterPrimitiveStandardAttributes - - - - - - - - - - - - SVGFilterPrimitiveStandardAttributes - - - - - - - - - - - - - - - - - - - SVGFilterPrimitiveStandardAttributes - - - - - - - - - - - - - - - - - - - - - - SVGFilterPrimitiveStandardAttributes - - - - - - - - - - - - - - - - - - - - - - - SVGFilterPrimitiveStandardAttributes - - - - - - - - - - - - - - - - - - - - - SVGFilterPrimitiveStandardAttributes - - - - - - - - - - - - - - - - - - - - - - - - SVGFilterPrimitiveStandardAttributes - - - - - - - - - - - - - - - - - - - SVGFilterPrimitiveStandardAttributes - - - - - - - - - - - - - - - - - - - - SVGFilterPrimitiveStandardAttributes - SVGURIReference - - - - - - - - - - SVGFilterPrimitiveStandardAttributes - - - - - - - - - - - - - - - - - - SVGFilterPrimitiveStandardAttributes - - - - - - - - - - - - - SVGFilterPrimitiveStandardAttributes - - - - - - - - - - - - - - - - - - - - - - SVGFilterPrimitiveStandardAttributes - - - - - - - - - - - - - - - - - - - - - - - - - - - - SVGFilterPrimitiveStandardAttributes - - - - - - - - - - - - - - - - - - SVGFilterPrimitiveStandardAttributes - - - - - - - - - - - - - - - - SVGUnitTypes - SVGURIReference - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SVGUnitTypes - SVGURIReference - - - - - - - - - - - - SVGTests - - - - - - - - - - - - - - - - - - - - - - - - - - - - SVGURIReference - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SVGFitToViewBox - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SVGTests - SVGUnitTypes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SVGTests - SVGUnitTypes - SVGFitToViewBox - SVGURIReference - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SVGAnimatedPoints - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SVGAnimatedPoints - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SVGURIReference - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - DocumentEvent - SVGFitToViewBox - SVGZoomAndPan - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SVGFitToViewBox - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SVGURIReference - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SVGURIReference - - - - - - - - - - - - - - - SVGZoomAndPan - SVGFitToViewBox - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - WindowTimers - WindowSessionStorage - WindowLocalStorage - WindowConsole - GlobalEventHandlers - IDBEnvironment - WindowBase64 - GlobalFetch - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AbstractWorker - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - XMLHttpRequestEventTarget - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - XMLHttpRequestEventTarget - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - WindowTimersExtension - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/inputfiles/comments.json b/inputfiles/comments.json index a26f0d9c2..6fbb9ef4e 100644 --- a/inputfiles/comments.json +++ b/inputfiles/comments.json @@ -1,3085 +1,1932 @@ -{ - "interfaces": [ - { - "name": "HTMLTableElement", - "members": { - "property": [ - { - "name": "width", - "comment": "/**\r\n * Sets or retrieves the width of the object.\r\n */" - }, - { - "name": "borderColorLight", - "comment": "/**\r\n * Sets or retrieves the color for one of the two colors used to draw the 3-D border of the object.\r\n */" - }, - { - "name": "cellSpacing", - "comment": "/**\r\n * Sets or retrieves the amount of space between cells in a table.\r\n */" - }, - { - "name": "tFoot", - "comment": "/**\r\n * Retrieves the tFoot object of the table.\r\n */" - }, - { - "name": "frame", - "comment": "/**\r\n * Sets or retrieves the way the border frame around the table is displayed.\r\n */" - }, - { - "name": "borderColor", - "comment": "/**\r\n * Sets or retrieves the border color of the object.\r\n */" - }, - { - "name": "rows", - "comment": "/**\r\n * Sets or retrieves the number of horizontal rows contained in the object.\r\n */" - }, - { - "name": "rules", - "comment": "/**\r\n * Sets or retrieves which dividing lines (inner borders) are displayed.\r\n */" - }, - { - "name": "cols", - "comment": "/**\r\n * Sets or retrieves the number of columns in the table.\r\n */" - }, - { - "name": "summary", - "comment": "/**\r\n * Sets or retrieves a description and/or structure of the object.\r\n */" - }, - { - "name": "caption", - "comment": "/**\r\n * Retrieves the caption object of a table.\r\n */" - }, - { - "name": "tBodies", - "comment": "/**\r\n * Retrieves a collection of all tBody objects in the table. Objects in this collection are in source order.\r\n */" - }, - { - "name": "tHead", - "comment": "/**\r\n * Retrieves the tHead object of the table.\r\n */" - }, - { - "name": "align", - "comment": "/**\r\n * Sets or retrieves a value that indicates the table alignment.\r\n */" - }, - { - "name": "cells", - "comment": "/**\r\n * Retrieves a collection of all cells in the table row or in the entire table.\r\n */" - }, - { - "name": "height", - "comment": "/**\r\n * Sets or retrieves the height of the object.\r\n */" - }, - { - "name": "cellPadding", - "comment": "/**\r\n * Sets or retrieves the amount of space between the border of the cell and the content of the cell.\r\n */" - }, - { - "name": "border", - "comment": "/**\r\n * Sets or retrieves the width of the border to draw around the object.\r\n */" - }, - { - "name": "borderColorDark", - "comment": "/**\r\n * Sets or retrieves the color for one of the two colors used to draw the 3-D border of the object.\r\n */" - } - ], - "method": [ - { - "name": "deleteRow", - "comment": "/**\r\n * Removes the specified row (tr) from the element and from the rows collection.\r\n * @param index Number that specifies the zero-based position in the rows collection of the row to remove.\r\n */" - }, - { - "name": "createTBody", - "comment": "/**\r\n * Creates an empty tBody element in the table.\r\n */" - }, - { - "name": "deleteCaption", - "comment": "/**\r\n * Deletes the caption element and its contents from the table.\r\n */" - }, - { - "name": "insertRow", - "comment": "/**\r\n * Creates a new row (tr) in the table, and adds the row to the rows collection.\r\n * @param index Number that specifies where to insert the row in the rows collection. The default value is -1, which appends the new row to the end of the rows collection.\r\n */" - }, - { - "name": "deleteTFoot", - "comment": "/**\r\n * Deletes the tFoot element and its contents from the table.\r\n */" - }, - { - "name": "createTHead", - "comment": "/**\r\n * Returns the tHead element object if successful, or null otherwise.\r\n */" - }, - { - "name": "deleteTHead", - "comment": "/**\r\n * Deletes the tHead element and its contents from the table.\r\n */" - }, - { - "name": "createCaption", - "comment": "/**\r\n * Creates an empty caption element in the table.\r\n */" - }, - { - "name": "moveRow", - "comment": "/**\r\n * Moves a table row to a new position.\r\n * @param indexFrom Number that specifies the index in the rows collection of the table row that is moved.\r\n * @param indexTo Number that specifies where the row is moved within the rows collection.\r\n */" - }, - { - "name": "createTFoot", - "comment": "/**\r\n * Creates an empty tFoot element in the table.\r\n */" - } - ] - } - }, - { - "name": "HTMLBaseElement", - "members": { - "property": [ - { - "name": "target", - "comment": "/**\r\n * Sets or retrieves the window or frame at which to target content.\r\n */" - }, - { - "name": "href", - "comment": "/**\r\n * Gets or sets the baseline URL on which relative links are based.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLParagraphElement", - "members": { - "property": [ - { - "name": "align", - "comment": "/**\r\n * Sets or retrieves how the object is aligned with adjacent text.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLAreasCollection", - "members": { - "property": [], - "method": [ - { - "name": "remove", - "comment": "/**\r\n * Removes an element from the collection.\r\n */" - }, - { - "name": "add", - "comment": "/**\r\n * Adds an element to the areas, controlRange, or options collection.\r\n */" - } - ] - } - }, - { - "name": "HTMLAppletElement", - "members": { - "property": [ - { - "name": "codeType", - "comment": "/**\r\n * Sets or retrieves the Internet media type for the code associated with the object.\r\n */" - }, - { - "name": "archive", - "comment": "/**\r\n * Sets or retrieves a character string that can be used to implement your own archive functionality for the object.\r\n */" - }, - { - "name": "alt", - "comment": "/**\r\n * Sets or retrieves a text alternative to the graphic.\r\n */" - }, - { - "name": "standby", - "comment": "/**\r\n * Sets or retrieves a message to be displayed while an object is loading.\r\n */" - }, - { - "name": "classid", - "comment": "/**\r\n * Sets or retrieves the class identifier for the object.\r\n */" - }, - { - "name": "name", - "comment": "/**\r\n * Sets or retrieves the shape of the object.\r\n */" - }, - { - "name": "useMap", - "comment": "/**\r\n * Sets or retrieves the URL, often with a bookmark extension (#name), to use as a client-side image map.\r\n */" - }, - { - "name": "data", - "comment": "/**\r\n * Sets or retrieves the URL that references the data of the object.\r\n */" - }, - { - "name": "height", - "comment": "/**\r\n * Sets or retrieves the height of the object.\r\n */" - }, - { - "name": "altHtml", - "comment": "/**\r\n * Gets or sets the optional alternative HTML script to execute if the object fails to load.\r\n */" - }, - { - "name": "contentDocument", - "comment": "/**\r\n * Address of a pointer to the document this page or frame contains. If there is no document, then null will be returned.\r\n */" - }, - { - "name": "codeBase", - "comment": "/**\r\n * Sets or retrieves the URL of the component.\r\n */" - }, - { - "name": "declare", - "comment": "/**\r\n * Sets or retrieves a character string that can be used to implement your own declare functionality for the object.\r\n */" - }, - { - "name": "type", - "comment": "/**\r\n * Returns the content type of the object.\r\n */" - }, - { - "name": "BaseHref", - "comment": "/**\r\n * Retrieves a string of the URL where the object tag can be found. This is often the href of the document that the object is in, or the value set by a base element.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLOListElement", - "members": { - "property": [ - { - "name": "start", - "comment": "/**\r\n * The starting number.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLSelectElement", - "members": { - "property": [ - { - "name": "value", - "comment": "/**\r\n * Sets or retrieves the value which is returned to the server when the form control is submitted.\r\n */" - }, - { - "name": "form", - "comment": "/**\r\n * Retrieves a reference to the form that the object is embedded in.\r\n */" - }, - { - "name": "name", - "comment": "/**\r\n * Sets or retrieves the name of the object.\r\n */" - }, - { - "name": "size", - "comment": "/**\r\n * Sets or retrieves the number of rows in the list box.\r\n */" - }, - { - "name": "length", - "comment": "/**\r\n * Sets or retrieves the number of objects in a collection.\r\n */" - }, - { - "name": "selectedIndex", - "comment": "/**\r\n * Sets or retrieves the index of the selected option in a select object.\r\n */" - }, - { - "name": "multiple", - "comment": "/**\r\n * Sets or retrieves the Boolean value indicating whether multiple items can be selected from a list.\r\n */" - }, - { - "name": "type", - "comment": "/**\r\n * Retrieves the type of select control based on the value of the MULTIPLE attribute.\r\n */" - }, - { - "name": "validationMessage", - "comment": "/**\r\n * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as \"this is a required field\". The result is that the user sees validation messages without actually submitting.\r\n */" - }, - { - "name": "autofocus", - "comment": "/**\r\n * Provides a way to direct a user to a specific field when a document loads. This can provide both direction and convenience for a user, reducing the need to click or tab to a field when a page opens. This attribute is true when present on an element, and false when missing.\r\n */" - }, - { - "name": "validity", - "comment": "/**\r\n * Returns a ValidityState object that represents the validity states of an element.\r\n */" - }, - { - "name": "required", - "comment": "/**\r\n * When present, marks an element that can't be submitted without a value.\r\n */" - }, - { - "name": "willValidate", - "comment": "/**\r\n * Returns whether an element will successfully validate based on forms validation rules and constraints.\r\n */" - } - ], - "method": [ - { - "name": "remove", - "comment": "/**\r\n * Removes an element from the collection.\r\n * @param index Number that specifies the zero-based index of the element to remove from the collection.\r\n */" - }, - { - "name": "add", - "comment": "/**\r\n * Adds an element to the areas, controlRange, or options collection.\r\n * @param element Variant of type Number that specifies the index position in the collection where the element is placed. If no value is given, the method places the element at the end of the collection.\r\n * @param before Variant of type Object that specifies an element to insert before, or null to append the object to the collection.\r\n */" - }, - { - "name": "item", - "comment": "/**\r\n * Retrieves a select object or an object from an options collection.\r\n * @param name Variant of type Number or String that specifies the object or collection to retrieve. If this parameter is an integer, it is the zero-based index of the object. If this parameter is a string, all objects with matching name or id properties are retrieved, and a collection is returned if more than one match is made.\r\n * @param index Variant of type Number that specifies the zero-based index of the object to retrieve when a collection is returned.\r\n */" - }, - { - "name": "namedItem", - "comment": "/**\r\n * Retrieves a select object or an object from an options collection.\r\n * @param namedItem A String that specifies the name or id property of the object to retrieve. A collection is returned if more than one match is made.\r\n */" - }, - { - "name": "checkValidity", - "comment": "/**\r\n * Returns whether a form will validate when it is submitted, without having to submit it.\r\n */" - }, - { - "name": "setCustomValidity", - "comment": "/**\r\n * Sets a custom error message that is displayed when a form is submitted.\r\n * @param error Sets a custom error message that is displayed when a form is submitted.\r\n */" - } - ] - } - }, - { - "name": "HTMLBlockElement", - "members": { - "property": [ - { - "name": "width", - "comment": "/**\r\n * Sets or retrieves the width of the object.\r\n */" - }, - { - "name": "cite", - "comment": "/**\r\n * Sets or retrieves reference information about the object.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLMetaElement", - "members": { - "property": [ - { - "name": "httpEquiv", - "comment": "/**\r\n * Gets or sets information used to bind the value of a content attribute of a meta element to an HTTP response header.\r\n */" - }, - { - "name": "name", - "comment": "/**\r\n * Sets or retrieves the value specified in the content attribute of the meta object.\r\n */" - }, - { - "name": "content", - "comment": "/**\r\n * Gets or sets meta-information to associate with httpEquiv or name.\r\n */" - }, - { - "name": "url", - "comment": "/**\r\n * Sets or retrieves the URL property that will be loaded after the specified time has elapsed.\r\n */" - }, - { - "name": "scheme", - "comment": "/**\r\n * Sets or retrieves a scheme to be used in interpreting the value of a property specified for the object.\r\n */" - }, - { - "name": "charset", - "comment": "/**\r\n * Sets or retrieves the character set used to encode the object.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLDDElement", - "members": { - "property": [ - { - "name": "noWrap", - "comment": "/**\r\n * Sets or retrieves whether the browser automatically performs wordwrap.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLLinkElement", - "members": { - "property": [ - { - "name": "rel", - "comment": "/**\r\n * Sets or retrieves the relationship between the object and the destination of the link.\r\n */" - }, - { - "name": "target", - "comment": "/**\r\n * Sets or retrieves the window or frame at which to target content.\r\n */" - }, - { - "name": "href", - "comment": "/**\r\n * Sets or retrieves a destination URL or an anchor point.\r\n */" - }, - { - "name": "media", - "comment": "/**\r\n * Sets or retrieves the media type.\r\n */" - }, - { - "name": "rev", - "comment": "/**\r\n * Sets or retrieves the relationship between the object and the destination of the link.\r\n */" - }, - { - "name": "type", - "comment": "/**\r\n * Sets or retrieves the MIME type of the object.\r\n */" - }, - { - "name": "charset", - "comment": "/**\r\n * Sets or retrieves the character set used to encode the object.\r\n */" - }, - { - "name": "hreflang", - "comment": "/**\r\n * Sets or retrieves the language code of the object.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLFontElement", - "members": { - "property": [ - { - "name": "face", - "comment": "/**\r\n * Sets or retrieves the current typeface family.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLTableCaptionElement", - "members": { - "property": [ - { - "name": "align", - "comment": "/**\r\n * Sets or retrieves the alignment of the caption or legend.\r\n */" - }, - { - "name": "vAlign", - "comment": "/**\r\n * Sets or retrieves whether the caption appears at the top or bottom of the table.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLOptionElement", - "members": { - "property": [ - { - "name": "index", - "comment": "/**\r\n * Sets or retrieves the ordinal position of an option in a list box.\r\n */" - }, - { - "name": "defaultSelected", - "comment": "/**\r\n * Sets or retrieves the status of an option.\r\n */" - }, - { - "name": "value", - "comment": "/**\r\n * Sets or retrieves the value which is returned to the server when the form control is submitted.\r\n */" - }, - { - "name": "text", - "comment": "/**\r\n * Sets or retrieves the text string specified by the option tag.\r\n */" - }, - { - "name": "form", - "comment": "/**\r\n * Retrieves a reference to the form that the object is embedded in.\r\n */" - }, - { - "name": "label", - "comment": "/**\r\n * Sets or retrieves a value that you can use to implement your own label functionality for the object.\r\n */" - }, - { - "name": "selected", - "comment": "/**\r\n * Sets or retrieves whether the option in the list box is the default item.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLMapElement", - "members": { - "property": [ - { - "name": "name", - "comment": "/**\r\n * Sets or retrieves the name of the object.\r\n */" - }, - { - "name": "areas", - "comment": "/**\r\n * Retrieves a collection of the area objects defined for the given map object.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLCollection", - "members": { - "property": [ - { - "name": "length", - "comment": "/**\r\n * Sets or retrieves the number of objects in a collection.\r\n */" - } - ], - "method": [ - { - "name": "item", - "comment": "/**\r\n * Retrieves an object from various collections.\r\n */" - }, - { - "name": "namedItem", - "comment": "/**\r\n * Retrieves a select object or an object from an options collection.\r\n */" - } - ] - } - }, - { - "name": "HTMLImageElement", - "members": { - "property": [ - { - "name": "width", - "comment": "/**\r\n * Sets or retrieves the width of the object.\r\n */" - }, - { - "name": "vspace", - "comment": "/**\r\n * Sets or retrieves the vertical margin for the object.\r\n */" - }, - { - "name": "naturalHeight", - "comment": "/**\r\n * The original height of the image resource before sizing.\r\n */" - }, - { - "name": "alt", - "comment": "/**\r\n * Sets or retrieves a text alternative to the graphic.\r\n */" - }, - { - "name": "align", - "comment": "/**\r\n * Sets or retrieves how the object is aligned with adjacent text.\r\n */" - }, - { - "name": "src", - "comment": "/**\r\n * The address or URL of the a media resource that is to be considered.\r\n */" - }, - { - "name": "useMap", - "comment": "/**\r\n * Sets or retrieves the URL, often with a bookmark extension (#name), to use as a client-side image map.\r\n */" - }, - { - "name": "naturalWidth", - "comment": "/**\r\n * The original width of the image resource before sizing.\r\n */" - }, - { - "name": "name", - "comment": "/**\r\n * Sets or retrieves the name of the object.\r\n */" - }, - { - "name": "height", - "comment": "/**\r\n * Sets or retrieves the height of the object.\r\n */" - }, - { - "name": "border", - "comment": "/**\r\n * Specifies the properties of a border drawn around an object.\r\n */" - }, - { - "name": "hspace", - "comment": "/**\r\n * Sets or retrieves the width of the border to draw around the object.\r\n */" - }, - { - "name": "longDesc", - "comment": "/**\r\n * Sets or retrieves a Uniform Resource Identifier (URI) to a long description of the object.\r\n */" - }, - { - "name": "href", - "comment": "/**\r\n * Contains the hypertext reference (HREF) of the URL.\r\n */" - }, - { - "name": "isMap", - "comment": "/**\r\n * Sets or retrieves whether the image is a server-side image map.\r\n */" - }, - { - "name": "complete", - "comment": "/**\r\n * Retrieves whether the object is fully loaded.\r\n */" - }, - { - "name": "msPlayToPrimary", - "comment": "/**\r\n * Gets or sets the primary DLNA PlayTo device.\r\n */" - }, - { - "name": "msPlayToDisabled", - "comment": "/**\r\n * Gets or sets whether the DLNA PlayTo device is available.\r\n */" - }, - { - "name": "msPlayToSource", - "comment": "/**\r\n * Gets the source associated with the media element for use by the PlayToManager.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLAreaElement", - "members": { - "property": [ - { - "name": "protocol", - "comment": "/**\r\n * Sets or retrieves the protocol portion of a URL.\r\n */" - }, - { - "name": "search", - "comment": "/**\r\n * Sets or retrieves the substring of the href property that follows the question mark.\r\n */" - }, - { - "name": "alt", - "comment": "/**\r\n * Sets or retrieves a text alternative to the graphic.\r\n */" - }, - { - "name": "coords", - "comment": "/**\r\n * Sets or retrieves the coordinates of the object.\r\n */" - }, - { - "name": "hostname", - "comment": "/**\r\n * Sets or retrieves the host name part of the location or URL.\r\n */" - }, - { - "name": "port", - "comment": "/**\r\n * Sets or retrieves the port number associated with a URL.\r\n */" - }, - { - "name": "pathname", - "comment": "/**\r\n * Sets or retrieves the file name or path specified by the object.\r\n */" - }, - { - "name": "host", - "comment": "/**\r\n * Sets or retrieves the hostname and port number of the location or URL.\r\n */" - }, - { - "name": "hash", - "comment": "/**\r\n * Sets or retrieves the subsection of the href property that follows the number sign (#).\r\n */" - }, - { - "name": "target", - "comment": "/**\r\n * Sets or retrieves the window or frame at which to target content.\r\n */" - }, - { - "name": "href", - "comment": "/**\r\n * Sets or retrieves a destination URL or an anchor point.\r\n */" - }, - { - "name": "noHref", - "comment": "/**\r\n * Sets or gets whether clicks in this region cause action.\r\n */" - }, - { - "name": "shape", - "comment": "/**\r\n * Sets or retrieves the shape of the object.\r\n */" - } - ], - "method": [ - { - "name": "toString", - "comment": "/**\r\n * Returns a string representation of an object.\r\n */" - } - ] - } - }, - { - "name": "HTMLButtonElement", - "members": { - "property": [ - { - "name": "value", - "comment": "/**\r\n * Sets or retrieves the default or selected value of the control.\r\n */" - }, - { - "name": "form", - "comment": "/**\r\n * Retrieves a reference to the form that the object is embedded in.\r\n */" - }, - { - "name": "name", - "comment": "/**\r\n * Sets or retrieves the name of the object.\r\n */" - }, - { - "name": "type", - "comment": "/**\r\n * Gets the classification and default behavior of the button.\r\n */" - }, - { - "name": "validationMessage", - "comment": "/**\r\n * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as \"this is a required field\". The result is that the user sees validation messages without actually submitting.\r\n */" - }, - { - "name": "formTarget", - "comment": "/**\r\n * Overrides the target attribute on a form element.\r\n */" - }, - { - "name": "willValidate", - "comment": "/**\r\n * Returns whether an element will successfully validate based on forms validation rules and constraints.\r\n */" - }, - { - "name": "formAction", - "comment": "/**\r\n * Overrides the action attribute (where the data on a form is sent) on the parent form element.\r\n */" - }, - { - "name": "autofocus", - "comment": "/**\r\n * Provides a way to direct a user to a specific field when a document loads. This can provide both direction and convenience for a user, reducing the need to click or tab to a field when a page opens. This attribute is true when present on an element, and false when missing.\r\n */" - }, - { - "name": "validity", - "comment": "/**\r\n * Returns a ValidityState object that represents the validity states of an element.\r\n */" - }, - { - "name": "formNoValidate", - "comment": "/**\r\n * Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a \"save draft\"-type submit option.\r\n */" - }, - { - "name": "formEnctype", - "comment": "/**\r\n * Used to override the encoding (formEnctype attribute) specified on the form element.\r\n */" - }, - { - "name": "formMethod", - "comment": "/**\r\n * Overrides the submit method attribute previously specified on a form element.\r\n */" - } - ], - "method": [ - { - "name": "createTextRange", - "comment": "/**\r\n * Creates a TextRange object for the element.\r\n */" - }, - { - "name": "checkValidity", - "comment": "/**\r\n * Returns whether a form will validate when it is submitted, without having to submit it.\r\n */" - }, - { - "name": "setCustomValidity", - "comment": "/**\r\n * Sets a custom error message that is displayed when a form is submitted.\r\n * @param error Sets a custom error message that is displayed when a form is submitted.\r\n */" - } - ] - } - }, - { - "name": "HTMLSourceElement", - "members": { - "property": [ - { - "name": "src", - "comment": "/**\r\n * The address or URL of the a media resource that is to be considered.\r\n */" - }, - { - "name": "media", - "comment": "/**\r\n * Gets or sets the intended media type of the media source.\r\n */" - }, - { - "name": "type", - "comment": "/**\r\n * Gets or sets the MIME type of a media resource.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "Document", - "members": { - "property": [ - { - "name": "compatible", - "comment": "/**\r\n * Retrieves the collection of user agents and versions declared in the X-UA-Compatible\r\n */" - }, - { - "name": "onkeydown", - "comment": "/**\r\n * Fires when the user presses a key.\r\n * @param ev The keyboard event\r\n */" - }, - { - "name": "onkeyup", - "comment": "/**\r\n * Fires when the user releases a key.\r\n * @param ev The keyboard event\r\n */" - }, - { - "name": "implementation", - "comment": "/**\r\n * Gets the implementation object of the current document.\r\n */" - }, - { - "name": "onreset", - "comment": "/**\r\n * Fires when the user resets a form.\r\n * @param ev The event.\r\n */" - }, - { - "name": "scripts", - "comment": "/**\r\n * Retrieves a collection of all script objects in the document.\r\n */" - }, - { - "name": "onhelp", - "comment": "/**\r\n * Fires when the user presses the F1 key while the browser is the active window.\r\n * @param ev The event.\r\n */" - }, - { - "name": "ondragleave", - "comment": "/**\r\n * Fires on the target object when the user moves the mouse out of a valid drop target during a drag operation.\r\n * @param ev The drag event.\r\n */" - }, - { - "name": "charset", - "comment": "/**\r\n * Gets or sets the character set used to encode the object.\r\n */" - }, - { - "name": "onfocusin", - "comment": "/**\r\n * Fires for an element just prior to setting focus on that element.\r\n * @param ev The focus event\r\n */" - }, - { - "name": "vlinkColor", - "comment": "/**\r\n * Sets or gets the color of the links that the user has visited.\r\n */" - }, - { - "name": "onseeked", - "comment": "/**\r\n * Occurs when the seek operation ends.\r\n * @param ev The event.\r\n */" - }, - { - "name": "title", - "comment": "/**\r\n * Contains the title of the document.\r\n */" - }, - { - "name": "namespaces", - "comment": "/**\r\n * Retrieves a collection of namespace objects.\r\n */" - }, - { - "name": "defaultCharset", - "comment": "/**\r\n * Gets the default character set from the current regional language settings.\r\n */" - }, - { - "name": "embeds", - "comment": "/**\r\n * Retrieves a collection of all embed objects in the document.\r\n */" - }, - { - "name": "styleSheets", - "comment": "/**\r\n * Retrieves a collection of styleSheet objects representing the style sheets that correspond to each instance of a link or style object in the document.\r\n */" - }, - { - "name": "frames", - "comment": "/**\r\n * Retrieves a collection of all window objects defined by the given document or defined by the document associated with the given window.\r\n */" - }, - { - "name": "ondurationchange", - "comment": "/**\r\n * Occurs when the duration attribute is updated.\r\n * @param ev The event.\r\n */" - }, - { - "name": "all", - "comment": "/**\r\n * Returns a reference to the collection of elements contained by the object.\r\n */" - }, - { - "name": "forms", - "comment": "/**\r\n * Retrieves a collection, in source order, of all form objects in the document.\r\n */" - }, - { - "name": "onblur", - "comment": "/**\r\n * Fires when the object loses the input focus.\r\n * @param ev The focus event.\r\n */" - }, - { - "name": "dir", - "comment": "/**\r\n * Sets or retrieves a value that indicates the reading order of the object.\r\n */" - }, - { - "name": "onemptied", - "comment": "/**\r\n * Occurs when the media element is reset to its initial state.\r\n * @param ev The event.\r\n */" - }, - { - "name": "designMode", - "comment": "/**\r\n * Sets or gets a value that indicates whether the document can be edited.\r\n */" - }, - { - "name": "onseeking", - "comment": "/**\r\n * Occurs when the current playback position is moved.\r\n * @param ev The event.\r\n */" - }, - { - "name": "ondeactivate", - "comment": "/**\r\n * Fires when the activeElement is changed from the current object to another object in the parent document.\r\n * @param ev The UI Event\r\n */" - }, - { - "name": "oncanplay", - "comment": "/**\r\n * Occurs when playback is possible, but would require further buffering.\r\n * @param ev The event.\r\n */" - }, - { - "name": "ondatasetchanged", - "comment": "/**\r\n * Fires when the data set exposed by a data source object changes.\r\n * @param ev The event.\r\n */" - }, - { - "name": "onrowsdelete", - "comment": "/**\r\n * Fires when rows are about to be deleted from the recordset.\r\n * @param ev The event\r\n */" - }, - { - "name": "onloadstart", - "comment": "/**\r\n * Occurs when Internet Explorer begins looking for media data.\r\n * @param ev The event.\r\n */" - }, - { - "name": "URLUnencoded", - "comment": "/**\r\n * Gets the URL for the document, stripped of any character encoding.\r\n */" - }, - { - "name": "oncontrolselect", - "comment": "/**\r\n * Fires when the user is about to make a control selection of the object.\r\n * @param ev The event.\r\n */" - }, - { - "name": "ondragenter", - "comment": "/**\r\n * Fires on the target element when the user drags the object to a valid drop target.\r\n * @param ev The drag event.\r\n */" - }, - { - "name": "inputEncoding", - "comment": "/**\r\n * Returns the character encoding used to create the webpage that is loaded into the document object.\r\n */" - }, - { - "name": "activeElement", - "comment": "/**\r\n * Gets the object that has the focus when the parent document has focus.\r\n */" - }, - { - "name": "onchange", - "comment": "/**\r\n * Fires when the contents of the object or selection have changed.\r\n * @param ev The event.\r\n */" - }, - { - "name": "links", - "comment": "/**\r\n * Retrieves a collection of all a objects that specify the href property and all area objects in the document.\r\n */" - }, - { - "name": "uniqueID", - "comment": "/**\r\n * Retrieves an autogenerated, unique identifier for the object.\r\n */" - }, - { - "name": "URL", - "comment": "/**\r\n * Sets or gets the URL for the current document.\r\n */" - }, - { - "name": "onbeforeactivate", - "comment": "/**\r\n * Fires immediately before the object is set as the active element.\r\n * @param ev The event.\r\n */" - }, - { - "name": "documentMode", - "comment": "/**\r\n * Retrieves the document compatibility mode of the document.\r\n */" - }, - { - "name": "anchors", - "comment": "/**\r\n * Retrieves a collection of all a objects that have a name and/or id property. Objects in this collection are in HTML source order.\r\n */" - }, - { - "name": "ondatasetcomplete", - "comment": "/**\r\n * Fires to indicate that all data is available from the data source object.\r\n * @param ev The event.\r\n */" - }, - { - "name": "onsuspend", - "comment": "/**\r\n * Occurs if the load operation has been intentionally halted.\r\n * @param ev The event.\r\n */" - }, - { - "name": "rootElement", - "comment": "/**\r\n * Gets the root svg element in the document hierarchy.\r\n */" - }, - { - "name": "readyState", - "comment": "/**\r\n * Retrieves a value that indicates the current state of the object.\r\n */" - }, - { - "name": "referrer", - "comment": "/**\r\n * Gets the URL of the location that referred the user to the current page.\r\n */" - }, - { - "name": "alinkColor", - "comment": "/**\r\n * Sets or gets the color of all active links in the document.\r\n */" - }, - { - "name": "onerrorupdate", - "comment": "/**\r\n * Fires on a databound object when an error occurs while updating the associated data in the data source object.\r\n * @param ev The event.\r\n */" - }, - { - "name": "parentWindow", - "comment": "/**\r\n * Gets a reference to the container object of the window.\r\n */" - }, - { - "name": "onmouseout", - "comment": "/**\r\n * Fires when the user moves the mouse pointer outside the boundaries of the object.\r\n * @param ev The mouse event.\r\n */" - }, - { - "name": "onmsthumbnailclick", - "comment": "/**\r\n * Occurs when a user clicks a button in a Thumbnail Toolbar of a webpage running in Site Mode.\r\n * @param ev The event.\r\n */" - }, - { - "name": "onmousewheel", - "comment": "/**\r\n * Fires when the wheel button is rotated.\r\n * @param ev The mouse event\r\n */" - }, - { - "name": "onvolumechange", - "comment": "/**\r\n * Occurs when the volume is changed, or playback is muted or unmuted.\r\n * @param ev The event.\r\n */" - }, - { - "name": "oncellchange", - "comment": "/**\r\n * Fires when data changes in the data provider.\r\n * @param ev The event.\r\n */" - }, - { - "name": "onrowexit", - "comment": "/**\r\n * Fires just before the data source control changes the current row in the object.\r\n * @param ev The event.\r\n */" - }, - { - "name": "onrowsinserted", - "comment": "/**\r\n * Fires just after new rows are inserted in the current recordset.\r\n * @param ev The event.\r\n */" - }, - { - "name": "xmlVersion", - "comment": "/**\r\n * Gets or sets the version attribute specified in the declaration of an XML document.\r\n */" - }, - { - "name": "onpropertychange", - "comment": "/**\r\n * Fires when a property changes on the object.\r\n * @param ev The event.\r\n */" - }, - { - "name": "ondragend", - "comment": "/**\r\n * Fires on the source object when the user releases the mouse at the close of a drag operation.\r\n * @param ev The event.\r\n */" - }, - { - "name": "doctype", - "comment": "/**\r\n * Gets an object representing the document type declaration associated with the current document.\r\n */" - }, - { - "name": "ondragover", - "comment": "/**\r\n * Fires on the target element continuously while the user drags the object over a valid drop target.\r\n * @param ev The event.\r\n */" - }, - { - "name": "bgColor", - "comment": "/**\r\n * Deprecated. Sets or retrieves a value that indicates the background color behind the object.\r\n */" - }, - { - "name": "ondragstart", - "comment": "/**\r\n * Fires on the source object when the user starts to drag a text selection or selected object.\r\n * @param ev The event.\r\n */" - }, - { - "name": "onmouseup", - "comment": "/**\r\n * Fires when the user releases a mouse button while the mouse is over the object.\r\n * @param ev The mouse event.\r\n */" - }, - { - "name": "ondrag", - "comment": "/**\r\n * Fires on the source object continuously during a drag operation.\r\n * @param ev The event.\r\n */" - }, - { - "name": "onmouseover", - "comment": "/**\r\n * Fires when the user moves the mouse pointer into the object.\r\n * @param ev The mouse event.\r\n */" - }, - { - "name": "linkColor", - "comment": "/**\r\n * Sets or gets the color of the document links.\r\n */" - }, - { - "name": "onpause", - "comment": "/**\r\n * Occurs when playback is paused.\r\n * @param ev The event.\r\n */" - }, - { - "name": "onmousedown", - "comment": "/**\r\n * Fires when the user clicks the object with either mouse button.\r\n * @param ev The mouse event.\r\n */" - }, - { - "name": "onclick", - "comment": "/**\r\n * Fires when the user clicks the left mouse button on the object\r\n * @param ev The mouse event.\r\n */" - }, - { - "name": "onwaiting", - "comment": "/**\r\n * Occurs when playback stops because the next frame of a video resource is not available.\r\n * @param ev The event.\r\n */" - }, - { - "name": "onstop", - "comment": "/**\r\n * Fires when the user clicks the Stop button or leaves the Web page.\r\n * @param ev The event.\r\n */" - }, - { - "name": "onmssitemodejumplistitemremoved", - "comment": "/**\r\n * Occurs when an item is removed from a Jump List of a webpage running in Site Mode.\r\n * @param ev The event.\r\n */" - }, - { - "name": "applets", - "comment": "/**\r\n * Retrieves a collection of all applet objects in the document.\r\n */" - }, - { - "name": "body", - "comment": "/**\r\n * Specifies the beginning and end of the document body.\r\n */" - }, - { - "name": "domain", - "comment": "/**\r\n * Sets or gets the security domain of the document.\r\n */" - }, - { - "name": "selection", - "comment": "/**\r\n * Represents the active selection, which is a highlighted block of text or other elements in the document that a user or a script can carry out some action on.\r\n */" - }, - { - "name": "onstalled", - "comment": "/**\r\n * Occurs when the download has stopped.\r\n * @param ev The event.\r\n */" - }, - { - "name": "onmousemove", - "comment": "/**\r\n * Fires when the user moves the mouse over the object.\r\n * @param ev The mouse event.\r\n */" - }, - { - "name": "documentElement", - "comment": "/**\r\n * Gets a reference to the root node of the document.\r\n */" - }, - { - "name": "onbeforeeditfocus", - "comment": "/**\r\n * Fires before an object contained in an editable element enters a UI-activated state or when an editable container object is control selected.\r\n * @param ev The event.\r\n */" - }, - { - "name": "onratechange", - "comment": "/**\r\n * Occurs when the playback rate is increased or decreased.\r\n * @param ev The event.\r\n */" - }, - { - "name": "onprogress", - "comment": "/**\r\n * Occurs to indicate progress while downloading media data.\r\n * @param ev The event.\r\n */" - }, - { - "name": "ondblclick", - "comment": "/**\r\n * Fires when the user double-clicks the object.\r\n * @param ev The mouse event.\r\n */" - }, - { - "name": "oncontextmenu", - "comment": "/**\r\n * Fires when the user clicks the right mouse button in the client area, opening the context menu.\r\n * @param ev The mouse event.\r\n */" - }, - { - "name": "onloadedmetadata", - "comment": "/**\r\n * Occurs when the duration and dimensions of the media have been determined.\r\n * @param ev The event.\r\n */" - }, - { - "name": "onerror", - "comment": "/**\r\n * Fires when an error occurs during object loading.\r\n * @param ev The event.\r\n */" - }, - { - "name": "onplay", - "comment": "/**\r\n * Occurs when the play method is requested.\r\n * @param ev The event.\r\n */" - }, - { - "name": "onplaying", - "comment": "/**\r\n * Occurs when the audio or video has started playing.\r\n * @param ev The event.\r\n */" - }, - { - "name": "images", - "comment": "/**\r\n * Retrieves a collection, in source order, of img objects in the document.\r\n */" - }, - { - "name": "location", - "comment": "/**\r\n * Contains information about the current URL.\r\n */" - }, - { - "name": "onabort", - "comment": "/**\r\n * Fires when the user aborts the download.\r\n * @param ev The event.\r\n */" - }, - { - "name": "onfocusout", - "comment": "/**\r\n * Fires for the current element with focus immediately after moving focus to another element.\r\n * @param ev The event.\r\n */" - }, - { - "name": "onselectionchange", - "comment": "/**\r\n * Fires when the selection state of a document changes.\r\n * @param ev The event.\r\n */" - }, - { - "name": "onstoragecommit", - "comment": "/**\r\n * Fires when a local DOM Storage area is written to disk.\r\n * @param ev The event.\r\n */" - }, - { - "name": "ondataavailable", - "comment": "/**\r\n * Fires periodically as data arrives from data source objects that asynchronously transmit their data.\r\n * @param ev The event.\r\n */" - }, - { - "name": "onreadystatechange", - "comment": "/**\r\n * Fires when the state of the object has changed.\r\n * @param ev The event\r\n */" - }, - { - "name": "lastModified", - "comment": "/**\r\n * Gets the date that the page was last modified, if the page supplies one.\r\n */" - }, - { - "name": "onkeypress", - "comment": "/**\r\n * Fires when the user presses an alphanumeric key.\r\n * @param ev The event.\r\n */" - }, - { - "name": "onloadeddata", - "comment": "/**\r\n * Occurs when media data is loaded at the current playback position.\r\n * @param ev The event.\r\n */" - }, - { - "name": "onbeforedeactivate", - "comment": "/**\r\n * Fires immediately before the activeElement is changed from the current object to another object in the parent document.\r\n * @param ev The event.\r\n */" - }, - { - "name": "onactivate", - "comment": "/**\r\n * Fires when the object is set as the active element.\r\n * @param ev The event.\r\n */" - }, - { - "name": "onfocus", - "comment": "/**\r\n * Fires when the object receives focus.\r\n * @param ev The event.\r\n */" - }, - { - "name": "fgColor", - "comment": "/**\r\n * Sets or gets the foreground (text) color of the document.\r\n */" - }, - { - "name": "ontimeupdate", - "comment": "/**\r\n * Occurs to indicate the current playback position.\r\n * @param ev The event.\r\n */" - }, - { - "name": "onselect", - "comment": "/**\r\n * Fires when the current selection changes.\r\n * @param ev The event.\r\n */" - }, - { - "name": "onended", - "comment": "/**\r\n * Occurs when the end of playback is reached.\r\n * @param ev The event\r\n */" - }, - { - "name": "compatMode", - "comment": "/**\r\n * Gets a value that indicates whether standards-compliant mode is switched on for the object.\r\n */" - }, - { - "name": "onscroll", - "comment": "/**\r\n * Fires when the user repositions the scroll box in the scroll bar on the object.\r\n * @param ev The event.\r\n */" - }, - { - "name": "onrowenter", - "comment": "/**\r\n * Fires to indicate that the current row has changed in the data source and new data values are available on the object.\r\n * @param ev The event.\r\n */" - }, - { - "name": "onload", - "comment": "/**\r\n * Fires immediately after the browser loads the object.\r\n * @param ev The event.\r\n */" - } - ], - "method": [ - { - "name": "queryCommandValue", - "comment": "/**\r\n * Returns the current value of the document, range, or current selection for the given command.\r\n * @param commandId String that specifies a command identifier.\r\n */" - }, - { - "name": "queryCommandIndeterm", - "comment": "/**\r\n * Returns a Boolean value that indicates whether the specified command is in the indeterminate state.\r\n * @param commandId String that specifies a command identifier.\r\n */" - }, - { - "name": "execCommand", - "comment": "/**\r\n * Executes a command on the current document, current selection, or the given range.\r\n * @param commandId String that specifies the command to execute. This command can be any of the command identifiers that can be executed in script.\r\n * @param showUI Display the user interface, defaults to false.\r\n * @param value Value to assign.\r\n */" - }, - { - "name": "elementFromPoint", - "comment": "/**\r\n * Returns the element for the specified x coordinate and the specified y coordinate.\r\n * @param x The x-offset\r\n * @param y The y-offset\r\n */" - }, - { - "name": "queryCommandText", - "comment": "/**\r\n * Retrieves the string associated with a command.\r\n * @param commandId String that contains the identifier of a command. This can be any command identifier given in the list of Command Identifiers.\r\n */" - }, - { - "name": "write", - "comment": "/**\r\n * Writes one or more HTML expressions to a document in the specified window.\r\n * @param content Specifies the text and HTML tags to write.\r\n */" - }, - { - "name": "updateSettings", - "comment": "/**\r\n * Allows updating the print settings for the page.\r\n */" - }, - { - "name": "createElement", - "comment": "/**\r\n * Creates an instance of the element for the specified tag.\r\n * @param tagName The name of an element.\r\n */" - }, - { - "name": "releaseCapture", - "comment": "/**\r\n * Removes mouse capture from the object in the current document.\r\n */" - }, - { - "name": "writeln", - "comment": "/**\r\n * Writes one or more HTML expressions, followed by a carriage return, to a document in the specified window.\r\n * @param content The text and HTML tags to write.\r\n */" - }, - { - "name": "open", - "comment": "/**\r\n * Opens a new window and loads a document specified by a given URL. Also, opens a new window that uses the url parameter and the name parameter to collect the output of the write method and the writeln method.\r\n * @param url Specifies a MIME type for the document.\r\n * @param name Specifies the name of the window. This name is used as the value for the TARGET attribute on a form or an anchor element.\r\n * @param features Contains a list of items separated by commas. Each item consists of an option and a value, separated by an equals sign (for example, \"fullscreen=yes, toolbar=yes\"). The following values are supported.\r\n * @param replace Specifies whether the existing entry for the document is replaced in the history list.\r\n */" - }, - { - "name": "queryCommandSupported", - "comment": "/**\r\n * Returns a Boolean value that indicates whether the current command is supported on the current range.\r\n * @param commandId Specifies a command identifier.\r\n */" - }, - { - "name": "createTreeWalker", - "comment": "/**\r\n * Creates a TreeWalker object that you can use to traverse filtered lists of nodes or elements in a document.\r\n * @param root The root element or node to start traversing on.\r\n * @param whatToShow The type of nodes or elements to appear in the node list. For more information, see whatToShow.\r\n * @param filter A custom NodeFilter function to use.\r\n * @param entityReferenceExpansion A flag that specifies whether entity reference nodes are expanded.\r\n */" - }, - { - "name": "queryCommandEnabled", - "comment": "/**\r\n * Returns a Boolean value that indicates whether a specified command can be successfully executed using execCommand, given the current state of the document.\r\n * @param commandId Specifies a command identifier.\r\n */" - }, - { - "name": "focus", - "comment": "/**\r\n * Causes the element to receive the focus and executes the code specified by the onfocus event.\r\n */" - }, - { - "name": "close", - "comment": "/**\r\n * Closes an output stream and forces the sent data to display.\r\n */" - }, - { - "name": "createRange", - "comment": "/**\r\n * Returns an empty range object that has both of its boundary points positioned at the beginning of the document.\r\n */" - }, - { - "name": "fireEvent", - "comment": "/**\r\n * Fires a specified event on the object.\r\n * @param eventName Specifies the name of the event to fire.\r\n * @param eventObj Object that specifies the event object from which to obtain event object properties.\r\n */" - }, - { - "name": "createComment", - "comment": "/**\r\n * Creates a comment object with the specified data.\r\n * @param data Sets the comment object's data.\r\n */" - }, - { - "name": "getElementsByTagName", - "comment": "/**\r\n * Retrieves a collection of objects based on the specified element name.\r\n * @param name Specifies the name of an element.\r\n */" - }, - { - "name": "createDocumentFragment", - "comment": "/**\r\n * Creates a new document.\r\n */" - }, - { - "name": "createStyleSheet", - "comment": "/**\r\n * Creates a style sheet for the document.\r\n * @param href Specifies how to add the style sheet to the document. If a file name is specified for the URL, the style information is added as a link object. If the URL contains style information, it is added to the style object.\r\n * @param index Specifies the index that indicates where the new style sheet is inserted in the styleSheets collection. The default is to insert the new style sheet at the end of the collection.\r\n */" - }, - { - "name": "getElementsByName", - "comment": "/**\r\n * Gets a collection of objects based on the value of the NAME or ID attribute.\r\n * @param elementName Gets a collection of objects based on the value of the NAME or ID attribute.\r\n */" - }, - { - "name": "queryCommandState", - "comment": "/**\r\n * Returns a Boolean value that indicates the current state of the command.\r\n * @param commandId String that specifies a command identifier.\r\n */" - }, - { - "name": "hasFocus", - "comment": "/**\r\n * Gets a value indicating whether the object currently has focus.\r\n */" - }, - { - "name": "execCommandShowHelp", - "comment": "/**\r\n * Displays help information for the given command identifier.\r\n * @param commandId Displays help information for the given command identifier.\r\n */" - }, - { - "name": "createAttribute", - "comment": "/**\r\n * Creates an attribute object with a specified name.\r\n * @param name String that sets the attribute object's name.\r\n */" - }, - { - "name": "createTextNode", - "comment": "/**\r\n * Creates a text string from the specified value.\r\n * @param data String that specifies the nodeValue property of the text node.\r\n */" - }, - { - "name": "createNodeIterator", - "comment": "/**\r\n * Creates a NodeIterator object that you can use to traverse filtered lists of nodes or elements in a document.\r\n * @param root The root element or node to start traversing on.\r\n * @param whatToShow The type of nodes or elements to appear in the node list\r\n * @param filter A custom NodeFilter function to use. For more information, see filter. Use null for no filter.\r\n * @param entityReferenceExpansion A flag that specifies whether entity reference nodes are expanded.\r\n */" - }, - { - "name": "createEventObject", - "comment": "/**\r\n * Generates an event object to pass event context information when you use the fireEvent method.\r\n * @param eventObj An object that specifies an existing event object on which to base the new object.\r\n */" - }, - { - "name": "getSelection", - "comment": "/**\r\n * Returns an object representing the current selection of the document that is loaded into the object displaying a webpage.\r\n */" - }, - { - "name": "getElementById", - "comment": "/**\r\n * Returns a reference to the first object with the specified value of the ID or NAME attribute.\r\n * @param elementId String that specifies the ID value. Case-insensitive.\r\n */" - } - ] - } - }, - { - "name": "HTMLScriptElement", - "members": { - "property": [ - { - "name": "defer", - "comment": "/**\r\n * Sets or retrieves the status of the script.\r\n */" - }, - { - "name": "text", - "comment": "/**\r\n * Retrieves or sets the text of the object as a string.\r\n */" - }, - { - "name": "src", - "comment": "/**\r\n * Retrieves the URL to an external file that contains the source code or data.\r\n */" - }, - { - "name": "htmlFor", - "comment": "/**\r\n * Sets or retrieves the object that is bound to the event script.\r\n */" - }, - { - "name": "charset", - "comment": "/**\r\n * Sets or retrieves the character set used to encode the object.\r\n */" - }, - { - "name": "type", - "comment": "/**\r\n * Sets or retrieves the MIME type for the associated scripting engine.\r\n */" - }, - { - "name": "event", - "comment": "/**\r\n * Sets or retrieves the event for which the script is written.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLTableRowElement", - "members": { - "property": [ - { - "name": "rowIndex", - "comment": "/**\r\n * Retrieves the position of the object in the rows collection for the table.\r\n */" - }, - { - "name": "cells", - "comment": "/**\r\n * Retrieves a collection of all cells in the table row.\r\n */" - }, - { - "name": "align", - "comment": "/**\r\n * Sets or retrieves how the object is aligned with adjacent text.\r\n */" - }, - { - "name": "borderColorLight", - "comment": "/**\r\n * Sets or retrieves the color for one of the two colors used to draw the 3-D border of the object.\r\n */" - }, - { - "name": "sectionRowIndex", - "comment": "/**\r\n * Retrieves the position of the object in the collection.\r\n */" - }, - { - "name": "borderColor", - "comment": "/**\r\n * Sets or retrieves the border color of the object.\r\n */" - }, - { - "name": "height", - "comment": "/**\r\n * Sets or retrieves the height of the object.\r\n */" - }, - { - "name": "borderColorDark", - "comment": "/**\r\n * Sets or retrieves the color for one of the two colors used to draw the 3-D border of the object.\r\n */" - } - ], - "method": [ - { - "name": "deleteCell", - "comment": "/**\r\n * Removes the specified cell from the table row, as well as from the cells collection.\r\n * @param index Number that specifies the zero-based position of the cell to remove from the table row. If no value is provided, the last cell in the cells collection is deleted.\r\n */" - }, - { - "name": "insertCell", - "comment": "/**\r\n * Creates a new cell in the table row, and adds the cell to the cells collection.\r\n * @param index Number that specifies where to insert the cell in the tr. The default value is -1, which appends the new cell to the end of the cells collection.\r\n */" - } - ] - } - }, - { - "name": "HTMLHtmlElement", - "members": { - "property": [ - { - "name": "version", - "comment": "/**\r\n * Sets or retrieves the DTD version that governs the current document.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLFrameElement", - "members": { - "property": [ - { - "name": "width", - "comment": "/**\r\n * Sets or retrieves the width of the object.\r\n */" - }, - { - "name": "scrolling", - "comment": "/**\r\n * Sets or retrieves whether the frame can be scrolled.\r\n */" - }, - { - "name": "marginHeight", - "comment": "/**\r\n * Sets or retrieves the top and bottom margin heights before displaying the text in a frame.\r\n */" - }, - { - "name": "marginWidth", - "comment": "/**\r\n * Sets or retrieves the left and right margin widths before displaying the text in a frame.\r\n */" - }, - { - "name": "borderColor", - "comment": "/**\r\n * Sets or retrieves the border color of the object.\r\n */" - }, - { - "name": "frameSpacing", - "comment": "/**\r\n * Sets or retrieves the amount of additional space between the frames.\r\n */" - }, - { - "name": "frameBorder", - "comment": "/**\r\n * Sets or retrieves whether to display a border for the frame.\r\n */" - }, - { - "name": "noResize", - "comment": "/**\r\n * Sets or retrieves whether the user can resize the frame.\r\n */" - }, - { - "name": "contentWindow", - "comment": "/**\r\n * Retrieves the object of the specified.\r\n */" - }, - { - "name": "src", - "comment": "/**\r\n * Sets or retrieves a URL to be loaded by the object.\r\n */" - }, - { - "name": "name", - "comment": "/**\r\n * Sets or retrieves the frame name.\r\n */" - }, - { - "name": "height", - "comment": "/**\r\n * Sets or retrieves the height of the object.\r\n */" - }, - { - "name": "contentDocument", - "comment": "/**\r\n * Retrieves the document object of the page or frame.\r\n */" - }, - { - "name": "border", - "comment": "/**\r\n * Specifies the properties of a border drawn around an object.\r\n */" - }, - { - "name": "longDesc", - "comment": "/**\r\n * Sets or retrieves a URI to a long description of the object.\r\n */" - }, - { - "name": "onload", - "comment": "/**\r\n * Raised when the object has been completely received from the server.\r\n */" - }, - { - "name": "security", - "comment": "/**\r\n * Sets the value indicating whether the source file of a frame or iframe has specific security restrictions applied.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLQuoteElement", - "members": { - "property": [ - { - "name": "dateTime", - "comment": "/**\r\n * Sets or retrieves the date and time of a modification to the object.\r\n */" - }, - { - "name": "cite", - "comment": "/**\r\n * Sets or retrieves reference information about the object.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLTableHeaderCellElement", - "members": { - "property": [ - { - "name": "scope", - "comment": "/**\r\n * Sets or retrieves the group of cells in a table to which the object's information applies.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLFrameSetElement", - "members": { - "property": [ - { - "name": "borderColor", - "comment": "/**\r\n * Sets or retrieves the border color of the object.\r\n */" - }, - { - "name": "rows", - "comment": "/**\r\n * Sets or retrieves the frame heights of the object.\r\n */" - }, - { - "name": "cols", - "comment": "/**\r\n * Sets or retrieves the frame widths of the object.\r\n */" - }, - { - "name": "onblur", - "comment": "/**\r\n * Fires when the object loses the input focus.\r\n */" - }, - { - "name": "frameSpacing", - "comment": "/**\r\n * Sets or retrieves the amount of additional space between the frames.\r\n */" - }, - { - "name": "onfocus", - "comment": "/**\r\n * Fires when the object receives focus.\r\n */" - }, - { - "name": "frameBorder", - "comment": "/**\r\n * Sets or retrieves whether to display a border for the frame.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLLabelElement", - "members": { - "property": [ - { - "name": "htmlFor", - "comment": "/**\r\n * Sets or retrieves the object to which the given label object is assigned.\r\n */" - }, - { - "name": "form", - "comment": "/**\r\n * Retrieves a reference to the form that the object is embedded in.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLLegendElement", - "members": { - "property": [ - { - "name": "align", - "comment": "/**\r\n * Retrieves a reference to the form that the object is embedded in.\r\n */" - }, - { - "name": "form", - "comment": "/**\r\n * Retrieves a reference to the form that the object is embedded in.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLLIElement", - "members": { - "property": [ - { - "name": "value", - "comment": "/**\r\n * Sets or retrieves the value of a list item.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLIFrameElement", - "members": { - "property": [ - { - "name": "width", - "comment": "/**\r\n * Sets or retrieves the width of the object.\r\n */" - }, - { - "name": "scrolling", - "comment": "/**\r\n * Sets or retrieves whether the frame can be scrolled.\r\n */" - }, - { - "name": "marginHeight", - "comment": "/**\r\n * Sets or retrieves the top and bottom margin heights before displaying the text in a frame.\r\n */" - }, - { - "name": "marginWidth", - "comment": "/**\r\n * Sets or retrieves the left and right margin widths before displaying the text in a frame.\r\n */" - }, - { - "name": "frameSpacing", - "comment": "/**\r\n * Sets or retrieves the amount of additional space between the frames.\r\n */" - }, - { - "name": "frameBorder", - "comment": "/**\r\n * Sets or retrieves whether to display a border for the frame.\r\n */" - }, - { - "name": "noResize", - "comment": "/**\r\n * Sets or retrieves whether the user can resize the frame.\r\n */" - }, - { - "name": "vspace", - "comment": "/**\r\n * Sets or retrieves the vertical margin for the object.\r\n */" - }, - { - "name": "contentWindow", - "comment": "/**\r\n * Retrieves the object of the specified.\r\n */" - }, - { - "name": "align", - "comment": "/**\r\n * Sets or retrieves how the object is aligned with adjacent text.\r\n */" - }, - { - "name": "src", - "comment": "/**\r\n * Sets or retrieves a URL to be loaded by the object.\r\n */" - }, - { - "name": "srcdoc", - "comment": "/**\r\n * Sets or retrives the content of the page that is to contain.\r\n */" - }, - { - "name": "name", - "comment": "/**\r\n * Sets or retrieves the frame name.\r\n */" - }, - { - "name": "height", - "comment": "/**\r\n * Sets or retrieves the height of the object.\r\n */" - }, - { - "name": "border", - "comment": "/**\r\n * Specifies the properties of a border drawn around an object.\r\n */" - }, - { - "name": "contentDocument", - "comment": "/**\r\n * Retrieves the document object of the page or frame.\r\n */" - }, - { - "name": "hspace", - "comment": "/**\r\n * Sets or retrieves the horizontal margin for the object.\r\n */" - }, - { - "name": "longDesc", - "comment": "/**\r\n * Sets or retrieves a URI to a long description of the object.\r\n */" - }, - { - "name": "security", - "comment": "/**\r\n * Sets the value indicating whether the source file of a frame or iframe has specific security restrictions applied.\r\n */" - }, - { - "name": "onload", - "comment": "/**\r\n * Raised when the object has been completely received from the server.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLTableSectionElement", - "members": { - "property": [ - { - "name": "align", - "comment": "/**\r\n * Sets or retrieves a value that indicates the table alignment.\r\n */" - }, - { - "name": "rows", - "comment": "/**\r\n * Sets or retrieves the number of horizontal rows contained in the object.\r\n */" - } - ], - "method": [ - { - "name": "deleteRow", - "comment": "/**\r\n * Removes the specified row (tr) from the element and from the rows collection.\r\n * @param index Number that specifies the zero-based position in the rows collection of the row to remove.\r\n */" - }, - { - "name": "moveRow", - "comment": "/**\r\n * Moves a table row to a new position.\r\n * @param indexFrom Number that specifies the index in the rows collection of the table row that is moved.\r\n * @param indexTo Number that specifies where the row is moved within the rows collection.\r\n */" - }, - { - "name": "insertRow", - "comment": "/**\r\n * Creates a new row (tr) in the table, and adds the row to the rows collection.\r\n * @param index Number that specifies where to insert the row in the rows collection. The default value is -1, which appends the new row to the end of the rows collection.\r\n */" - } - ] - } - }, - { - "name": "HTMLInputElement", - "members": { - "property": [ - { - "name": "width", - "comment": "/**\r\n * Sets or retrieves the width of the object.\r\n */" - }, - { - "name": "form", - "comment": "/**\r\n * Retrieves a reference to the form that the object is embedded in.\r\n */" - }, - { - "name": "selectionStart", - "comment": "/**\r\n * Gets or sets the starting position or offset of a text selection.\r\n */" - }, - { - "name": "selectionEnd", - "comment": "/**\r\n * Gets or sets the end position or offset of a text selection.\r\n */" - }, - { - "name": "vrml", - "comment": "/**\r\n * Sets or retrieves the URL of the virtual reality modeling language (VRML) world to be displayed in the window.\r\n */" - }, - { - "name": "lowsrc", - "comment": "/**\r\n * Sets or retrieves a lower resolution image to display.\r\n */" - }, - { - "name": "vspace", - "comment": "/**\r\n * Sets or retrieves the vertical margin for the object.\r\n */" - }, - { - "name": "accept", - "comment": "/**\r\n * Sets or retrieves a comma-separated list of content types.\r\n */" - }, - { - "name": "alt", - "comment": "/**\r\n * Sets or retrieves a text alternative to the graphic.\r\n */" - }, - { - "name": "defaultChecked", - "comment": "/**\r\n * Sets or retrieves the state of the check box or radio button.\r\n */" - }, - { - "name": "align", - "comment": "/**\r\n * Sets or retrieves how the object is aligned with adjacent text.\r\n */" - }, - { - "name": "value", - "comment": "/**\r\n * Returns the value of the data at the cursor's current position.\r\n */" - }, - { - "name": "src", - "comment": "/**\r\n * The address or URL of the a media resource that is to be considered.\r\n */" - }, - { - "name": "name", - "comment": "/**\r\n * Sets or retrieves the name of the object.\r\n */" - }, - { - "name": "useMap", - "comment": "/**\r\n * Sets or retrieves the URL, often with a bookmark extension (#name), to use as a client-side image map.\r\n */" - }, - { - "name": "height", - "comment": "/**\r\n * Sets or retrieves the height of the object.\r\n */" - }, - { - "name": "border", - "comment": "/**\r\n * Sets or retrieves the width of the border to draw around the object.\r\n */" - }, - { - "name": "checked", - "comment": "/**\r\n * Sets or retrieves the state of the check box or radio button.\r\n */" - }, - { - "name": "hspace", - "comment": "/**\r\n * Sets or retrieves the width of the border to draw around the object.\r\n */" - }, - { - "name": "maxLength", - "comment": "/**\r\n * Sets or retrieves the maximum number of characters that the user can enter in a text control.\r\n */" - }, - { - "name": "type", - "comment": "/**\r\n * Returns the content type of the object.\r\n */" - }, - { - "name": "defaultValue", - "comment": "/**\r\n * Sets or retrieves the initial contents of the object.\r\n */" - }, - { - "name": "complete", - "comment": "/**\r\n * Retrieves whether the object is fully loaded.\r\n */" - }, - { - "name": "validationMessage", - "comment": "/**\r\n * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as \"this is a required field\". The result is that the user sees validation messages without actually submitting.\r\n */" - }, - { - "name": "files", - "comment": "/**\r\n * Returns a FileList object on a file type input object.\r\n */" - }, - { - "name": "max", - "comment": "/**\r\n * Defines the maximum acceptable value for an input element with type=\"number\".When used with the min and step attributes, lets you control the range and increment (such as only even numbers) that the user can enter into an input field.\r\n */" - }, - { - "name": "formTarget", - "comment": "/**\r\n * Overrides the target attribute on a form element.\r\n */" - }, - { - "name": "willValidate", - "comment": "/**\r\n * Returns whether an element will successfully validate based on forms validation rules and constraints.\r\n */" - }, - { - "name": "step", - "comment": "/**\r\n * Defines an increment or jump between values that you want to allow the user to enter. When used with the max and min attributes, lets you control the range and increment (for example, allow only even numbers) that the user can enter into an input field.\r\n */" - }, - { - "name": "autofocus", - "comment": "/**\r\n * Provides a way to direct a user to a specific field when a document loads. This can provide both direction and convenience for a user, reducing the need to click or tab to a field when a page opens. This attribute is true when present on an element, and false when missing.\r\n */" - }, - { - "name": "required", - "comment": "/**\r\n * When present, marks an element that can't be submitted without a value.\r\n */" - }, - { - "name": "formEnctype", - "comment": "/**\r\n * Used to override the encoding (formEnctype attribute) specified on the form element.\r\n */" - }, - { - "name": "valueAsNumber", - "comment": "/**\r\n * Returns the input field value as a number.\r\n */" - }, - { - "name": "placeholder", - "comment": "/**\r\n * Gets or sets a text string that is displayed in an input field as a hint or prompt to users as the format or type of information they need to enter.The text appears in an input field until the user puts focus on the field.\r\n */" - }, - { - "name": "formMethod", - "comment": "/**\r\n * Overrides the submit method attribute previously specified on a form element.\r\n */" - }, - { - "name": "list", - "comment": "/**\r\n * Specifies the ID of a pre-defined datalist of options for an input element.\r\n */" - }, - { - "name": "autocomplete", - "comment": "/**\r\n * Specifies whether autocomplete is applied to an editable text field.\r\n */" - }, - { - "name": "min", - "comment": "/**\r\n * Defines the minimum acceptable value for an input element with type=\"number\". When used with the max and step attributes, lets you control the range and increment (such as even numbers only) that the user can enter into an input field.\r\n */" - }, - { - "name": "formAction", - "comment": "/**\r\n * Overrides the action attribute (where the data on a form is sent) on the parent form element.\r\n */" - }, - { - "name": "pattern", - "comment": "/**\r\n * Gets or sets a string containing a regular expression that the user's input must match.\r\n */" - }, - { - "name": "validity", - "comment": "/**\r\n * Returns a ValidityState object that represents the validity states of an element.\r\n */" - }, - { - "name": "formNoValidate", - "comment": "/**\r\n * Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a \"save draft\"-type submit option.\r\n */" - }, - { - "name": "multiple", - "comment": "/**\r\n * Sets or retrieves the Boolean value indicating whether multiple items can be selected from a list.\r\n */" - } - ], - "method": [ - { - "name": "createTextRange", - "comment": "/**\r\n * Creates a TextRange object for the element.\r\n */" - }, - { - "name": "setSelectionRange", - "comment": "/**\r\n * Sets the start and end positions of a selection in a text field.\r\n * @param start The offset into the text field for the start of the selection.\r\n * @param end The offset into the text field for the end of the selection.\r\n * @param direction The direction in which the selection is performed.\r\n */" - }, - { - "name": "select", - "comment": "/**\r\n * Makes the selection equal to the current object.\r\n */" - }, - { - "name": "checkValidity", - "comment": "/**\r\n * Returns whether a form will validate when it is submitted, without having to submit it.\r\n */" - }, - { - "name": "stepDown", - "comment": "/**\r\n * Decrements a range input control's value by the value given by the Step attribute. If the optional parameter is used, it will decrement the input control's step value multiplied by the parameter's value.\r\n * @param n Value to decrement the value by.\r\n */" - }, - { - "name": "stepUp", - "comment": "/**\r\n * Increments a range input control's value by the value given by the Step attribute. If the optional parameter is used, will increment the input control's value by that value.\r\n * @param n Value to increment the value by.\r\n */" - }, - { - "name": "setCustomValidity", - "comment": "/**\r\n * Sets a custom error message that is displayed when a form is submitted.\r\n * @param error Sets a custom error message that is displayed when a form is submitted.\r\n */" - } - ] - } - }, - { - "name": "HTMLAnchorElement", - "members": { - "property": [ - { - "name": "rel", - "comment": "/**\r\n * Sets or retrieves the relationship between the object and the destination of the link.\r\n */" - }, - { - "name": "protocol", - "comment": "/**\r\n * Contains the protocol of the URL.\r\n */" - }, - { - "name": "search", - "comment": "/**\r\n * Sets or retrieves the substring of the href property that follows the question mark.\r\n */" - }, - { - "name": "coords", - "comment": "/**\r\n * Sets or retrieves the coordinates of the object.\r\n */" - }, - { - "name": "hostname", - "comment": "/**\r\n * Contains the hostname of a URL.\r\n */" - }, - { - "name": "pathname", - "comment": "/**\r\n * Contains the pathname of the URL.\r\n */" - }, - { - "name": "target", - "comment": "/**\r\n * Sets or retrieves the window or frame at which to target content.\r\n */" - }, - { - "name": "href", - "comment": "/**\r\n * Sets or retrieves a destination URL or an anchor point.\r\n */" - }, - { - "name": "name", - "comment": "/**\r\n * Sets or retrieves the shape of the object.\r\n */" - }, - { - "name": "charset", - "comment": "/**\r\n * Sets or retrieves the character set used to encode the object.\r\n */" - }, - { - "name": "hreflang", - "comment": "/**\r\n * Sets or retrieves the language code of the object.\r\n */" - }, - { - "name": "port", - "comment": "/**\r\n * Sets or retrieves the port number associated with a URL.\r\n */" - }, - { - "name": "host", - "comment": "/**\r\n * Contains the hostname and port values of the URL.\r\n */" - }, - { - "name": "hash", - "comment": "/**\r\n * Contains the anchor portion of the URL including the hash sign (#).\r\n */" - }, - { - "name": "rev", - "comment": "/**\r\n * Sets or retrieves the relationship between the object and the destination of the link.\r\n */" - }, - { - "name": "shape", - "comment": "/**\r\n * Sets or retrieves the shape of the object.\r\n */" - }, - { - "name": "text", - "comment": "/**\r\n * Retrieves or sets the text of the object as a string.\r\n */" - }, - { - "name": "origin", - "comment": "/**\r\n * Contains the Unicode serialization of the origin of the represented URL.\r\n */" - } - ], - "method": [ - { - "name": "toString", - "comment": "/**\r\n * Returns a string representation of an object.\r\n */" - } - ] - } - }, - { - "name": "HTMLParamElement", - "members": { - "property": [ - { - "name": "value", - "comment": "/**\r\n * Sets or retrieves the value of an input parameter for an element.\r\n */" - }, - { - "name": "name", - "comment": "/**\r\n * Sets or retrieves the name of an input parameter for an element.\r\n */" - }, - { - "name": "type", - "comment": "/**\r\n * Sets or retrieves the content type of the resource designated by the value attribute.\r\n */" - }, - { - "name": "valueType", - "comment": "/**\r\n * Sets or retrieves the data type of the value attribute.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLPreElement", - "members": { - "property": [ - { - "name": "width", - "comment": "/**\r\n * Sets or gets a value that you can use to implement your own width functionality for the object.\r\n */" - }, - { - "name": "cite", - "comment": "/**\r\n * Indicates a citation by rendering text in italic type.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLPhraseElement", - "members": { - "property": [ - { - "name": "dateTime", - "comment": "/**\r\n * Sets or retrieves the date and time of a modification to the object.\r\n */" - }, - { - "name": "cite", - "comment": "/**\r\n * Sets or retrieves reference information about the object.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLCanvasElement", - "members": { - "property": [ - { - "name": "width", - "comment": "/**\r\n * Gets or sets the width of a canvas element on a document.\r\n */" - }, - { - "name": "height", - "comment": "/**\r\n * Gets or sets the height of a canvas element on a document.\r\n */" - } - ], - "method": [ - { - "name": "toDataURL", - "comment": "/**\r\n * Returns the content of the current canvas as an image that you can use as a source for another canvas or an HTML element.\r\n * @param type The standard MIME type for the image format to return. If you do not specify this parameter, the default value is a PNG format image.\r\n */" - }, - { - "name": "getContext", - "comment": "/**\r\n * Returns an object that provides methods and properties for drawing and manipulating images and graphics on a canvas element in a document. A context object includes information about colors, line widths, fonts, and other graphic parameters that can be drawn on a canvas.\r\n * @param contextId The identifier (ID) of the type of canvas to create. Internet Explorer 9 and Internet Explorer 10 support only a 2-D context using canvas.getContext(\"2d\"); IE11 Preview also supports 3-D or WebGL context using canvas.getContext(\"experimental-webgl\");\r\n */" - }, - { - "name": "msToBlob", - "comment": "/**\r\n * Returns a blob object encoded as a Portable Network Graphics (PNG) format from a canvas image or drawing.\r\n */" - } - ] - } - }, - { - "name": "HTMLTitleElement", - "members": { - "property": [ - { - "name": "text", - "comment": "/**\r\n * Retrieves or sets the text of the object as a string.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLStyleElement", - "members": { - "property": [ - { - "name": "media", - "comment": "/**\r\n * Sets or retrieves the media type.\r\n */" - }, - { - "name": "type", - "comment": "/**\r\n * Retrieves the CSS language in which the style sheet is written.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLTableCellElement", - "members": { - "property": [ - { - "name": "width", - "comment": "/**\r\n * Sets or retrieves the width of the object.\r\n */" - }, - { - "name": "headers", - "comment": "/**\r\n * Sets or retrieves a list of header cells that provide information for the object.\r\n */" - }, - { - "name": "cellIndex", - "comment": "/**\r\n * Retrieves the position of the object in the cells collection of a row.\r\n */" - }, - { - "name": "align", - "comment": "/**\r\n * Sets or retrieves how the object is aligned with adjacent text.\r\n */" - }, - { - "name": "borderColorLight", - "comment": "/**\r\n * Sets or retrieves the color for one of the two colors used to draw the 3-D border of the object.\r\n */" - }, - { - "name": "colSpan", - "comment": "/**\r\n * Sets or retrieves the number columns in the table that the object should span.\r\n */" - }, - { - "name": "borderColor", - "comment": "/**\r\n * Sets or retrieves the border color of the object.\r\n */" - }, - { - "name": "axis", - "comment": "/**\r\n * Sets or retrieves a comma-delimited list of conceptual categories associated with the object.\r\n */" - }, - { - "name": "height", - "comment": "/**\r\n * Sets or retrieves the height of the object.\r\n */" - }, - { - "name": "noWrap", - "comment": "/**\r\n * Sets or retrieves whether the browser automatically performs wordwrap.\r\n */" - }, - { - "name": "abbr", - "comment": "/**\r\n * Sets or retrieves abbreviated text for the object.\r\n */" - }, - { - "name": "rowSpan", - "comment": "/**\r\n * Sets or retrieves how many rows in a table the cell should span.\r\n */" - }, - { - "name": "scope", - "comment": "/**\r\n * Sets or retrieves the group of cells in a table to which the object's information applies.\r\n */" - }, - { - "name": "borderColorDark", - "comment": "/**\r\n * Sets or retrieves the color for one of the two colors used to draw the 3-D border of the object.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLBaseFontElement", - "members": { - "property": [ - { - "name": "face", - "comment": "/**\r\n * Sets or retrieves the current typeface family.\r\n */" - }, - { - "name": "size", - "comment": "/**\r\n * Sets or retrieves the font size of the object.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLTextAreaElement", - "members": { - "property": [ - { - "name": "value", - "comment": "/**\r\n * Retrieves or sets the text in the entry field of the textArea element.\r\n */" - }, - { - "name": "status", - "comment": "/**\r\n * Sets or retrieves the value indicating whether the control is selected.\r\n */" - }, - { - "name": "form", - "comment": "/**\r\n * Retrieves a reference to the form that the object is embedded in.\r\n */" - }, - { - "name": "name", - "comment": "/**\r\n * Sets or retrieves the name of the object.\r\n */" - }, - { - "name": "selectionStart", - "comment": "/**\r\n * Gets or sets the starting position or offset of a text selection.\r\n */" - }, - { - "name": "rows", - "comment": "/**\r\n * Sets or retrieves the number of horizontal rows contained in the object.\r\n */" - }, - { - "name": "cols", - "comment": "/**\r\n * Sets or retrieves the width of the object.\r\n */" - }, - { - "name": "readOnly", - "comment": "/**\r\n * Sets or retrieves the value indicated whether the content of the object is read-only.\r\n */" - }, - { - "name": "wrap", - "comment": "/**\r\n * Sets or retrieves how to handle wordwrapping in the object.\r\n */" - }, - { - "name": "selectionEnd", - "comment": "/**\r\n * Gets or sets the end position or offset of a text selection.\r\n */" - }, - { - "name": "type", - "comment": "/**\r\n * Retrieves the type of control.\r\n */" - }, - { - "name": "defaultValue", - "comment": "/**\r\n * Sets or retrieves the initial contents of the object.\r\n */" - }, - { - "name": "validationMessage", - "comment": "/**\r\n * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as \"this is a required field\". The result is that the user sees validation messages without actually submitting.\r\n */" - }, - { - "name": "autofocus", - "comment": "/**\r\n * Provides a way to direct a user to a specific field when a document loads. This can provide both direction and convenience for a user, reducing the need to click or tab to a field when a page opens. This attribute is true when present on an element, and false when missing.\r\n */" - }, - { - "name": "validity", - "comment": "/**\r\n * Returns a ValidityState object that represents the validity states of an element.\r\n */" - }, - { - "name": "required", - "comment": "/**\r\n * When present, marks an element that can't be submitted without a value.\r\n */" - }, - { - "name": "maxLength", - "comment": "/**\r\n * Sets or retrieves the maximum number of characters that the user can enter in a text control.\r\n */" - }, - { - "name": "willValidate", - "comment": "/**\r\n * Returns whether an element will successfully validate based on forms validation rules and constraints.\r\n */" - }, - { - "name": "placeholder", - "comment": "/**\r\n * Gets or sets a text string that is displayed in an input field as a hint or prompt to users as the format or type of information they need to enter.The text appears in an input field until the user puts focus on the field.\r\n */" - } - ], - "method": [ - { - "name": "createTextRange", - "comment": "/**\r\n * Creates a TextRange object for the element.\r\n */" - }, - { - "name": "setSelectionRange", - "comment": "/**\r\n * Sets the start and end positions of a selection in a text field.\r\n * @param start The offset into the text field for the start of the selection.\r\n * @param end The offset into the text field for the end of the selection.\r\n * @param direction The direction in which the selection is performed.\r\n */" - }, - { - "name": "select", - "comment": "/**\r\n * Highlights the input area of a form element.\r\n */" - }, - { - "name": "checkValidity", - "comment": "/**\r\n * Returns whether a form will validate when it is submitted, without having to submit it.\r\n */" - }, - { - "name": "setCustomValidity", - "comment": "/**\r\n * Sets a custom error message that is displayed when a form is submitted.\r\n * @param error Sets a custom error message that is displayed when a form is submitted.\r\n */" - } - ] - } - }, - { - "name": "HTMLModElement", - "members": { - "property": [ - { - "name": "dateTime", - "comment": "/**\r\n * Sets or retrieves the date and time of a modification to the object.\r\n */" - }, - { - "name": "cite", - "comment": "/**\r\n * Sets or retrieves reference information about the object.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLTableColElement", - "members": { - "property": [ - { - "name": "width", - "comment": "/**\r\n * Sets or retrieves the width of the object.\r\n */" - }, - { - "name": "align", - "comment": "/**\r\n * Sets or retrieves the alignment of the object relative to the display or table.\r\n */" - }, - { - "name": "span", - "comment": "/**\r\n * Sets or retrieves the number of columns in the group.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLTableAlignment", - "members": { - "property": [ - { - "name": "ch", - "comment": "/**\r\n * Sets or retrieves a value that you can use to implement your own ch functionality for the object.\r\n */" - }, - { - "name": "vAlign", - "comment": "/**\r\n * Sets or retrieves how text and other content are vertically aligned within the object that contains them.\r\n */" - }, - { - "name": "chOff", - "comment": "/**\r\n * Sets or retrieves a value that you can use to implement your own chOff functionality for the object.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLDivElement", - "members": { - "property": [ - { - "name": "align", - "comment": "/**\r\n * Sets or retrieves how the object is aligned with adjacent text.\r\n */" - }, - { - "name": "noWrap", - "comment": "/**\r\n * Sets or retrieves whether the browser automatically performs wordwrap.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLBRElement", - "members": { - "property": [ - { - "name": "clear", - "comment": "/**\r\n * Sets or retrieves the side on which floating objects are not to be positioned when any IHTMLBlockElement is inserted into the document.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLHeadingElement", - "members": { - "property": [ - { - "name": "align", - "comment": "/**\r\n * Sets or retrieves a value that indicates the table alignment.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLFormElement", - "members": { - "property": [ - { - "name": "length", - "comment": "/**\r\n * Sets or retrieves the number of objects in a collection.\r\n */" - }, - { - "name": "target", - "comment": "/**\r\n * Sets or retrieves the window or frame at which to target content.\r\n */" - }, - { - "name": "acceptCharset", - "comment": "/**\r\n * Sets or retrieves a list of character encodings for input data that must be accepted by the server processing the form.\r\n */" - }, - { - "name": "enctype", - "comment": "/**\r\n * Sets or retrieves the encoding type for the form.\r\n */" - }, - { - "name": "elements", - "comment": "/**\r\n * Retrieves a collection, in source order, of all controls in a given form.\r\n */" - }, - { - "name": "action", - "comment": "/**\r\n * Sets or retrieves the URL to which the form content is sent for processing.\r\n */" - }, - { - "name": "name", - "comment": "/**\r\n * Sets or retrieves the name of the object.\r\n */" - }, - { - "name": "method", - "comment": "/**\r\n * Sets or retrieves how to send the form data to the server.\r\n */" - }, - { - "name": "encoding", - "comment": "/**\r\n * Sets or retrieves the MIME encoding for the form.\r\n */" - }, - { - "name": "autocomplete", - "comment": "/**\r\n * Specifies whether autocomplete is applied to an editable text field.\r\n */" - }, - { - "name": "noValidate", - "comment": "/**\r\n * Designates a form that is not validated when submitted.\r\n */" - } - ], - "method": [ - { - "name": "reset", - "comment": "/**\r\n * Fires when the user resets a form.\r\n */" - }, - { - "name": "item", - "comment": "/**\r\n * Retrieves a form object or an object from an elements collection.\r\n * @param name Variant of type Number or String that specifies the object or collection to retrieve. If this parameter is a Number, it is the zero-based index of the object. If this parameter is a string, all objects with matching name or id properties are retrieved, and a collection is returned if more than one match is made.\r\n * @param index Variant of type Number that specifies the zero-based index of the object to retrieve when a collection is returned.\r\n */" - }, - { - "name": "submit", - "comment": "/**\r\n * Fires when a FORM is about to be submitted.\r\n */" - }, - { - "name": "namedItem", - "comment": "/**\r\n * Retrieves a form object or an object from an elements collection.\r\n */" - }, - { - "name": "checkValidity", - "comment": "/**\r\n * Returns whether a form will validate when it is submitted, without having to submit it.\r\n */" - } - ] - } - }, - { - "name": "HTMLMediaElement", - "members": { - "property": [ - { - "name": "initialTime", - "comment": "/**\r\n * Gets the earliest possible position, in seconds, that the playback can begin.\r\n */" - }, - { - "name": "played", - "comment": "/**\r\n * Gets TimeRanges for the current media resource that has been played.\r\n */" - }, - { - "name": "currentSrc", - "comment": "/**\r\n * Gets the address or URL of the current media resource that is selected by IHTMLMediaElement.\r\n */" - }, - { - "name": "autobuffer", - "comment": "/**\r\n * The autobuffer element is not supported by Internet Explorer 9. Use the preload element instead.\r\n */" - }, - { - "name": "loop", - "comment": "/**\r\n * Gets or sets a flag to specify whether playback should restart after it completes.\r\n */" - }, - { - "name": "ended", - "comment": "/**\r\n * Gets information about whether the playback has ended or not.\r\n */" - }, - { - "name": "buffered", - "comment": "/**\r\n * Gets a collection of buffered time ranges.\r\n */" - }, - { - "name": "error", - "comment": "/**\r\n * Returns an object representing the current error state of the audio or video element.\r\n */" - }, - { - "name": "seekable", - "comment": "/**\r\n * Returns a TimeRanges object that represents the ranges of the current media resource that can be seeked.\r\n */" - }, - { - "name": "autoplay", - "comment": "/**\r\n * Gets or sets a value that indicates whether to start playing the media automatically.\r\n */" - }, - { - "name": "controls", - "comment": "/**\r\n * Gets or sets a flag that indicates whether the client provides a set of controls for the media (in case the developer does not include controls for the player).\r\n */" - }, - { - "name": "volume", - "comment": "/**\r\n * Gets or sets the volume level for audio portions of the media element.\r\n */" - }, - { - "name": "src", - "comment": "/**\r\n * The address or URL of the a media resource that is to be considered.\r\n */" - }, - { - "name": "playbackRate", - "comment": "/**\r\n * Gets or sets the current rate of speed for the media resource to play. This speed is expressed as a multiple of the normal speed of the media resource.\r\n */" - }, - { - "name": "duration", - "comment": "/**\r\n * Returns the duration in seconds of the current media resource. A NaN value is returned if duration is not available, or Infinity if the media resource is streaming.\r\n */" - }, - { - "name": "muted", - "comment": "/**\r\n * Gets or sets a flag that indicates whether the audio (either audio or the audio track on video media) is muted.\r\n */" - }, - { - "name": "defaultPlaybackRate", - "comment": "/**\r\n * Gets or sets the default playback rate when the user is not using fast forward or reverse for a video or audio resource.\r\n */" - }, - { - "name": "paused", - "comment": "/**\r\n * Gets a flag that specifies whether playback is paused.\r\n */" - }, - { - "name": "seeking", - "comment": "/**\r\n * Gets a flag that indicates whether the the client is currently moving to a new playback position in the media resource.\r\n */" - }, - { - "name": "currentTime", - "comment": "/**\r\n * Gets or sets the current playback position, in seconds.\r\n */" - }, - { - "name": "preload", - "comment": "/**\r\n * Gets or sets the current playback position, in seconds.\r\n */" - }, - { - "name": "networkState", - "comment": "/**\r\n * Gets the current network activity for the element.\r\n */" - }, - { - "name": "msAudioCategory", - "comment": "/**\r\n * Specifies the purpose of the audio or video media, such as background audio or alerts.\r\n */" - }, - { - "name": "msRealTime", - "comment": "/**\r\n * Specifies whether or not to enable low-latency playback on the media element.\r\n */" - }, - { - "name": "msPlayToPrimary", - "comment": "/**\r\n * Gets or sets the primary DLNA PlayTo device.\r\n */" - }, - { - "name": "msPlayToDisabled", - "comment": "/**\r\n * Gets or sets whether the DLNA PlayTo device is available.\r\n */" - }, - { - "name": "audioTracks", - "comment": "/**\r\n * Returns an AudioTrackList object with the audio tracks for a given video element.\r\n */" - }, - { - "name": "msPlayToSource", - "comment": "/**\r\n * Gets the source associated with the media element for use by the PlayToManager.\r\n */" - }, - { - "name": "msAudioDeviceType", - "comment": "/**\r\n * Specifies the output device id that the audio will be sent to.\r\n */" - }, - { - "name": "msPlayToPreferredSourceUri", - "comment": "/**\r\n * Gets or sets the path to the preferred media source. This enables the Play To target device to stream the media content, which can be DRM protected, from a different location, such as a cloud media server.\r\n */" - }, - { - "name": "msKeys", - "comment": "/**\r\n * Gets the MSMediaKeys object, which is used for decrypting media data, that is associated with this media element.\r\n */" - } - ], - "method": [ - { - "name": "pause", - "comment": "/**\r\n * Pauses the current playback and sets paused to TRUE. This can be used to test whether the media is playing or paused. You can also use the pause or play events to tell whether the media is playing or not.\r\n */" - }, - { - "name": "play", - "comment": "/**\r\n * Loads and starts playback of a media resource.\r\n */" - }, - { - "name": "load", - "comment": "/**\r\n * Resets the audio or video object and loads a new media resource.\r\n */" - }, - { - "name": "canPlayType", - "comment": "/**\r\n * Returns a string that specifies whether the client can play a given media resource type.\r\n */" - }, - { - "name": "msClearEffects", - "comment": "/**\r\n * Clears all effects from the media pipeline.\r\n */" - }, - { - "name": "msSetMediaProtectionManager", - "comment": "/**\r\n * Specifies the media protection manager for a given media pipeline.\r\n */" - }, - { - "name": "msInsertAudioEffect", - "comment": "/**\r\n * Inserts the specified audio effect into media pipeline.\r\n */" - } - ] - } - }, - { - "name": "HTMLDTElement", - "members": { - "property": [ - { - "name": "noWrap", - "comment": "/**\r\n * Sets or retrieves whether the browser automatically performs wordwrap.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLFieldSetElement", - "members": { - "property": [ - { - "name": "align", - "comment": "/**\r\n * Sets or retrieves how the object is aligned with adjacent text.\r\n */" - }, - { - "name": "form", - "comment": "/**\r\n * Retrieves a reference to the form that the object is embedded in.\r\n */" - }, - { - "name": "validationMessage", - "comment": "/**\r\n * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as \"this is a required field\". The result is that the user sees validation messages without actually submitting.\r\n */" - }, - { - "name": "validity", - "comment": "/**\r\n * Returns a ValidityState object that represents the validity states of an element.\r\n */" - }, - { - "name": "willValidate", - "comment": "/**\r\n * Returns whether an element will successfully validate based on forms validation rules and constraints.\r\n */" - } - ], - "method": [ - { - "name": "checkValidity", - "comment": "/**\r\n * Returns whether a form will validate when it is submitted, without having to submit it.\r\n */" - }, - { - "name": "setCustomValidity", - "comment": "/**\r\n * Sets a custom error message that is displayed when a form is submitted.\r\n * @param error Sets a custom error message that is displayed when a form is submitted.\r\n */" - } - ] - } - }, - { - "name": "HTMLBGSoundElement", - "members": { - "property": [ - { - "name": "balance", - "comment": "/**\r\n * Sets or gets the value indicating how the volume of the background sound is divided between the left speaker and the right speaker.\r\n */" - }, - { - "name": "volume", - "comment": "/**\r\n * Sets or gets the volume setting for the sound.\r\n */" - }, - { - "name": "src", - "comment": "/**\r\n * Sets or gets the URL of a sound to play.\r\n */" - }, - { - "name": "loop", - "comment": "/**\r\n * Sets or retrieves the number of times a sound or video clip will loop when activated.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLHRElement", - "members": { - "property": [ - { - "name": "width", - "comment": "/**\r\n * Sets or retrieves the width of the object.\r\n */" - }, - { - "name": "align", - "comment": "/**\r\n * Sets or retrieves how the object is aligned with adjacent text.\r\n */" - }, - { - "name": "noShade", - "comment": "/**\r\n * Sets or retrieves whether the horizontal rule is drawn with 3-D shading.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLObjectElement", - "members": { - "property": [ - { - "name": "width", - "comment": "/**\r\n * Sets or retrieves the width of the object.\r\n */" - }, - { - "name": "codeType", - "comment": "/**\r\n * Sets or retrieves the Internet media type for the code associated with the object.\r\n */" - }, - { - "name": "object", - "comment": "/**\r\n * Retrieves the contained object.\r\n */" - }, - { - "name": "form", - "comment": "/**\r\n * Retrieves a reference to the form that the object is embedded in.\r\n */" - }, - { - "name": "code", - "comment": "/**\r\n * Sets or retrieves the URL of the file containing the compiled Java class.\r\n */" - }, - { - "name": "archive", - "comment": "/**\r\n * Sets or retrieves a character string that can be used to implement your own archive functionality for the object.\r\n */" - }, - { - "name": "standby", - "comment": "/**\r\n * Sets or retrieves a message to be displayed while an object is loading.\r\n */" - }, - { - "name": "classid", - "comment": "/**\r\n * Sets or retrieves the class identifier for the object.\r\n */" - }, - { - "name": "name", - "comment": "/**\r\n * Sets or retrieves the name of the object.\r\n */" - }, - { - "name": "useMap", - "comment": "/**\r\n * Sets or retrieves the URL, often with a bookmark extension (#name), to use as a client-side image map.\r\n */" - }, - { - "name": "data", - "comment": "/**\r\n * Sets or retrieves the URL that references the data of the object.\r\n */" - }, - { - "name": "height", - "comment": "/**\r\n * Sets or retrieves the height of the object.\r\n */" - }, - { - "name": "contentDocument", - "comment": "/**\r\n * Retrieves the document object of the page or frame.\r\n */" - }, - { - "name": "altHtml", - "comment": "/**\r\n * Gets or sets the optional alternative HTML script to execute if the object fails to load.\r\n */" - }, - { - "name": "codeBase", - "comment": "/**\r\n * Sets or retrieves the URL of the component.\r\n */" - }, - { - "name": "type", - "comment": "/**\r\n * Sets or retrieves the MIME type of the object.\r\n */" - }, - { - "name": "BaseHref", - "comment": "/**\r\n * Retrieves a string of the URL where the object tag can be found. This is often the href of the document that the object is in, or the value set by a base element.\r\n */" - }, - { - "name": "validationMessage", - "comment": "/**\r\n * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as \"this is a required field\". The result is that the user sees validation messages without actually submitting.\r\n */" - }, - { - "name": "validity", - "comment": "/**\r\n * Returns a ValidityState object that represents the validity states of an element.\r\n */" - }, - { - "name": "willValidate", - "comment": "/**\r\n * Returns whether an element will successfully validate based on forms validation rules and constraints.\r\n */" - }, - { - "name": "msPlayToPreferredSourceUri", - "comment": "/**\r\n * Gets or sets the path to the preferred media source. This enables the Play To target device to stream the media content, which can be DRM protected, from a different location, such as a cloud media server.\r\n */" - }, - { - "name": "msPlayToPrimary", - "comment": "/**\r\n * Gets or sets the primary DLNA PlayTo device.\r\n */" - }, - { - "name": "msPlayToDisabled", - "comment": "/**\r\n * Gets or sets whether the DLNA PlayTo device is available.\r\n */" - }, - { - "name": "msPlayToSource", - "comment": "/**\r\n * Gets the source associated with the media element for use by the PlayToManager.\r\n */" - } - ], - "method": [ - { - "name": "checkValidity", - "comment": "/**\r\n * Returns whether a form will validate when it is submitted, without having to submit it.\r\n */" - }, - { - "name": "setCustomValidity", - "comment": "/**\r\n * Sets a custom error message that is displayed when a form is submitted.\r\n * @param error Sets a custom error message that is displayed when a form is submitted.\r\n */" - } - ] - } - }, - { - "name": "HTMLEmbedElement", - "members": { - "property": [ - { - "name": "width", - "comment": "/**\r\n * Sets or retrieves the width of the object.\r\n */" - }, - { - "name": "palette", - "comment": "/**\r\n * Retrieves the palette used for the embedded document.\r\n */" - }, - { - "name": "src", - "comment": "/**\r\n * Sets or retrieves a URL to be loaded by the object.\r\n */" - }, - { - "name": "name", - "comment": "/**\r\n * Sets or retrieves the name of the object.\r\n */" - }, - { - "name": "pluginspage", - "comment": "/**\r\n * Retrieves the URL of the plug-in used to view an embedded document.\r\n */" - }, - { - "name": "height", - "comment": "/**\r\n * Sets or retrieves the height of the object.\r\n */" - }, - { - "name": "units", - "comment": "/**\r\n * Sets or retrieves the height and width units of the embed object.\r\n */" - }, - { - "name": "msPlayToPreferredSourceUri", - "comment": "/**\r\n * Gets or sets the path to the preferred media source. This enables the Play To target device to stream the media content, which can be DRM protected, from a different location, such as a cloud media server.\r\n */" - }, - { - "name": "msPlayToPrimary", - "comment": "/**\r\n * Gets or sets the primary DLNA PlayTo device.\r\n */" - }, - { - "name": "msPlayToDisabled", - "comment": "/**\r\n * Gets or sets whether the DLNA PlayTo device is available.\r\n */" - }, - { - "name": "msPlayToSource", - "comment": "/**\r\n * Gets the source associated with the media element for use by the PlayToManager.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLOptGroupElement", - "members": { - "property": [ - { - "name": "index", - "comment": "/**\r\n * Sets or retrieves the ordinal position of an option in a list box.\r\n */" - }, - { - "name": "defaultSelected", - "comment": "/**\r\n * Sets or retrieves the status of an option.\r\n */" - }, - { - "name": "text", - "comment": "/**\r\n * Sets or retrieves the text string specified by the option tag.\r\n */" - }, - { - "name": "value", - "comment": "/**\r\n * Sets or retrieves the value which is returned to the server when the form control is submitted.\r\n */" - }, - { - "name": "form", - "comment": "/**\r\n * Retrieves a reference to the form that the object is embedded in.\r\n */" - }, - { - "name": "label", - "comment": "/**\r\n * Sets or retrieves a value that you can use to implement your own label functionality for the object.\r\n */" - }, - { - "name": "selected", - "comment": "/**\r\n * Sets or retrieves whether the option in the list box is the default item.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLIsIndexElement", - "members": { - "property": [ - { - "name": "form", - "comment": "/**\r\n * Retrieves a reference to the form that the object is embedded in.\r\n */" - }, - { - "name": "action", - "comment": "/**\r\n * Sets or retrieves the URL to which the form content is sent for processing.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLVideoElement", - "members": { - "property": [ - { - "name": "width", - "comment": "/**\r\n * Gets or sets the width of the video element.\r\n */" - }, - { - "name": "videoWidth", - "comment": "/**\r\n * Gets the intrinsic width of a video in CSS pixels, or zero if the dimensions are not known.\r\n */" - }, - { - "name": "videoHeight", - "comment": "/**\r\n * Gets the intrinsic height of a video in CSS pixels, or zero if the dimensions are not known.\r\n */" - }, - { - "name": "height", - "comment": "/**\r\n * Gets or sets the height of the video element.\r\n */" - }, - { - "name": "poster", - "comment": "/**\r\n * Gets or sets a URL of an image to display, for example, like a movie poster. This can be a still frame from the video, or another image if no video data is available.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "HTMLProgressElement", - "members": { - "property": [ - { - "name": "value", - "comment": "/**\r\n * Sets or gets the current value of a progress element. The value must be a non-negative number between 0 and the max value.\r\n */" - }, - { - "name": "max", - "comment": "/**\r\n * Defines the maximum, or \"done\" value for a progress element.\r\n */" - }, - { - "name": "position", - "comment": "/**\r\n * Returns the quotient of value/max when the value attribute is set (determinate progress bar), or -1 when the value attribute is missing (indeterminate progress bar).\r\n */" - }, - { - "name": "form", - "comment": "/**\r\n * Retrieves a reference to the form that the object is embedded in.\r\n */" - } - ], - "method": [] - } - }, - { - "name": "URLSearchParams", - "members": { - "method": [ - { - "name": "append", - "comment": "/**\r\n * Appends a specified key/value pair as a new search parameter.\r\n */" - }, - { - "name": "delete", - "comment": "/**\r\n * Deletes the given search parameter, and its associated value, from the list of all search parameters.\r\n */" - }, - { - "name": "get", - "comment": "/**\r\n * Returns the first value associated to the given search parameter.\r\n */" - }, - { - "name": "getAll", - "comment": "/**\r\n * Returns all the values association with a given search parameter.\r\n */" - }, - { - "name": "has", - "comment": "/**\r\n * Returns a Boolean indicating if such a search parameter exists.\r\n */" - }, - { - "name": "set", - "comment": "/**\r\n * Sets the value associated to a given search parameter to the given value. If there were several values, delete the others.\r\n */" - } - ], - "property": [], - "constructor": "/**\r\n * Constructor returning a URLSearchParams object.\r\n */" - } +{ + "interfaces": { + "interface": { + "HTMLTableElement": { + "properties": { + "property": { + "width": { + "comment": "/**\r\n * Sets or retrieves the width of the object.\r\n */" + }, + "cellSpacing": { + "comment": "/**\r\n * Sets or retrieves the amount of space between cells in a table.\r\n */" + }, + "tFoot": { + "comment": "/**\r\n * Retrieves the tFoot object of the table.\r\n */" + }, + "frame": { + "comment": "/**\r\n * Sets or retrieves the way the border frame around the table is displayed.\r\n */" + }, + "rows": { + "comment": "/**\r\n * Sets or retrieves the number of horizontal rows contained in the object.\r\n */" + }, + "rules": { + "comment": "/**\r\n * Sets or retrieves which dividing lines (inner borders) are displayed.\r\n */" + }, + "summary": { + "comment": "/**\r\n * Sets or retrieves a description and/or structure of the object.\r\n */" + }, + "caption": { + "comment": "/**\r\n * Retrieves the caption object of a table.\r\n */" + }, + "tBodies": { + "comment": "/**\r\n * Retrieves a collection of all tBody objects in the table. Objects in this collection are in source order.\r\n */" + }, + "tHead": { + "comment": "/**\r\n * Retrieves the tHead object of the table.\r\n */" + }, + "align": { + "comment": "/**\r\n * Sets or retrieves a value that indicates the table alignment.\r\n */" + }, + "cellPadding": { + "comment": "/**\r\n * Sets or retrieves the amount of space between the border of the cell and the content of the cell.\r\n */" + }, + "border": { + "comment": "/**\r\n * Sets or retrieves the width of the border to draw around the object.\r\n */" + } + } + }, + "methods": { + "method": { + "deleteRow": { + "comment": "/**\r\n * Removes the specified row (tr) from the element and from the rows collection.\r\n * @param index Number that specifies the zero-based position in the rows collection of the row to remove.\r\n */" + }, + "createTBody": { + "comment": "/**\r\n * Creates an empty tBody element in the table.\r\n */" + }, + "deleteCaption": { + "comment": "/**\r\n * Deletes the caption element and its contents from the table.\r\n */" + }, + "insertRow": { + "comment": "/**\r\n * Creates a new row (tr) in the table, and adds the row to the rows collection.\r\n * @param index Number that specifies where to insert the row in the rows collection. The default value is -1, which appends the new row to the end of the rows collection.\r\n */" + }, + "deleteTFoot": { + "comment": "/**\r\n * Deletes the tFoot element and its contents from the table.\r\n */" + }, + "createTHead": { + "comment": "/**\r\n * Returns the tHead element object if successful, or null otherwise.\r\n */" + }, + "deleteTHead": { + "comment": "/**\r\n * Deletes the tHead element and its contents from the table.\r\n */" + }, + "createCaption": { + "comment": "/**\r\n * Creates an empty caption element in the table.\r\n */" + }, + "createTFoot": { + "comment": "/**\r\n * Creates an empty tFoot element in the table.\r\n */" + } + } + } + }, + "HTMLBaseElement": { + "properties": { + "property": { + "target": { + "comment": "/**\r\n * Sets or retrieves the window or frame at which to target content.\r\n */" + }, + "href": { + "comment": "/**\r\n * Gets or sets the baseline URL on which relative links are based.\r\n */" + } + } + } + }, + "HTMLParagraphElement": { + "properties": { + "property": { + "align": { + "comment": "/**\r\n * Sets or retrieves how the object is aligned with adjacent text.\r\n */" + } + } + } + }, + "HTMLAppletElement": { + "properties": { + "property": { + "archive": { + "comment": "/**\r\n * Sets or retrieves a character string that can be used to implement your own archive functionality for the object.\r\n */" + }, + "alt": { + "comment": "/**\r\n * Sets or retrieves a text alternative to the graphic.\r\n */" + }, + "name": { + "comment": "/**\r\n * Sets or retrieves the shape of the object.\r\n */" + }, + "height": { + "comment": "/**\r\n * Sets or retrieves the height of the object.\r\n */" + }, + "codeBase": { + "comment": "/**\r\n * Sets or retrieves the URL of the component.\r\n */" + } + } + } + }, + "HTMLOListElement": { + "properties": { + "property": { + "start": { + "comment": "/**\r\n * The starting number.\r\n */" + } + } + } + }, + "HTMLSelectElement": { + "properties": { + "property": { + "value": { + "comment": "/**\r\n * Sets or retrieves the value which is returned to the server when the form control is submitted.\r\n */" + }, + "form": { + "comment": "/**\r\n * Retrieves a reference to the form that the object is embedded in.\r\n */" + }, + "name": { + "comment": "/**\r\n * Sets or retrieves the name of the object.\r\n */" + }, + "size": { + "comment": "/**\r\n * Sets or retrieves the number of rows in the list box.\r\n */" + }, + "length": { + "comment": "/**\r\n * Sets or retrieves the number of objects in a collection.\r\n */" + }, + "selectedIndex": { + "comment": "/**\r\n * Sets or retrieves the index of the selected option in a select object.\r\n */" + }, + "multiple": { + "comment": "/**\r\n * Sets or retrieves the Boolean value indicating whether multiple items can be selected from a list.\r\n */" + }, + "type": { + "comment": "/**\r\n * Retrieves the type of select control based on the value of the MULTIPLE attribute.\r\n */" + }, + "validationMessage": { + "comment": "/**\r\n * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as \"this is a required field\". The result is that the user sees validation messages without actually submitting.\r\n */" + }, + "autofocus": { + "comment": "/**\r\n * Provides a way to direct a user to a specific field when a document loads. This can provide both direction and convenience for a user, reducing the need to click or tab to a field when a page opens. This attribute is true when present on an element, and false when missing.\r\n */" + }, + "validity": { + "comment": "/**\r\n * Returns a ValidityState object that represents the validity states of an element.\r\n */" + }, + "required": { + "comment": "/**\r\n * When present, marks an element that can't be submitted without a value.\r\n */" + }, + "willValidate": { + "comment": "/**\r\n * Returns whether an element will successfully validate based on forms validation rules and constraints.\r\n */" + } + } + }, + "methods": { + "method": { + "remove": { + "comment": "/**\r\n * Removes an element from the collection.\r\n * @param index Number that specifies the zero-based index of the element to remove from the collection.\r\n */" + }, + "add": { + "comment": "/**\r\n * Adds an element to the areas, controlRange, or options collection.\r\n * @param element Variant of type Number that specifies the index position in the collection where the element is placed. If no value is given, the method places the element at the end of the collection.\r\n * @param before Variant of type Object that specifies an element to insert before, or null to append the object to the collection.\r\n */" + }, + "item": { + "comment": "/**\r\n * Retrieves a select object or an object from an options collection.\r\n * @param name Variant of type Number or String that specifies the object or collection to retrieve. If this parameter is an integer, it is the zero-based index of the object. If this parameter is a string, all objects with matching name or id properties are retrieved, and a collection is returned if more than one match is made.\r\n * @param index Variant of type Number that specifies the zero-based index of the object to retrieve when a collection is returned.\r\n */" + }, + "namedItem": { + "comment": "/**\r\n * Retrieves a select object or an object from an options collection.\r\n * @param namedItem A String that specifies the name or id property of the object to retrieve. A collection is returned if more than one match is made.\r\n */" + }, + "checkValidity": { + "comment": "/**\r\n * Returns whether a form will validate when it is submitted, without having to submit it.\r\n */" + }, + "setCustomValidity": { + "comment": "/**\r\n * Sets a custom error message that is displayed when a form is submitted.\r\n * @param error Sets a custom error message that is displayed when a form is submitted.\r\n */" + } + } + } + }, + "HTMLMetaElement": { + "properties": { + "property": { + "httpEquiv": { + "comment": "/**\r\n * Gets or sets information used to bind the value of a content attribute of a meta element to an HTTP response header.\r\n */" + }, + "name": { + "comment": "/**\r\n * Sets or retrieves the value specified in the content attribute of the meta object.\r\n */" + }, + "content": { + "comment": "/**\r\n * Gets or sets meta-information to associate with httpEquiv or name.\r\n */" + }, + "url": { + "comment": "/**\r\n * Sets or retrieves the URL property that will be loaded after the specified time has elapsed.\r\n */" + }, + "scheme": { + "comment": "/**\r\n * Sets or retrieves a scheme to be used in interpreting the value of a property specified for the object.\r\n */" + }, + "charset": { + "comment": "/**\r\n * Sets or retrieves the character set used to encode the object.\r\n */" + } + } + } + }, + "HTMLLinkElement": { + "properties": { + "property": { + "rel": { + "comment": "/**\r\n * Sets or retrieves the relationship between the object and the destination of the link.\r\n */" + }, + "target": { + "comment": "/**\r\n * Sets or retrieves the window or frame at which to target content.\r\n */" + }, + "href": { + "comment": "/**\r\n * Sets or retrieves a destination URL or an anchor point.\r\n */" + }, + "media": { + "comment": "/**\r\n * Sets or retrieves the media type.\r\n */" + }, + "rev": { + "comment": "/**\r\n * Sets or retrieves the relationship between the object and the destination of the link.\r\n */" + }, + "type": { + "comment": "/**\r\n * Sets or retrieves the MIME type of the object.\r\n */" + }, + "charset": { + "comment": "/**\r\n * Sets or retrieves the character set used to encode the object.\r\n */" + }, + "hreflang": { + "comment": "/**\r\n * Sets or retrieves the language code of the object.\r\n */" + } + } + } + }, + "HTMLFontElement": { + "properties": { + "property": { + "face": { + "comment": "/**\r\n * Sets or retrieves the current typeface family.\r\n */" + } + } + } + }, + "HTMLTableCaptionElement": { + "properties": { + "property": { + "align": { + "comment": "/**\r\n * Sets or retrieves the alignment of the caption or legend.\r\n */" + } + } + } + }, + "HTMLOptionElement": { + "properties": { + "property": { + "index": { + "comment": "/**\r\n * Sets or retrieves the ordinal position of an option in a list box.\r\n */" + }, + "defaultSelected": { + "comment": "/**\r\n * Sets or retrieves the status of an option.\r\n */" + }, + "value": { + "comment": "/**\r\n * Sets or retrieves the value which is returned to the server when the form control is submitted.\r\n */" + }, + "text": { + "comment": "/**\r\n * Sets or retrieves the text string specified by the option tag.\r\n */" + }, + "form": { + "comment": "/**\r\n * Retrieves a reference to the form that the object is embedded in.\r\n */" + }, + "label": { + "comment": "/**\r\n * Sets or retrieves a value that you can use to implement your own label functionality for the object.\r\n */" + }, + "selected": { + "comment": "/**\r\n * Sets or retrieves whether the option in the list box is the default item.\r\n */" + } + } + } + }, + "HTMLMapElement": { + "properties": { + "property": { + "name": { + "comment": "/**\r\n * Sets or retrieves the name of the object.\r\n */" + }, + "areas": { + "comment": "/**\r\n * Retrieves a collection of the area objects defined for the given map object.\r\n */" + } + } + } + }, + "HTMLCollection": { + "properties": { + "property": { + "length": { + "comment": "/**\r\n * Sets or retrieves the number of objects in a collection.\r\n */" + } + } + }, + "methods": { + "method": { + "item": { + "comment": "/**\r\n * Retrieves an object from various collections.\r\n */" + }, + "namedItem": { + "comment": "/**\r\n * Retrieves a select object or an object from an options collection.\r\n */" + } + } + } + }, + "HTMLImageElement": { + "properties": { + "property": { + "width": { + "comment": "/**\r\n * Sets or retrieves the width of the object.\r\n */" + }, + "vspace": { + "comment": "/**\r\n * Sets or retrieves the vertical margin for the object.\r\n */" + }, + "naturalHeight": { + "comment": "/**\r\n * The original height of the image resource before sizing.\r\n */" + }, + "alt": { + "comment": "/**\r\n * Sets or retrieves a text alternative to the graphic.\r\n */" + }, + "align": { + "comment": "/**\r\n * Sets or retrieves how the object is aligned with adjacent text.\r\n */" + }, + "src": { + "comment": "/**\r\n * The address or URL of the a media resource that is to be considered.\r\n */" + }, + "useMap": { + "comment": "/**\r\n * Sets or retrieves the URL, often with a bookmark extension (#name), to use as a client-side image map.\r\n */" + }, + "naturalWidth": { + "comment": "/**\r\n * The original width of the image resource before sizing.\r\n */" + }, + "name": { + "comment": "/**\r\n * Sets or retrieves the name of the object.\r\n */" + }, + "height": { + "comment": "/**\r\n * Sets or retrieves the height of the object.\r\n */" + }, + "border": { + "comment": "/**\r\n * Specifies the properties of a border drawn around an object.\r\n */" + }, + "hspace": { + "comment": "/**\r\n * Sets or retrieves the width of the border to draw around the object.\r\n */" + }, + "longDesc": { + "comment": "/**\r\n * Sets or retrieves a Uniform Resource Identifier (URI) to a long description of the object.\r\n */" + }, + "isMap": { + "comment": "/**\r\n * Sets or retrieves whether the image is a server-side image map.\r\n */" + }, + "complete": { + "comment": "/**\r\n * Retrieves whether the object is fully loaded.\r\n */" + }, + "msPlayToPrimary": { + "comment": "/**\r\n * Gets or sets the primary DLNA PlayTo device.\r\n */" + }, + "msPlayToDisabled": { + "comment": "/**\r\n * Gets or sets whether the DLNA PlayTo device is available.\r\n */" + }, + "msPlayToSource": { + "comment": "/**\r\n * Gets the source associated with the media element for use by the PlayToManager.\r\n */" + } + } + } + }, + "HTMLAreaElement": { + "properties": { + "property": { + "alt": { + "comment": "/**\r\n * Sets or retrieves a text alternative to the graphic.\r\n */" + }, + "coords": { + "comment": "/**\r\n * Sets or retrieves the coordinates of the object.\r\n */" + }, + "target": { + "comment": "/**\r\n * Sets or retrieves the window or frame at which to target content.\r\n */" + }, + "noHref": { + "comment": "/**\r\n * Sets or gets whether clicks in this region cause action.\r\n */" + }, + "shape": { + "comment": "/**\r\n * Sets or retrieves the shape of the object.\r\n */" + } + } + } + }, + "HTMLButtonElement": { + "properties": { + "property": { + "value": { + "comment": "/**\r\n * Sets or retrieves the default or selected value of the control.\r\n */" + }, + "form": { + "comment": "/**\r\n * Retrieves a reference to the form that the object is embedded in.\r\n */" + }, + "name": { + "comment": "/**\r\n * Sets or retrieves the name of the object.\r\n */" + }, + "type": { + "comment": "/**\r\n * Gets the classification and default behavior of the button.\r\n */" + }, + "validationMessage": { + "comment": "/**\r\n * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as \"this is a required field\". The result is that the user sees validation messages without actually submitting.\r\n */" + }, + "formTarget": { + "comment": "/**\r\n * Overrides the target attribute on a form element.\r\n */" + }, + "willValidate": { + "comment": "/**\r\n * Returns whether an element will successfully validate based on forms validation rules and constraints.\r\n */" + }, + "formAction": { + "comment": "/**\r\n * Overrides the action attribute (where the data on a form is sent) on the parent form element.\r\n */" + }, + "autofocus": { + "comment": "/**\r\n * Provides a way to direct a user to a specific field when a document loads. This can provide both direction and convenience for a user, reducing the need to click or tab to a field when a page opens. This attribute is true when present on an element, and false when missing.\r\n */" + }, + "validity": { + "comment": "/**\r\n * Returns a ValidityState object that represents the validity states of an element.\r\n */" + }, + "formNoValidate": { + "comment": "/**\r\n * Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a \"save draft\"-type submit option.\r\n */" + }, + "formEnctype": { + "comment": "/**\r\n * Used to override the encoding (formEnctype attribute) specified on the form element.\r\n */" + }, + "formMethod": { + "comment": "/**\r\n * Overrides the submit method attribute previously specified on a form element.\r\n */" + } + } + }, + "methods": { + "method": { + "checkValidity": { + "comment": "/**\r\n * Returns whether a form will validate when it is submitted, without having to submit it.\r\n */" + }, + "setCustomValidity": { + "comment": "/**\r\n * Sets a custom error message that is displayed when a form is submitted.\r\n * @param error Sets a custom error message that is displayed when a form is submitted.\r\n */" + } + } + } + }, + "HTMLSourceElement": { + "properties": { + "property": { + "src": { + "comment": "/**\r\n * The address or URL of the a media resource that is to be considered.\r\n */" + }, + "media": { + "comment": "/**\r\n * Gets or sets the intended media type of the media source.\r\n */" + }, + "type": { + "comment": "/**\r\n * Gets or sets the MIME type of a media resource.\r\n */" + } + } + } + }, + "Document": { + "properties": { + "property": { + "onkeydown": { + "comment": "/**\r\n * Fires when the user presses a key.\r\n * @param ev The keyboard event\r\n */" + }, + "onkeyup": { + "comment": "/**\r\n * Fires when the user releases a key.\r\n * @param ev The keyboard event\r\n */" + }, + "implementation": { + "comment": "/**\r\n * Gets the implementation object of the current document.\r\n */" + }, + "onreset": { + "comment": "/**\r\n * Fires when the user resets a form.\r\n * @param ev The event.\r\n */" + }, + "scripts": { + "comment": "/**\r\n * Retrieves a collection of all script objects in the document.\r\n */" + }, + "ondragleave": { + "comment": "/**\r\n * Fires on the target object when the user moves the mouse out of a valid drop target during a drag operation.\r\n * @param ev The drag event.\r\n */" + }, + "charset": { + "comment": "/**\r\n * Gets or sets the character set used to encode the object.\r\n */" + }, + "vlinkColor": { + "comment": "/**\r\n * Sets or gets the color of the links that the user has visited.\r\n */" + }, + "onseeked": { + "comment": "/**\r\n * Occurs when the seek operation ends.\r\n * @param ev The event.\r\n */" + }, + "title": { + "comment": "/**\r\n * Contains the title of the document.\r\n */" + }, + "embeds": { + "comment": "/**\r\n * Retrieves a collection of all embed objects in the document.\r\n */" + }, + "styleSheets": { + "comment": "/**\r\n * Retrieves a collection of styleSheet objects representing the style sheets that correspond to each instance of a link or style object in the document.\r\n */" + }, + "ondurationchange": { + "comment": "/**\r\n * Occurs when the duration attribute is updated.\r\n * @param ev The event.\r\n */" + }, + "all": { + "comment": "/**\r\n * Returns a reference to the collection of elements contained by the object.\r\n */" + }, + "forms": { + "comment": "/**\r\n * Retrieves a collection, in source order, of all form objects in the document.\r\n */" + }, + "onblur": { + "comment": "/**\r\n * Fires when the object loses the input focus.\r\n * @param ev The focus event.\r\n */" + }, + "dir": { + "comment": "/**\r\n * Sets or retrieves a value that indicates the reading order of the object.\r\n */" + }, + "onemptied": { + "comment": "/**\r\n * Occurs when the media element is reset to its initial state.\r\n * @param ev The event.\r\n */" + }, + "designMode": { + "comment": "/**\r\n * Sets or gets a value that indicates whether the document can be edited.\r\n */" + }, + "onseeking": { + "comment": "/**\r\n * Occurs when the current playback position is moved.\r\n * @param ev The event.\r\n */" + }, + "ondeactivate": { + "comment": "/**\r\n * Fires when the activeElement is changed from the current object to another object in the parent document.\r\n * @param ev The UI Event\r\n */" + }, + "oncanplay": { + "comment": "/**\r\n * Occurs when playback is possible, but would require further buffering.\r\n * @param ev The event.\r\n */" + }, + "onloadstart": { + "comment": "/**\r\n * Occurs when Internet Explorer begins looking for media data.\r\n * @param ev The event.\r\n */" + }, + "URLUnencoded": { + "comment": "/**\r\n * Gets the URL for the document, stripped of any character encoding.\r\n */" + }, + "ondragenter": { + "comment": "/**\r\n * Fires on the target element when the user drags the object to a valid drop target.\r\n * @param ev The drag event.\r\n */" + }, + "inputEncoding": { + "comment": "/**\r\n * Returns the character encoding used to create the webpage that is loaded into the document object.\r\n */" + }, + "activeElement": { + "comment": "/**\r\n * Gets the object that has the focus when the parent document has focus.\r\n */" + }, + "onchange": { + "comment": "/**\r\n * Fires when the contents of the object or selection have changed.\r\n * @param ev The event.\r\n */" + }, + "links": { + "comment": "/**\r\n * Retrieves a collection of all a objects that specify the href property and all area objects in the document.\r\n */" + }, + "URL": { + "comment": "/**\r\n * Sets or gets the URL for the current document.\r\n */" + }, + "onbeforeactivate": { + "comment": "/**\r\n * Fires immediately before the object is set as the active element.\r\n * @param ev The event.\r\n */" + }, + "anchors": { + "comment": "/**\r\n * Retrieves a collection of all a objects that have a name and/or id property. Objects in this collection are in HTML source order.\r\n */" + }, + "onsuspend": { + "comment": "/**\r\n * Occurs if the load operation has been intentionally halted.\r\n * @param ev The event.\r\n */" + }, + "rootElement": { + "comment": "/**\r\n * Gets the root svg element in the document hierarchy.\r\n */" + }, + "readyState": { + "comment": "/**\r\n * Retrieves a value that indicates the current state of the object.\r\n */" + }, + "referrer": { + "comment": "/**\r\n * Gets the URL of the location that referred the user to the current page.\r\n */" + }, + "alinkColor": { + "comment": "/**\r\n * Sets or gets the color of all active links in the document.\r\n */" + }, + "onmouseout": { + "comment": "/**\r\n * Fires when the user moves the mouse pointer outside the boundaries of the object.\r\n * @param ev The mouse event.\r\n */" + }, + "onmsthumbnailclick": { + "comment": "/**\r\n * Occurs when a user clicks a button in a Thumbnail Toolbar of a webpage running in Site Mode.\r\n * @param ev The event.\r\n */" + }, + "onmousewheel": { + "comment": "/**\r\n * Fires when the wheel button is rotated.\r\n * @param ev The mouse event\r\n */" + }, + "onvolumechange": { + "comment": "/**\r\n * Occurs when the volume is changed, or playback is muted or unmuted.\r\n * @param ev The event.\r\n */" + }, + "xmlVersion": { + "comment": "/**\r\n * Gets or sets the version attribute specified in the declaration of an XML document.\r\n */" + }, + "ondragend": { + "comment": "/**\r\n * Fires on the source object when the user releases the mouse at the close of a drag operation.\r\n * @param ev The event.\r\n */" + }, + "doctype": { + "comment": "/**\r\n * Gets an object representing the document type declaration associated with the current document.\r\n */" + }, + "ondragover": { + "comment": "/**\r\n * Fires on the target element continuously while the user drags the object over a valid drop target.\r\n * @param ev The event.\r\n */" + }, + "bgColor": { + "comment": "/**\r\n * Deprecated. Sets or retrieves a value that indicates the background color behind the object.\r\n */" + }, + "ondragstart": { + "comment": "/**\r\n * Fires on the source object when the user starts to drag a text selection or selected object.\r\n * @param ev The event.\r\n */" + }, + "onmouseup": { + "comment": "/**\r\n * Fires when the user releases a mouse button while the mouse is over the object.\r\n * @param ev The mouse event.\r\n */" + }, + "ondrag": { + "comment": "/**\r\n * Fires on the source object continuously during a drag operation.\r\n * @param ev The event.\r\n */" + }, + "onmouseover": { + "comment": "/**\r\n * Fires when the user moves the mouse pointer into the object.\r\n * @param ev The mouse event.\r\n */" + }, + "linkColor": { + "comment": "/**\r\n * Sets or gets the color of the document links.\r\n */" + }, + "onpause": { + "comment": "/**\r\n * Occurs when playback is paused.\r\n * @param ev The event.\r\n */" + }, + "onmousedown": { + "comment": "/**\r\n * Fires when the user clicks the object with either mouse button.\r\n * @param ev The mouse event.\r\n */" + }, + "onclick": { + "comment": "/**\r\n * Fires when the user clicks the left mouse button on the object\r\n * @param ev The mouse event.\r\n */" + }, + "onwaiting": { + "comment": "/**\r\n * Occurs when playback stops because the next frame of a video resource is not available.\r\n * @param ev The event.\r\n */" + }, + "onstop": { + "comment": "/**\r\n * Fires when the user clicks the Stop button or leaves the Web page.\r\n * @param ev The event.\r\n */" + }, + "onmssitemodejumplistitemremoved": { + "comment": "/**\r\n * Occurs when an item is removed from a Jump List of a webpage running in Site Mode.\r\n * @param ev The event.\r\n */" + }, + "applets": { + "comment": "/**\r\n * Retrieves a collection of all applet objects in the document.\r\n */" + }, + "body": { + "comment": "/**\r\n * Specifies the beginning and end of the document body.\r\n */" + }, + "domain": { + "comment": "/**\r\n * Sets or gets the security domain of the document.\r\n */" + }, + "onstalled": { + "comment": "/**\r\n * Occurs when the download has stopped.\r\n * @param ev The event.\r\n */" + }, + "onmousemove": { + "comment": "/**\r\n * Fires when the user moves the mouse over the object.\r\n * @param ev The mouse event.\r\n */" + }, + "documentElement": { + "comment": "/**\r\n * Gets a reference to the root node of the document.\r\n */" + }, + "onratechange": { + "comment": "/**\r\n * Occurs when the playback rate is increased or decreased.\r\n * @param ev The event.\r\n */" + }, + "onprogress": { + "comment": "/**\r\n * Occurs to indicate progress while downloading media data.\r\n * @param ev The event.\r\n */" + }, + "ondblclick": { + "comment": "/**\r\n * Fires when the user double-clicks the object.\r\n * @param ev The mouse event.\r\n */" + }, + "oncontextmenu": { + "comment": "/**\r\n * Fires when the user clicks the right mouse button in the client area, opening the context menu.\r\n * @param ev The mouse event.\r\n */" + }, + "onloadedmetadata": { + "comment": "/**\r\n * Occurs when the duration and dimensions of the media have been determined.\r\n * @param ev The event.\r\n */" + }, + "onerror": { + "comment": "/**\r\n * Fires when an error occurs during object loading.\r\n * @param ev The event.\r\n */" + }, + "onplay": { + "comment": "/**\r\n * Occurs when the play method is requested.\r\n * @param ev The event.\r\n */" + }, + "onplaying": { + "comment": "/**\r\n * Occurs when the audio or video has started playing.\r\n * @param ev The event.\r\n */" + }, + "images": { + "comment": "/**\r\n * Retrieves a collection, in source order, of img objects in the document.\r\n */" + }, + "location": { + "comment": "/**\r\n * Contains information about the current URL.\r\n */" + }, + "onabort": { + "comment": "/**\r\n * Fires when the user aborts the download.\r\n * @param ev The event.\r\n */" + }, + "onselectionchange": { + "comment": "/**\r\n * Fires when the selection state of a document changes.\r\n * @param ev The event.\r\n */" + }, + "onreadystatechange": { + "comment": "/**\r\n * Fires when the state of the object has changed.\r\n * @param ev The event\r\n */" + }, + "lastModified": { + "comment": "/**\r\n * Gets the date that the page was last modified, if the page supplies one.\r\n */" + }, + "onkeypress": { + "comment": "/**\r\n * Fires when the user presses an alphanumeric key.\r\n * @param ev The event.\r\n */" + }, + "onloadeddata": { + "comment": "/**\r\n * Occurs when media data is loaded at the current playback position.\r\n * @param ev The event.\r\n */" + }, + "onbeforedeactivate": { + "comment": "/**\r\n * Fires immediately before the activeElement is changed from the current object to another object in the parent document.\r\n * @param ev The event.\r\n */" + }, + "onactivate": { + "comment": "/**\r\n * Fires when the object is set as the active element.\r\n * @param ev The event.\r\n */" + }, + "onfocus": { + "comment": "/**\r\n * Fires when the object receives focus.\r\n * @param ev The event.\r\n */" + }, + "fgColor": { + "comment": "/**\r\n * Sets or gets the foreground (text) color of the document.\r\n */" + }, + "ontimeupdate": { + "comment": "/**\r\n * Occurs to indicate the current playback position.\r\n * @param ev The event.\r\n */" + }, + "onselect": { + "comment": "/**\r\n * Fires when the current selection changes.\r\n * @param ev The event.\r\n */" + }, + "onended": { + "comment": "/**\r\n * Occurs when the end of playback is reached.\r\n * @param ev The event\r\n */" + }, + "compatMode": { + "comment": "/**\r\n * Gets a value that indicates whether standards-compliant mode is switched on for the object.\r\n */" + }, + "onscroll": { + "comment": "/**\r\n * Fires when the user repositions the scroll box in the scroll bar on the object.\r\n * @param ev The event.\r\n */" + }, + "onload": { + "comment": "/**\r\n * Fires immediately after the browser loads the object.\r\n * @param ev The event.\r\n */" + } + } + }, + "methods": { + "method": { + "queryCommandValue": { + "comment": "/**\r\n * Returns the current value of the document, range, or current selection for the given command.\r\n * @param commandId String that specifies a command identifier.\r\n */" + }, + "queryCommandIndeterm": { + "comment": "/**\r\n * Returns a Boolean value that indicates whether the specified command is in the indeterminate state.\r\n * @param commandId String that specifies a command identifier.\r\n */" + }, + "execCommand": { + "comment": "/**\r\n * Executes a command on the current document, current selection, or the given range.\r\n * @param commandId String that specifies the command to execute. This command can be any of the command identifiers that can be executed in script.\r\n * @param showUI Display the user interface, defaults to false.\r\n * @param value Value to assign.\r\n */" + }, + "elementFromPoint": { + "comment": "/**\r\n * Returns the element for the specified x coordinate and the specified y coordinate.\r\n * @param x The x-offset\r\n * @param y The y-offset\r\n */" + }, + "queryCommandText": { + "comment": "/**\r\n * Retrieves the string associated with a command.\r\n * @param commandId String that contains the identifier of a command. This can be any command identifier given in the list of Command Identifiers.\r\n */" + }, + "write": { + "comment": "/**\r\n * Writes one or more HTML expressions to a document in the specified window.\r\n * @param content Specifies the text and HTML tags to write.\r\n */" + }, + "createElement": { + "comment": "/**\r\n * Creates an instance of the element for the specified tag.\r\n * @param tagName The name of an element.\r\n */" + }, + "writeln": { + "comment": "/**\r\n * Writes one or more HTML expressions, followed by a carriage return, to a document in the specified window.\r\n * @param content The text and HTML tags to write.\r\n */" + }, + "open": { + "comment": "/**\r\n * Opens a new window and loads a document specified by a given URL. Also, opens a new window that uses the url parameter and the name parameter to collect the output of the write method and the writeln method.\r\n * @param url Specifies a MIME type for the document.\r\n * @param name Specifies the name of the window. This name is used as the value for the TARGET attribute on a form or an anchor element.\r\n * @param features Contains a list of items separated by commas. Each item consists of an option and a value, separated by an equals sign (for example, \"fullscreen=yes, toolbar=yes\"). The following values are supported.\r\n * @param replace Specifies whether the existing entry for the document is replaced in the history list.\r\n */" + }, + "queryCommandSupported": { + "comment": "/**\r\n * Returns a Boolean value that indicates whether the current command is supported on the current range.\r\n * @param commandId Specifies a command identifier.\r\n */" + }, + "createTreeWalker": { + "comment": "/**\r\n * Creates a TreeWalker object that you can use to traverse filtered lists of nodes or elements in a document.\r\n * @param root The root element or node to start traversing on.\r\n * @param whatToShow The type of nodes or elements to appear in the node list. For more information, see whatToShow.\r\n * @param filter A custom NodeFilter function to use.\r\n * @param entityReferenceExpansion A flag that specifies whether entity reference nodes are expanded.\r\n */" + }, + "queryCommandEnabled": { + "comment": "/**\r\n * Returns a Boolean value that indicates whether a specified command can be successfully executed using execCommand, given the current state of the document.\r\n * @param commandId Specifies a command identifier.\r\n */" + }, + "focus": { + "comment": "/**\r\n * Causes the element to receive the focus and executes the code specified by the onfocus event.\r\n */" + }, + "close": { + "comment": "/**\r\n * Closes an output stream and forces the sent data to display.\r\n */" + }, + "createRange": { + "comment": "/**\r\n * Returns an empty range object that has both of its boundary points positioned at the beginning of the document.\r\n */" + }, + "createComment": { + "comment": "/**\r\n * Creates a comment object with the specified data.\r\n * @param data Sets the comment object's data.\r\n */" + }, + "getElementsByTagName": { + "comment": "/**\r\n * Retrieves a collection of objects based on the specified element name.\r\n * @param name Specifies the name of an element.\r\n */" + }, + "createDocumentFragment": { + "comment": "/**\r\n * Creates a new document.\r\n */" + }, + "getElementsByName": { + "comment": "/**\r\n * Gets a collection of objects based on the value of the NAME or ID attribute.\r\n * @param elementName Gets a collection of objects based on the value of the NAME or ID attribute.\r\n */" + }, + "queryCommandState": { + "comment": "/**\r\n * Returns a Boolean value that indicates the current state of the command.\r\n * @param commandId String that specifies a command identifier.\r\n */" + }, + "hasFocus": { + "comment": "/**\r\n * Gets a value indicating whether the object currently has focus.\r\n */" + }, + "execCommandShowHelp": { + "comment": "/**\r\n * Displays help information for the given command identifier.\r\n * @param commandId Displays help information for the given command identifier.\r\n */" + }, + "createAttribute": { + "comment": "/**\r\n * Creates an attribute object with a specified name.\r\n * @param name String that sets the attribute object's name.\r\n */" + }, + "createTextNode": { + "comment": "/**\r\n * Creates a text string from the specified value.\r\n * @param data String that specifies the nodeValue property of the text node.\r\n */" + }, + "createNodeIterator": { + "comment": "/**\r\n * Creates a NodeIterator object that you can use to traverse filtered lists of nodes or elements in a document.\r\n * @param root The root element or node to start traversing on.\r\n * @param whatToShow The type of nodes or elements to appear in the node list\r\n * @param filter A custom NodeFilter function to use. For more information, see filter. Use null for no filter.\r\n * @param entityReferenceExpansion A flag that specifies whether entity reference nodes are expanded.\r\n */" + }, + "getSelection": { + "comment": "/**\r\n * Returns an object representing the current selection of the document that is loaded into the object displaying a webpage.\r\n */" + }, + "getElementById": { + "comment": "/**\r\n * Returns a reference to the first object with the specified value of the ID or NAME attribute.\r\n * @param elementId String that specifies the ID value. Case-insensitive.\r\n */" + } + } + } + }, + "HTMLScriptElement": { + "properties": { + "property": { + "defer": { + "comment": "/**\r\n * Sets or retrieves the status of the script.\r\n */" + }, + "text": { + "comment": "/**\r\n * Retrieves or sets the text of the object as a string.\r\n */" + }, + "src": { + "comment": "/**\r\n * Retrieves the URL to an external file that contains the source code or data.\r\n */" + }, + "htmlFor": { + "comment": "/**\r\n * Sets or retrieves the object that is bound to the event script.\r\n */" + }, + "charset": { + "comment": "/**\r\n * Sets or retrieves the character set used to encode the object.\r\n */" + }, + "type": { + "comment": "/**\r\n * Sets or retrieves the MIME type for the associated scripting engine.\r\n */" + }, + "event": { + "comment": "/**\r\n * Sets or retrieves the event for which the script is written.\r\n */" + } + } + } + }, + "HTMLTableRowElement": { + "properties": { + "property": { + "rowIndex": { + "comment": "/**\r\n * Retrieves the position of the object in the rows collection for the table.\r\n */" + }, + "cells": { + "comment": "/**\r\n * Retrieves a collection of all cells in the table row.\r\n */" + }, + "align": { + "comment": "/**\r\n * Sets or retrieves how the object is aligned with adjacent text.\r\n */" + }, + "sectionRowIndex": { + "comment": "/**\r\n * Retrieves the position of the object in the collection.\r\n */" + } + } + }, + "methods": { + "method": { + "deleteCell": { + "comment": "/**\r\n * Removes the specified cell from the table row, as well as from the cells collection.\r\n * @param index Number that specifies the zero-based position of the cell to remove from the table row. If no value is provided, the last cell in the cells collection is deleted.\r\n */" + }, + "insertCell": { + "comment": "/**\r\n * Creates a new cell in the table row, and adds the cell to the cells collection.\r\n * @param index Number that specifies where to insert the cell in the tr. The default value is -1, which appends the new cell to the end of the cells collection.\r\n */" + } + } + } + }, + "HTMLHtmlElement": { + "properties": { + "property": { + "version": { + "comment": "/**\r\n * Sets or retrieves the DTD version that governs the current document.\r\n */" + } + } + } + }, + "HTMLFrameElement": { + "properties": { + "property": { + "width": { + "comment": "/**\r\n * Sets or retrieves the width of the object.\r\n */" + }, + "scrolling": { + "comment": "/**\r\n * Sets or retrieves whether the frame can be scrolled.\r\n */" + }, + "marginHeight": { + "comment": "/**\r\n * Sets or retrieves the top and bottom margin heights before displaying the text in a frame.\r\n */" + }, + "marginWidth": { + "comment": "/**\r\n * Sets or retrieves the left and right margin widths before displaying the text in a frame.\r\n */" + }, + "borderColor": { + "comment": "/**\r\n * Sets or retrieves the border color of the object.\r\n */" + }, + "frameSpacing": { + "comment": "/**\r\n * Sets or retrieves the amount of additional space between the frames.\r\n */" + }, + "frameBorder": { + "comment": "/**\r\n * Sets or retrieves whether to display a border for the frame.\r\n */" + }, + "noResize": { + "comment": "/**\r\n * Sets or retrieves whether the user can resize the frame.\r\n */" + }, + "contentWindow": { + "comment": "/**\r\n * Retrieves the object of the specified.\r\n */" + }, + "src": { + "comment": "/**\r\n * Sets or retrieves a URL to be loaded by the object.\r\n */" + }, + "name": { + "comment": "/**\r\n * Sets or retrieves the frame name.\r\n */" + }, + "height": { + "comment": "/**\r\n * Sets or retrieves the height of the object.\r\n */" + }, + "contentDocument": { + "comment": "/**\r\n * Retrieves the document object of the page or frame.\r\n */" + }, + "border": { + "comment": "/**\r\n * Specifies the properties of a border drawn around an object.\r\n */" + }, + "longDesc": { + "comment": "/**\r\n * Sets or retrieves a URI to a long description of the object.\r\n */" + }, + "onload": { + "comment": "/**\r\n * Raised when the object has been completely received from the server.\r\n */" + } + } + } + }, + "HTMLQuoteElement": { + "properties": { + "property": { + "cite": { + "comment": "/**\r\n * Sets or retrieves reference information about the object.\r\n */" + } + } + } + }, + "HTMLFrameSetElement": { + "properties": { + "property": { + "rows": { + "comment": "/**\r\n * Sets or retrieves the frame heights of the object.\r\n */" + }, + "cols": { + "comment": "/**\r\n * Sets or retrieves the frame widths of the object.\r\n */" + }, + "onblur": { + "comment": "/**\r\n * Fires when the object loses the input focus.\r\n */" + }, + "onfocus": { + "comment": "/**\r\n * Fires when the object receives focus.\r\n */" + } + } + } + }, + "HTMLLabelElement": { + "properties": { + "property": { + "htmlFor": { + "comment": "/**\r\n * Sets or retrieves the object to which the given label object is assigned.\r\n */" + }, + "form": { + "comment": "/**\r\n * Retrieves a reference to the form that the object is embedded in.\r\n */" + } + } + } + }, + "HTMLLegendElement": { + "properties": { + "property": { + "align": { + "comment": "/**\r\n * Retrieves a reference to the form that the object is embedded in.\r\n */" + }, + "form": { + "comment": "/**\r\n * Retrieves a reference to the form that the object is embedded in.\r\n */" + } + } + } + }, + "HTMLLIElement": { + "properties": { + "property": { + "value": { + "comment": "/**\r\n * Sets or retrieves the value of a list item.\r\n */" + } + } + } + }, + "HTMLIFrameElement": { + "properties": { + "property": { + "width": { + "comment": "/**\r\n * Sets or retrieves the width of the object.\r\n */" + }, + "scrolling": { + "comment": "/**\r\n * Sets or retrieves whether the frame can be scrolled.\r\n */" + }, + "marginHeight": { + "comment": "/**\r\n * Sets or retrieves the top and bottom margin heights before displaying the text in a frame.\r\n */" + }, + "marginWidth": { + "comment": "/**\r\n * Sets or retrieves the left and right margin widths before displaying the text in a frame.\r\n */" + }, + "frameBorder": { + "comment": "/**\r\n * Sets or retrieves whether to display a border for the frame.\r\n */" + }, + "contentWindow": { + "comment": "/**\r\n * Retrieves the object of the specified.\r\n */" + }, + "align": { + "comment": "/**\r\n * Sets or retrieves how the object is aligned with adjacent text.\r\n */" + }, + "src": { + "comment": "/**\r\n * Sets or retrieves a URL to be loaded by the object.\r\n */" + }, + "srcdoc": { + "comment": "/**\r\n * Sets or retrives the content of the page that is to contain.\r\n */" + }, + "name": { + "comment": "/**\r\n * Sets or retrieves the frame name.\r\n */" + }, + "height": { + "comment": "/**\r\n * Sets or retrieves the height of the object.\r\n */" + }, + "contentDocument": { + "comment": "/**\r\n * Retrieves the document object of the page or frame.\r\n */" + }, + "longDesc": { + "comment": "/**\r\n * Sets or retrieves a URI to a long description of the object.\r\n */" + }, + "onload": { + "comment": "/**\r\n * Raised when the object has been completely received from the server.\r\n */" + } + } + } + }, + "HTMLTableSectionElement": { + "properties": { + "property": { + "align": { + "comment": "/**\r\n * Sets or retrieves a value that indicates the table alignment.\r\n */" + }, + "rows": { + "comment": "/**\r\n * Sets or retrieves the number of horizontal rows contained in the object.\r\n */" + } + } + }, + "methods": { + "method": { + "deleteRow": { + "comment": "/**\r\n * Removes the specified row (tr) from the element and from the rows collection.\r\n * @param index Number that specifies the zero-based position in the rows collection of the row to remove.\r\n */" + }, + "insertRow": { + "comment": "/**\r\n * Creates a new row (tr) in the table, and adds the row to the rows collection.\r\n * @param index Number that specifies where to insert the row in the rows collection. The default value is -1, which appends the new row to the end of the rows collection.\r\n */" + } + } + } + }, + "HTMLInputElement": { + "properties": { + "property": { + "width": { + "comment": "/**\r\n * Sets or retrieves the width of the object.\r\n */" + }, + "form": { + "comment": "/**\r\n * Retrieves a reference to the form that the object is embedded in.\r\n */" + }, + "selectionStart": { + "comment": "/**\r\n * Gets or sets the starting position or offset of a text selection.\r\n */" + }, + "selectionEnd": { + "comment": "/**\r\n * Gets or sets the end position or offset of a text selection.\r\n */" + }, + "accept": { + "comment": "/**\r\n * Sets or retrieves a comma-separated list of content types.\r\n */" + }, + "alt": { + "comment": "/**\r\n * Sets or retrieves a text alternative to the graphic.\r\n */" + }, + "defaultChecked": { + "comment": "/**\r\n * Sets or retrieves the state of the check box or radio button.\r\n */" + }, + "align": { + "comment": "/**\r\n * Sets or retrieves how the object is aligned with adjacent text.\r\n */" + }, + "value": { + "comment": "/**\r\n * Returns the value of the data at the cursor's current position.\r\n */" + }, + "src": { + "comment": "/**\r\n * The address or URL of the a media resource that is to be considered.\r\n */" + }, + "name": { + "comment": "/**\r\n * Sets or retrieves the name of the object.\r\n */" + }, + "useMap": { + "comment": "/**\r\n * Sets or retrieves the URL, often with a bookmark extension (#name), to use as a client-side image map.\r\n */" + }, + "height": { + "comment": "/**\r\n * Sets or retrieves the height of the object.\r\n */" + }, + "checked": { + "comment": "/**\r\n * Sets or retrieves the state of the check box or radio button.\r\n */" + }, + "maxLength": { + "comment": "/**\r\n * Sets or retrieves the maximum number of characters that the user can enter in a text control.\r\n */" + }, + "type": { + "comment": "/**\r\n * Returns the content type of the object.\r\n */" + }, + "defaultValue": { + "comment": "/**\r\n * Sets or retrieves the initial contents of the object.\r\n */" + }, + "validationMessage": { + "comment": "/**\r\n * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as \"this is a required field\". The result is that the user sees validation messages without actually submitting.\r\n */" + }, + "files": { + "comment": "/**\r\n * Returns a FileList object on a file type input object.\r\n */" + }, + "max": { + "comment": "/**\r\n * Defines the maximum acceptable value for an input element with type=\"number\".When used with the min and step attributes, lets you control the range and increment (such as only even numbers) that the user can enter into an input field.\r\n */" + }, + "formTarget": { + "comment": "/**\r\n * Overrides the target attribute on a form element.\r\n */" + }, + "willValidate": { + "comment": "/**\r\n * Returns whether an element will successfully validate based on forms validation rules and constraints.\r\n */" + }, + "step": { + "comment": "/**\r\n * Defines an increment or jump between values that you want to allow the user to enter. When used with the max and min attributes, lets you control the range and increment (for example, allow only even numbers) that the user can enter into an input field.\r\n */" + }, + "autofocus": { + "comment": "/**\r\n * Provides a way to direct a user to a specific field when a document loads. This can provide both direction and convenience for a user, reducing the need to click or tab to a field when a page opens. This attribute is true when present on an element, and false when missing.\r\n */" + }, + "required": { + "comment": "/**\r\n * When present, marks an element that can't be submitted without a value.\r\n */" + }, + "formEnctype": { + "comment": "/**\r\n * Used to override the encoding (formEnctype attribute) specified on the form element.\r\n */" + }, + "valueAsNumber": { + "comment": "/**\r\n * Returns the input field value as a number.\r\n */" + }, + "placeholder": { + "comment": "/**\r\n * Gets or sets a text string that is displayed in an input field as a hint or prompt to users as the format or type of information they need to enter.The text appears in an input field until the user puts focus on the field.\r\n */" + }, + "formMethod": { + "comment": "/**\r\n * Overrides the submit method attribute previously specified on a form element.\r\n */" + }, + "list": { + "comment": "/**\r\n * Specifies the ID of a pre-defined datalist of options for an input element.\r\n */" + }, + "autocomplete": { + "comment": "/**\r\n * Specifies whether autocomplete is applied to an editable text field.\r\n */" + }, + "min": { + "comment": "/**\r\n * Defines the minimum acceptable value for an input element with type=\"number\". When used with the max and step attributes, lets you control the range and increment (such as even numbers only) that the user can enter into an input field.\r\n */" + }, + "formAction": { + "comment": "/**\r\n * Overrides the action attribute (where the data on a form is sent) on the parent form element.\r\n */" + }, + "pattern": { + "comment": "/**\r\n * Gets or sets a string containing a regular expression that the user's input must match.\r\n */" + }, + "validity": { + "comment": "/**\r\n * Returns a ValidityState object that represents the validity states of an element.\r\n */" + }, + "formNoValidate": { + "comment": "/**\r\n * Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a \"save draft\"-type submit option.\r\n */" + }, + "multiple": { + "comment": "/**\r\n * Sets or retrieves the Boolean value indicating whether multiple items can be selected from a list.\r\n */" + } + } + }, + "methods": { + "method": { + "setSelectionRange": { + "comment": "/**\r\n * Sets the start and end positions of a selection in a text field.\r\n * @param start The offset into the text field for the start of the selection.\r\n * @param end The offset into the text field for the end of the selection.\r\n * @param direction The direction in which the selection is performed.\r\n */" + }, + "select": { + "comment": "/**\r\n * Makes the selection equal to the current object.\r\n */" + }, + "checkValidity": { + "comment": "/**\r\n * Returns whether a form will validate when it is submitted, without having to submit it.\r\n */" + }, + "stepDown": { + "comment": "/**\r\n * Decrements a range input control's value by the value given by the Step attribute. If the optional parameter is used, it will decrement the input control's step value multiplied by the parameter's value.\r\n * @param n Value to decrement the value by.\r\n */" + }, + "stepUp": { + "comment": "/**\r\n * Increments a range input control's value by the value given by the Step attribute. If the optional parameter is used, will increment the input control's value by that value.\r\n * @param n Value to increment the value by.\r\n */" + }, + "setCustomValidity": { + "comment": "/**\r\n * Sets a custom error message that is displayed when a form is submitted.\r\n * @param error Sets a custom error message that is displayed when a form is submitted.\r\n */" + } + } + } + }, + "HTMLAnchorElement": { + "properties": { + "property": { + "rel": { + "comment": "/**\r\n * Sets or retrieves the relationship between the object and the destination of the link.\r\n */" + }, + "coords": { + "comment": "/**\r\n * Sets or retrieves the coordinates of the object.\r\n */" + }, + "target": { + "comment": "/**\r\n * Sets or retrieves the window or frame at which to target content.\r\n */" + }, + "name": { + "comment": "/**\r\n * Sets or retrieves the shape of the object.\r\n */" + }, + "charset": { + "comment": "/**\r\n * Sets or retrieves the character set used to encode the object.\r\n */" + }, + "hreflang": { + "comment": "/**\r\n * Sets or retrieves the language code of the object.\r\n */" + }, + "rev": { + "comment": "/**\r\n * Sets or retrieves the relationship between the object and the destination of the link.\r\n */" + }, + "shape": { + "comment": "/**\r\n * Sets or retrieves the shape of the object.\r\n */" + }, + "text": { + "comment": "/**\r\n * Retrieves or sets the text of the object as a string.\r\n */" + } + } + } + }, + "HTMLParamElement": { + "properties": { + "property": { + "value": { + "comment": "/**\r\n * Sets or retrieves the value of an input parameter for an element.\r\n */" + }, + "name": { + "comment": "/**\r\n * Sets or retrieves the name of an input parameter for an element.\r\n */" + }, + "type": { + "comment": "/**\r\n * Sets or retrieves the content type of the resource designated by the value attribute.\r\n */" + }, + "valueType": { + "comment": "/**\r\n * Sets or retrieves the data type of the value attribute.\r\n */" + } + } + } + }, + "HTMLPreElement": { + "properties": { + "property": { + "width": { + "comment": "/**\r\n * Sets or gets a value that you can use to implement your own width functionality for the object.\r\n */" + } + } + } + }, + "HTMLCanvasElement": { + "properties": { + "property": { + "width": { + "comment": "/**\r\n * Gets or sets the width of a canvas element on a document.\r\n */" + }, + "height": { + "comment": "/**\r\n * Gets or sets the height of a canvas element on a document.\r\n */" + } + } + }, + "methods": { + "method": { + "toDataURL": { + "comment": "/**\r\n * Returns the content of the current canvas as an image that you can use as a source for another canvas or an HTML element.\r\n * @param type The standard MIME type for the image format to return. If you do not specify this parameter, the default value is a PNG format image.\r\n */" + }, + "getContext": { + "comment": "/**\r\n * Returns an object that provides methods and properties for drawing and manipulating images and graphics on a canvas element in a document. A context object includes information about colors, line widths, fonts, and other graphic parameters that can be drawn on a canvas.\r\n * @param contextId The identifier (ID) of the type of canvas to create. Internet Explorer 9 and Internet Explorer 10 support only a 2-D context using canvas.getContext(\"2d\"); IE11 Preview also supports 3-D or WebGL context using canvas.getContext(\"experimental-webgl\");\r\n */" + }, + "msToBlob": { + "comment": "/**\r\n * Returns a blob object encoded as a Portable Network Graphics (PNG) format from a canvas image or drawing.\r\n */" + } + } + } + }, + "HTMLTitleElement": { + "properties": { + "property": { + "text": { + "comment": "/**\r\n * Retrieves or sets the text of the object as a string.\r\n */" + } + } + } + }, + "HTMLStyleElement": { + "properties": { + "property": { + "media": { + "comment": "/**\r\n * Sets or retrieves the media type.\r\n */" + }, + "type": { + "comment": "/**\r\n * Retrieves the CSS language in which the style sheet is written.\r\n */" + } + } + } + }, + "HTMLTableCellElement": { + "properties": { + "property": { + "width": { + "comment": "/**\r\n * Sets or retrieves the width of the object.\r\n */" + }, + "headers": { + "comment": "/**\r\n * Sets or retrieves a list of header cells that provide information for the object.\r\n */" + }, + "cellIndex": { + "comment": "/**\r\n * Retrieves the position of the object in the cells collection of a row.\r\n */" + }, + "align": { + "comment": "/**\r\n * Sets or retrieves how the object is aligned with adjacent text.\r\n */" + }, + "colSpan": { + "comment": "/**\r\n * Sets or retrieves the number columns in the table that the object should span.\r\n */" + }, + "axis": { + "comment": "/**\r\n * Sets or retrieves a comma-delimited list of conceptual categories associated with the object.\r\n */" + }, + "height": { + "comment": "/**\r\n * Sets or retrieves the height of the object.\r\n */" + }, + "noWrap": { + "comment": "/**\r\n * Sets or retrieves whether the browser automatically performs wordwrap.\r\n */" + }, + "abbr": { + "comment": "/**\r\n * Sets or retrieves abbreviated text for the object.\r\n */" + }, + "rowSpan": { + "comment": "/**\r\n * Sets or retrieves how many rows in a table the cell should span.\r\n */" + }, + "scope": { + "comment": "/**\r\n * Sets or retrieves the group of cells in a table to which the object's information applies.\r\n */" + } + } + } + }, + "HTMLBaseFontElement": { + "properties": { + "property": { + "face": { + "comment": "/**\r\n * Sets or retrieves the current typeface family.\r\n */" + }, + "size": { + "comment": "/**\r\n * Sets or retrieves the font size of the object.\r\n */" + } + } + } + }, + "HTMLTextAreaElement": { + "properties": { + "property": { + "value": { + "comment": "/**\r\n * Retrieves or sets the text in the entry field of the textArea element.\r\n */" + }, + "form": { + "comment": "/**\r\n * Retrieves a reference to the form that the object is embedded in.\r\n */" + }, + "name": { + "comment": "/**\r\n * Sets or retrieves the name of the object.\r\n */" + }, + "selectionStart": { + "comment": "/**\r\n * Gets or sets the starting position or offset of a text selection.\r\n */" + }, + "rows": { + "comment": "/**\r\n * Sets or retrieves the number of horizontal rows contained in the object.\r\n */" + }, + "cols": { + "comment": "/**\r\n * Sets or retrieves the width of the object.\r\n */" + }, + "readOnly": { + "comment": "/**\r\n * Sets or retrieves the value indicated whether the content of the object is read-only.\r\n */" + }, + "wrap": { + "comment": "/**\r\n * Sets or retrieves how to handle wordwrapping in the object.\r\n */" + }, + "selectionEnd": { + "comment": "/**\r\n * Gets or sets the end position or offset of a text selection.\r\n */" + }, + "type": { + "comment": "/**\r\n * Retrieves the type of control.\r\n */" + }, + "defaultValue": { + "comment": "/**\r\n * Sets or retrieves the initial contents of the object.\r\n */" + }, + "validationMessage": { + "comment": "/**\r\n * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as \"this is a required field\". The result is that the user sees validation messages without actually submitting.\r\n */" + }, + "autofocus": { + "comment": "/**\r\n * Provides a way to direct a user to a specific field when a document loads. This can provide both direction and convenience for a user, reducing the need to click or tab to a field when a page opens. This attribute is true when present on an element, and false when missing.\r\n */" + }, + "validity": { + "comment": "/**\r\n * Returns a ValidityState object that represents the validity states of an element.\r\n */" + }, + "required": { + "comment": "/**\r\n * When present, marks an element that can't be submitted without a value.\r\n */" + }, + "maxLength": { + "comment": "/**\r\n * Sets or retrieves the maximum number of characters that the user can enter in a text control.\r\n */" + }, + "willValidate": { + "comment": "/**\r\n * Returns whether an element will successfully validate based on forms validation rules and constraints.\r\n */" + }, + "placeholder": { + "comment": "/**\r\n * Gets or sets a text string that is displayed in an input field as a hint or prompt to users as the format or type of information they need to enter.The text appears in an input field until the user puts focus on the field.\r\n */" + } + } + }, + "methods": { + "method": { + "setSelectionRange": { + "comment": "/**\r\n * Sets the start and end positions of a selection in a text field.\r\n * @param start The offset into the text field for the start of the selection.\r\n * @param end The offset into the text field for the end of the selection.\r\n * @param direction The direction in which the selection is performed.\r\n */" + }, + "select": { + "comment": "/**\r\n * Highlights the input area of a form element.\r\n */" + }, + "checkValidity": { + "comment": "/**\r\n * Returns whether a form will validate when it is submitted, without having to submit it.\r\n */" + }, + "setCustomValidity": { + "comment": "/**\r\n * Sets a custom error message that is displayed when a form is submitted.\r\n * @param error Sets a custom error message that is displayed when a form is submitted.\r\n */" + } + } + } + }, + "HTMLModElement": { + "properties": { + "property": { + "dateTime": { + "comment": "/**\r\n * Sets or retrieves the date and time of a modification to the object.\r\n */" + }, + "cite": { + "comment": "/**\r\n * Sets or retrieves reference information about the object.\r\n */" + } + } + } + }, + "HTMLTableColElement": { + "properties": { + "property": { + "width": { + "comment": "/**\r\n * Sets or retrieves the width of the object.\r\n */" + }, + "align": { + "comment": "/**\r\n * Sets or retrieves the alignment of the object relative to the display or table.\r\n */" + }, + "span": { + "comment": "/**\r\n * Sets or retrieves the number of columns in the group.\r\n */" + } + } + } + }, + "HTMLDivElement": { + "properties": { + "property": { + "align": { + "comment": "/**\r\n * Sets or retrieves how the object is aligned with adjacent text.\r\n */" + }, + "noWrap": { + "comment": "/**\r\n * Sets or retrieves whether the browser automatically performs wordwrap.\r\n */" + } + } + } + }, + "HTMLBRElement": { + "properties": { + "property": { + "clear": { + "comment": "/**\r\n * Sets or retrieves the side on which floating objects are not to be positioned when any IHTMLBlockElement is inserted into the document.\r\n */" + } + } + } + }, + "HTMLHeadingElement": { + "properties": { + "property": { + "align": { + "comment": "/**\r\n * Sets or retrieves a value that indicates the table alignment.\r\n */" + } + } + } + }, + "HTMLFormElement": { + "properties": { + "property": { + "length": { + "comment": "/**\r\n * Sets or retrieves the number of objects in a collection.\r\n */" + }, + "target": { + "comment": "/**\r\n * Sets or retrieves the window or frame at which to target content.\r\n */" + }, + "acceptCharset": { + "comment": "/**\r\n * Sets or retrieves a list of character encodings for input data that must be accepted by the server processing the form.\r\n */" + }, + "enctype": { + "comment": "/**\r\n * Sets or retrieves the encoding type for the form.\r\n */" + }, + "elements": { + "comment": "/**\r\n * Retrieves a collection, in source order, of all controls in a given form.\r\n */" + }, + "action": { + "comment": "/**\r\n * Sets or retrieves the URL to which the form content is sent for processing.\r\n */" + }, + "name": { + "comment": "/**\r\n * Sets or retrieves the name of the object.\r\n */" + }, + "method": { + "comment": "/**\r\n * Sets or retrieves how to send the form data to the server.\r\n */" + }, + "encoding": { + "comment": "/**\r\n * Sets or retrieves the MIME encoding for the form.\r\n */" + }, + "autocomplete": { + "comment": "/**\r\n * Specifies whether autocomplete is applied to an editable text field.\r\n */" + }, + "noValidate": { + "comment": "/**\r\n * Designates a form that is not validated when submitted.\r\n */" + } + } + }, + "methods": { + "method": { + "reset": { + "comment": "/**\r\n * Fires when the user resets a form.\r\n */" + }, + "item": { + "comment": "/**\r\n * Retrieves a form object or an object from an elements collection.\r\n * @param name Variant of type Number or String that specifies the object or collection to retrieve. If this parameter is a Number, it is the zero-based index of the object. If this parameter is a string, all objects with matching name or id properties are retrieved, and a collection is returned if more than one match is made.\r\n * @param index Variant of type Number that specifies the zero-based index of the object to retrieve when a collection is returned.\r\n */" + }, + "submit": { + "comment": "/**\r\n * Fires when a FORM is about to be submitted.\r\n */" + }, + "namedItem": { + "comment": "/**\r\n * Retrieves a form object or an object from an elements collection.\r\n */" + }, + "checkValidity": { + "comment": "/**\r\n * Returns whether a form will validate when it is submitted, without having to submit it.\r\n */" + } + } + } + }, + "HTMLMediaElement": { + "properties": { + "property": { + "played": { + "comment": "/**\r\n * Gets TimeRanges for the current media resource that has been played.\r\n */" + }, + "currentSrc": { + "comment": "/**\r\n * Gets the address or URL of the current media resource that is selected by IHTMLMediaElement.\r\n */" + }, + "loop": { + "comment": "/**\r\n * Gets or sets a flag to specify whether playback should restart after it completes.\r\n */" + }, + "ended": { + "comment": "/**\r\n * Gets information about whether the playback has ended or not.\r\n */" + }, + "buffered": { + "comment": "/**\r\n * Gets a collection of buffered time ranges.\r\n */" + }, + "error": { + "comment": "/**\r\n * Returns an object representing the current error state of the audio or video element.\r\n */" + }, + "seekable": { + "comment": "/**\r\n * Returns a TimeRanges object that represents the ranges of the current media resource that can be seeked.\r\n */" + }, + "autoplay": { + "comment": "/**\r\n * Gets or sets a value that indicates whether to start playing the media automatically.\r\n */" + }, + "controls": { + "comment": "/**\r\n * Gets or sets a flag that indicates whether the client provides a set of controls for the media (in case the developer does not include controls for the player).\r\n */" + }, + "volume": { + "comment": "/**\r\n * Gets or sets the volume level for audio portions of the media element.\r\n */" + }, + "src": { + "comment": "/**\r\n * The address or URL of the a media resource that is to be considered.\r\n */" + }, + "playbackRate": { + "comment": "/**\r\n * Gets or sets the current rate of speed for the media resource to play. This speed is expressed as a multiple of the normal speed of the media resource.\r\n */" + }, + "duration": { + "comment": "/**\r\n * Returns the duration in seconds of the current media resource. A NaN value is returned if duration is not available, or Infinity if the media resource is streaming.\r\n */" + }, + "muted": { + "comment": "/**\r\n * Gets or sets a flag that indicates whether the audio (either audio or the audio track on video media) is muted.\r\n */" + }, + "defaultPlaybackRate": { + "comment": "/**\r\n * Gets or sets the default playback rate when the user is not using fast forward or reverse for a video or audio resource.\r\n */" + }, + "paused": { + "comment": "/**\r\n * Gets a flag that specifies whether playback is paused.\r\n */" + }, + "seeking": { + "comment": "/**\r\n * Gets a flag that indicates whether the the client is currently moving to a new playback position in the media resource.\r\n */" + }, + "currentTime": { + "comment": "/**\r\n * Gets or sets the current playback position, in seconds.\r\n */" + }, + "preload": { + "comment": "/**\r\n * Gets or sets the current playback position, in seconds.\r\n */" + }, + "networkState": { + "comment": "/**\r\n * Gets the current network activity for the element.\r\n */" + }, + "msAudioCategory": { + "comment": "/**\r\n * Specifies the purpose of the audio or video media, such as background audio or alerts.\r\n */" + }, + "msRealTime": { + "comment": "/**\r\n * Specifies whether or not to enable low-latency playback on the media element.\r\n */" + }, + "msPlayToPrimary": { + "comment": "/**\r\n * Gets or sets the primary DLNA PlayTo device.\r\n */" + }, + "msPlayToDisabled": { + "comment": "/**\r\n * Gets or sets whether the DLNA PlayTo device is available.\r\n */" + }, + "audioTracks": { + "comment": "/**\r\n * Returns an AudioTrackList object with the audio tracks for a given video element.\r\n */" + }, + "msPlayToSource": { + "comment": "/**\r\n * Gets the source associated with the media element for use by the PlayToManager.\r\n */" + }, + "msAudioDeviceType": { + "comment": "/**\r\n * Specifies the output device id that the audio will be sent to.\r\n */" + }, + "msPlayToPreferredSourceUri": { + "comment": "/**\r\n * Gets or sets the path to the preferred media source. This enables the Play To target device to stream the media content, which can be DRM protected, from a different location, such as a cloud media server.\r\n */" + }, + "msKeys": { + "comment": "/**\r\n * Gets the MSMediaKeys object, which is used for decrypting media data, that is associated with this media element.\r\n */" + } + } + }, + "methods": { + "method": { + "pause": { + "comment": "/**\r\n * Pauses the current playback and sets paused to TRUE. This can be used to test whether the media is playing or paused. You can also use the pause or play events to tell whether the media is playing or not.\r\n */" + }, + "play": { + "comment": "/**\r\n * Loads and starts playback of a media resource.\r\n */" + }, + "load": { + "comment": "/**\r\n * Resets the audio or video object and loads a new media resource.\r\n */" + }, + "canPlayType": { + "comment": "/**\r\n * Returns a string that specifies whether the client can play a given media resource type.\r\n */" + }, + "msClearEffects": { + "comment": "/**\r\n * Clears all effects from the media pipeline.\r\n */" + }, + "msSetMediaProtectionManager": { + "comment": "/**\r\n * Specifies the media protection manager for a given media pipeline.\r\n */" + }, + "msInsertAudioEffect": { + "comment": "/**\r\n * Inserts the specified audio effect into media pipeline.\r\n */" + } + } + } + }, + "HTMLFieldSetElement": { + "properties": { + "property": { + "align": { + "comment": "/**\r\n * Sets or retrieves how the object is aligned with adjacent text.\r\n */" + }, + "form": { + "comment": "/**\r\n * Retrieves a reference to the form that the object is embedded in.\r\n */" + }, + "validationMessage": { + "comment": "/**\r\n * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as \"this is a required field\". The result is that the user sees validation messages without actually submitting.\r\n */" + }, + "validity": { + "comment": "/**\r\n * Returns a ValidityState object that represents the validity states of an element.\r\n */" + }, + "willValidate": { + "comment": "/**\r\n * Returns whether an element will successfully validate based on forms validation rules and constraints.\r\n */" + } + } + }, + "methods": { + "method": { + "checkValidity": { + "comment": "/**\r\n * Returns whether a form will validate when it is submitted, without having to submit it.\r\n */" + }, + "setCustomValidity": { + "comment": "/**\r\n * Sets a custom error message that is displayed when a form is submitted.\r\n * @param error Sets a custom error message that is displayed when a form is submitted.\r\n */" + } + } + } + }, + "HTMLHRElement": { + "properties": { + "property": { + "width": { + "comment": "/**\r\n * Sets or retrieves the width of the object.\r\n */" + }, + "align": { + "comment": "/**\r\n * Sets or retrieves how the object is aligned with adjacent text.\r\n */" + }, + "noShade": { + "comment": "/**\r\n * Sets or retrieves whether the horizontal rule is drawn with 3-D shading.\r\n */" + } + } + } + }, + "HTMLObjectElement": { + "properties": { + "property": { + "width": { + "comment": "/**\r\n * Sets or retrieves the width of the object.\r\n */" + }, + "codeType": { + "comment": "/**\r\n * Sets or retrieves the Internet media type for the code associated with the object.\r\n */" + }, + "form": { + "comment": "/**\r\n * Retrieves a reference to the form that the object is embedded in.\r\n */" + }, + "code": { + "comment": "/**\r\n * Sets or retrieves the URL of the file containing the compiled Java class.\r\n */" + }, + "archive": { + "comment": "/**\r\n * Sets or retrieves a character string that can be used to implement your own archive functionality for the object.\r\n */" + }, + "standby": { + "comment": "/**\r\n * Sets or retrieves a message to be displayed while an object is loading.\r\n */" + }, + "name": { + "comment": "/**\r\n * Sets or retrieves the name of the object.\r\n */" + }, + "useMap": { + "comment": "/**\r\n * Sets or retrieves the URL, often with a bookmark extension (#name), to use as a client-side image map.\r\n */" + }, + "data": { + "comment": "/**\r\n * Sets or retrieves the URL that references the data of the object.\r\n */" + }, + "height": { + "comment": "/**\r\n * Sets or retrieves the height of the object.\r\n */" + }, + "contentDocument": { + "comment": "/**\r\n * Retrieves the document object of the page or frame.\r\n */" + }, + "codeBase": { + "comment": "/**\r\n * Sets or retrieves the URL of the component.\r\n */" + }, + "type": { + "comment": "/**\r\n * Sets or retrieves the MIME type of the object.\r\n */" + }, + "BaseHref": { + "comment": "/**\r\n * Retrieves a string of the URL where the object tag can be found. This is often the href of the document that the object is in, or the value set by a base element.\r\n */" + }, + "validationMessage": { + "comment": "/**\r\n * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as \"this is a required field\". The result is that the user sees validation messages without actually submitting.\r\n */" + }, + "validity": { + "comment": "/**\r\n * Returns a ValidityState object that represents the validity states of an element.\r\n */" + }, + "willValidate": { + "comment": "/**\r\n * Returns whether an element will successfully validate based on forms validation rules and constraints.\r\n */" + }, + "msPlayToPreferredSourceUri": { + "comment": "/**\r\n * Gets or sets the path to the preferred media source. This enables the Play To target device to stream the media content, which can be DRM protected, from a different location, such as a cloud media server.\r\n */" + }, + "msPlayToPrimary": { + "comment": "/**\r\n * Gets or sets the primary DLNA PlayTo device.\r\n */" + }, + "msPlayToDisabled": { + "comment": "/**\r\n * Gets or sets whether the DLNA PlayTo device is available.\r\n */" + }, + "msPlayToSource": { + "comment": "/**\r\n * Gets the source associated with the media element for use by the PlayToManager.\r\n */" + } + } + }, + "methods": { + "method": { + "checkValidity": { + "comment": "/**\r\n * Returns whether a form will validate when it is submitted, without having to submit it.\r\n */" + }, + "setCustomValidity": { + "comment": "/**\r\n * Sets a custom error message that is displayed when a form is submitted.\r\n * @param error Sets a custom error message that is displayed when a form is submitted.\r\n */" + } + } + } + }, + "HTMLEmbedElement": { + "properties": { + "property": { + "width": { + "comment": "/**\r\n * Sets or retrieves the width of the object.\r\n */" + }, + "palette": { + "comment": "/**\r\n * Retrieves the palette used for the embedded document.\r\n */" + }, + "src": { + "comment": "/**\r\n * Sets or retrieves a URL to be loaded by the object.\r\n */" + }, + "name": { + "comment": "/**\r\n * Sets or retrieves the name of the object.\r\n */" + }, + "pluginspage": { + "comment": "/**\r\n * Retrieves the URL of the plug-in used to view an embedded document.\r\n */" + }, + "height": { + "comment": "/**\r\n * Sets or retrieves the height of the object.\r\n */" + }, + "units": { + "comment": "/**\r\n * Sets or retrieves the height and width units of the embed object.\r\n */" + }, + "msPlayToPreferredSourceUri": { + "comment": "/**\r\n * Gets or sets the path to the preferred media source. This enables the Play To target device to stream the media content, which can be DRM protected, from a different location, such as a cloud media server.\r\n */" + }, + "msPlayToPrimary": { + "comment": "/**\r\n * Gets or sets the primary DLNA PlayTo device.\r\n */" + }, + "msPlayToDisabled": { + "comment": "/**\r\n * Gets or sets whether the DLNA PlayTo device is available.\r\n */" + }, + "msPlayToSource": { + "comment": "/**\r\n * Gets the source associated with the media element for use by the PlayToManager.\r\n */" + } + } + } + }, + "HTMLOptGroupElement": { + "properties": { + "property": { + "form": { + "comment": "/**\r\n * Retrieves a reference to the form that the object is embedded in.\r\n */" + }, + "label": { + "comment": "/**\r\n * Sets or retrieves a value that you can use to implement your own label functionality for the object.\r\n */" + } + } + } + }, + "HTMLVideoElement": { + "properties": { + "property": { + "width": { + "comment": "/**\r\n * Gets or sets the width of the video element.\r\n */" + }, + "videoWidth": { + "comment": "/**\r\n * Gets the intrinsic width of a video in CSS pixels, or zero if the dimensions are not known.\r\n */" + }, + "videoHeight": { + "comment": "/**\r\n * Gets the intrinsic height of a video in CSS pixels, or zero if the dimensions are not known.\r\n */" + }, + "height": { + "comment": "/**\r\n * Gets or sets the height of the video element.\r\n */" + }, + "poster": { + "comment": "/**\r\n * Gets or sets a URL of an image to display, for example, like a movie poster. This can be a still frame from the video, or another image if no video data is available.\r\n */" + } + } + } + }, + "HTMLProgressElement": { + "properties": { + "property": { + "value": { + "comment": "/**\r\n * Sets or gets the current value of a progress element. The value must be a non-negative number between 0 and the max value.\r\n */" + }, + "max": { + "comment": "/**\r\n * Defines the maximum, or \"done\" value for a progress element.\r\n */" + }, + "position": { + "comment": "/**\r\n * Returns the quotient of value/max when the value attribute is set (determinate progress bar), or -1 when the value attribute is missing (indeterminate progress bar).\r\n */" + }, + "form": { + "comment": "/**\r\n * Retrieves a reference to the form that the object is embedded in.\r\n */" + } + } + } + }, + "URLSearchParams": { + "methods": { + "method": { + "append": { + "comment": "/**\r\n * Appends a specified key/value pair as a new search parameter.\r\n */" + }, + "delete": { + "comment": "/**\r\n * Deletes the given search parameter, and its associated value, from the list of all search parameters.\r\n */" + }, + "get": { + "comment": "/**\r\n * Returns the first value associated to the given search parameter.\r\n */" + }, + "getAll": { + "comment": "/**\r\n * Returns all the values association with a given search parameter.\r\n */" + }, + "has": { + "comment": "/**\r\n * Returns a Boolean indicating if such a search parameter exists.\r\n */" + }, + "set": { + "comment": "/**\r\n * Sets the value associated to a given search parameter to the given value. If there were several values, delete the others.\r\n */" + } + }, + "constructor": "/**\r\n * Constructor returning a URLSearchParams object.\r\n */" + } + } + } } - ] } \ No newline at end of file diff --git a/inputfiles/knownWorkerEnums.json b/inputfiles/knownWorkerEnums.json deleted file mode 100644 index cd779c566..000000000 --- a/inputfiles/knownWorkerEnums.json +++ /dev/null @@ -1,21 +0,0 @@ -[ - "IDBCursorDirection", - "IDBRequestReadyState", - "IDBTransactionMode", - "MediaKeyStatus", - "NotificationDirection", - "NotificationPermission", - "PushPermissionState", - "PushEncryptionKeyName", - "ReferrerPolicy", - "RequestCache", - "RequestCredentials", - "RequestDestination", - "RequestMode", - "RequestRedirect", - "RequestType", - "ResponseType", - "ServiceWorkerState", - "VisibilityState", - "XMLHttpRequestResponseType" -] \ No newline at end of file diff --git a/inputfiles/knownWorkerInterfaces.json b/inputfiles/knownWorkerTypes.json similarity index 56% rename from inputfiles/knownWorkerInterfaces.json rename to inputfiles/knownWorkerTypes.json index c8e8d36dc..94d54e323 100644 --- a/inputfiles/knownWorkerInterfaces.json +++ b/inputfiles/knownWorkerTypes.json @@ -1,105 +1,181 @@ [ - "AbstractWorker", + "ClientQueryOptions", + "ExtendableEventInit", + "ExtendableMessageEventInit", + "FetchEventInit", + "NotificationEventInit", + "PushEventInit", + "SyncEventInit", "Algorithm", - "AlgorithmIdentifier", + "CacheQueryOptions", + "CloseEventInit", + "EventInit", + "GetNotificationOptions", + "IDBIndexParameters", + "IDBObjectStoreParameters", + "KeyAlgorithm", + "MessageEventInit", + "NotificationOptions", + "ObjectURLOptions", + "PushSubscriptionOptionsInit", + "RequestInit", + "ResponseInit", "AudioBuffer", "Blob", - "Body", - "BodyInit", "Cache", - "CacheQueryOptions", "CacheStorage", - "ClientQueryOptions", "CloseEvent", - "CloseEventInit", "Console", "Coordinates", "CryptoKey", "DOMError", "DOMException", "DOMStringList", - "DecodeErrorCallback", - "DecodeSuccessCallback", "ErrorEvent", - "ErrorEventHandler", "Event", - "EventInit", - "EventListener", "EventTarget", - "ExtendableEventInit", - "ExtendableMessageEventInit", - "FetchEventInit", "File", "FileList", "FileReader", - "ForEachCallback", "FormData", - "FunctionStringCallback", - "GetNotificationOptions", - "GlobalFetch", "Headers", "IDBCursor", "IDBCursorWithValue", "IDBDatabase", "IDBFactory", "IDBIndex", - "IDBIndexParameters", - "IDBKeyPath", "IDBKeyRange", "IDBObjectStore", - "IDBObjectStoreParameters", "IDBOpenDBRequest", "IDBRequest", "IDBTransaction", "IDBVersionChangeEvent", "ImageData", - "KeyAlgorithm", "MessageChannel", "MessageEvent", - "MessageEventInit", "MessagePort", - "MSBaseReader", - "NavigatorBeacon", - "NavigatorConcurrentHardware", - "NavigatorID", - "NavigatorOnLine", "Notification", - "NotificationEventInit", - "NotificationOptions", - "NotificationPermissionCallback", - "ObjectURLOptions", "Performance", "PerformanceNavigation", "PerformanceTiming", "Position", - "PositionCallback", "PositionError", - "PositionErrorCallback", "ProgressEvent", - "PushEventInit", "PushManager", "PushSubscription", "PushSubscriptionOptions", - "PushSubscriptionOptionsInit", "ReadableStream", "ReadableStreamReader", "Request", - "RequestInfo", - "RequestInit", "Response", - "ResponseInit", "ServiceWorker", "ServiceWorkerRegistration", - "SyncEventInit", "SyncManager", - "USVString", "URL", - "URLSearchParams", "WebSocket", - "WindowBase64", - "WindowConsole", "Worker", "XMLHttpRequest", + "XMLHttpRequestUpload", + "AbstractWorker", + "Body", + "GlobalFetch", + "MSBaseReader", + "NavigatorBeacon", + "NavigatorConcurrentHardware", + "NavigatorID", + "NavigatorOnLine", + "WindowBase64", + "WindowConsole", "XMLHttpRequestEventTarget", - "XMLHttpRequestUpload" + "Client", + "Clients", + "DedicatedWorkerGlobalScope", + "ExtendableEvent", + "ExtendableMessageEvent", + "FetchEvent", + "FileReaderSync", + "NotificationEvent", + "PushEvent", + "PushMessageData", + "ServiceWorkerGlobalScope", + "SyncEvent", + "WindowClient", + "WorkerGlobalScope", + "WorkerLocation", + "WorkerNavigator", + "WorkerUtils", + "EventListener", + "DecodeErrorCallback", + "DecodeSuccessCallback", + "ErrorEventHandler", + "ForEachCallback", + "FunctionStringCallback", + "NotificationPermissionCallback", + "PositionCallback", + "PositionErrorCallback", + "PushMessageDataInit", + "AAGUID", + "AlgorithmIdentifier", + "BodyInit", + "ByteString", + "CryptoOperationData", + "GLbitfield", + "GLboolean", + "GLbyte", + "GLclampf", + "GLenum", + "GLfloat", + "GLint", + "GLintptr", + "GLshort", + "GLsizei", + "GLsizeiptr", + "GLubyte", + "GLuint", + "GLushort", + "HeadersInit", + "IDBKeyPath", + "JSON", + "KeyFormat", + "KeyType", + "KeyUsage", + "RequestInfo", + "USVString", + "payloadtype", + "IDBCursorDirection", + "IDBRequestReadyState", + "IDBTransactionMode", + "MediaKeyStatus", + "NotificationDirection", + "NotificationPermission", + "PushEncryptionKeyName", + "PushPermissionState", + "ReferrerPolicy", + "RequestCache", + "RequestCredentials", + "RequestDestination", + "RequestMode", + "RequestRedirect", + "RequestType", + "ResponseType", + "ServiceWorkerState", + "VisibilityState", + "XMLHttpRequestResponseType", + "ClientTypes", + "FrameType", + "BinaryType", + "ProgressEventInit", + "EventListenerOptions", + "AddEventListenerOptions", + "ErrorEventInit", + "PushSubscriptionChangeEvent", + "PushSubscriptionChangeInit", + "ImageBitmap", + "ImageBitmapOptions", + "FormDataEntryValue", + "EventListenerObject", + "URLSearchParams", + "BlobPropertyBag", + "FilePropertyBag", + "IDBArrayKey" ] \ No newline at end of file diff --git a/inputfiles/overridingTypes.json b/inputfiles/overridingTypes.json index 9216597bc..cd830d3f0 100644 --- a/inputfiles/overridingTypes.json +++ b/inputfiles/overridingTypes.json @@ -1,1858 +1,1937 @@ -[ - { - "kind": "interface", - "interface": "CustomEventInit", - "typeParameters": [ - "T = any" - ] - }, - { - "kind": "property", - "interface": "CustomEventInit", - "name": "detail?", - "type": "T" - }, - { - "kind": "interface", - "interface": "CustomEvent", - "typeParameters": [ - "T = any" - ] - }, - { - "kind": "property", - "interface": "CustomEvent", - "readonly": true, - "name": "detail", - "type": "T" - }, - { - "kind": "method", - "interface": "CustomEvent", - "name": "initCustomEvent", - "signatures": [ - "initCustomEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, detailArg: T): void" - ] - }, - { - "kind": "constructor", - "interface": "CustomEvent", - "signatures": [ - "new(typeArg: string, eventInitDict?: CustomEventInit): CustomEvent" - ] - }, - { - "kind": "constructor", - "interface": "Response", - "signatures": [ - "new(body?: any, init?: ResponseInit): Response", - "error: () => Response", - "redirect: (url: string, status?: number) => Response" - ] - }, - { - "kind": "constructor", - "interface": "ErrorEvent", - "signatures": [ - "new(type: string, errorEventInitDict?: ErrorEventInit): ErrorEvent" - ] - }, - { - "kind": "property", - "interface": "Window", - "name": "event", - "type": "Event | undefined" - }, - { - "kind": "method", - "interface": "Document", - "name": "adoptNode", - "signatures": [ - "adoptNode(source: T): T" - ] - }, - { - "kind": "property", - "interface": "Document", - "readonly": true, - "name": "currentScript", - "type": "HTMLScriptElement | SVGScriptElement | null" - }, - { - "kind": "method", - "interface": "Document", - "name": "importNode", - "signatures": [ - "importNode(importedNode: T, deep: boolean): T" - ] - }, - { - "kind": "method", - "interface": "Node", - "name": "appendChild", - "signatures": [ - "appendChild(newChild: T): T" - ] - }, - { - "kind": "method", - "interface": "Node", - "name": "insertBefore", - "signatures": [ - "insertBefore(newChild: T, refChild: Node | null): T" - ] - }, - { - "kind": "method", - "interface": "Node", - "name": "removeChild", - "signatures": [ - "removeChild(oldChild: T): T" - ] - }, - { - "kind": "method", - "interface": "Node", - "name": "replaceChild", - "signatures": [ - "replaceChild(newChild: Node, oldChild: T): T" - ] - }, - { - "kind": "method", - "interface": "HTMLCollection", - "name": "item", - "signatures": [ - "item(index: number): Element" - ] - }, - { - "kind": "method", - "interface": "IDBObjectStore", - "name": "createIndex", - "signatures": [ - "createIndex(name: string, keyPath: string | string[], optionalParameters?: IDBIndexParameters): IDBIndex" - ] - }, - { - "kind": "property", - "interface": "IDBIndex", - "name": "keyPath", - "type": "string | string[]" - }, - { - "kind": "method", - "interface": "IDBDatabase", - "name": "createObjectStore", - "signatures": [ - "createObjectStore(name: string, optionalParameters?: IDBObjectStoreParameters): IDBObjectStore" - ] - }, - { - "kind": "method", - "interface": "CanvasRenderingContext2D", - "name": "drawImage", - "signatures": [ - "drawImage(image: HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | ImageBitmap, dstX: number, dstY: number): void", - "drawImage(image: HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | ImageBitmap, dstX: number, dstY: number, dstW: number, dstH: number): void", - "drawImage(image: HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | ImageBitmap, srcX: number, srcY: number, srcW: number, srcH: number, dstX: number, dstY: number, dstW: number, dstH: number): void" - ] - }, - { - "kind": "method", - "interface": "WebGLRenderingContext", - "name": "texSubImage2D", - "signatures": [ - "texSubImage2D(target: number, level: number, xoffset: number, yoffset: number, width: number, height: number, format: number, type: number, pixels: ArrayBufferView | null): void", - "texSubImage2D(target: number, level: number, xoffset: number, yoffset: number, format: number, type: number, pixels: ImageBitmap | ImageData | HTMLVideoElement | HTMLImageElement | HTMLCanvasElement): void" - ] - }, - { - "kind": "method", - "interface": "WebGLRenderingContext", - "name": "texImage2D", - "signatures": [ - "texImage2D(target: number, level: number, internalformat: number, width: number, height: number, border: number, format: number, type: number, pixels: ArrayBufferView | null): void", - "texImage2D(target: number, level: number, internalformat: number, format: number, type: number, pixels: ImageBitmap | ImageData | HTMLVideoElement | HTMLImageElement | HTMLCanvasElement): void" - ] - }, - { - "kind": "method", - "interface": "WebGLRenderingContext", - "name": "pixelStorei", - "signatures": [ - "pixelStorei(pname: number, param: number | boolean): void" - ] - }, - { - "kind": "property", - "interface": "XMLHttpRequestEventTarget", - "name": "onload", - "type": "(this: XMLHttpRequest, ev: Event) => any" - }, - { - "kind": "property", - "interface": "XMLHttpRequestEventTarget", - "name": "onabort", - "type": "(this: XMLHttpRequest, ev: Event) => any" - }, - { - "kind": "property", - "interface": "XMLHttpRequestEventTarget", - "name": "onerror", - "type": "(this: XMLHttpRequest, ev: ErrorEvent) => any" - }, - { - "kind": "property", - "interface": "XMLHttpRequestEventTarget", - "name": "onloadend", - "type": "(this: XMLHttpRequest, ev: ProgressEvent) => any" - }, - { - "kind": "property", - "interface": "XMLHttpRequestEventTarget", - "name": "onloadstart", - "type": "(this: XMLHttpRequest, ev: Event) => any" - }, - { - "kind": "property", - "interface": "XMLHttpRequestEventTarget", - "name": "onprogress", - "type": "(this: XMLHttpRequest, ev: ProgressEvent) => any" - }, - { - "kind": "property", - "interface": "XMLHttpRequestEventTarget", - "name": "onprogress", - "type": "(this: XMLHttpRequest, ev: ProgressEvent) => any" - }, - { - "kind": "property", - "interface": "XMLHttpRequestEventTarget", - "name": "ontimeout", - "type": "(this: XMLHttpRequest, ev: ProgressEvent) => any" - }, - { - "kind": "method", - "interface": "XMLHttpRequest", - "name": "send", - "signatures": [ - "send(data?: string): void", - "send(data?: any): void" - ], - "webOnlySignatures": [ - "send(data?: Document): void" - ] - }, - { - "kind": "method", - "interface": "HTMLCanvasElement", - "name": "getContext", - "signatures": [ - "getContext(contextId: \"2d\", contextAttributes?: Canvas2DContextAttributes): CanvasRenderingContext2D | null", - "getContext(contextId: \"webgl\" | \"experimental-webgl\", contextAttributes?: WebGLContextAttributes): WebGLRenderingContext | null", - "getContext(contextId: string, contextAttributes?: {}): CanvasRenderingContext2D | WebGLRenderingContext | null" - ] - }, - { - "kind": "method", - "name": "alert", - "signatures": [ - "alert(message?: any): void" - ] - }, - { - "kind": "method", - "interface": "Document", - "name": "open", - "signatures": [ - "open(url?: string, name?: string, features?: string, replace?: boolean): Document" - ] - }, - { - "kind": "method", - "interface": "Document", - "name": "getElementById", - "signatures": [ - "getElementById(elementId: string): HTMLElement | null" - ] - }, - { - "kind": "method", - "interface": "Document", - "name": "msElementsFromRect", - "signatures": [ - "msElementsFromRect(left: number, top: number, width: number, height: number): NodeListOf" - ] - }, - { - "kind": "method", - "interface": "Document", - "name": "msElementsFromPoint", - "signatures": [ - "msElementsFromPoint(x: number, y: number): NodeListOf" - ] - }, - { - "kind": "method", - "name": "getElementsByTagNameNS", - "signatures": [ - "getElementsByTagNameNS(namespaceURI: \"http://www.w3.org/1999/xhtml\", localName: string): HTMLCollectionOf", - "getElementsByTagNameNS(namespaceURI: \"http://www.w3.org/2000/svg\", localName: string): HTMLCollectionOf", - "getElementsByTagNameNS(namespaceURI: string, localName: string): HTMLCollectionOf" - ] - }, - { - "kind": "method", - "name": "getElementsByClassName", - "signatures": [ - "getElementsByClassName(classNames: string): HTMLCollectionOf" - ] - }, - { - "kind": "method", - "name": "getElementsByName", - "signatures": [ - "getElementsByName(elementName: string): NodeListOf" - ] - }, - { - "kind": "property", - "interface": "Document", - "name": "anchors", - "type": "HTMLCollectionOf" - }, - { - "kind": "property", - "interface": "Document", - "name": "applets", - "type": "HTMLCollectionOf" - }, - { - "kind": "property", - "interface": "Document", - "name": "embeds", - "type": "HTMLCollectionOf" - }, - { - "kind": "property", - "interface": "Document", - "name": "forms", - "type": "HTMLCollectionOf" - }, - { - "kind": "property", - "interface": "Document", - "name": "images", - "type": "HTMLCollectionOf" - }, - { - "kind": "property", - "interface": "Document", - "name": "links", - "type": "HTMLCollectionOf" - }, - { - "kind": "property", - "interface": "Document", - "name": "plugins", - "type": "HTMLCollectionOf" - }, - { - "kind": "property", - "interface": "Document", - "name": "scripts", - "type": "HTMLCollectionOf" - }, - { - "kind": "property", - "interface": "CanvasRenderingContext2D", - "name": "fillStyle", - "type": "string | CanvasGradient | CanvasPattern" - }, - { - "kind": "property", - "interface": "CanvasRenderingContext2D", - "name": "strokeStyle", - "type": "string | CanvasGradient | CanvasPattern" - }, - { - "kind": "property", - "interface": "BeforeUnloadEvent", - "name": "returnValue", - "type": "any" - }, - { - "kind": "property", - "interface": "HTMLEmbedElement", - "name": "hidden", - "type": "any" - }, - { - "kind": "property", - "name": "documentElement", - "type": "HTMLElement" - }, - { - "kind": "property", - "interface": "SVGStylable", - "name": "className", - "type": "any" - }, - { - "kind": "property", - "interface": "SVGElement", - "name": "className", - "type": "any" - }, - { - "kind": "method", - "interface": "SVGSVGElement", - "name": "getEnclosureList", - "signatures": [ - "getEnclosureList(rect: SVGRect, referenceElement: SVGElement): NodeListOf" - ] - }, - { - "kind": "method", - "interface": "SVGSVGElement", - "name": "getIntersectionList", - "signatures": [ - "getIntersectionList(rect: SVGRect, referenceElement: SVGElement): NodeListOf" - ] - }, - { - "kind": "property", - "interface": "Window", - "name": "orientation", - "type": "string | number" - }, - { - "kind": "method", - "interface": "Console", - "name": "debug", - "signatures": [ - "debug(message?: any, ...optionalParams: any[]): void" - ] - }, - { - "kind": "method", - "interface": "Console", - "name": "dir", - "signatures": [ - "dir(value?: any, ...optionalParams: any[]): void" - ] - }, - { - "kind": "method", - "interface": "Console", - "name": "dirxml", - "signatures": [ - "dirxml(value: any): void" - ] - }, - { - "kind": "method", - "interface": "Console", - "name": "error", - "signatures": [ - "error(message?: any, ...optionalParams: any[]): void" - ] - }, - { - "kind": "method", - "interface": "Console", - "name": "info", - "signatures": [ - "info(message?: any, ...optionalParams: any[]): void" - ] - }, - { - "kind": "method", - "interface": "Console", - "name": "log", - "signatures": [ - "log(message?: any, ...optionalParams: any[]): void" - ] - }, - { - "kind": "method", - "interface": "Console", - "name": "warn", - "signatures": [ - "warn(message?: any, ...optionalParams: any[]): void" - ] - }, - { - "kind": "method", - "interface": "Console", - "name": "group", - "signatures": [ - "group(groupTitle?: string, ...optionalParams: any[]): void" - ] - }, - { - "kind": "method", - "interface": "Console", - "name": "groupCollapsed", - "signatures": [ - "groupCollapsed(groupTitle?: string, ...optionalParams: any[]): void" - ] - }, - { - "kind": "callback", - "name": "ErrorEventHandler", - "signatures": [ - "(message: string, filename?: string, lineno?: number, colno?: number, error?: Error): void" - ] - }, - { - "kind": "constructor", - "interface": "Blob", - "signatures": [ - "new (blobParts?: any[], options?: BlobPropertyBag): Blob" - ] - }, - { - "kind": "constructor", - "interface": "FormData", - "flavor": "Web", - "signatures": [ - "new (form?: HTMLFormElement): FormData" - ] - }, - { - "kind": "constructor", - "interface": "MessageEvent", - "signatures": [ - "new(type: string, eventInitDict?: MessageEventInit): MessageEvent" - ] - }, - { - "kind": "constructor", - "interface": "ProgressEvent", - "signatures": [ - "new(type: string, eventInitDict?: ProgressEventInit): ProgressEvent" - ] - }, - { - "kind": "constructor", - "interface": "File", - "signatures": [ - "new (parts: (ArrayBuffer | ArrayBufferView | Blob | string)[], filename: string, properties?: FilePropertyBag): File" - ] - }, - { - "kind": "constructor", - "interface": "ImageData", - "signatures": [ - "new(width: number, height: number): ImageData", - "new(array: Uint8ClampedArray, width: number, height: number): ImageData" - ] - }, - { - "kind": "constructor", - "interface": "DOMException", - "signatures": [ - "new(message?: string, name?: string): DOMException" - ] - }, - { - "kind": "property", - "interface": "HTMLSelectElement", - "name": "selectedOptions", - "type": "HTMLCollectionOf" - }, - { - "kind": "property", - "interface": "HTMLDataListElement", - "name": "options", - "type": "HTMLCollectionOf" - }, - { - "kind": "property", - "interface": "ImageData", - "name": "data", - "type": "Uint8ClampedArray" - }, - { - "kind": "method", - "interface": "HTMLTableElement", - "name": "insertRow", - "signatures": [ - "insertRow(index?: number): HTMLTableRowElement" - ] - }, - { - "kind": "method", - "interface": "HTMLTableElement", - "name": "createTHead", - "signatures": [ - "createTHead(): HTMLTableSectionElement" - ] - }, - { - "kind": "method", - "interface": "HTMLTableElement", - "name": "createTBody", - "signatures": [ - "createTBody(): HTMLTableSectionElement" - ] - }, - { - "kind": "method", - "interface": "HTMLTableElement", - "name": "createTFoot", - "signatures": [ - "createTFoot(): HTMLTableSectionElement" - ] - }, - { - "kind": "method", - "interface": "HTMLTableElement", - "name": "createCaption", - "signatures": [ - "createCaption(): HTMLTableCaptionElement" - ] - }, - { - "kind": "property", - "interface": "HTMLTableElement", - "name": "rows", - "type": "HTMLCollectionOf" - }, - { - "kind": "property", - "interface": "HTMLTableElement", - "name": "tBodies", - "type": "HTMLCollectionOf" - }, - { - "kind": "method", - "interface": "HTMLTableSectionElement", - "name": "insertRow", - "signatures": [ - "insertRow(index?: number): HTMLTableRowElement" - ] - }, - { - "kind": "property", - "interface": "HTMLTableSectionElement", - "name": "rows", - "type": "HTMLCollectionOf" - }, - { - "kind": "method", - "interface": "HTMLTableRowElement", - "name": "insertCell", - "signatures": [ - "insertCell(index?: number): HTMLTableDataCellElement" - ] - }, - { - "kind": "property", - "interface": "HTMLTableRowElement", - "name": "cells", - "type": "HTMLCollectionOf" - }, - { - "kind": "method", - "interface": "Element", - "name": "setAttribute", - "signatures": [ - "setAttribute(name: string, value: string): void" - ] - }, - { - "kind": "property", - "interface": "HTMLMediaElement", - "name": "readyState", - "type": "number" - }, - { - "kind": "property", - "interface": "IDBDatabase", - "name": "version", - "type": "number" - }, - { - "kind": "method", - "interface": "Console", - "name": "trace", - "signatures": [ - "trace(message?: any, ...optionalParams: any[]): void" - ] - }, - { - "kind": "method", - "interface": "DataTransferItemList", - "name": "item", - "signatures": [ - "item(index: number): DataTransferItem" - ] - }, - { - "kind": "indexer", - "interface": "DataTransferItemList", - "signatures": [ - "[index: number]: DataTransferItem" - ] - }, - { - "kind": "constructor", - "interface": "StorageEvent", - "signatures": [ - "new (type: string, eventInitDict?: StorageEventInit): StorageEvent" - ] - }, - { - "kind": "property", - "interface": "IDBCursor", - "name": "source", - "type": "IDBObjectStore | IDBIndex" - }, - { - "kind": "method", - "interface": "IDBDatabase", - "name": "transaction", - "signatures": [ - "transaction(storeNames: string | string[], mode?: IDBTransactionMode): IDBTransaction" - ] - }, - { - "kind": "property", - "interface": "IDBObjectStore", - "name": "keyPath", - "type": "string | string[]" - }, - { - "kind": "property", - "interface": "IDBRequest", - "readonly": true, - "name": "error", - "type": "DOMException" - }, - { - "kind": "property", - "interface": "IDBRequest", - "name": "source", - "type": "IDBObjectStore | IDBIndex | IDBCursor" - }, - { - "kind": "property", - "interface": "IDBTransaction", - "readonly": true, - "name": "error", - "type": "DOMException" - }, - { - "kind": "method", - "interface": "Window", - "name": "open", - "signatures": [ - "open(url?: string, target?: string, features?: string, replace?: boolean): Window | null" - ] - }, - { - "kind": "method", - "interface": "AudioNode", - "name": "connect", - "signatures": [ - "connect(destination: AudioNode, output?: number, input?: number): AudioNode", - "connect(destination: AudioParam, output?: number): void" - ] - }, - { - "kind": "method", - "interface": "AudioNode", - "name": "disconnect", - "signatures": [ - "disconnect(output?: number): void", - "disconnect(destination: AudioNode, output?: number, input?: number): void", - "disconnect(destination: AudioParam, output?: number): void" - ] - }, - { - "kind": "callback", - "name": "DecodeErrorCallback", - "signatures": [ - "(error: DOMException): void" - ] - }, - { - "kind": "property", - "name": "ontouchcancel", - "type": "(ev: TouchEvent) => any" - }, - { - "kind": "property", - "name": "ontouchend", - "type": "(ev: TouchEvent) => any" - }, - { - "kind": "property", - "name": "ontouchmove", - "type": "(ev: TouchEvent) => any" - }, - { - "kind": "property", - "name": "ontouchstart", - "type": "(ev: TouchEvent) => any" - }, - { - "kind": "property", - "name": "keyPath?", - "interface": "IDBObjectStoreParameters", - "type": "string | string[]" - }, - { - "kind": "constructor", - "interface": "ClipboardEvent", - "signatures": [ - "new(type: string, eventInitDict?: ClipboardEventInit): ClipboardEvent" - ] - }, - { - "kind": "method", - "interface": "IDBIndex", - "name": "openCursor", - "signatures": [ - "openCursor(range?: IDBKeyRange | IDBValidKey, direction?: IDBCursorDirection): IDBRequest" - ] - }, - { - "kind": "method", - "interface": "IDBIndex", - "name": "openKeyCursor", - "signatures": [ - "openKeyCursor(range?: IDBKeyRange | IDBValidKey, direction?: IDBCursorDirection): IDBRequest" - ] - }, - { - "kind": "method", - "interface": "IDBObjectStore", - "name": "openCursor", - "signatures": [ - "openCursor(range?: IDBKeyRange | IDBValidKey, direction?: IDBCursorDirection): IDBRequest" - ] - }, - { - "kind": "method", - "interface": "IDBObjectStore", - "name": "add", - "signatures": [ - "add(value: any, key?: IDBKeyRange | IDBValidKey): IDBRequest" - ] - }, - { - "kind": "method", - "interface": "IDBObjectStore", - "name": "count", - "signatures": [ - "count(key?: IDBKeyRange | IDBValidKey): IDBRequest" - ] - }, - { - "kind": "method", - "interface": "IDBObjectStore", - "name": "delete", - "signatures": [ - "delete(key: IDBKeyRange | IDBValidKey): IDBRequest" - ] - }, - { - "kind": "method", - "interface": "IDBObjectStore", - "name": "put", - "signatures": [ - "put(value: any, key?: IDBKeyRange | IDBValidKey): IDBRequest" - ] - }, - { - "kind": "property", - "interface": "IDBCursor", - "name": "key", - "type": "IDBKeyRange | IDBValidKey" - }, - { - "kind": "method", - "interface": "IDBCursor", - "name": "continue", - "signatures": [ - "continue(key?: IDBKeyRange | IDBValidKey): void" - ] - }, - { - "kind": "method", - "interface": "IDBIndex", - "name": "count", - "signatures": [ - "count(key?: IDBKeyRange | IDBValidKey): IDBRequest" - ] - }, - { - "kind": "method", - "interface": "IDBIndex", - "name": "get", - "signatures": [ - "get(key: IDBKeyRange | IDBValidKey): IDBRequest" - ] - }, - { - "kind": "method", - "interface": "IDBIndex", - "name": "getKey", - "signatures": [ - "getKey(key: IDBKeyRange | IDBValidKey): IDBRequest" - ] - }, - { - "kind": "method", - "interface": "Storage", - "name": "getItem", - "signatures": [ - "getItem(key: string): string | null" - ] - }, - { - "kind": "method", - "interface": "Storage", - "name": "key", - "signatures": [ - "key(index: number): string | null" - ] - }, - { - "kind": "method", - "interface": "WebGLRenderingContext", - "name": "uniform1fv", - "signatures": [ - "uniform1fv(location: WebGLUniformLocation, v: Float32Array | ArrayLike): void" - ] - }, - { - "kind": "method", - "interface": "WebGLRenderingContext", - "name": "uniform2fv", - "signatures": [ - "uniform2fv(location: WebGLUniformLocation, v: Float32Array | ArrayLike): void" - ] - }, - { - "kind": "method", - "interface": "WebGLRenderingContext", - "name": "uniform3fv", - "signatures": [ - "uniform3fv(location: WebGLUniformLocation, v: Float32Array | ArrayLike): void" - ] - }, - { - "kind": "method", - "interface": "WebGLRenderingContext", - "name": "uniform4fv", - "signatures": [ - "uniform4fv(location: WebGLUniformLocation, v: Float32Array | ArrayLike): void" - ] - }, - { - "kind": "method", - "interface": "WebGLRenderingContext", - "name": "uniform1iv", - "signatures": [ - "uniform1iv(location: WebGLUniformLocation, v: Int32Array | ArrayLike): void" - ] - }, - { - "kind": "method", - "interface": "WebGLRenderingContext", - "name": "uniform2iv", - "signatures": [ - "uniform2iv(location: WebGLUniformLocation, v: Int32Array | ArrayLike): void" - ] - }, - { - "kind": "method", - "interface": "WebGLRenderingContext", - "name": "uniform3iv", - "signatures": [ - "uniform3iv(location: WebGLUniformLocation, v: Int32Array | ArrayLike): void" - ] - }, - { - "kind": "method", - "interface": "WebGLRenderingContext", - "name": "uniform4iv", - "signatures": [ - "uniform4iv(location: WebGLUniformLocation, v: Int32Array | ArrayLike): void" - ] - }, - { - "kind": "method", - "interface": "WebGLRenderingContext", - "name": "uniformMatrix2fv", - "signatures": [ - "uniformMatrix2fv(location: WebGLUniformLocation, transpose: boolean, value: Float32Array | ArrayLike): void" - ] - }, - { - "kind": "method", - "interface": "WebGLRenderingContext", - "name": "uniformMatrix3fv", - "signatures": [ - "uniformMatrix3fv(location: WebGLUniformLocation, transpose: boolean, value: Float32Array | ArrayLike): void" - ] - }, - { - "kind": "method", - "interface": "WebGLRenderingContext", - "name": "uniformMatrix4fv", - "signatures": [ - "uniformMatrix4fv(location: WebGLUniformLocation, transpose: boolean, value: Float32Array | ArrayLike): void" - ] - }, - { - "kind": "method", - "interface": "WebGLRenderingContext", - "name": "vertexAttrib1fv", - "signatures": [ - "vertexAttrib1fv(indx: number, values: Float32Array | number[]): void" - ] - }, - { - "kind": "method", - "interface": "WebGLRenderingContext", - "name": "vertexAttrib2fv", - "signatures": [ - "vertexAttrib2fv(indx: number, values: Float32Array | number[]): void" - ] - }, - { - "kind": "method", - "interface": "WebGLRenderingContext", - "name": "vertexAttrib3fv", - "signatures": [ - "vertexAttrib3fv(indx: number, values: Float32Array | number[]): void" - ] - }, - { - "kind": "method", - "interface": "WebGLRenderingContext", - "name": "vertexAttrib4fv", - "signatures": [ - "vertexAttrib4fv(indx: number, values: Float32Array | number[]): void" - ] - }, - { - "kind": "method", - "interface": "WebGLRenderingContext", - "name": "getExtension", - "signatures": [ - "getExtension(extensionName: \"EXT_blend_minmax\"): EXT_blend_minmax | null", - "getExtension(extensionName: \"EXT_texture_filter_anisotropic\"): EXT_texture_filter_anisotropic | null", - "getExtension(extensionName: \"EXT_frag_depth\"): EXT_frag_depth | null", - "getExtension(extensionName: \"EXT_shader_texture_lod\"): EXT_shader_texture_lod | null", - "getExtension(extensionName: \"EXT_sRGB\"): EXT_sRGB | null", - "getExtension(extensionName: \"OES_vertex_array_object\"): OES_vertex_array_object | null", - "getExtension(extensionName: \"WEBGL_color_buffer_float\"): WEBGL_color_buffer_float | null", - "getExtension(extensionName: \"WEBGL_compressed_texture_astc\"): WEBGL_compressed_texture_astc | null", - "getExtension(extensionName: \"WEBGL_compressed_texture_s3tc_srgb\"): WEBGL_compressed_texture_s3tc_srgb | null", - "getExtension(extensionName: \"WEBGL_debug_shaders\"): WEBGL_debug_shaders | null", - "getExtension(extensionName: \"WEBGL_draw_buffers\"): WEBGL_draw_buffers | null", - "getExtension(extensionName: \"WEBGL_lose_context\"): WEBGL_lose_context | null", - "getExtension(extensionName: \"WEBGL_depth_texture\"): WEBGL_depth_texture | null", - "getExtension(extensionName: \"WEBGL_debug_renderer_info\"): WEBGL_debug_renderer_info | null", - "getExtension(extensionName: \"WEBGL_compressed_texture_s3tc\"): WEBGL_compressed_texture_s3tc | null", - "getExtension(extensionName: \"OES_texture_half_float_linear\"): OES_texture_half_float_linear | null", - "getExtension(extensionName: \"OES_texture_half_float\"): OES_texture_half_float | null", - "getExtension(extensionName: \"OES_texture_float_linear\"): OES_texture_float_linear | null", - "getExtension(extensionName: \"OES_texture_float\"): OES_texture_float | null", - "getExtension(extensionName: \"OES_standard_derivatives\"): OES_standard_derivatives | null", - "getExtension(extensionName: \"OES_element_index_uint\"): OES_element_index_uint | null", - "getExtension(extensionName: \"ANGLE_instanced_arrays\"): ANGLE_instanced_arrays | null", - "getExtension(extensionName: string): any" - ] - }, - { - "kind": "method", - "interface": "Element", - "name": "getAttribute", - "signatures": [ - "getAttribute(name: string): string | null" - ] - }, - { - "kind": "extends", - "baseInterface": "HTMLCollectionOf", - "interface": "HTMLOptionsCollection" - }, - { - "kind": "property", - "interface": "Algorithm", - "name": "name", - "type": "string" - }, - { - "kind": "method", - "interface": "SubtleCrypto", - "name": "decrypt", - "signatures": [ - "decrypt(algorithm: string | RsaOaepParams | AesCtrParams | AesCbcParams | AesCmacParams | AesGcmParams | AesCfbParams, key: CryptoKey, data: BufferSource): PromiseLike" - ] - }, - { - "kind": "method", - "interface": "SubtleCrypto", - "name": "deriveBits", - "signatures": [ - "deriveBits(algorithm: string | EcdhKeyDeriveParams | DhKeyDeriveParams | ConcatParams | HkdfCtrParams | Pbkdf2Params, baseKey: CryptoKey, length: number): PromiseLike" - ] - }, - { - "kind": "method", - "interface": "SubtleCrypto", - "name": "deriveKey", - "signatures": [ - "deriveKey(algorithm: string | EcdhKeyDeriveParams | DhKeyDeriveParams | ConcatParams | HkdfCtrParams | Pbkdf2Params, baseKey: CryptoKey, derivedKeyType: string | AesDerivedKeyParams | HmacImportParams | ConcatParams | HkdfCtrParams | Pbkdf2Params, extractable: boolean, keyUsages: string[]): PromiseLike" - ] - }, - { - "kind": "method", - "interface": "SubtleCrypto", - "name": "digest", - "signatures": [ - "digest(algorithm: AlgorithmIdentifier, data: BufferSource): PromiseLike" - ] - }, - { - "kind": "method", - "interface": "SubtleCrypto", - "name": "encrypt", - "signatures": [ - "encrypt(algorithm: string | RsaOaepParams | AesCtrParams | AesCbcParams | AesCmacParams | AesGcmParams | AesCfbParams, key: CryptoKey, data: BufferSource): PromiseLike" - ] - }, - { - "kind": "method", - "interface": "SubtleCrypto", - "name": "exportKey", - "signatures": [ - "exportKey(format: \"jwk\", key: CryptoKey): PromiseLike", - "exportKey(format: \"raw\" | \"pkcs8\" | \"spki\", key: CryptoKey): PromiseLike", - "exportKey(format: string, key: CryptoKey): PromiseLike" - ] - }, - { - "kind": "method", - "interface": "SubtleCrypto", - "name": "generateKey", - "signatures": [ - "generateKey(algorithm: string, extractable: boolean, keyUsages: string[]): PromiseLike", - "generateKey(algorithm: RsaHashedKeyGenParams | EcKeyGenParams | DhKeyGenParams, extractable: boolean, keyUsages: string[]): PromiseLike", - "generateKey(algorithm: AesKeyGenParams | HmacKeyGenParams | Pbkdf2Params, extractable: boolean, keyUsages: string[]): PromiseLike" - ] - }, - { - "kind": "method", - "interface": "SubtleCrypto", - "name": "importKey", - "signatures": [ - "importKey(format: \"jwk\", keyData: JsonWebKey, algorithm: string | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | DhImportKeyParams, extractable: boolean, keyUsages: string[]): PromiseLike", - "importKey(format: \"raw\" | \"pkcs8\" | \"spki\", keyData: BufferSource, algorithm: string | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | DhImportKeyParams, extractable: boolean, keyUsages: string[]): PromiseLike", - "importKey(format: string, keyData: JsonWebKey | BufferSource, algorithm: string | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | DhImportKeyParams, extractable: boolean, keyUsages: string[]): PromiseLike" - ] - }, - { - "kind": "method", - "interface": "SubtleCrypto", - "name": "sign", - "signatures": [ - "sign(algorithm: string | RsaPssParams | EcdsaParams | AesCmacParams, key: CryptoKey, data: BufferSource): PromiseLike" - ] - }, - { - "kind": "method", - "interface": "SubtleCrypto", - "name": "unwrapKey", - "signatures": [ - "unwrapKey(format: string, wrappedKey: BufferSource, unwrappingKey: CryptoKey, unwrapAlgorithm: AlgorithmIdentifier, unwrappedKeyAlgorithm: AlgorithmIdentifier, extractable: boolean, keyUsages: string[]): PromiseLike" - ] - }, - { - "kind": "method", - "interface": "SubtleCrypto", - "name": "verify", - "signatures": [ - "verify(algorithm: string | RsaPssParams | EcdsaParams | AesCmacParams, key: CryptoKey, signature: BufferSource, data: BufferSource): PromiseLike" - ] - }, - { - "kind": "method", - "interface": "SubtleCrypto", - "name": "wrapKey", - "signatures": [ - "wrapKey(format: string, key: CryptoKey, wrappingKey: CryptoKey, wrapAlgorithm: AlgorithmIdentifier): PromiseLike" - ] - }, - { - "kind": "method", - "name": "setTimeout", - "signatures": [ - "setTimeout(handler: (...args: any[]) => void, timeout: number): number", - "setTimeout(handler: any, timeout?: any, ...args: any[]): number" - ] - }, - { - "kind": "method", - "name": "setImmediate", - "signatures": [ - "setImmediate(handler: (...args: any[]) => void): number", - "setImmediate(handler: any, ...args: any[]): number" - ] - }, - { - "kind": "method", - "name": "setInterval", - "signatures": [ - "setInterval(handler: (...args: any[]) => void, timeout: number): number", - "setInterval(handler: any, timeout?: any, ...args: any[]): number" - ] - }, - { - "kind": "property", - "interface": "HTMLInputElement", - "readonly": true, - "name": "files", - "type": "FileList | null" - }, - { - "kind": "property", - "interface": "Window", - "name": "opener", - "type": "any" - }, - { - "kind": "method", - "interface": "History", - "name": "back", - "signatures": [ - "back(): void" - ] - }, - { - "kind": "method", - "interface": "History", - "name": "forward", - "signatures": [ - "forward(): void" - ] - }, - { - "kind": "method", - "interface": "History", - "name": "go", - "signatures": [ - "go(delta?: number): void" - ] - }, - { - "kind": "method", - "interface": "History", - "name": "pushState", - "signatures": [ - "pushState(data: any, title: string, url?: string | null): void" - ] - }, - { - "kind": "method", - "interface": "History", - "name": "replaceState", - "signatures": [ - "replaceState(data: any, title: string, url?: string | null): void" - ] - }, - { - "kind": "property", - "interface": "Node", - "readonly": true, - "name": "firstChild", - "type": "Node | null" - }, - { - "kind": "property", - "interface": "Node", - "readonly": true, - "name": "lastChild", - "type": "Node | null" - }, - { - "kind": "property", - "interface": "Node", - "readonly": true, - "name": "nextSibling", - "type": "Node | null" - }, - { - "kind": "property", - "interface": "Node", - "readonly": true, - "name": "previousSibling", - "type": "Node | null" - }, - { - "kind": "property", - "interface": "Node", - "readonly": true, - "name": "parentNode", - "type": "Node | null" - }, - { - "kind": "property", - "interface": "Node", - "readonly": true, - "name": "parentElement", - "type": "HTMLElement | null" - }, - { - "kind": "method", - "interface": "MouseEvent", - "name": "initMouseEvent", - "signatures": [ - "initMouseEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, viewArg: Window, detailArg: number, screenXArg: number, screenYArg: number, clientXArg: number, clientYArg: number, ctrlKeyArg: boolean, altKeyArg: boolean, shiftKeyArg: boolean, metaKeyArg: boolean, buttonArg: number, relatedTargetArg: EventTarget | null): void" - ] - }, - { - "kind": "property", - "interface": "DataTransfer", - "readonly": true, - "name": "types", - "type": "string[]" - }, - { - "kind": "method", - "interface": "XPathEvaluator", - "name": "evaluate", - "signatures": [ - "evaluate(expression: string, contextNode: Node, resolver: XPathNSResolver | null, type: number, result: XPathResult | null): XPathResult" - ] - }, - { - "kind": "method", - "interface": "Document", - "name": "evaluate", - "signatures": [ - "evaluate(expression: string, contextNode: Node, resolver: XPathNSResolver | null, type: number, result: XPathResult | null): XPathResult" - ] - }, - { - "kind": "method", - "interface": "XPathExpression", - "name": "evaluate", - "signatures": [ - "evaluate(contextNode: Node, type: number, result: XPathResult | null): XPathResult" - ] - }, - { - "kind": "extends", - "baseInterface": "Node, GlobalEventHandlers, NodeSelector, DocumentEvent, ParentNode, DocumentOrShadowRoot", - "interface": "Document" - }, - { - "kind": "property", - "interface": "ElementTraversal", - "readonly": true, - "name": "firstElementChild", - "type": "Element | null" - }, - { - "kind": "property", - "interface": "ElementTraversal", - "readonly": true, - "name": "lastElementChild", - "type": "Element | null" - }, - { - "kind": "property", - "interface": "ElementTraversal", - "readonly": true, - "name": "nextElementSibling", - "type": "Element | null" - }, - { - "kind": "property", - "interface": "ElementTraversal", - "readonly": true, - "name": "previousElementSibling", - "type": "Element | null" - }, - { - "kind": "indexer", - "interface": "DOMStringMap", - "signatures": [ - "[name: string]: string | undefined" - ] - }, - { - "kind": "method", - "interface": "DOMImplementation", - "name": "hasFeature", - "signatures": [ - "hasFeature(feature: string | null, version: string | null): boolean" - ] - }, - { - "kind": "method", - "interface": "DOMImplementation", - "name": "createDocument", - "signatures": [ - "createDocument(namespaceURI: string | null, qualifiedName: string | null, doctype: DocumentType | null): Document" - ] - }, - { - "kind": "method", - "interface": "FormData", - "name": "append", - "flavor": "Web", - "signatures": [ - "append(name: string, value: string | Blob, fileName?: string): void" - ] - }, - { - "kind": "method", - "interface": "EventTarget", - "name": "addEventListener", - "signatures": [ - "addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void" - ] - }, - { - "kind": "method", - "interface": "EventTarget", - "name": "removeEventListener", - "signatures": [ - "removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void" - ] - }, - { - "kind": "constructor", - "interface": "TouchEvent", - "signatures": [ - "new(type: string, touchEventInit?: TouchEventInit): TouchEvent" - ] - }, - { - "kind": "constructor", - "interface": "Text", - "signatures": [ - "new(data?: string): Text" - ] - }, - { - "kind": "method", - "interface": "HTMLMediaElement", - "name": "play", - "signatures": [ - "play(): Promise" - ] - }, - { - "kind": "constructor", - "interface": "DragEvent", - "signatures": [ - "new(type: \"drag\" | \"dragend\" | \"dragenter\" | \"dragexit\" | \"dragleave\" | \"dragover\" | \"dragstart\" | \"drop\", dragEventInit?: { dataTransfer?: DataTransfer }): DragEvent" - ] - }, - { - "kind": "property", - "interface": "HTMLAppletElement", - "readonly": true, - "name": "form", - "type": "HTMLFormElement | null" - }, - { - "kind": "property", - "interface": "HTMLButtonElement", - "readonly": true, - "name": "form", - "type": "HTMLFormElement | null" - }, - { - "kind": "property", - "interface": "HTMLFieldSetElement", - "readonly": true, - "name": "form", - "type": "HTMLFormElement | null" - }, - { - "kind": "property", - "interface": "HTMLInputElement", - "readonly": true, - "name": "form", - "type": "HTMLFormElement | null" - }, - { - "kind": "property", - "interface": "HTMLLabelElement", - "readonly": true, - "name": "form", - "type": "HTMLFormElement | null" - }, - { - "kind": "property", - "interface": "HTMLLegendElement", - "readonly": true, - "name": "form", - "type": "HTMLFormElement | null" - }, - { - "kind": "property", - "interface": "HTMLObjectElement", - "readonly": true, - "name": "form", - "type": "HTMLFormElement | null" - }, - { - "kind": "property", - "interface": "HTMLOptGroupElement", - "readonly": true, - "name": "form", - "type": "HTMLFormElement | null" - }, - { - "kind": "property", - "interface": "HTMLOptionElement", - "readonly": true, - "name": "form", - "type": "HTMLFormElement | null" - }, - { - "kind": "property", - "interface": "HTMLOutputElement", - "readonly": true, - "name": "form", - "type": "HTMLFormElement | null" - }, - { - "kind": "property", - "interface": "HTMLProgressElement", - "readonly": true, - "name": "form", - "type": "HTMLFormElement | null" - }, - { - "kind": "property", - "interface": "HTMLSelectElement", - "readonly": true, - "name": "form", - "type": "HTMLFormElement | null" - }, - { - "kind": "property", - "interface": "HTMLTextAreaElement", - "readonly": true, - "name": "form", - "type": "HTMLFormElement | null" - }, - { - "kind": "method", - "interface": "RandomSource", - "name": "getRandomValues", - "signatures": [ - "getRandomValues(array: T): T" - ] - }, - { - "kind": "property", - "interface": "HTMLAppletElement", - "readonly": true, - "name": "form", - "type": "HTMLFormElement | null" - }, - { - "kind": "property", - "interface": "HTMLButtonElement", - "readonly": true, - "name": "form", - "type": "HTMLFormElement | null" - }, - { - "kind": "property", - "interface": "HTMLFieldSetElement", - "readonly": true, - "name": "form", - "type": "HTMLFormElement | null" - }, - { - "kind": "property", - "interface": "HTMLInputElement", - "readonly": true, - "name": "form", - "type": "HTMLFormElement | null" - }, - { - "kind": "property", - "interface": "HTMLLabelElement", - "readonly": true, - "name": "form", - "type": "HTMLFormElement | null" - }, - { - "kind": "property", - "interface": "HTMLegendElement", - "readonly": true, - "name": "form", - "type": "HTMLFormElement | null" - }, - { - "kind": "property", - "interface": "HTMLObjectElement", - "readonly": true, - "name": "form", - "type": "HTMLFormElement | null" - }, - { - "kind": "property", - "interface": "HTMLOptGroupElement", - "readonly": true, - "name": "form", - "type": "HTMLFormElement | null" - }, - { - "kind": "property", - "interface": "HTMLOptionElement", - "readonly": true, - "name": "form", - "type": "HTMLFormElement | null" - }, - { - "kind": "property", - "interface": "HTMLOutputElement", - "readonly": true, - "name": "form", - "type": "HTMLFormElement | null" - }, - { - "kind": "property", - "interface": "HTMLProgressElement", - "readonly": true, - "name": "form", - "type": "HTMLFormElement | null" - }, - { - "kind": "property", - "interface": "HTMLSelectElement", - "readonly": true, - "name": "form", - "type": "HTMLFormElement | null" - }, - { - "kind": "property", - "interface": "HTMLTextAreaElement", - "readonly": true, - "name": "form", - "type": "HTMLFormElement | null" - }, - { - "kind": "constructor", - "interface": "Headers", - "signatures": [ - "new(init?: HeadersInit): Headers" - ] - }, - { - "kind": "method", - "interface": "ServiceWorkerContainer", - "name": "getRegistration", - "signatures": [ - "getRegistration(clientURL?: USVString): Promise" - ] - }, - { - "kind": "method", - "interface": "Element", - "name": "getBoundingClientRect", - "signatures": [ - "getBoundingClientRect(): ClientRect | DOMRect" - ] - }, - { - "kind": "method", - "interface": "Element", - "name": "getClientRects", - "signatures": [ - "getClientRects(): ClientRectList | DOMRectList" - ] - }, - { - "kind": "property", - "interface": "IntersectionObserverEntry", - "name": "boundingClientRect", - "readonly": true, - "type": "ClientRect | DOMRect" - }, - { - "kind": "property", - "interface": "IntersectionObserverEntry", - "name": "intersectionRect", - "readonly": true, - "type": "ClientRect | DOMRect" - }, - { - "kind": "property", - "interface": "IntersectionObserverEntry", - "name": "rootBounds", - "readonly": true, - "type": "ClientRect | DOMRect" - }, - { - "kind": "method", - "interface": "Range", - "name": "getBoundingClientRect", - "signatures": [ - "getBoundingClientRect(): ClientRect | DOMRect" - ] - }, - { - "kind": "property", - "interface": "RequestInit", - "name": "headers?", - "type": "HeadersInit" - }, - { - "kind": "property", - "interface": "ResponseInit", - "name": "headers?", - "type": "HeadersInit" - }, - { - "kind": "property", - "interface": "PaymentMethodData", - "name": "supportedMethods", - "type": "string | string[]" - }, - { - "kind": "property", - "interface": "PaymentDetailsModifier", - "name": "supportedMethods", - "type": "string | string[]" - }, - { - "kind": "method", - "interface": "CanvasRenderingContext2D", - "name": "clip", - "signatures": [ - "clip(fillRule?: CanvasFillRule): void", - "clip(path: Path2D, fillRule?: CanvasFillRule): void" - ] - }, - { - "kind": "method", - "interface": "CanvasRenderingContext2D", - "name": "fill", - "signatures": [ - "fill(fillRule?: CanvasFillRule): void", - "fill(path: Path2D, fillRule?: CanvasFillRule): void" - ] - }, - { - "kind": "method", - "interface": "Range", - "name": "getClientRects", - "signatures": [ - "getClientRects(): ClientRectList | DOMRectList" - ] - }, - { - "kind": "method", - "interface": "CanvasRenderingContext2D", - "name": "isPointInPath", - "signatures": [ - "isPointInPath(x: number, y: number, fillRule?: CanvasFillRule): boolean", - "isPointInPath(path: Path2D, x: number, y: number, fillRule?: CanvasFillRule): boolean" - ] - }, - { - "kind": "method", - "interface": "CanvasRenderingContext2D", - "name": "isPointInStroke", - "signatures": [ - "isPointInStroke(x: number, y: number, fillRule?: CanvasFillRule): boolean", - "isPointInStroke(path: Path2D, x: number, y: number, fillRule?: CanvasFillRule): boolean" - ] - }, - { - "kind": "constructor", - "interface": "URL", - "signatures": [ - "new(url: string, base?: string | URL): URL" - ] - }, - { - "kind": "property", - "interface": "File", - "readonly": true, - "name": "lastModifiedDate", - "type": "Date" - }, - { - "kind": "method", - "interface": "HTMLInputElement", - "name": "setSelectionRange", - "signatures": [ - "setSelectionRange(start: number, end: number, direction?: \"forward\" | \"backward\" | \"none\"): void" - ] - }, - { - "kind": "method", - "interface": "HTMLTextAreaElement", - "name": "setSelectionRange", - "signatures": [ - "setSelectionRange(start: number, end: number, direction?: \"forward\" | \"backward\" | \"none\"): void" - ] - }, - { - "kind": "method", - "interface": "Element", - "name": "getAttributeNodeNS", - "signatures": [ - "getAttributeNodeNS(namespaceURI: string, localName: string): Attr | null" - ] - }, - { - "kind": "method", - "interface": "Element", - "name": "getAttributeNode", - "signatures": [ - "getAttributeNode(name: string): Attr | null" - ] - }, - { - "kind": "method", - "interface": "WebSocket", - "name": "send", - "signatures": [ - "send(data: USVString | ArrayBuffer | Blob | ArrayBufferView): void" - ] - }, - { - "kind": "callback", - "name": "ForEachCallback", - "signatures": [ - "(keyId: any, status: MediaKeyStatus): void" - ] - }, - { - "kind": "method", - "name": "getSubscription", - "interface": "PushManager", - "signatures": [ - "getSubscription(): Promise" - ] - }, - { - "kind": "property", - "interface": "MutationRecord", - "name": "type", - "readonly": true, - "type": "MutationRecordType" +{ + "mixins": { + "mixin": { + "XMLHttpRequestEventTarget": { + "name": "XMLHttpRequestEventTarget", + "properties": { + "property": { + "onload": { + "name": "onload", + "override-type": "(this: XMLHttpRequest, ev: Event) => any" + }, + "onabort": { + "name": "onabort", + "override-type": "(this: XMLHttpRequest, ev: Event) => any" + }, + "onerror": { + "name": "onerror", + "override-type": "(this: XMLHttpRequest, ev: ErrorEvent) => any" + }, + "onloadend": { + "name": "onloadend", + "override-type": "(this: XMLHttpRequest, ev: ProgressEvent) => any" + }, + "onloadstart": { + "name": "onloadstart", + "override-type": "(this: XMLHttpRequest, ev: Event) => any" + }, + "onprogress": { + "name": "onprogress", + "override-type": "(this: XMLHttpRequest, ev: ProgressEvent) => any" + }, + "ontimeout": { + "name": "ontimeout", + "override-type": "(this: XMLHttpRequest, ev: ProgressEvent) => any" + } + } + } + }, + "ElementTraversal": { + "name": "ElementTraversal", + "properties": { + "property": { + "firstElementChild": { + "name": "firstElementChild", + "read-only": "1", + "override-type": "Element | null" + }, + "lastElementChild": { + "name": "lastElementChild", + "read-only": "1", + "override-type": "Element | null" + }, + "nextElementSibling": { + "name": "nextElementSibling", + "read-only": "1", + "override-type": "Element | null" + }, + "previousElementSibling": { + "name": "previousElementSibling", + "read-only": "1", + "override-type": "Element | null" + } + } + } + }, + "RandomSource": { + "name": "RandomSource", + "methods": { + "method": { + "getRandomValues": { + "name": "getRandomValues", + "override-signatures": [ + "getRandomValues(array: T): T" + ] + } + } + } + }, + "WindowTimers": { + "name": "WindowTimers", + "methods": { + "method": { + "setTimeout": { + "name": "setTimeout", + "override-signatures": [ + "setTimeout(handler: (...args: any[]) => void, timeout: number): number", + "setTimeout(handler: any, timeout?: any, ...args: any[]): number" + ] + }, + "setInterval": { + "name": "setInterval", + "override-signatures": [ + "setInterval(handler: (...args: any[]) => void, timeout: number): number", + "setInterval(handler: any, timeout?: any, ...args: any[]): number" + ] + } + } + } + }, + "WindowTimersExtension": { + "name": "WindowTimersExtension", + "methods": { + "method": { + "setImmediate": { + "name": "setImmediate", + "override-signatures": [ + "setImmediate(handler: (...args: any[]) => void): number", + "setImmediate(handler: any, ...args: any[]): number" + ] + } + } + } + } + } + }, + "callback-functions": { + "callback-function": { + "ErrorEventHandler": { + "name": "ErrorEventHandler", + "override-signatures": [ + "(event: Event | string, source?: string, fileno?: number, columnNumber?: number, error?: Error): void" + ] + }, + "DecodeErrorCallback": { + "name": "DecodeErrorCallback", + "override-signatures": [ + "(error: DOMException): void" + ] + } + } + }, + "callback-interfaces": { + "interface": {} + }, + "enums": { + "enum": {} + }, + "interfaces": { + "interface": { + "CustomEvent": { + "name": "CustomEvent", + "properties": { + "property": { + "detail": { + "name": "detail", + "read-only": "1", + "override-type": "T" + } + } + }, + "methods": { + "method": { + "initCustomEvent": { + "name": "initCustomEvent", + "override-signatures": [ + "initCustomEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, detailArg: T): void" + ] + } + } + }, + "type-parameters": [ + "T = any" + ], + "constructor": { + "override-signatures": [ + "new(typeArg: string, eventInitDict?: CustomEventInit): CustomEvent" + ] + } + }, + "Window": { + "name": "Window", + "properties": { + "property": { + "event": { + "name": "event", + "override-type": "Event | undefined" + }, + "orientation": { + "name": "orientation", + "override-type": "string | number" + }, + "opener": { + "name": "opener", + "override-type": "any" + }, + "ontouchcancel": { + "name": "ontouchcancel", + "override-type": "(ev: TouchEvent) => any" + }, + "ontouchend": { + "name": "ontouchend", + "override-type": "(ev: TouchEvent) => any" + }, + "ontouchmove": { + "name": "ontouchmove", + "override-type": "(ev: TouchEvent) => any" + }, + "ontouchstart": { + "name": "ontouchstart", + "override-type": "(ev: TouchEvent) => any" + } + } + }, + "methods": { + "method": { + "open": { + "name": "open", + "override-signatures": [ + "open(url?: string, target?: string, features?: string, replace?: boolean): Window | null" + ] + }, + "alert": { + "name": "alert", + "override-signatures": [ + "alert(message?: any): void" + ] + } + } + }, + "overide-index-signatures": [] + }, + "Document": { + "name": "Document", + "methods": { + "method": { + "adoptNode": { + "name": "adoptNode", + "override-signatures": [ + "adoptNode(source: T): T" + ] + }, + "importNode": { + "name": "importNode", + "override-signatures": [ + "importNode(importedNode: T, deep: boolean): T" + ] + }, + "open": { + "name": "open", + "override-signatures": [ + "open(url?: string, name?: string, features?: string, replace?: boolean): Document" + ] + }, + "getElementById": { + "name": "getElementById", + "override-signatures": [ + "getElementById(elementId: string): HTMLElement | null" + ] + }, + "msElementsFromRect": { + "name": "msElementsFromRect", + "override-signatures": [ + "msElementsFromRect(left: number, top: number, width: number, height: number): NodeListOf" + ] + }, + "msElementsFromPoint": { + "name": "msElementsFromPoint", + "override-signatures": [ + "msElementsFromPoint(x: number, y: number): NodeListOf" + ] + }, + "evaluate": { + "name": "evaluate", + "override-signatures": [ + "evaluate(expression: string, contextNode: Node, resolver: XPathNSResolver | null, type: number, result: XPathResult | null): XPathResult" + ] + }, + "getElementsByTagNameNS": { + "name": "getElementsByTagNameNS", + "override-signatures": [ + "getElementsByTagNameNS(namespaceURI: \"http://www.w3.org/1999/xhtml\", localName: string): HTMLCollectionOf", + "getElementsByTagNameNS(namespaceURI: \"http://www.w3.org/2000/svg\", localName: string): HTMLCollectionOf", + "getElementsByTagNameNS(namespaceURI: string, localName: string): HTMLCollectionOf" + ] + }, + "getElementsByClassName": { + "name": "getElementsByClassName", + "override-signatures": [ + "getElementsByClassName(classNames: string): HTMLCollectionOf" + ] + }, + "getElementsByName": { + "name": "getElementsByName", + "override-signatures": [ + "getElementsByName(elementName: string): NodeListOf" + ] + } + } + }, + "properties": { + "property": { + "documentElement": { + "name": "documentElement", + "override-type": "HTMLElement" + }, + "currentScript": { + "name": "currentScript", + "read-only": "1", + "override-type": "HTMLScriptElement | SVGScriptElement | null" + }, + "anchors": { + "name": "anchors", + "override-type": "HTMLCollectionOf" + }, + "applets": { + "name": "applets", + "override-type": "HTMLCollectionOf" + }, + "embeds": { + "name": "embeds", + "override-type": "HTMLCollectionOf" + }, + "forms": { + "name": "forms", + "override-type": "HTMLCollectionOf" + }, + "images": { + "name": "images", + "override-type": "HTMLCollectionOf" + }, + "links": { + "name": "links", + "override-type": "HTMLCollectionOf" + }, + "plugins": { + "name": "plugins", + "override-type": "HTMLCollectionOf" + }, + "scripts": { + "name": "scripts", + "override-type": "HTMLCollectionOf" + } + } + }, + "extends": "Node, GlobalEventHandlers, NodeSelector, DocumentEvent, ParentNode, DocumentOrShadowRoot" + }, + "Node": { + "name": "Node", + "methods": { + "method": { + "appendChild": { + "name": "appendChild", + "override-signatures": [ + "appendChild(newChild: T): T" + ] + }, + "insertBefore": { + "name": "insertBefore", + "override-signatures": [ + "insertBefore(newChild: T, refChild: Node | null): T" + ] + }, + "removeChild": { + "name": "removeChild", + "override-signatures": [ + "removeChild(oldChild: T): T" + ] + }, + "replaceChild": { + "name": "replaceChild", + "override-signatures": [ + "replaceChild(newChild: Node, oldChild: T): T" + ] + } + } + }, + "properties": { + "property": { + "firstChild": { + "name": "firstChild", + "read-only": "1", + "override-type": "Node | null" + }, + "lastChild": { + "name": "lastChild", + "read-only": "1", + "override-type": "Node | null" + }, + "nextSibling": { + "name": "nextSibling", + "read-only": "1", + "override-type": "Node | null" + }, + "previousSibling": { + "name": "previousSibling", + "read-only": "1", + "override-type": "Node | null" + }, + "parentNode": { + "name": "parentNode", + "read-only": "1", + "override-type": "Node | null" + }, + "parentElement": { + "name": "parentElement", + "read-only": "1", + "override-type": "HTMLElement | null" + } + } + } + }, + "HTMLCollection": { + "name": "HTMLCollection", + "methods": { + "method": { + "item": { + "name": "item", + "override-signatures": [ + "item(index: number): Element" + ] + } + } + } + }, + "IDBObjectStore": { + "name": "IDBObjectStore", + "methods": { + "method": { + "createIndex": { + "name": "createIndex", + "override-signatures": [ + "createIndex(name: string, keyPath: string | string[], optionalParameters?: IDBIndexParameters): IDBIndex" + ] + }, + "openCursor": { + "name": "openCursor", + "override-signatures": [ + "openCursor(range?: IDBKeyRange | number | string | Date | IDBArrayKey, direction?: IDBCursorDirection): IDBRequest" + ] + }, + "add": { + "name": "add", + "override-signatures": [ + "add(value: any, key?: IDBKeyRange | number | string | Date | IDBArrayKey): IDBRequest" + ] + }, + "count": { + "name": "count", + "override-signatures": [ + "count(key?: IDBKeyRange | number | string | Date | IDBArrayKey): IDBRequest" + ] + }, + "delete": { + "name": "delete", + "override-signatures": [ + "delete(key: IDBKeyRange | number | string | Date | IDBArrayKey): IDBRequest" + ] + }, + "put": { + "name": "put", + "override-signatures": [ + "put(value: any, key?: IDBKeyRange | number | string | Date | IDBArrayKey): IDBRequest" + ] + } + } + }, + "properties": { + "property": { + "keyPath": { + "name": "keyPath", + "override-type": "string | string[]" + } + } + } + }, + "IDBIndex": { + "name": "IDBIndex", + "properties": { + "property": { + "keyPath": { + "name": "keyPath", + "override-type": "string | string[]" + } + } + }, + "methods": { + "method": { + "openCursor": { + "name": "openCursor", + "override-signatures": [ + "openCursor(range?: IDBKeyRange | number | string | Date | IDBArrayKey, direction?: IDBCursorDirection): IDBRequest" + ] + }, + "openKeyCursor": { + "name": "openKeyCursor", + "override-signatures": [ + "openKeyCursor(range?: IDBKeyRange | number | string | Date | IDBArrayKey, direction?: IDBCursorDirection): IDBRequest" + ] + }, + "count": { + "name": "count", + "override-signatures": [ + "count(key?: IDBKeyRange | number | string | Date | IDBArrayKey): IDBRequest" + ] + }, + "get": { + "name": "get", + "override-signatures": [ + "get(key: IDBKeyRange | number | string | Date | IDBArrayKey): IDBRequest" + ] + }, + "getKey": { + "name": "getKey", + "override-signatures": [ + "getKey(key: IDBKeyRange | number | string | Date | IDBArrayKey): IDBRequest" + ] + } + } + } + }, + "IDBDatabase": { + "name": "IDBDatabase", + "methods": { + "method": { + "createObjectStore": { + "name": "createObjectStore", + "override-signatures": [ + "createObjectStore(name: string, optionalParameters?: IDBObjectStoreParameters): IDBObjectStore" + ] + }, + "transaction": { + "name": "transaction", + "override-signatures": [ + "transaction(storeNames: string | string[], mode?: IDBTransactionMode): IDBTransaction" + ] + } + } + }, + "properties": { + "property": { + "version": { + "name": "version", + "override-type": "number" + } + } + } + }, + "CanvasRenderingContext2D": { + "name": "CanvasRenderingContext2D", + "methods": { + "method": { + "drawImage": { + "name": "drawImage", + "override-signatures": [ + "drawImage(image: HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | ImageBitmap, dstX: number, dstY: number): void", + "drawImage(image: HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | ImageBitmap, dstX: number, dstY: number, dstW: number, dstH: number): void", + "drawImage(image: HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | ImageBitmap, srcX: number, srcY: number, srcW: number, srcH: number, dstX: number, dstY: number, dstW: number, dstH: number): void" + ] + }, + "clip": { + "name": "clip", + "override-signatures": [ + "clip(fillRule?: CanvasFillRule): void", + "clip(path: Path2D, fillRule?: CanvasFillRule): void" + ] + }, + "fill": { + "name": "fill", + "override-signatures": [ + "fill(fillRule?: CanvasFillRule): void", + "fill(path: Path2D, fillRule?: CanvasFillRule): void" + ] + }, + "isPointInPath": { + "name": "isPointInPath", + "override-signatures": [ + "isPointInPath(x: number, y: number, fillRule?: CanvasFillRule): boolean", + "isPointInPath(path: Path2D, x: number, y: number, fillRule?: CanvasFillRule): boolean" + ] + }, + "isPointInStroke": { + "name": "isPointInStroke", + "override-signatures": [ + "isPointInStroke(x: number, y: number, fillRule?: CanvasFillRule): boolean", + "isPointInStroke(path: Path2D, x: number, y: number, fillRule?: CanvasFillRule): boolean" + ] + } + } + }, + "properties": { + "property": { + "fillStyle": { + "name": "fillStyle", + "override-type": "string | CanvasGradient | CanvasPattern" + }, + "strokeStyle": { + "name": "strokeStyle", + "override-type": "string | CanvasGradient | CanvasPattern" + } + } + } + }, + "WebGLRenderingContext": { + "name": "WebGLRenderingContext", + "methods": { + "method": { + "texSubImage2D": { + "name": "texSubImage2D", + "override-signatures": [ + "texSubImage2D(target: number, level: number, xoffset: number, yoffset: number, width: number, height: number, format: number, type: number, pixels: ArrayBufferView | null): void", + "texSubImage2D(target: number, level: number, xoffset: number, yoffset: number, format: number, type: number, pixels: ImageBitmap | ImageData | HTMLVideoElement | HTMLImageElement | HTMLCanvasElement): void" + ] + }, + "texImage2D": { + "name": "texImage2D", + "override-signatures": [ + "texImage2D(target: number, level: number, internalformat: number, width: number, height: number, border: number, format: number, type: number, pixels: ArrayBufferView | null): void", + "texImage2D(target: number, level: number, internalformat: number, format: number, type: number, pixels: ImageBitmap | ImageData | HTMLVideoElement | HTMLImageElement | HTMLCanvasElement): void" + ] + }, + "pixelStorei": { + "name": "pixelStorei", + "override-signatures": [ + "pixelStorei(pname: number, param: number | boolean): void" + ] + }, + "uniform1fv": { + "name": "uniform1fv", + "override-signatures": [ + "uniform1fv(location: WebGLUniformLocation, v: Float32Array | ArrayLike): void" + ] + }, + "uniform2fv": { + "name": "uniform2fv", + "override-signatures": [ + "uniform2fv(location: WebGLUniformLocation, v: Float32Array | ArrayLike): void" + ] + }, + "uniform3fv": { + "name": "uniform3fv", + "override-signatures": [ + "uniform3fv(location: WebGLUniformLocation, v: Float32Array | ArrayLike): void" + ] + }, + "uniform4fv": { + "name": "uniform4fv", + "override-signatures": [ + "uniform4fv(location: WebGLUniformLocation, v: Float32Array | ArrayLike): void" + ] + }, + "uniform1iv": { + "name": "uniform1iv", + "override-signatures": [ + "uniform1iv(location: WebGLUniformLocation, v: Int32Array | ArrayLike): void" + ] + }, + "uniform2iv": { + "name": "uniform2iv", + "override-signatures": [ + "uniform2iv(location: WebGLUniformLocation, v: Int32Array | ArrayLike): void" + ] + }, + "uniform3iv": { + "name": "uniform3iv", + "override-signatures": [ + "uniform3iv(location: WebGLUniformLocation, v: Int32Array | ArrayLike): void" + ] + }, + "uniform4iv": { + "name": "uniform4iv", + "override-signatures": [ + "uniform4iv(location: WebGLUniformLocation, v: Int32Array | ArrayLike): void" + ] + }, + "uniformMatrix2fv": { + "name": "uniformMatrix2fv", + "override-signatures": [ + "uniformMatrix2fv(location: WebGLUniformLocation, transpose: boolean, value: Float32Array | ArrayLike): void" + ] + }, + "uniformMatrix3fv": { + "name": "uniformMatrix3fv", + "override-signatures": [ + "uniformMatrix3fv(location: WebGLUniformLocation, transpose: boolean, value: Float32Array | ArrayLike): void" + ] + }, + "uniformMatrix4fv": { + "name": "uniformMatrix4fv", + "override-signatures": [ + "uniformMatrix4fv(location: WebGLUniformLocation, transpose: boolean, value: Float32Array | ArrayLike): void" + ] + }, + "vertexAttrib1fv": { + "name": "vertexAttrib1fv", + "override-signatures": [ + "vertexAttrib1fv(indx: number, values: Float32Array | number[]): void" + ] + }, + "vertexAttrib2fv": { + "name": "vertexAttrib2fv", + "override-signatures": [ + "vertexAttrib2fv(indx: number, values: Float32Array | number[]): void" + ] + }, + "vertexAttrib3fv": { + "name": "vertexAttrib3fv", + "override-signatures": [ + "vertexAttrib3fv(indx: number, values: Float32Array | number[]): void" + ] + }, + "vertexAttrib4fv": { + "name": "vertexAttrib4fv", + "override-signatures": [ + "vertexAttrib4fv(indx: number, values: Float32Array | number[]): void" + ] + }, + "getExtension": { + "name": "getExtension", + "override-signatures": [ + "getExtension(extensionName: \"EXT_blend_minmax\"): EXT_blend_minmax | null", + "getExtension(extensionName: \"EXT_texture_filter_anisotropic\"): EXT_texture_filter_anisotropic | null", + "getExtension(extensionName: \"EXT_frag_depth\"): EXT_frag_depth | null", + "getExtension(extensionName: \"EXT_shader_texture_lod\"): EXT_shader_texture_lod | null", + "getExtension(extensionName: \"EXT_sRGB\"): EXT_sRGB | null", + "getExtension(extensionName: \"OES_vertex_array_object\"): OES_vertex_array_object | null", + "getExtension(extensionName: \"WEBGL_color_buffer_float\"): WEBGL_color_buffer_float | null", + "getExtension(extensionName: \"WEBGL_compressed_texture_astc\"): WEBGL_compressed_texture_astc | null", + "getExtension(extensionName: \"WEBGL_compressed_texture_s3tc_srgb\"): WEBGL_compressed_texture_s3tc_srgb | null", + "getExtension(extensionName: \"WEBGL_debug_shaders\"): WEBGL_debug_shaders | null", + "getExtension(extensionName: \"WEBGL_draw_buffers\"): WEBGL_draw_buffers | null", + "getExtension(extensionName: \"WEBGL_lose_context\"): WEBGL_lose_context | null", + "getExtension(extensionName: \"WEBGL_depth_texture\"): WEBGL_depth_texture | null", + "getExtension(extensionName: \"WEBGL_debug_renderer_info\"): WEBGL_debug_renderer_info | null", + "getExtension(extensionName: \"WEBGL_compressed_texture_s3tc\"): WEBGL_compressed_texture_s3tc | null", + "getExtension(extensionName: \"OES_texture_half_float_linear\"): OES_texture_half_float_linear | null", + "getExtension(extensionName: \"OES_texture_half_float\"): OES_texture_half_float | null", + "getExtension(extensionName: \"OES_texture_float_linear\"): OES_texture_float_linear | null", + "getExtension(extensionName: \"OES_texture_float\"): OES_texture_float | null", + "getExtension(extensionName: \"OES_standard_derivatives\"): OES_standard_derivatives | null", + "getExtension(extensionName: \"OES_element_index_uint\"): OES_element_index_uint | null", + "getExtension(extensionName: \"ANGLE_instanced_arrays\"): ANGLE_instanced_arrays | null", + "getExtension(extensionName: string): any" + ] + } + } + } + }, + "HTMLCanvasElement": { + "name": "HTMLCanvasElement", + "methods": { + "method": { + "getContext": { + "name": "getContext", + "override-signatures": [ + "getContext(contextId: \"2d\", contextAttributes?: Canvas2DContextAttributes): CanvasRenderingContext2D | null", + "getContext(contextId: \"webgl\" | \"experimental-webgl\", contextAttributes?: WebGLContextAttributes): WebGLRenderingContext | null", + "getContext(contextId: string, contextAttributes?: {}): CanvasRenderingContext2D | WebGLRenderingContext | null" + ] + } + } + } + }, + "BeforeUnloadEvent": { + "name": "BeforeUnloadEvent", + "properties": { + "property": { + "returnValue": { + "name": "returnValue", + "override-type": "any" + } + } + } + }, + "HTMLEmbedElement": { + "name": "HTMLEmbedElement", + "properties": { + "property": { + "hidden": { + "name": "hidden", + "override-type": "any" + } + } + } + }, + "SVGStylable": { + "name": "SVGStylable", + "properties": { + "property": { + "className": { + "name": "className", + "override-type": "any" + } + } + } + }, + "SVGElement": { + "name": "SVGElement", + "properties": { + "property": { + "className": { + "name": "className", + "override-type": "any" + } + } + } + }, + "SVGSVGElement": { + "name": "SVGSVGElement", + "methods": { + "method": { + "getEnclosureList": { + "name": "getEnclosureList", + "override-signatures": [ + "getEnclosureList(rect: SVGRect, referenceElement: SVGElement): NodeListOf" + ] + }, + "getIntersectionList": { + "name": "getIntersectionList", + "override-signatures": [ + "getIntersectionList(rect: SVGRect, referenceElement: SVGElement): NodeListOf" + ] + } + } + } + }, + "Console": { + "name": "Console", + "methods": { + "method": { + "debug": { + "name": "debug", + "override-signatures": [ + "debug(message?: any, ...optionalParams: any[]): void" + ] + }, + "dir": { + "name": "dir", + "override-signatures": [ + "dir(value?: any, ...optionalParams: any[]): void" + ] + }, + "dirxml": { + "name": "dirxml", + "override-signatures": [ + "dirxml(value: any): void" + ] + }, + "error": { + "name": "error", + "override-signatures": [ + "error(message?: any, ...optionalParams: any[]): void" + ] + }, + "info": { + "name": "info", + "override-signatures": [ + "info(message?: any, ...optionalParams: any[]): void" + ] + }, + "log": { + "name": "log", + "override-signatures": [ + "log(message?: any, ...optionalParams: any[]): void" + ] + }, + "warn": { + "name": "warn", + "override-signatures": [ + "warn(message?: any, ...optionalParams: any[]): void" + ] + }, + "group": { + "name": "group", + "override-signatures": [ + "group(groupTitle?: string, ...optionalParams: any[]): void" + ] + }, + "groupCollapsed": { + "name": "groupCollapsed", + "override-signatures": [ + "groupCollapsed(groupTitle?: string, ...optionalParams: any[]): void" + ] + }, + "trace": { + "name": "trace", + "override-signatures": [ + "trace(message?: any, ...optionalParams: any[]): void" + ] + } + } + } + }, + "Blob": { + "name": "Blob", + "constructor": { + "override-signatures": [ + "new (blobParts?: any[], options?: BlobPropertyBag): Blob" + ] + } + }, + "FormData": { + "name": "FormData", + "constructor": { + "signature": [ + { + "param-min-required": 0, + "type": "FormData", + "param": [ + { + "name": "form", + "type": "HTMLFormElement", + "type-original": "HTMLFormElement" + } + ], + "type-original": "FormData" + } + ], + "name": "" + }, + "methods": { + "method": { + "append": { + "name": "append", + "flavor": "Web", + "override-signatures": [ + "append(name: string, value: string | Blob, fileName?: string): void" + ] + } + } + } + }, + "MessageEvent": { + "name": "MessageEvent", + "constructor": { + "override-signatures": [ + "new(type: string, eventInitDict?: MessageEventInit): MessageEvent" + ] + } + }, + "File": { + "name": "File", + "constructor": { + "override-signatures": [ + "new (parts: (ArrayBuffer | ArrayBufferView | Blob | string)[], filename: string, properties?: FilePropertyBag): File" + ] + }, + "properties": { + "property": { + "lastModifiedDate": { + "name": "lastModifiedDate", + "read-only": "1", + "override-type": "Date" + } + } + } + }, + "ImageData": { + "name": "ImageData", + "constructor": { + "override-signatures": [ + "new(width: number, height: number): ImageData", + "new(array: Uint8ClampedArray, width: number, height: number): ImageData" + ] + }, + "properties": { + "property": { + "data": { + "name": "data", + "override-type": "Uint8ClampedArray" + } + } + } + }, + "DOMException": { + "name": "DOMException", + "constructor": { + "override-signatures": [ + "new(message?: string, name?: string): DOMException" + ] + } + }, + "HTMLSelectElement": { + "name": "HTMLSelectElement", + "properties": { + "property": { + "selectedOptions": { + "name": "selectedOptions", + "override-type": "HTMLCollectionOf" + }, + "form": { + "name": "form", + "read-only": "1", + "override-type": "HTMLFormElement | null" + } + } + } + }, + "HTMLDataListElement": { + "name": "HTMLDataListElement", + "properties": { + "property": { + "options": { + "name": "options", + "override-type": "HTMLCollectionOf" + } + } + } + }, + "HTMLTableElement": { + "name": "HTMLTableElement", + "methods": { + "method": { + "insertRow": { + "name": "insertRow", + "override-signatures": [ + "insertRow(index?: number): HTMLTableRowElement" + ] + }, + "createTHead": { + "name": "createTHead", + "override-signatures": [ + "createTHead(): HTMLTableSectionElement" + ] + }, + "createTBody": { + "name": "createTBody", + "override-signatures": [ + "createTBody(): HTMLTableSectionElement" + ] + }, + "createTFoot": { + "name": "createTFoot", + "override-signatures": [ + "createTFoot(): HTMLTableSectionElement" + ] + }, + "createCaption": { + "name": "createCaption", + "override-signatures": [ + "createCaption(): HTMLTableCaptionElement" + ] + } + } + }, + "properties": { + "property": { + "rows": { + "name": "rows", + "override-type": "HTMLCollectionOf" + }, + "tBodies": { + "name": "tBodies", + "override-type": "HTMLCollectionOf" + } + } + } + }, + "HTMLTableSectionElement": { + "name": "HTMLTableSectionElement", + "methods": { + "method": { + "insertRow": { + "name": "insertRow", + "override-signatures": [ + "insertRow(index?: number): HTMLTableRowElement" + ] + } + } + }, + "properties": { + "property": { + "rows": { + "name": "rows", + "override-type": "HTMLCollectionOf" + } + } + } + }, + "Element": { + "name": "Element", + "methods": { + "method": { + "getBoundingClientRect": { + "name": "getBoundingClientRect", + "override-signatures": [ + "getBoundingClientRect(): ClientRect | DOMRect" + ] + }, + "getClientRects": { + "name": "getClientRects", + "override-signatures": [ + "getClientRects(): ClientRectList | DOMRectList" + ] + }, + "getAttributeNodeNS": { + "name": "getAttributeNodeNS", + "override-signatures": [ + "getAttributeNodeNS(namespaceURI: string, localName: string): Attr | null" + ] + }, + "getAttributeNode": { + "name": "getAttributeNode", + "override-signatures": [ + "getAttributeNode(name: string): Attr | null" + ] + }, + "getElementsByTagNameNS": { + "name": "getElementsByTagNameNS", + "override-signatures": [ + "getElementsByTagNameNS(namespaceURI: \"http://www.w3.org/1999/xhtml\", localName: string): HTMLCollectionOf", + "getElementsByTagNameNS(namespaceURI: \"http://www.w3.org/2000/svg\", localName: string): HTMLCollectionOf", + "getElementsByTagNameNS(namespaceURI: string, localName: string): HTMLCollectionOf" + ] + }, + "msGetRegionContent": { + "name": "msGetRegionContent", + "override-signatures": [ + "msGetRegionContent(): any" + ] + } + } + } + }, + "HTMLMediaElement": { + "name": "HTMLMediaElement", + "properties": { + "property": { + "readyState": { + "name": "readyState", + "override-type": "number" + } + } + }, + "methods": { + "method": { + "play": { + "name": "play", + "override-signatures": [ + "play(): Promise" + ] + } + } + } + }, + "DataTransferItemList": { + "name": "DataTransferItemList", + "methods": { + "method": { + "item": { + "name": "item", + "override-signatures": [ + "item(index: number): DataTransferItem" + ] + } + } + }, + "overide-index-signatures": [ + "[name: number]: DataTransferItem" + ] + }, + "DataTransferItem": { + "name": "DataTransferItem", + "methods": { + "method": { + "webkitGetAsEntry": { + "name": "webkitGetAsEntry", + "override-signatures": [ + "webkitGetAsEntry(): any" + ] + } + } + } + }, + "StorageEvent": { + "name": "StorageEvent", + "constructor": { + "override-signatures": [ + "new (type: string, eventInitDict?: StorageEventInit): StorageEvent" + ] + } + }, + "IDBCursor": { + "name": "IDBCursor", + "properties": { + "property": { + "source": { + "name": "source", + "override-type": "IDBObjectStore | IDBIndex" + }, + "key": { + "name": "key", + "override-type": "IDBKeyRange | number | string | Date | IDBArrayKey" + } + } + }, + "methods": { + "method": { + "continue": { + "name": "continue", + "override-signatures": [ + "continue(key?: IDBKeyRange | number | string | Date | IDBArrayKey): void" + ] + } + } + } + }, + "IDBRequest": { + "name": "IDBRequest", + "properties": { + "property": { + "error": { + "name": "error", + "read-only": "1", + "override-type": "DOMException" + }, + "source": { + "name": "source", + "nullable": false, + "override-type": "IDBObjectStore | IDBIndex | IDBCursor" + } + } + } + }, + "IDBTransaction": { + "name": "IDBTransaction", + "properties": { + "property": { + "error": { + "name": "error", + "read-only": "1", + "override-type": "DOMException" + } + } + } + }, + "ClipboardEvent": { + "name": "ClipboardEvent", + "constructor": { + "override-signatures": [ + "new(type: string, eventInitDict?: ClipboardEventInit): ClipboardEvent" + ] + } + }, + "Storage": { + "name": "Storage", + "methods": { + "method": { + "getItem": { + "name": "getItem", + "override-signatures": [ + "getItem(key: string): string | null" + ] + }, + "key": { + "name": "key", + "override-signatures": [ + "key(index: number): string | null" + ] + } + } + } + }, + "HTMLOptionsCollection": { + "name": "HTMLOptionsCollection", + "extends": "HTMLCollectionOf" + }, + "SubtleCrypto": { + "name": "SubtleCrypto", + "methods": { + "method": { + "decrypt": { + "name": "decrypt", + "override-signatures": [ + "decrypt(algorithm: string | RsaOaepParams | AesCtrParams | AesCbcParams | AesCmacParams | AesGcmParams | AesCfbParams, key: CryptoKey, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer): PromiseLike" + ] + }, + "deriveBits": { + "name": "deriveBits", + "override-signatures": [ + "deriveBits(algorithm: string | EcdhKeyDeriveParams | DhKeyDeriveParams | ConcatParams | HkdfCtrParams | Pbkdf2Params, baseKey: CryptoKey, length: number): PromiseLike" + ] + }, + "deriveKey": { + "name": "deriveKey", + "override-signatures": [ + "deriveKey(algorithm: string | EcdhKeyDeriveParams | DhKeyDeriveParams | ConcatParams | HkdfCtrParams | Pbkdf2Params, baseKey: CryptoKey, derivedKeyType: string | AesDerivedKeyParams | HmacImportParams | ConcatParams | HkdfCtrParams | Pbkdf2Params, extractable: boolean, keyUsages: string[]): PromiseLike" + ] + }, + "digest": { + "name": "digest", + "override-signatures": [ + "digest(algorithm: string | Algorithm, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer): PromiseLike" + ] + }, + "encrypt": { + "name": "encrypt", + "override-signatures": [ + "encrypt(algorithm: string | RsaOaepParams | AesCtrParams | AesCbcParams | AesCmacParams | AesGcmParams | AesCfbParams, key: CryptoKey, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer): PromiseLike" + ] + }, + "exportKey": { + "name": "exportKey", + "override-signatures": [ + "exportKey(format: \"jwk\", key: CryptoKey): PromiseLike", + "exportKey(format: \"raw\" | \"pkcs8\" | \"spki\", key: CryptoKey): PromiseLike", + "exportKey(format: string, key: CryptoKey): PromiseLike" + ] + }, + "generateKey": { + "name": "generateKey", + "override-signatures": [ + "generateKey(algorithm: string, extractable: boolean, keyUsages: string[]): PromiseLike", + "generateKey(algorithm: RsaHashedKeyGenParams | EcKeyGenParams | DhKeyGenParams, extractable: boolean, keyUsages: string[]): PromiseLike", + "generateKey(algorithm: AesKeyGenParams | HmacKeyGenParams | Pbkdf2Params, extractable: boolean, keyUsages: string[]): PromiseLike" + ] + }, + "importKey": { + "name": "importKey", + "override-signatures": [ + "importKey(format: \"jwk\", keyData: JsonWebKey, algorithm: string | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | DhImportKeyParams, extractable: boolean, keyUsages: string[]): PromiseLike", + "importKey(format: \"raw\" | \"pkcs8\" | \"spki\", keyData: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer, algorithm: string | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | DhImportKeyParams, extractable: boolean, keyUsages: string[]): PromiseLike", + "importKey(format: string, keyData: JsonWebKey | Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer, algorithm: string | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | DhImportKeyParams, extractable: boolean, keyUsages: string[]): PromiseLike" + ] + }, + "sign": { + "name": "sign", + "override-signatures": [ + "sign(algorithm: string | RsaPssParams | EcdsaParams | AesCmacParams, key: CryptoKey, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer): PromiseLike" + ] + }, + "unwrapKey": { + "name": "unwrapKey", + "override-signatures": [ + "unwrapKey(format: string, wrappedKey: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer, unwrappingKey: CryptoKey, unwrapAlgorithm: string | Algorithm, unwrappedKeyAlgorithm: string | Algorithm, extractable: boolean, keyUsages: string[]): PromiseLike" + ] + }, + "verify": { + "name": "verify", + "override-signatures": [ + "verify(algorithm: string | RsaPssParams | EcdsaParams | AesCmacParams, key: CryptoKey, signature: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer): PromiseLike" + ] + }, + "wrapKey": { + "name": "wrapKey", + "override-signatures": [ + "wrapKey(format: string, key: CryptoKey, wrappingKey: CryptoKey, wrapAlgorithm: string | Algorithm): PromiseLike" + ] + } + } + } + }, + "HTMLInputElement": { + "name": "HTMLInputElement", + "properties": { + "property": { + "files": { + "name": "files", + "read-only": "1", + "override-type": "FileList | null" + }, + "form": { + "name": "form", + "read-only": "1", + "override-type": "HTMLFormElement | null" + } + } + }, + "methods": { + "method": { + "setSelectionRange": { + "name": "setSelectionRange", + "override-signatures": [ + "setSelectionRange(start: number, end: number, direction?: \"forward\" | \"backward\" | \"none\"): void" + ] + } + } + } + }, + "MouseEvent": { + "name": "MouseEvent", + "methods": { + "method": { + "initMouseEvent": { + "name": "initMouseEvent", + "override-signatures": [ + "initMouseEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, viewArg: Window, detailArg: number, screenXArg: number, screenYArg: number, clientXArg: number, clientYArg: number, ctrlKeyArg: boolean, altKeyArg: boolean, shiftKeyArg: boolean, metaKeyArg: boolean, buttonArg: number, relatedTargetArg: EventTarget | null): void" + ] + } + } + } + }, + "DataTransfer": { + "name": "DataTransfer", + "properties": { + "property": { + "types": { + "name": "types", + "read-only": "1", + "override-type": "string[]" + } + } + } + }, + "XPathEvaluator": { + "name": "XPathEvaluator", + "methods": { + "method": { + "evaluate": { + "name": "evaluate", + "override-signatures": [ + "evaluate(expression: string, contextNode: Node, resolver: XPathNSResolver | null, type: number, result: XPathResult | null): XPathResult" + ] + } + } + } + }, + "XPathExpression": { + "name": "XPathExpression", + "methods": { + "method": { + "evaluate": { + "name": "evaluate", + "override-signatures": [ + "evaluate(contextNode: Node, type: number, result: XPathResult | null): XPathResult" + ] + } + } + } + }, + "DOMStringMap": { + "name": "DOMStringMap", + "overide-index-signatures": [ + "[name: string]: string | undefined" + ] + }, + "DOMImplementation": { + "name": "DOMImplementation", + "methods": { + "method": { + "hasFeature": { + "name": "hasFeature", + "override-signatures": [ + "hasFeature(feature: string | null, version: string | null): boolean" + ] + }, + "createDocument": { + "name": "createDocument", + "override-signatures": [ + "createDocument(namespaceURI: string | null, qualifiedName: string | null, doctype: DocumentType | null): Document" + ] + } + } + } + }, + "TouchEvent": { + "name": "TouchEvent", + "constructor": { + "override-signatures": [ + "new(type: string, touchEventInit?: TouchEventInit): TouchEvent" + ] + } + }, + "Text": { + "name": "Text", + "constructor": { + "override-signatures": [ + "new(data?: string): Text" + ] + } + }, + "DragEvent": { + "name": "DragEvent", + "constructor": { + "override-signatures": [ + "new(type: \"drag\" | \"dragend\" | \"dragenter\" | \"dragexit\" | \"dragleave\" | \"dragover\" | \"dragstart\" | \"drop\", dragEventInit?: { dataTransfer?: DataTransfer }): DragEvent" + ] + } + }, + "HTMLAppletElement": { + "name": "HTMLAppletElement", + "properties": { + "property": { + "form": { + "name": "form", + "read-only": "1", + "override-type": "HTMLFormElement | null" + } + } + } + }, + "HTMLButtonElement": { + "name": "HTMLButtonElement", + "properties": { + "property": { + "form": { + "name": "form", + "read-only": "1", + "override-type": "HTMLFormElement | null" + } + } + } + }, + "HTMLFieldSetElement": { + "name": "HTMLFieldSetElement", + "properties": { + "property": { + "form": { + "name": "form", + "read-only": "1", + "override-type": "HTMLFormElement | null" + } + } + } + }, + "HTMLLabelElement": { + "name": "HTMLLabelElement", + "properties": { + "property": { + "form": { + "name": "form", + "read-only": "1", + "override-type": "HTMLFormElement | null" + } + } + } + }, + "HTMLLegendElement": { + "name": "HTMLLegendElement", + "properties": { + "property": { + "form": { + "name": "form", + "read-only": "1", + "override-type": "HTMLFormElement | null" + } + } + } + }, + "HTMLObjectElement": { + "name": "HTMLObjectElement", + "properties": { + "property": { + "form": { + "name": "form", + "read-only": "1", + "override-type": "HTMLFormElement | null" + } + } + } + }, + "HTMLOptGroupElement": { + "name": "HTMLOptGroupElement", + "properties": { + "property": { + "form": { + "name": "form", + "read-only": "1", + "override-type": "HTMLFormElement | null" + } + } + } + }, + "HTMLOptionElement": { + "name": "HTMLOptionElement", + "properties": { + "property": { + "form": { + "name": "form", + "read-only": "1", + "override-type": "HTMLFormElement | null" + } + } + } + }, + "HTMLOutputElement": { + "name": "HTMLOutputElement", + "properties": { + "property": { + "form": { + "name": "form", + "read-only": "1", + "override-type": "HTMLFormElement | null" + } + } + } + }, + "HTMLProgressElement": { + "name": "HTMLProgressElement", + "properties": { + "property": { + "form": { + "name": "form", + "read-only": "1", + "override-type": "HTMLFormElement | null" + } + } + } + }, + "HTMLTextAreaElement": { + "name": "HTMLTextAreaElement", + "properties": { + "property": { + "form": { + "name": "form", + "read-only": "1", + "override-type": "HTMLFormElement | null" + } + } + }, + "methods": { + "method": { + "setSelectionRange": { + "name": "setSelectionRange", + "override-signatures": [ + "setSelectionRange(start: number, end: number, direction?: \"forward\" | \"backward\" | \"none\"): void" + ] + } + } + } + }, + "HTMLegendElement": { + "name": "HTMLegendElement", + "properties": { + "property": { + "form": { + "name": "form", + "read-only": "1", + "override-type": "HTMLFormElement | null" + } + } + } + }, + "Headers": { + "name": "Headers", + "constructor": { + "override-signatures": [ + "new(init?: HeadersInit): Headers" + ] + } + }, + "ServiceWorkerContainer": { + "name": "ServiceWorkerContainer", + "methods": { + "method": { + "getRegistration": { + "name": "getRegistration", + "override-signatures": [ + "getRegistration(clientURL?: string): Promise" + ] + } + } + } + }, + "IntersectionObserverEntry": { + "name": "IntersectionObserverEntry", + "properties": { + "property": { + "boundingClientRect": { + "name": "boundingClientRect", + "read-only": "1", + "override-type": "ClientRect | DOMRect" + }, + "intersectionRect": { + "name": "intersectionRect", + "read-only": "1", + "override-type": "ClientRect | DOMRect" + }, + "rootBounds": { + "name": "rootBounds", + "read-only": "1", + "override-type": "ClientRect | DOMRect" + } + } + } + }, + "Range": { + "name": "Range", + "methods": { + "method": { + "getBoundingClientRect": { + "name": "getBoundingClientRect", + "override-signatures": [ + "getBoundingClientRect(): ClientRect | DOMRect" + ] + }, + "getClientRects": { + "name": "getClientRects", + "override-signatures": [ + "getClientRects(): ClientRectList | DOMRectList" + ] + } + } + } + }, + "WebSocket": { + "name": "WebSocket", + "methods": { + "method": { + "send": { + "name": "send", + "override-signatures": [ + "send(data: string | ArrayBuffer | Blob | ArrayBufferView): void" + ] + } + } + } + }, + "PushManager": { + "name": "PushManager", + "methods": { + "method": { + "getSubscription": { + "name": "getSubscription", + "override-signatures": [ + "getSubscription(): Promise" + ] + } + } + } + }, + "HTMLTableRowElement": { + "name": "HTMLTableRowElement", + "properties": { + "property": { + "cells": { + "name": "cells", + "override-type": "HTMLCollectionOf" + } + } + }, + "methods": { + "method": { + "insertCell": { + "name": "insertCell", + "override-signatures": [ + "insertCell(index?: number): HTMLTableDataCellElement" + ] + } + } + } + }, + "XMLHttpRequest": { + "name": "XMLHttpRequest", + "methods": { + "method": { + "send": { + "name": "send", + "override-signatures": [ + "send(data?: any): void" + ] + } + } + } + }, + "FileReader": { + "name": "FileReader", + "properties": { + "property": { + "result": { + "name": "result", + "override-type": "any" + } + } + } + }, + "MediaList": { + "name": "MediaList", + "properties": { + "property": { + "mediaText": { + "name": "mediaText", + "override-type": "string" + } + } + } + }, + "MutationRecord": { + "name": "MutationRecord", + "properties": { + "property": { + "type": { + "name": "type", + "override-type": "MutationRecordType" + } + } + } + }, + "CSSStyleSheet": { + "name": "CSSStyleSheet", + "properties": { + "property": { + "pages": { + "name": "pages", + "override-type": "any" + } + } + } + }, + "KeyboardEvent": { + "name": "KeyboardEvent", + "properties": { + "property": { + "char": { + "name": "char", + "override-type": "string", + "deprecated": 1 + } + } + } + }, + "URL": { + "name": "URL", + "constructor": { + "override-signatures": [ + "new(url: string, base?: string | URL): URL" + ] + } + }, + "EventTarget": { + "name": "EventTarget", + "methods": { + "method": { + "addEventListener": { + "name": "addEventListener", + "override-signatures": [ + "addEventListener(type: string, listener: EventListenerOrEventListenerObject | null, options?: boolean | AddEventListenerOptions): void" + ] + } + } + } + }, + "Client": { + "name": "Client", + "properties": { + "property": { + "type": { + "name": "type", + "override-type": "ClientTypes" + } + } + } + } + } + }, + "dictionaries": { + "dictionary": { + "CustomEventInit": { + "name": "CustomEventInit", + "members": { + "member": { + "detail": { + "name": "detail", + "override-type": "T", + "required": "false" + } + } + }, + "type-parameters": [ + "T = any" + ] + }, + "IDBObjectStoreParameters": { + "name": "IDBObjectStoreParameters", + "members": { + "member": { + "keyPath": { + "name": "keyPath", + "override-type": "string | string[]", + "required": "false" + } + } + } + }, + "Algorithm": { + "name": "Algorithm", + "members": { + "member": { + "name": { + "name": "name", + "override-type": "string" + } + } + } + }, + "RequestInit": { + "name": "RequestInit", + "members": { + "member": { + "headers": { + "name": "headers", + "override-type": "HeadersInit", + "required": "false" + } + } + } + }, + "ResponseInit": { + "name": "ResponseInit", + "members": { + "member": { + "headers": { + "name": "headers", + "override-type": "HeadersInit", + "required": "false" + } + } + } + }, + "PaymentMethodData": { + "name": "PaymentMethodData", + "members": { + "member": { + "supportedMethods": { + "name": "supportedMethods", + "override-type": "string | string[]" + } + } + } + }, + "PaymentDetailsModifier": { + "name": "PaymentDetailsModifier", + "members": { + "member": { + "supportedMethods": { + "name": "supportedMethods", + "override-type": "string | string[]" + } + } + } + }, + "ClientQueryOptions": { + "name": "ClientQueryOptions", + "members": { + "member": { + "type": { + "name": "type", + "override-type": "ClientTypes" + } + } + } + } + } + }, + "typedefs": { + "typedef": [] } -] \ No newline at end of file +} \ No newline at end of file diff --git a/inputfiles/removedTypes.json b/inputfiles/removedTypes.json index f3ce0bfbc..6b72c2254 100644 --- a/inputfiles/removedTypes.json +++ b/inputfiles/removedTypes.json @@ -1,107 +1,52 @@ -[ - { - "kind": "method", - "interface": "HTMLElement", - "name": "getElementsByClassName" - }, - { - "kind": "property", - "interface": "HTMLElement", - "name": "id" - }, - { - "kind": "property", - "interface": "HTMLElement", - "name": "className" - }, - { - "kind": "method", - "interface": "HTMLElement", - "name": "contains" - }, - { - "kind": "method", - "interface": "HTMLElement", - "name": "scrollIntoView" - }, - { - "kind": "method", - "interface": "StorageEvent", - "name": "initStorageEvent" - }, - { - "kind": "property", - "interface": "StorageEvent", - "name": "key" - }, - { - "kind": "property", - "interface": "StorageEvent", - "name": "oldValue" - }, - { - "kind": "property", - "interface": "StorageEvent", - "name": "newValue" - }, - { - "kind": "property", - "interface": "StorageEvent", - "name": "storageArea" - }, - { - "kind": "property", - "interface": "XMLHttpRequest", - "name": "msCaching" - }, - { - "kind": "method", - "interface": "HTMLElement", - "name": "insertAdjacentElement" - }, - { - "kind": "method", - "interface": "HTMLElement", - "name": "insertAdjacentHTML" - }, - { - "kind": "method", - "interface": "HTMLElement", - "name": "insertAdjacentText" - }, - { - "kind": "indexer", - "interface": "Window", - "signatures": [ - "[index: number]: Window" - ] - }, - { - "kind": "typedef", - "name": "JSON" - }, - { - "kind": "typedef", - "name": "HeadersInit" - }, - { - "kind": "property", - "interface": "HTMLObjectElement", - "name": "alt" - }, - { - "kind": "interface", - "interface": "WebKitEntriesCallback", - "flavor": "Worker" - }, - { - "kind": "interface", - "interface": "WebKitErrorCallback", - "flavor": "Worker" - }, - { - "kind": "interface", - "interface": "WebKitFileCallback", - "flavor": "Worker" +{ + "callback-functions": { + "callback-function": { + "Function": {} + } + }, + "mixin-interfaces": { + "interface": {} + }, + "callback-interfaces": { + "interface": {} + }, + "enums": { + "enum": { + "ClientType": {} + } + }, + "interfaces": { + "interface": { + "HTMLElement": { + "methods": { + "method": { + "scrollIntoView": {}, + "insertAdjacentElement": {}, + "insertAdjacentHTML": {}, + "insertAdjacentText": {} + } + } + }, + "StorageEvent": { + "methods": { + "method": { + "initStorageEvent": {} + } + } + }, + "Window": { + "properties": { + "property": { + "browser": {} + } + } + } + } + }, + "dictionaries": { + "dictionary": {} + }, + "typedefs": { + "typedef": [] } -] \ No newline at end of file +} \ No newline at end of file diff --git a/inputfiles/sample.json b/inputfiles/sample.json deleted file mode 100644 index 000f0820f..000000000 --- a/inputfiles/sample.json +++ /dev/null @@ -1,380 +0,0 @@ -[ - { - "kind": "property", - "interface": "Window", - "exposeGlobally": false, - "name": "URL", - "type": "URL" - }, - { - "kind": "property", - "interface": "Element", - "name": "id", - "type": "string" - }, - { - "kind": "property", - "interface": "Element", - "name": "className", - "readonly": true, - "type": "string" - }, - { - "kind": "property", - "interface": "SVGElement", - "name": "className", - "type": "any" - }, - { - "kind": "interface", - "name": "NodeListOf", - "flavor": "web", - "extends": "NodeList", - "properties": [ - { - "name": "length", - "type": "number" - } - ], - "methods": [ - { - "name": "item", - "signatures": [ - "item(index: number): TNode" - ] - } - ], - "indexer": [ - { - "signatures": [ - "[index: number]: TNode" - ] - } - ] - }, - { - "kind": "interface", - "name": "BlobPropertyBag", - "constructorSignatures": [ - "new(): NodeList" - ], - "properties": [ - { - "name": "type?", - "type": "string" - }, - { - "name": "endings?", - "type": "string" - } - ] - }, - { - "kind": "interface", - "name": "FilePropertyBag", - "properties": [ - { - "name": "type?", - "type": "string" - }, - { - "name": "lastModified?", - "type": "number" - } - ] - }, - { - "kind": "interface", - "name": "EventListenerObject", - "methods": [ - { - "name": "handleEvent", - "signatures": [ - "handleEvent(evt: Event): void" - ] - } - ] - }, - { - "kind": "interface", - "name": "MessageEventInit", - "extends": "EventInit", - "properties": [ - { - "name": "data?", - "type": "any" - }, - { - "name": "origin?", - "type": "string" - }, - { - "name": "lastEventId?", - "type": "string" - }, - { - "name": "channel?", - "type": "string" - }, - { - "name": "source?", - "type": "any" - }, - { - "name": "ports?", - "type": "MessagePort[]" - } - ] - }, - { - "kind": "interface", - "name": "ProgressEventInit", - "extends": "EventInit", - "properties": [ - { - "name": "lengthComputable?", - "type": "boolean" - }, - { - "name": "loaded?", - "type": "number" - }, - { - "name": "total?", - "type": "number" - } - ] - }, - { - "kind": "method", - "interface": "HTMLElement", - "name": "getElementsByClassName" - }, - { - "kind": "property", - "interface": "HTMLElement", - "name": "id" - }, - { - "kind": "property", - "interface": "HTMLElement", - "name": "className" - }, - { - "kind": "method", - "interface": "WebGLRenderingContext", - "name": "texSubImage2D", - "signatures": [ - "texSubImage2D(target: number, level: number, xoffset: number, yoffset: number, width: number, height: number, format: number, type: number, pixels: ArrayBufferView): void", - "texSubImage2D(target: number, level: number, xoffset: number, yoffset: number, format: number, type: number, image: HTMLImageElement): void", - "texSubImage2D(target: number, level: number, xoffset: number, yoffset: number, format: number, type: number, canvas: HTMLCanvasElement): void", - "texSubImage2D(target: number, level: number, xoffset: number, yoffset: number, format: number, type: number, video: HTMLVideoElement): void", - "texSubImage2D(target: number, level: number, xoffset: number, yoffset: number, format: number, type: number, pixels: ImageData): void" - ] - }, - { - "kind": "method", - "interface": "WebGLRenderingContext", - "name": "texImage2D", - "signatures": [ - "texImage2D(target: number, level: number, internalformat: number, width: number, height: number, border: number, format: number, type: number, pixels: ArrayBufferView): void", - "texImage2D(target: number, level: number, internalformat: number, format: number, type: number, image: HTMLImageElement): void", - "texImage2D(target: number, level: number, internalformat: number, format: number, type: number, canvas: HTMLCanvasElement): void", - "texImage2D(target: number, level: number, internalformat: number, format: number, type: number, video: HTMLVideoElement): void", - "texImage2D(target: number, level: number, internalformat: number, format: number, type: number, pixels: ImageData): void" - ] - }, - { - "kind": "method", - "interface": "XMLHttpRequest", - "name": "send", - "signatures": [ - "send(data?: string): void", - "send(data?: any): void" - ], - "webOnlySignatures": [ - "send(data?: Document): void" - ] - }, - { - "kind": "method", - "interface": "HTMLCanvasElement", - "name": "getContext", - "signatures": [ - "getContext(contextId: \"2d\"): CanvasRenderingContext2D", - "getContext(contextId: \"experimental-webgl\"): WebGLRenderingContext", - "getContext(contextId: string, ...args: any[]): CanvasRenderingContext2D | WebGLRenderingContext" - ] - }, - { - "kind": "method", - "name": "alert", - "signatures": [ - "alert(message?: any): void" - ] - }, - { - "kind": "method", - "interface": "Document", - "name": "open", - "signatures": [ - "open(url?: string, name?: string, features?: string, replace?: boolean): Document" - ] - }, - { - "kind": "method", - "interface": "Document", - "name": "getElementById", - "signatures": [ - "getElementById(elementId: string): HTMLElement" - ] - }, - { - "kind": "method", - "interface": "NodeSelector", - "name": "querySelectorAll", - "signatures": [ - "querySelectorAll(selectors: string): NodeListOf" - ] - }, - { - "kind": "method", - "name": "getElementsByTagNameNS", - "signatures": [ - "getElementsByTagNameNS(namespaceURI: string, localName: string): NodeListOf" - ] - }, - { - "kind": "method", - "name": "getElementsByClassName", - "signatures": [ - "getElementsByClassName(classNames: string): NodeListOf" - ] - }, - { - "kind": "method", - "name": "getElementsByName", - "signatures": [ - "getElementsByName(elementName: string): NodeListOf" - ] - }, - { - "kind": "property", - "interface": "CanvasRenderingContext2D", - "name": "fillStyle", - "type": "string | CanvasGradient | CanvasPattern" - }, - { - "kind": "property", - "interface": "CanvasRenderingContext2D", - "name": "strokeStyle", - "type": "string | CanvasGradient | CanvasPattern" - }, - { - "kind": "property", - "interface": "BeforeUnloadEvent", - "name": "returnValue", - "type": "any" - }, - { - "kind": "property", - "interface": "HTMLEmbedElement", - "name": "hidden", - "type": "any" - }, - { - "kind": "property", - "name": "documentElement", - "type": "HTMLElement" - }, - { - "kind": "property", - "interface": "SVGStylable", - "name": "className", - "type": "any" - }, - { - "kind": "property", - "interface": "SVGElement", - "name": "className", - "type": "any" - }, - { - "kind": "property", - "interface": "Window", - "name": "orientation", - "type": "string | number" - }, - { - "kind": "method", - "interface": "Element", - "static": true, - "signatures": [ "getElementsByClassName(classNames: string): NodeListOf" ] - }, - { - "kind": "constructor", - "interface": "File", - "signatures": [ "new (parts: (ArrayBuffer | ArrayBufferView | Blob | string)[], filename: string, properties?: FilePropertyBag): File" ] - }, - { - "kind": "indexer", - "interface": "HTMLCollection", - "signatures": [ "[index: number]: Element" ] - }, - { - "kind": "signatureoverload", - "name": "createElementNS", - "interface": "Document", - "signatures": [ "createElementNS(namespaceURI: \"http://www.w3.org/2000/svg\", qualifiedName: \"a\"): SVGAElement" ] - }, - { - "kind": "typedef", - "name": "IDBValidKey", - "type": "number | string | Date | IDBArrayKey" - }, - { - "kind": "extends", - "baseInterface": "ParentNode", - "interface": "Document" - }, - { - "kind": "interface", - "interface": "CustomEventInit", - "typeParameters": [ - "T = any" - ] - }, - { - "kind": "interface", - "name": "ParentNode", - "flavor": "DOM", - "properties": [ - { - "name": "children", - "readonly": true, - "type": "HTMLCollection" - } - ] - }, - { - "kind": "interface", - "name": "HTMLSlotElement", - "extends": "HTMLElement", - "flavor": "Web", - "tagNames": [ "slot" ], - "properties": [ - { - "name": "name", - "type": "string" - } - ], - "methods": [ - { - "name": "assignedNodes", - "signatures": [ - "assignedNodes(options?: AssignedNodesOptions): Node[]" - ] - } - ] - } -] diff --git a/inputfiles/webworkers.specidl.xml b/inputfiles/webworkers.specidl.xml deleted file mode 100644 index 2929d918d..000000000 --- a/inputfiles/webworkers.specidl.xml +++ /dev/null @@ -1,318 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - window - worker - sharedworker - all - - - auxiliary - top-level - nested - none - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - WorkerUtils - WindowConsole - GlobalFetch - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - NavigatorID - NavigatorOnLine - NavigatorBeacon - NavigatorConcurrentHardware - - - - - WindowBase64 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 000000000..5a50a25d9 --- /dev/null +++ b/package.json @@ -0,0 +1,14 @@ +{ + "name": "TSJS-lib-generator", + "private": true, + "scripts": { + "build": "tsc --p ./tsconfig.json && node ./lib/index.js", + "baseline-accept": "cpx generated\\* baselines\\", + "test": "tsc --p ./tsconfig.json && node ./lib/index.js && node ./lib/test.js" + }, + "dependencies": { + "@types/node": "^9.4.6", + "cpx": "^1.5.0", + "typescript": "next" + } +} diff --git a/paket.dependencies b/paket.dependencies deleted file mode 100644 index b0804b5c6..000000000 --- a/paket.dependencies +++ /dev/null @@ -1,4 +0,0 @@ -source https://nuget.org/api/v2 - -nuget FSharp.Data -nuget FAKE diff --git a/paket.lock b/paket.lock deleted file mode 100644 index 4ee6620a3..000000000 --- a/paket.lock +++ /dev/null @@ -1,6 +0,0 @@ -NUGET - remote: https://www.nuget.org/api/v2 - FAKE (4.61) - FSharp.Data (2.3.2) - Zlib.Portable (>= 1.11) - framework: portable-net45+sl5+win8, portable-net45+win8, portable-net45+win8+wp8+wpa81 - Zlib.Portable (1.11) - framework: portable-net45+sl5+win8, portable-net45+win8, portable-net45+win8+wp8+wpa81 diff --git a/sample.xml b/sample.xml deleted file mode 100644 index 3cea2a352..000000000 --- a/sample.xml +++ /dev/null @@ -1,13519 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - segments - sequence - - - suspended - running - closed - - - lowpass - highpass - bandpass - lowshelf - highshelf - peaking - notch - allpass - - - nonzero - evenodd - - - max - clamped-max - explicit - - - speakers - discrete - - - linear - inverse - exponential - - - character - word - sentence - textedit - - - mouse - keyboard - gamepad - - - next - nextunique - prev - prevunique - - - pending - done - - - readonly - readwrite - versionchange - - - inactive - active - disambiguation - - - FIDO_2_0 - - - os - stun - turn - peer-derived - - - failed - direct - relay - - - description - localclientevent - inbound-network - outbound-network - inbound-payload - outbound-payload - transportdiagnostics - - - Embedded - USB - NFC - BT - - - unknown - defer - allow - deny - - - geolocation - unlimitedIndexedDBQuota - media - pointerlock - webnotifications - - - audioinput - audiooutput - videoinput - - - license-request - license-renewal - license-release - individualization-request - - - temporary - persistent-license - persistent-release-message - - - usable - expired - output-downscaled - output-not-allowed - status-pending - internal-error - - - required - optional - not-allowed - - - live - ended - - - up - down - left - right - - - navigate - reload - back_forward - prerender - - - auto - ltr - rtl - - - default - denied - granted - - - sine - square - sawtooth - triangle - custom - - - none - 2x - 4x - - - equalpower - - - success - fail - - - - shipping - delivery - pickup - - - p256dh - auth - - - granted - denied - prompt - - - balanced - max-compat - max-bundle - - - maintain-framerate - maintain-resolution - balanced - - - auto - client - server - - - new - connecting - connected - closed - - - host - srflx - prflx - relay - - - RTP - RTCP - - - new - checking - connected - completed - failed - disconnected - closed - - - all - nohost - relay - - - new - gathering - complete - - - new - gathering - complete - - - udp - tcp - - - controlling - controlled - - - active - passive - so - - - none - relay - all - - - new - checking - connected - completed - disconnected - closed - - - offer - pranswer - answer - - - stable - have-local-offer - have-remote-offer - have-local-pranswer - have-remote-pranswer - closed - - - frozen - waiting - inprogress - failed - succeeded - cancelled - - - host - serverreflexive - peerreflexive - relayed - - - inboundrtp - outboundrtp - session - datachannel - track - transport - candidatepair - localcandidate - remotecandidate - - - - no-referrer - no-referrer-when-downgrade - origin-only - origin-when-cross-origin - unsafe-url - - - default - no-store - reload - no-cache - force-cache - - - omit - same-origin - include - - - - document - sharedworker - subresource - unknown - worker - - - navigate - same-origin - no-cors - cors - - - follow - error - manual - - - - audio - font - image - script - style - track - video - - - basic - cors - default - error - opaque - opaqueredirect - - - ScopedCred - - - installing - installed - activating - activated - redundant - - - usb - nfc - ble - - - user - environment - left - right - - - hidden - visible - prerender - unloaded - - - - arraybuffer - blob - document - json - text - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - CanvasPathMethods - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ChildNode - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - RandomSource - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GlobalEventHandlers - NodeSelector - DocumentEvent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - NodeSelector - - - ChildNode - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GlobalEventHandlers - ElementTraversal - NodeSelector - ChildNode - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - MSBaseReader - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - DOML2DeprecatedColorProperty - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GetSVGDocument - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - DOML2DeprecatedColorProperty - DOML2DeprecatedSizeProperty - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GetSVGDocument - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - DOML2DeprecatedColorProperty - DOML2DeprecatedSizeProperty - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GetSVGDocument - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - LinkStyle - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GetSVGDocument - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - LinkStyle - - - - - - - - - - - - - - - - - - HTMLTableAlignment - - - - - - - - - - - - - - - - - - - HTMLTableAlignment - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - HTMLTableAlignment - - - - - - - - - - - - - - - - - - - - - - - - - HTMLTableAlignment - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - MSBaseReader - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - NavigatorID - NavigatorOnLine - NavigatorContentUtils - NavigatorStorageUtils - NavigatorGeolocation - MSNavigatorDoNotTrack - MSFileSaver - NavigatorBeacon - NavigatorConcurrentHardware - NavigatorUserMedia - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - CanvasPathMethods - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Body - - - - - - - - - - - - - - - - - - - - - - - - - Body - - - - - - - - - - - - - - - - - - - - - - - - - - SVGURIReference - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SVGUnitTypes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SVGFilterPrimitiveStandardAttributes - - - - - - - - - - - - - - - - - - - SVGFilterPrimitiveStandardAttributes - - - - - - - - - - - - SVGFilterPrimitiveStandardAttributes - - - - - - - - - - - - - - - - - - - SVGFilterPrimitiveStandardAttributes - - - - - - - - - - - - - - - - - - - - - - SVGFilterPrimitiveStandardAttributes - - - - - - - - - - - - - - - - - - - - - - - SVGFilterPrimitiveStandardAttributes - - - - - - - - - - - - - - - - - - - - - SVGFilterPrimitiveStandardAttributes - - - - - - - - - - - - - - - - - - - - - - - - SVGFilterPrimitiveStandardAttributes - - - - - - - - - - - - - - - - - - - SVGFilterPrimitiveStandardAttributes - - - - - - - - - - - - - - - - - - - - SVGFilterPrimitiveStandardAttributes - SVGURIReference - - - - - - - - - - SVGFilterPrimitiveStandardAttributes - - - - - - - - - - - - - - - - - - SVGFilterPrimitiveStandardAttributes - - - - - - - - - - - - - SVGFilterPrimitiveStandardAttributes - - - - - - - - - - - - - - - - - - - - - - SVGFilterPrimitiveStandardAttributes - - - - - - - - - - - - - - - - - - - - - - - - - - - - SVGFilterPrimitiveStandardAttributes - - - - - - - - - - - - - - - - - - SVGFilterPrimitiveStandardAttributes - - - - - - - - - - - - - - - - SVGUnitTypes - SVGURIReference - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SVGUnitTypes - SVGURIReference - - - - - - - - - - - - SVGTests - - - - - - - - - - - - - - - - - - - - - - - - - - - - SVGURIReference - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SVGFitToViewBox - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SVGTests - SVGUnitTypes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SVGTests - SVGUnitTypes - SVGFitToViewBox - SVGURIReference - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SVGAnimatedPoints - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SVGAnimatedPoints - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - DocumentEvent - SVGFitToViewBox - SVGZoomAndPan - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SVGURIReference - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SVGFitToViewBox - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SVGURIReference - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SVGURIReference - - - - - - - - - - - - - - - SVGZoomAndPan - SVGFitToViewBox - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AbstractWorker - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - WindowTimers - WindowSessionStorage - WindowLocalStorage - WindowConsole - GlobalEventHandlers - IDBEnvironment - WindowBase64 - GlobalFetch - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AbstractWorker - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - XMLHttpRequestEventTarget - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - XMLHttpRequestEventTarget - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - WindowTimersExtension - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/emitter.ts b/src/emitter.ts new file mode 100644 index 000000000..b6296af11 --- /dev/null +++ b/src/emitter.ts @@ -0,0 +1,1109 @@ +import * as Browser from "./types"; +import { mapToArray, distinct, map, toNameMap, mapDefined, arrayToMap, flatMap } from "./helpers"; + +export const enum Flavor { + Web, + Worker, + ES6Iterators +} + +// Note: +// Eventhandler's name and the eventName are not just off by "on". +// For example, handlers named "onabort" may handle "SVGAbort" event in the XML file +type EventHandler = { name: string; eventName: string; eventType: string }; + +/// Decide which members of a function to emit +enum EmitScope { + StaticOnly, + InstanceOnly, + All +} + +const defaultEventType = "Event"; +// Extended types used but not defined in the spec +const extendedTypes = new Set(["ArrayBuffer", "ArrayBufferView", "DataView", "Int8Array", "Uint8Array", "Int16Array", "Uint16Array", "Uint8ClampedArray", "Int32Array", "Uint32Array", "Float32Array", "Float64Array"]); +const integerTypes = new Set(["byte", "octet", "short", "unsigned short", "long", "unsigned long", "long long", "unsigned long long"]); +const tsKeywords = new Set(["default", "delete", "continue"]); +const extendConflictsBaseTypes: Record }> = { + "AudioContext": { extendType: ["OfflineContext"], memberNames: new Set(["suspend"]) }, + "HTMLCollection": { extendType: ["HTMLFormControlsCollection"], memberNames: new Set(["namedItem"]) }, +}; +const eventTypeMap: Record = { + "abort": "UIEvent", + "complete": "Event", + "click": "MouseEvent", + "error": "ErrorEvent", + "load": "Event", + "loadstart": "Event", + "progress": "ProgressEvent", + "readystatechange": "ProgressEvent", + "resize": "UIEvent", + "timeout": "ProgressEvent" +}; + +// Used to decide if a member should be emitted given its static property and +// the intended scope level. +function matchScope(scope: EmitScope, x: Browser.Method) { + return scope === EmitScope.All || (scope === EmitScope.StaticOnly) === !!x.static; +} + +/// Parameter cannot be named "default" in JavaScript/Typescript so we need to rename it. +function adjustParamName(name: string) { + return tsKeywords.has(name) ? `_${name}` : name; +} + +function getElements(a: Record> | undefined, k: K): T[] { + return a ? mapToArray(a[k]) : []; +} + +function createTextWriter(newLine: string) { + let output: string; + let indent: number; + let lineStart: boolean; + /** print declarations conflicting with base interface to a side list to write them under a diffrent name later */ + let stack: { content: string, indent: number }[] = []; + + const indentStrings: string[] = ["", " "]; + function getIndentString(level: number) { + if (indentStrings[level] === undefined) { + indentStrings[level] = getIndentString(level - 1) + indentStrings[1]; + } + return indentStrings[level]; + } + + function write(s: string) { + if (lineStart) { + output += getIndentString(indent); + lineStart = false; + } + output += s; + } + + function reset(): void { + output = ""; + indent = 0; + lineStart = true; + stack = []; + } + + function writeLine() { + if (!lineStart) { + output += newLine; + lineStart = true; + } + } + + reset(); + + return { + reset: reset, + + resetIndent() { indent = 0; }, + increaseIndent() { indent++; }, + decreaseIndent() { indent--; }, + + print: write, + printLine(c: string) { writeLine(); write(c); }, + + clearStack() { stack = []; }, + stackIsEmpty() { return stack.length === 0; }, + printLineToStack(content: string) { stack.push({ content, indent }); }, + printStackContent() { + stack.forEach(e => { + const oldIndent = indent; + indent = e.indent; + this.printLine(e.content); + indent = oldIndent; + }); + }, + + getResult() { return output; } + }; +} + +function isEventHandler(p: Browser.Property) { + return p.type === "EventHandlerNonNull" || p.type === "EventHandler"; +} + +export function emitWebIDl(webidl: Browser.WebIdl, flavor: Flavor) { + // Global print target + const printer = createTextWriter("\n"); + + const pollutor = getElements(webidl.interfaces, "interface").find(i => flavor === Flavor.Web ? !!i["primary-global"] : !!i.global); + + const allNonCallbackInterfaces = getElements(webidl.interfaces, "interface").concat(getElements(webidl.mixins, "mixin")); + const allInterfaces = getElements(webidl.interfaces, "interface").concat( + getElements(webidl["callback-interfaces"], "interface"), + getElements(webidl.mixins, "mixin")); + + const allInterfacesMap = toNameMap(allInterfaces); + const allDictionariesMap = webidl.dictionaries ? webidl.dictionaries.dictionary : {}; + const allEnumsMap = webidl.enums ? webidl.enums.enum : {}; + const allCallbackFunctionsMap = webidl["callback-functions"] ? webidl["callback-functions"]!["callback-function"] : {}; + const allTypeDefsMap = new Set(webidl.typedefs && webidl.typedefs.typedef.map(td => td["new-type"])); + + /// Event name to event type map + const eNameToEType = arrayToMap(flatMap(allNonCallbackInterfaces, i => i.events ? i.events.event : []), e => e.name, e => eventTypeMap[e.name] || e.type); + + /// Tag name to element name map + const tagNameToEleName = getTagNameToElementNameMap(); + + /// Interface name to all its implemented / inherited interfaces name list map + /// e.g. If i1 depends on i2, i2 should be in dependencyMap.[i1.Name] + const iNameToIDependList = arrayToMap(allNonCallbackInterfaces, i => i.name, i => getExtendList(i.name).concat(getImplementList(i.name))); + + /// Distinct event type list, used in the "createEvent" function + const distinctETypeList = distinct( + flatMap(allNonCallbackInterfaces, i => i.events ? i.events.event.map(e => e.type) : []) + .concat(allNonCallbackInterfaces.filter(i => i.extends === "Event" && i.name.endsWith("Event")).map(i => i.name)) + ).sort(); + + /// Interface name to its related eventhandler name list map + /// Note: + /// In the xml file, each event handler has + /// 1. eventhanlder name: "onready", "onabort" etc. + /// 2. the event name that it handles: "ready", "SVGAbort" etc. + /// And they don't just differ by an "on" prefix! + const iNameToEhList = arrayToMap(allInterfaces, i => i.name, i => + !i.properties ? [] : mapDefined(mapToArray(i.properties.property), p => { + const eventName = p["event-handler"]!; + if (eventName === undefined) return undefined; + const eType = eNameToEType[eventName] || defaultEventType; + const eventType = eType === "Event" || dependsOn(eType, "Event") ? eType : defaultEventType; + return { name: p.name, eventName, eventType }; + })); + + // Map of interface.Name -> List of base interfaces with event handlers + const iNameToEhParents = arrayToMap(allInterfaces, i => i.name, getParentsWithEventHandler); + + return flavor === Flavor.ES6Iterators ? emitES6DomIterators() : emit(); + + function getTagNameToElementNameMap() { + const preferedElementMap: Record = { + "script": "HTMLScriptElement", + "a": "HTMLAnchorElement", + "title": "HTMLTitleElement", + "style": "HTMLStyleElement", + "td": "HTMLTableDataCellElement", + "th": "HTMLTableHeaderCellElement" + }; + + function resolveElementConflict(tagName: string, iNames: string[]) { + const name = preferedElementMap[tagName] || ""; + if (iNames.includes(name)) return name; + throw new Error("Element conflict occured! Typename: " + tagName); + } + + const result: Record = {}; + for (const i of allNonCallbackInterfaces) { + if (i.element) { + for (const e of i.element) { + result[e.name] = result[e.name] ? resolveElementConflict(e.name, [result[e.name], i.name]) : i.name; + } + } + } + return result; + } + + function getExtendList(iName: string): string[] { + const i = allInterfacesMap[iName]; + if (!i || !i.extends || i.extends === "Object") return []; + else return getExtendList(i.extends).concat(i.extends); + } + + function getImplementList(iName: string) { + const i = allInterfacesMap[iName]; + return i && i.implements || []; + } + + function getParentsWithEventHandler(i: Browser.Interface) { + function getParentEventHandler(i: Browser.Interface): Browser.Interface[] { + return iNameToEhList[i.name] && iNameToEhList[i.name].length ? [i] : getParentsWithEventHandler(i); + } + + const extendedParentWithEventHandler = allInterfacesMap[i.extends] && getParentEventHandler(allInterfacesMap[i.extends]) || []; + const implementedParentsWithEventHandler = i.implements ? flatMap(i.implements, i => getParentEventHandler(allInterfacesMap[i])) : []; + return extendedParentWithEventHandler.concat(implementedParentsWithEventHandler); + } + + function getEventTypeInInterface(eName: string, i: Browser.Interface) { + switch (i.name) { + case "XMLHttpRequest": + if (eName === "readystatechange") return "Event"; + else return "ProgressEvent"; + + case "IDBDatabase": + case "IDBTransaction": + case "MSBaseReader": + case "XMLHttpRequestEventTarget": + if (eName === "abort") return "Event"; + + default: + if (i.events) { + const event = i.events.event.find(e => e.name === eName); + if (event && event.type) { + return event.type; + } + } + return eNameToEType[eName] || "Event"; + } + } + + /// Determine if interface1 depends on interface2 + function dependsOn(i1Name: string, i2Name: string) { + return iNameToIDependList[i1Name] + ? iNameToIDependList[i1Name].includes(i2Name) + : i2Name === "Object"; + } + + // Some params have the type of "(DOMString or DOMString [] or Number)" + // we need to transform it into [“DOMString", "DOMString []", "Number"] + function decomposeTypes(t: string) { + return t.replace(/[\(\)]/g, "").split(" or "); + } + + /// Get typescript type using object dom type, object name, and it's associated interface name + function convertDomTypeToTsType(obj: Browser.Typed): string { + if (obj["override-type"]) return obj["override-type"]!; + if (!obj.type) throw new Error("Missing type " + JSON.stringify(obj)); + const type = convertDomTypeToTsTypeWorker(obj); + return type.nullable ? makeNullable(type.name) : type.name; + } + + function convertDomTypeToTsTypeWorker(obj: Browser.Typed): { name: string; nullable: boolean } { + let type; + if (typeof obj.type === "string") { + type = { name: covertDomTypeToTsTypeSimple(obj.type), nullable: !!obj.nullable }; + } + else { + const types = obj.type.map(convertDomTypeToTsTypeWorker); + const isAny = types.find(t => t.name === "any"); + if (isAny) { + type = { + name: "any", + nullable: false + }; + } + else { + type = { + name: types.map(t => t.name).join(" | "), + nullable: !!types.find(t => t.nullable) + }; + } + } + + const subtype = obj.subtype ? convertDomTypeToTsTypeWorker(obj.subtype) : undefined; + const subtypeString = subtype ? subtype.nullable ? makeNullable(subtype.name) : subtype.name : undefined; + + return { + name: (type.name === "Array" && subtypeString) ? makeArrayType(subtypeString) : `${type.name}${subtypeString ? `<${subtypeString}>` : ""}`, + nullable: type.nullable + }; + } + + function makeArrayType(elementType: string): string { + return elementType.includes("|") ? `(${elementType})[]` : `${elementType}[]`; + } + + function covertDomTypeToTsTypeSimple(objDomType: string): string { + switch (objDomType) { + case "AbortMode": return "String"; + case "bool": + case "boolean": + case "Boolean": return "boolean"; + case "CanvasPixelArray": return "number[]"; + case "DOMHighResTimeStamp": return "number"; + case "DOMString": return "string"; + case "DOMTimeStamp": return "number"; + case "EndOfStreamError": return "number"; + case "EventListener": return "EventListenerOrEventListenerObject"; + case "double": + case "float": return "number"; + case "object": return "any"; + case "ReadyState": return "string"; + case "ByteString": return "string"; + case "USVString": return "string"; + case "sequence": return "Array"; + case "FrozenArray": return "ReadonlyArray"; + case "UnrestrictedDouble": + case "unrestricted double": return "number"; + case "any": + case "BufferSource": + case "Date": + case "Function": + case "Promise": + case "void": return objDomType; + default: + if (integerTypes.has(objDomType)) return "number"; + if (extendedTypes.has(objDomType)) return objDomType; + if (flavor === Flavor.Worker && (objDomType === "Element" || objDomType === "Window" || objDomType === "Document" || objDomType === "AbortSignal" || objDomType === "HTMLFormElement")) return "object"; + if (flavor === Flavor.Web && objDomType === "Client") return "object"; + // Name of an interface / enum / dict. Just return itself + if (allInterfacesMap[objDomType] || + allCallbackFunctionsMap[objDomType] || + allDictionariesMap[objDomType] || + allEnumsMap[objDomType]) return objDomType; + // Name of a type alias. Just return itself + if (allTypeDefsMap.has(objDomType)) return objDomType; + // Union types + if (objDomType.includes(" or ")) { + const allTypes: string[] = decomposeTypes(objDomType).map(t => covertDomTypeToTsTypeSimple(t.replace("?", ""))); + return allTypes.includes("any") ? "any" : allTypes.join(" | "); + } + else { + // Check if is array type, which looks like "sequence" + const unescaped = objDomType; // System.Web.HttpUtility.HtmlDecode(objDomType) + const genericMatch = /^(\w+)<([\w, <>]+)>$/; + const match = genericMatch.exec(unescaped); + if (match) { + const tName: string = covertDomTypeToTsTypeSimple(match[1]); + const paramName: string = covertDomTypeToTsTypeSimple(match[2]); + return tName === "Array" ? paramName + "[]" : tName + "<" + paramName + ">"; + } + if (objDomType.endsWith("[]")) { + return covertDomTypeToTsTypeSimple(objDomType.replace("[]", "").trim()) + "[]"; + } + } + } + + throw new Error("Unkown DOM type: " + objDomType); + } + + function makeNullable(originalType: string) { + switch (originalType) { + case "any": return "any"; + case "void": return "void"; + default: + if (originalType.includes("| null")) return originalType; + else if (originalType.includes("=>")) return "(" + originalType + ") | null"; + else return originalType + " | null"; + } + } + + function convertDomTypeToNullableTsType(obj: Browser.Typed) { + const resolvedType = convertDomTypeToTsType(obj); + return obj.nullable ? makeNullable(resolvedType) : resolvedType; + } + + function emitConstant(c: Browser.Constant) { + printer.printLine(`readonly ${c.name}: ${convertDomTypeToTsType(c)};`); + } + + function emitConstants(i: Browser.Interface) { + if (i.constants) { + mapToArray(i.constants.constant) + .sort(compareName) + .forEach(emitConstant); + } + } + + function matchSingleParamMethodSignature(m: Browser.Method, expectedMName: string, expectedMType: string, expectedParamType: string) { + return expectedMName === m.name && + m.signature && m.signature.length === 1 && + convertDomTypeToNullableTsType(m.signature[0]) === expectedMType && + m.signature[0].param && m.signature[0].param!.length === 1 && + convertDomTypeToTsType(m.signature[0].param![0]) === expectedParamType; + } + + function processInterfaceType(i: Browser.Interface | Browser.Dictionary, name: string) { + return i["type-parameters"] ? name + "<" + i["type-parameters"]!.join(", ") + ">" : name; + } + + /// Emit overloads for the createElement method + function emitCreateElementOverloads(m: Browser.Method) { + if (matchSingleParamMethodSignature(m, "createElement", "Element", "string")) { + printer.printLine("createElement(tagName: K, options?: ElementCreationOptions): HTMLElementTagNameMap[K];"); + printer.printLine("createElement(tagName: string, options?: ElementCreationOptions): HTMLElement;"); + } + } + + /// Emit overloads for the getElementsByTagName method + function emitGetElementsByTagNameOverloads(m: Browser.Method) { + if (matchSingleParamMethodSignature(m, "getElementsByTagName", "NodeList", "string")) { + printer.printLine(`getElementsByTagName(${m.signature[0].param![0].name}: K): NodeListOf;`); + printer.printLine(`getElementsByTagName(${m.signature[0].param![0].name}: K): NodeListOf;`); + printer.printLine(`getElementsByTagName(${m.signature[0].param![0].name}: string): NodeListOf;`); + } + } + + /// Emit overloads for the querySelector method + function emitQuerySelectorOverloads(m: Browser.Method) { + if (matchSingleParamMethodSignature(m, "querySelector", "Element | null", "string")) { + printer.printLine("querySelector(selectors: K): HTMLElementTagNameMap[K] | null;"); + printer.printLine("querySelector(selectors: K): SVGElementTagNameMap[K] | null;"); + printer.printLine("querySelector(selectors: string): E | null;"); + } + } + + /// Emit overloads for the querySelectorAll method + function emitQuerySelectorAllOverloads(m: Browser.Method) { + if (matchSingleParamMethodSignature(m, "querySelectorAll", "NodeList", "string")) { + printer.printLine("querySelectorAll(selectors: K): NodeListOf;"); + printer.printLine("querySelectorAll(selectors: K): NodeListOf;"); + printer.printLine("querySelectorAll(selectors: string): NodeListOf;"); + } + } + + function emitHTMLElementTagNameMap() { + printer.printLine("interface HTMLElementTagNameMap {"); + printer.increaseIndent(); + for (const e of Object.keys(tagNameToEleName).sort()) { + const value = tagNameToEleName[e]; + if (iNameToIDependList[value] && !iNameToIDependList[value].includes("SVGElement")) { + printer.printLine(`"${e.toLowerCase()}": ${value};`); + } + } + printer.decreaseIndent(); + printer.printLine("}"); + printer.printLine(""); + } + + function emitSVGElementTagNameMap() { + printer.printLine("interface SVGElementTagNameMap {"); + printer.increaseIndent(); + for (const e of Object.keys(tagNameToEleName).sort()) { + const value = tagNameToEleName[e]; + if (iNameToIDependList[value] && iNameToIDependList[value].includes("SVGElement")) { + printer.printLine(`"${e.toLowerCase()}": ${value};`); + } + } + printer.decreaseIndent(); + printer.printLine("}"); + printer.printLine(""); + } + + function emitElementTagNameMap() { + printer.printLine("/** @deprecated Directly use HTMLElementTagNameMap or SVGElementTagNameMap as appropriate, instead. */"); + printer.printLine("interface ElementTagNameMap extends HTMLElementTagNameMap, SVGElementTagNameMap { }"); + printer.printLine(""); + } + + /// Emit overloads for the createEvent method + function emitCreateEventOverloads(m: Browser.Method) { + if (matchSingleParamMethodSignature(m, "createEvent", "Event", "string")) { + // Emit plurals. For example, "Events", "MutationEvents" + const hasPlurals = ["Event", "MutationEvent", "MouseEvent", "SVGZoomEvent", "UIEvent"]; + for (const x of distinctETypeList) { + printer.printLine(`createEvent(eventInterface: "${x}"): ${x};`); + if (hasPlurals.includes(x)) { + printer.printLine(`createEvent(eventInterface: "${x}s"): ${x};`); + } + } + printer.printLine("createEvent(eventInterface: string): Event;"); + } + } + + /// Generate the parameters string for function signatures + function paramsToString(ps: Browser.Param[]) { + function paramToString(p: Browser.Param) { + const isOptional = !p.variadic && p.optional; + const pType = isOptional ? convertDomTypeToTsType(p) : convertDomTypeToNullableTsType(p); + return (p.variadic ? "..." : "") + + adjustParamName(p.name) + + (isOptional ? "?: " : ": ") + + pType + + (p.variadic ? "[]" : ""); + } + return ps.map(paramToString).join(", "); + } + + function emitCallBackInterface(i: Browser.Interface) { + if (i.name === "EventListener") { + printer.printLine(`interface ${i.name} {`); + printer.increaseIndent(); + printer.printLine("(evt: Event): void;"); + printer.decreaseIndent(); + printer.printLine("}"); + } + else { + const methods = mapToArray(i.methods.method); + const m = methods[0]; + const overload = m.signature[0]; + const paramsString = overload.param ? paramsToString(overload.param) : ""; + const returnType = overload.type ? convertDomTypeToTsType(overload) : "void"; + printer.printLine(`type ${i.name} = ((${paramsString}) => ${returnType}) | { ${m.name}(${paramsString}): ${returnType}; };`); + } + printer.printLine(""); + } + + function emitCallBackFunction(cb: Browser.CallbackFunction) { + printer.printLine(`interface ${cb.name} {`); + printer.increaseIndent(); + emitSignatures(cb, "", "", s => printer.printLine(s)); + printer.decreaseIndent(); + printer.printLine("}"); + printer.printLine(""); + } + + function emitCallBackFunctions() { + getElements(webidl["callback-functions"], "callback-function") + .sort(compareName) + .forEach(emitCallBackFunction); + } + + function emitEnum(e: Browser.Enum) { + printer.printLine(`type ${e.name} = ${e.value.map(v => `"${v}"`).join(" | ")};`); + } + + function emitEnums() { + getElements(webidl.enums, "enum") + .sort(compareName) + .forEach(emitEnum); + } + + function emitEventHandlerThis(prefix: string, i: Browser.Interface) { + if (prefix === "") { + return `this: ${i.name}, `; + } + else { + return pollutor ? `this: ${pollutor.name}, ` : ""; + } + } + + // A covariant EventHandler is one that is defined in a parent interface as then redefined in current interface with a more specific argument types + // These patterns are unsafe, and flagged as error under --strictFunctionTypes. + // Here we know the property is already defined on the interface, we elide its declaration if the parent has the same handler defined + function isCovariantEventHandler(i: Browser.Interface, p: Browser.Property) { + return isEventHandler(p) && + iNameToEhParents[i.name] && iNameToEhParents[i.name].length > 0 && + !!iNameToEhParents[i.name].find( + i => iNameToEhList[i.name] && iNameToEhList[i.name].length > 0 && + !!iNameToEhList[i.name].find(e => e.name === p.name)); + } + + function emitProperty(prefix: string, i: Browser.Interface, emitScope: EmitScope, p: Browser.Property, conflictedMembers: Set) { + function printLine(content: string) { + if (conflictedMembers.has(p.name)) { + printer.printLineToStack(content); + } + else { + printer.printLine(content); + } + } + + emitComments(p, printLine); + + // Treat window.name specially because of https://github.com/Microsoft/TypeScript/issues/9850 + if (p.name === "name" && i.name === "Window" && emitScope === EmitScope.All) { + printLine("declare const name: never;"); + } + else { + + let pType: string; + if (p["override-type"]) { + pType = p["override-type"]!; + } + else { + if (isEventHandler(p)) { + // Sometimes event handlers with the same name may actually handle different + // events in different interfaces. For example, "onerror" handles "ErrorEvent" + // normally, but in "SVGSVGElement" it handles "SVGError" event instead. + const eType = p["event-handler"] ? getEventTypeInInterface(p["event-handler"]!, i) : "Event"; + pType = `(${emitEventHandlerThis(prefix, i)}ev: ${eType}) => any`; + } + else { + pType = convertDomTypeToTsType(p); + } + } + const requiredModifier = !p.required || p.required === "1" ? "" : "?"; + pType = p.nullable ? makeNullable(pType) : pType; + const readOnlyModifier = p["read-only"] && prefix === "" ? "readonly " : ""; + printLine(`${prefix}${readOnlyModifier}${p.name}${requiredModifier}: ${pType};`); + } + } + + function emitComments(entity: { comment?: string; deprecated?: 1 }, print: (s: string) => void) { + if (entity.comment) { + print(entity.comment); + } + if (entity.deprecated) { + print(`/** @deprecated */`); + } + } + + function emitProperties(prefix: string, emitScope: EmitScope, i: Browser.Interface, conflictedMembers: Set) { + // Note: the schema file shows the property doesn't have "static" attribute, + // therefore all properties are emited for the instance type. + if (emitScope !== EmitScope.StaticOnly && i.properties) { + mapToArray(i.properties.property) + .filter(p => !isCovariantEventHandler(i, p)) + .sort(compareName) + .forEach(p => emitProperty(prefix, i, emitScope, p, conflictedMembers)); + } + } + + function emitMethod(prefix: string, _i: Browser.Interface, m: Browser.Method, conflictedMembers: Set) { + function printLine(content: string) { + if (m.name && conflictedMembers.has(m.name)) { + printer.printLineToStack(content); + } + else { + printer.printLine(content); + } + } + + emitComments(m, printLine); + + switch (m.name) { + case "createElement": return emitCreateElementOverloads(m); + case "createEvent": return emitCreateEventOverloads(m); + case "getElementsByTagName": return emitGetElementsByTagNameOverloads(m); + case "querySelector": return emitQuerySelectorOverloads(m); + case "querySelectorAll": return emitQuerySelectorAllOverloads(m); + } + emitSignatures(m, prefix, m.name, printLine); + } + + function emitSignature(s: Browser.Signature, prefix: string | undefined, name: string | undefined, printLine: (s: string) => void) { + const paramsString = s.param ? paramsToString(s.param) : ""; + let returnType = convertDomTypeToTsType(s); + returnType = s.nullable ? makeNullable(returnType) : returnType; + printLine(`${prefix || ""}${name || ""}(${paramsString}): ${returnType};`); + } + + function emitSignatures(method: { signature?: Browser.Signature[], "override-signatures"?: string[], "additional-signatures"?: string[] }, prefix: string, name: string, printLine: (s: string) => void) { + if (method["override-signatures"]) { + method["override-signatures"]!.forEach(s => printLine(`${prefix}${s};`)); + } + else if (method.signature) { + if (method["additional-signatures"]) { + method["additional-signatures"]!.forEach(s => printLine(`${prefix}${s};`)); + } + method.signature.forEach(sig => emitSignature(sig, prefix, name, printLine)); + } + } + + function emitMethods(prefix: string, emitScope: EmitScope, i: Browser.Interface, conflictedMembers: Set) { + // If prefix is not empty, then this is the global declare function addEventListener, we want to override this + // Otherwise, this is EventTarget.addEventListener, we want to keep that. + if (i.methods) { + mapToArray(i.methods.method) + .filter(m => matchScope(emitScope, m) && !(prefix !== "" && (m.name === "addEventListener" || m.name === "removeEventListener"))) + .sort(compareName) + .forEach(m => emitMethod(prefix, i, m, conflictedMembers)); + } + + // The window interface inherited some methods from "Object", + // which need to explicitly exposed + if (i.name === "Window" && prefix === "declare function ") { + printer.printLine("declare function toString(): string;"); + } + } + + /// Emit the properties and methods of a given interface + function emitMembers(prefix: string, emitScope: EmitScope, i: Browser.Interface) { + const conflictedMembers = extendConflictsBaseTypes[i.name] ? extendConflictsBaseTypes[i.name].memberNames : new Set(); + emitProperties(prefix, emitScope, i, conflictedMembers); + const methodPrefix = prefix.startsWith("declare var") ? "declare function " : ""; + emitMethods(methodPrefix, emitScope, i, conflictedMembers); + } + + /// Emit all members of every interfaces at the root level. + /// Called only once on the global polluter object + function emitAllMembers(i: Browser.Interface) { + emitMembers(/*prefix*/ "declare var ", EmitScope.All, i); + + for (const relatedIName of iNameToIDependList[i.name]) { + const i = allInterfacesMap[relatedIName]; + if (i) { + emitAllMembers(i); + } + } + } + + function emitEventHandlers(prefix: string, i: Browser.Interface) { + const fPrefix = prefix.startsWith("declare var") ? "declare function " : ""; + + for (const addOrRemove of ["add", "remove"]) { + const optionsType = addOrRemove === "add" ? "AddEventListenerOptions" : "EventListenerOptions"; + if (tryEmitTypedEventHandlerForInterface(addOrRemove, optionsType)) { + // only emit the string event handler if we just emited a typed handler + printer.printLine(`${fPrefix}${addOrRemove}EventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | ${optionsType}): void;`); + } + } + + return; + + function emitTypedEventHandler(prefix: string, addOrRemove: string, iParent: Browser.Interface, optionsType: string) { + printer.printLine(`${prefix}${addOrRemove}EventListener(type: K, listener: (this: ${i.name}, ev: ${iParent.name}EventMap[K]) => any, options?: boolean | ${optionsType}): void;`); + } + + function tryEmitTypedEventHandlerForInterface(addOrRemove: string, optionsType: string) { + if (iNameToEhList[i.name] && iNameToEhList[i.name].length) { + emitTypedEventHandler(fPrefix, addOrRemove, i, optionsType); + return true; + } + if (iNameToEhParents[i.name] && iNameToEhParents[i.name].length) { + iNameToEhParents[i.name] + .sort(compareName) + .forEach(i => emitTypedEventHandler(fPrefix, addOrRemove, i, optionsType)); + return true; + } + return false; + } + } + + function emitConstructorSignature(i: Browser.Interface) { + const constructor = typeof i.constructor === "object" ? i.constructor : undefined; + + // Emit constructor signature + if (constructor) { + emitComments(constructor, s => printer.print(s)); + emitSignatures(constructor, "", "new", s => printer.printLine(s)); + } + else { + printer.printLine(`new(): ${i.name};`); + } + } + + function emitConstructor(i: Browser.Interface) { + printer.printLine(`declare var ${i.name}: {`); + printer.increaseIndent(); + + printer.printLine(`prototype: ${i.name};`); + emitConstructorSignature(i); + emitConstants(i); + emitMembers(/*prefix*/ "", EmitScope.StaticOnly, i); + + printer.decreaseIndent(); + printer.printLine("};"); + printer.printLine(""); + } + + function emitNamedConstructor(i: Browser.Interface) { + const nc = i["named-constructor"]; + if (nc) { + printer.printLine(`declare var ${nc.name}: {`); + printer.increaseIndent(); + nc.signature.forEach(s => printer.printLine(`new(${s.param ? paramsToString(s.param) : ""}): ${i.name};`)); + printer.decreaseIndent(); + printer.printLine(`};`); + } + } + + /// Emit all the named constructors at root level + function emitNamedConstructors() { + getElements(webidl.interfaces, "interface") + .sort(compareName) + .forEach(emitNamedConstructor); + } + + function emitInterfaceDeclaration(i: Browser.Interface) { + function processIName(iName: string) { + return extendConflictsBaseTypes[iName] ? `${iName}Base` : iName; + } + + const processedIName = processIName(i.name); + + if (processedIName !== i.name) { + printer.printLineToStack(`interface ${processInterfaceType(i, i.name)} extends ${processedIName} {`); + } + + printer.printLine(`interface ${processInterfaceType(i, processedIName)}`); + + const finalExtends = [i.extends || "Object"].concat(i.implements || []) + .filter(i => i !== "Object") + .map(processIName); + + if (finalExtends && finalExtends.length) { + printer.print(` extends ${finalExtends.join(", ")}`); + } + printer.print(" {"); + } + + /// To decide if a given method is an indexer and should be emited + function shouldEmitIndexerSignature(i: Browser.Interface, m: Browser.Method) { + if (m.getter && m.signature && m.signature[0].param && m.signature[0].param!.length === 1) { + // TypeScript array indexer can only be number or string + // for string, it must return a more generic type then all + // the other properties, following the Dictionary pattern + switch (convertDomTypeToTsType(m.signature[0].param![0])) { + case "number": return true; + case "string": + if (convertDomTypeToTsType(m.signature[0]) === "any") { + return true; + } + const sig = m.signature[0]; + const mTypes = distinct(i.methods && map(i.methods.method, m => m.signature && m.signature.length && m.signature[0].type || "void").filter(t => t !== "void") || []); + const amTypes = distinct(i["anonymous-methods"] && i["anonymous-methods"]!.method.map(m => m.signature[0].type).filter(t => t !== "void") || []); // |> Array.distinct + const pTypes = distinct(i.properties && map(i.properties.property, m => m.type).filter(t => t !== "void") || []); // |> Array.distinct + + if (mTypes.length === 0 && amTypes.length === 1 && pTypes.length === 0) return amTypes[0] === sig.type; + if (mTypes.length === 1 && amTypes.length === 1 && pTypes.length === 0) return mTypes[0] === amTypes[0] && amTypes[0] === sig.type; + if (mTypes.length === 0 && amTypes.length === 1 && pTypes.length === 1) return amTypes[0] === pTypes[0] && amTypes[0] === sig.type; + if (mTypes.length === 1 && amTypes.length === 1 && pTypes.length === 1) return mTypes[0] === amTypes[0] && amTypes[0] === pTypes[0] && amTypes[0] === sig.type; + } + } + return false; + } + + function emitIndexers(emitScope: EmitScope, i: Browser.Interface) { + if (i["overide-index-signatures"]) { + i["overide-index-signatures"]!.forEach(s => printer.printLine(`${s};`)); + } + else { + // The indices could be within either Methods or Anonymous Methods + mapToArray(i.methods && i.methods.method) + .concat(i["anonymous-methods"] && i["anonymous-methods"]!.method || []) + .filter(m => shouldEmitIndexerSignature(i, m) && matchScope(emitScope, m)) + .forEach(m => { + const indexer = (m.signature && m.signature.length && m.signature[0].param && m.signature[0].param!.length) ? m.signature[0].param![0] : undefined; + if (indexer) { + printer.printLine(`[${indexer.name}: ${convertDomTypeToTsType(indexer)}]: ${convertDomTypeToTsType({ + type: m.signature[0].type, + subtype: m.signature[0].subtype, + nullable: undefined + })};`); + } + }); + } + } + + function emitInterfaceEventMap(i: Browser.Interface) { + function emitInterfaceEventMapEntry(eHandler: EventHandler) { + printer.printLine(`"${eHandler.eventName}": ${getEventTypeInInterface(eHandler.eventName, i)};`); + } + + if (iNameToEhList[i.name] && iNameToEhList[i.name].length) { + printer.printLine(`interface ${i.name}EventMap`); + if (iNameToEhParents[i.name] && iNameToEhParents[i.name].length) { + const extend = iNameToEhParents[i.name].map(i => i.name + "EventMap"); + printer.print(` extends ${extend.join(", ")}`); + } + printer.print(" {"); + printer.increaseIndent(); + iNameToEhList[i.name] + .sort(compareName) + .forEach(emitInterfaceEventMapEntry); + printer.decreaseIndent(); + printer.printLine("}"); + printer.printLine(""); + } + } + + function emitInterface(i: Browser.Interface) { + printer.clearStack(); + emitInterfaceEventMap(i); + + printer.resetIndent(); + emitInterfaceDeclaration(i); + printer.increaseIndent(); + + emitMembers(/*prefix*/ "", EmitScope.InstanceOnly, i); + emitConstants(i); + emitEventHandlers(/*prefix*/ "", i); + emitIndexers(EmitScope.InstanceOnly, i); + + printer.decreaseIndent(); + printer.printLine("}"); + printer.printLine(""); + + if (!printer.stackIsEmpty()) { + printer.printStackContent(); + printer.printLine("}"); + printer.printLine(""); + } + } + + function emitStaticInterface(i: Browser.Interface) { + // Some types are static types with non-static members. For example, + // NodeFilter is a static method itself, however it has an "acceptNode" method + // that expects the user to implement. + const hasNonStaticMethod = i.methods && !!mapToArray(i.methods.method).find(m => !m.static); + const hasProperty = i.properties && mapToArray(i.properties.property).find(p => !p.static); + const hasNonStaticMember = hasNonStaticMethod || hasProperty; + + // For static types with non-static members, we put the non-static members into an + // interface, and put the static members into the object literal type of 'declare var' + // For static types with only static members, we put everything in the interface. + // Because in the two cases the interface contains different things, it might be easier to + // read to separate them into two functions. + function emitStaticInterfaceWithNonStaticMembers() { + printer.resetIndent(); + emitInterfaceDeclaration(i); + printer.increaseIndent(); + + emitMembers(/*prefix*/ "", EmitScope.InstanceOnly, i); + emitEventHandlers(/*prefix*/ "", i); + emitIndexers(EmitScope.InstanceOnly, i); + + printer.decreaseIndent(); + printer.printLine("}"); + printer.printLine(""); + printer.printLine(`declare var ${i.name}: {`); + printer.increaseIndent(); + emitConstants(i); + emitMembers(/*prefix*/ "", EmitScope.StaticOnly, i); + printer.decreaseIndent(); + printer.printLine("};"); + printer.printLine(""); + } + + function emitPureStaticInterface() { + printer.resetIndent(); + emitInterfaceDeclaration(i); + printer.increaseIndent(); + + emitMembers(/*prefix*/ "", EmitScope.StaticOnly, i); + emitConstants(i); + emitEventHandlers(/*prefix*/ "", i); + emitIndexers(EmitScope.StaticOnly, i); + printer.decreaseIndent(); + printer.printLine("}"); + printer.printLine(`declare var ${i.name}: ${i.name};`); + printer.printLine(""); + } + + if (hasNonStaticMember) { + emitStaticInterfaceWithNonStaticMembers(); + } + else { + emitPureStaticInterface(); + } + } + + function emitNonCallbackInterfaces() { + for (const i of allNonCallbackInterfaces.sort(compareName)) { + // If the static attribute has a value, it means the type doesn't have a constructor + if (i.static) { + emitStaticInterface(i); + } + else if (i["no-interface-object"]) { + emitInterface(i); + } + else { + emitInterface(i); + emitConstructor(i); + } + } + } + + function emitDictionary(dict: Browser.Dictionary) { + if (!dict.extends || dict.extends === "Object") { + printer.printLine(`interface ${processInterfaceType(dict, dict.name)} {`); + } + else { + printer.printLine(`interface ${processInterfaceType(dict, dict.name)} extends ${dict.extends} {`); + } + printer.increaseIndent(); + if (dict.members) { + mapToArray(dict.members.member) + .sort(compareName) + .forEach(m => printer.printLine(`${m.name}${m.required === 1 ? "" : "?"}: ${convertDomTypeToTsType(m)};`)); + } + printer.decreaseIndent(); + printer.printLine("}"); + printer.printLine(""); + } + + function emitDictionaries() { + getElements(webidl.dictionaries, "dictionary") + .sort(compareName) + .forEach(emitDictionary); + } + + function emitTypeDef(typeDef: Browser.TypeDef) { + printer.printLine(`type ${typeDef["new-type"]} = ${convertDomTypeToTsType(typeDef)};`); + } + + function emitTypeDefs() { + if (webidl.typedefs) { + webidl.typedefs.typedef + .forEach(emitTypeDef); + } + } + + function compareName(c1: { name: string }, c2: { name: string }) { + return c1.name < c2.name ? -1 : c1.name > c2.name ? 1 : 0; + } + + function emit() { + printer.reset(); + printer.printLine("/////////////////////////////"); + if (flavor === Flavor.Worker) { + printer.printLine("/// Worker APIs"); + } + else { + printer.printLine("/// DOM APIs"); + } + printer.printLine("/////////////////////////////"); + printer.printLine(""); + + emitDictionaries(); + getElements(webidl["callback-interfaces"], "interface") + .sort(compareName) + .forEach(i => emitCallBackInterface(i)); + emitNonCallbackInterfaces(); + + // // Add missed interface definition from the spec + // InputJson.getAddedItems InputJson.Interface flavor |> Array.iter EmitAddedInterface + + printer.printLine("declare type EventListenerOrEventListenerObject = EventListener | EventListenerObject;"); + printer.printLine(""); + + emitCallBackFunctions(); + + if (flavor !== Flavor.Worker) { + emitHTMLElementTagNameMap(); + emitSVGElementTagNameMap(); + emitElementTagNameMap(); + emitNamedConstructors(); + } + + if (pollutor) { + emitAllMembers(pollutor); + emitEventHandlers("declare var ", pollutor); + } + + emitTypeDefs(); + emitEnums(); + + return printer.getResult(); + } + + function emitIterator(i: Browser.Interface) { + + // check anonymous unsigned long getter and length property + const isIterableGetter = (m: Browser.Method) => + m.getter === 1 && !!m.signature.length && !!m.signature[0].param && m.signature[0].param!.length === 1 && typeof m.signature[0].param![0].type === "string" && integerTypes.has(m.signature[0].param![0].type); + + function findIterableGetter() { + const anonymousGetter = i["anonymous-methods"] && i["anonymous-methods"]!.method.find(isIterableGetter); + + if (anonymousGetter) return anonymousGetter; + else if (i.methods) return mapToArray(i.methods.method).find(isIterableGetter); + else return undefined; + } + + function findLengthProperty(p: Browser.Property) { + return p.name === "length" && typeof p.type === "string" && integerTypes.has(p.type); + } + + if (i.name !== "Window" && i.properties) { + const iterableGetter = findIterableGetter(); + const lengthProperty = mapToArray(i.properties.property).find(findLengthProperty); + if (iterableGetter && lengthProperty) { + printer.printLine(`interface ${i.name} {`); + printer.increaseIndent(); + printer.printLine(`[Symbol.iterator](): IterableIterator<${convertDomTypeToTsType({ type: iterableGetter.signature[0].type, nullable: undefined })}>`); + printer.decreaseIndent(); + printer.printLine("}"); + printer.printLine(""); + } + } + } + + function emitES6DomIterators() { + printer.reset(); + printer.printLine("/////////////////////////////"); + printer.printLine("/// DOM ES6 APIs"); + printer.printLine("/////////////////////////////"); + printer.printLine(""); + + allInterfaces + .sort(compareName) + .forEach(emitIterator); + + return printer.getResult(); + } +} \ No newline at end of file diff --git a/src/helpers.ts b/src/helpers.ts new file mode 100644 index 000000000..918942cd4 --- /dev/null +++ b/src/helpers.ts @@ -0,0 +1,140 @@ +export function filter(obj: any, fn: (o: any, n: string | undefined) => boolean): any { + if (typeof obj === "object") { + if (Array.isArray(obj)) { + return mapDefined(obj, e => fn(e, undefined) ? filter(e, fn) : undefined); + } + else { + const result: any = {}; + for (const e in obj) { + if (fn(obj[e], e)) { + result[e] = filter(obj[e], fn); + } + } + return result; + } + } + return obj; +} + +export function filterProperties(obj: Record, fn: (o: T) => boolean): Record { + const result: Record = {}; + for (const e in obj) { + if (fn(obj[e])) { + result[e] = obj[e]; + } + } + return result; +} + +export function merge(src: T, target: T): T { + if (typeof src !== "object" || typeof target !== "object") { + return src; + } + for (const k in target) { + if (Object.getOwnPropertyDescriptor(target, k)) { + if (Object.getOwnPropertyDescriptor(src, k)) { + const srcProp = src[k]; + const targetProp = target[k]; + if (Array.isArray(srcProp) && Array.isArray(targetProp)) { + mergeNamedArrays(srcProp, targetProp); + } + else { + if (Array.isArray(srcProp) !== Array.isArray(targetProp)) { + throw new Error("Mismatch on property: " + k + JSON.stringify(targetProp)); + } + merge(src[k], target[k]); + } + } + else { + src[k] = target[k]; + } + } + } + return src; +} + +function mergeNamedArrays(srcProp: T[], targetProp: T[]) { + const map: any = {}; + for (const e1 of srcProp) { + if (e1.name) { + map[e1.name] = e1; + } + } + + for (const e2 of targetProp) { + if (e2.name && map[e2.name]) { + merge(map[e2.name], e2); + } + else { + srcProp.push(e2); + } + } +} + +export function distinct(a: T[]): T[] { + return Array.from(new Set(a).values()); +} + +export function mapToArray(m: Record): T[] { + return Object.keys(m || {}).map(k => m[k]); +} + +export function arrayToMap(array: ReadonlyArray, makeKey: (value: T) => string, makeValue: (value: T) => U): Record { + const result: Record = {}; + for (const value of array) { + result[makeKey(value)] = makeValue(value); + } + return result; +} + +export function map(obj: Record | undefined, fn: (o: T) => U): U[] { + return Object.keys(obj || {}).map(k => fn(obj![k])); +} + +export function mapDefined(array: ReadonlyArray | undefined, mapFn: (x: T, i: number) => U | undefined): U[] { + const result: U[] = []; + if (array) { + for (let i = 0; i < array.length; i++) { + const mapped = mapFn(array[i], i); + if (mapped !== undefined) { + result.push(mapped); + } + } + } + return result; +} + +export function toNameMap(array: T[]) { + const result: Record = {}; + for (const value of array) { + result[value.name] = value; + } + return result; +} + +export function isArray(value: any): value is ReadonlyArray<{}> { + return Array.isArray ? Array.isArray(value) : value instanceof Array; +} + +export function flatMap(array: ReadonlyArray | undefined, mapfn: (x: T, i: number) => U | ReadonlyArray | undefined): U[] { + let result: U[] | undefined; + if (array) { + result = []; + for (let i = 0; i < array.length; i++) { + const v = mapfn(array[i], i); + if (v) { + if (isArray(v)) { + result.push(...v); + } + else { + result.push(v); + } + } + } + } + return result || []; +} + +export function concat(a: T[] | undefined, b: T[] | undefined): T[] { + return !a ? b || [] : a.concat(b || []); +} \ No newline at end of file diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 000000000..b7d8cdeea --- /dev/null +++ b/src/index.ts @@ -0,0 +1,143 @@ +import * as Browser from "./types"; +import * as fs from "fs"; +import * as path from "path"; +import { filter, merge, filterProperties } from "./helpers"; +import { Flavor, emitWebIDl } from "./emitter"; + +function emitDomWorker(webidl: Browser.WebIdl, knownWorkerTypes: Set, tsWorkerOutput: string) { + const worker = getEmptyWebIDL(); + const isKnownWorkerName = (o: { name: string }) => knownWorkerTypes.has(o.name); + + if (webidl["callback-functions"]) worker["callback-functions"]!["callback-function"] = filterProperties(webidl["callback-functions"]!["callback-function"], isKnownWorkerName); + if (webidl["callback-interfaces"]) worker["callback-interfaces"]!.interface = filterProperties(webidl["callback-interfaces"]!.interface, isKnownWorkerName); + if (webidl.dictionaries) worker.dictionaries!.dictionary = filterProperties(webidl.dictionaries.dictionary, isKnownWorkerName); + if (webidl.enums) worker.enums!.enum = filterProperties(webidl.enums.enum, isKnownWorkerName); + if (webidl.mixins) worker.mixins!.mixin = filterProperties(webidl.mixins.mixin, isKnownWorkerName); + if (webidl.interfaces) worker.interfaces!.interface = filterProperties(webidl.interfaces.interface, isKnownWorkerName); + if (webidl.typedefs) worker.typedefs!.typedef = webidl.typedefs.typedef.filter(t => knownWorkerTypes.has(t["new-type"])); + + const result = emitWebIDl(worker, Flavor.Worker); + fs.writeFileSync(tsWorkerOutput, result); + return; +} + +function emitDomWeb(webidl: Browser.WebIdl, tsWebOutput: string) { + const browser = filter(webidl, o => { + return !(o && typeof o.exposed === "string" + && o.exposed.includes("Worker") && !o.exposed.includes("Window")); + }); + + const result = emitWebIDl(browser, Flavor.Web); + fs.writeFileSync(tsWebOutput, result); + return; +} + +function emitES6DomIterators(webidl: Browser.WebIdl, tsWebES6Output: string) { + fs.writeFileSync(tsWebES6Output, emitWebIDl(webidl, Flavor.ES6Iterators)); +} + +function getEmptyWebIDL(): Browser.WebIdl { + return { + "callback-functions": { + "callback-function": {} + }, + "callback-interfaces": { + "interface": {} + }, + "dictionaries": { + "dictionary": {} + }, + "enums": { + "enum": {} + }, + "interfaces": { + "interface": {} + }, + "mixins": { + "mixin": {} + }, + "typedefs": { + "typedef": [] + } + } +} + +function emitDom() { + const __SOURCE_DIRECTORY__ = __dirname; + const inputFolder = path.join(__SOURCE_DIRECTORY__, "../", "inputfiles"); + const outputFolder = path.join(__SOURCE_DIRECTORY__, "../", "generated"); + + // Create output folder + if (!fs.existsSync(outputFolder)) { + fs.mkdirSync(outputFolder); + } + + const tsWebOutput = path.join(outputFolder, "dom.generated.d.ts"); + const tsWebES6Output = path.join(outputFolder, "dom.es6.generated.d.ts"); + const tsWorkerOutput = path.join(outputFolder, "webworker.generated.d.ts"); + + + const overriddenItems = require(path.join(inputFolder, "overridingTypes.json")); + const addedItems = require(path.join(inputFolder, "addedTypes.json")); + const comments = require(path.join(inputFolder, "comments.json")); + const removedItems = require(path.join(inputFolder, "removedTypes.json")); + + /// Load the input file + let webidl: Browser.WebIdl = require(path.join(inputFolder, "browser.webidl.preprocessed.json")); + + const knownWorkerTypes = new Set(require(path.join(inputFolder, "knownWorkerTypes.json"))); + + webidl = prune(webidl, removedItems); + webidl = merge(webidl, addedItems); + webidl = merge(webidl, overriddenItems); + webidl = merge(webidl, comments); + + emitDomWeb(webidl, tsWebOutput); + emitDomWorker(webidl, knownWorkerTypes, tsWorkerOutput); + emitES6DomIterators(webidl, tsWebES6Output); + + function prune(obj: Browser.WebIdl, template: Partial): Browser.WebIdl { + const result = getEmptyWebIDL(); + + if (obj["callback-functions"]) result["callback-functions"]!["callback-function"] = filterProperties(obj["callback-functions"]!["callback-function"], (cb) => !(template["callback-functions"] && template["callback-functions"]!["callback-function"][cb.name])); + if (obj["callback-interfaces"]) result["callback-interfaces"]!.interface = filterInterface(obj["callback-interfaces"]!.interface, template["callback-interfaces"] && template["callback-interfaces"]!.interface); + if (obj.dictionaries) result.dictionaries!.dictionary = filterDictionary(obj.dictionaries.dictionary, template.dictionaries && template.dictionaries.dictionary); + if (obj.enums) result.enums!.enum = filterEnum(obj.enums.enum, template.enums && template.enums.enum); + if (obj.mixins) result.mixins!.mixin = filterInterface(obj.mixins.mixin, template.mixins && template.mixins.mixin); + if (obj.interfaces) result.interfaces!.interface = filterInterface(obj.interfaces.interface, template.interfaces && template.interfaces.interface); + if (obj.typedefs) result.typedefs!.typedef = obj.typedefs.typedef.filter(t => template.typedefs && template.typedefs.typedef.find(o => o["new-type"] === t["new-type"])); + + return result; + + function filterInterface(interfaces: Record, template: Record | undefined) { + if (!template) return interfaces; + const result = interfaces; + for (const k in result) { + if (result[k].properties) { + result[k].properties!.property = filterProperties(interfaces[k].properties!.property, p => !(template[k] && template[k].properties && template[k].properties!.property[p.name])); + } + if (result[k].methods) { + result[k].methods!.method = filterProperties(interfaces[k].methods!.method, m => !(template[k] && template[k].methods && template[k].methods!.method[m.name])); + } + } + return result; + } + + function filterDictionary(dictinaries: Record, template: Record | undefined) { + if (!template) return dictinaries; + const result = filterProperties(dictinaries, i => !template[i.name]); + for (const k in result) { + if (result[k].members) { + result[k].members!.member = filterProperties(dictinaries[k].members!.member, m => !(template[k] && template[k].members && template[k].members!.member[m.name])); + } + } + return result; + } + function filterEnum(enums: Record, template: Record | undefined) { + if (!template) return enums; + return filterProperties(enums, i => !template[i.name]); + } + } +} + +emitDom(); \ No newline at end of file diff --git a/src/preprocess.ts b/src/preprocess.ts new file mode 100644 index 000000000..41dcc7d8f --- /dev/null +++ b/src/preprocess.ts @@ -0,0 +1,41 @@ +import * as fs from "fs"; +import * as path from "path"; +import { filter } from "./helpers"; + +const __SOURCE_DIRECTORY__ = __dirname; +const inputFolder = path.join(__SOURCE_DIRECTORY__, "../", "inputfiles"); + +function preprocess() { + const webidl = require(path.join(inputFolder, "browser.webidl.json")); + + const browser = filter(webidl, (o, n) => { + if (o) { + if (typeof o.tags === "string") { + if (o.tags.indexOf("MSAppOnly") > -1) return false; + if (o.tags.indexOf("MSAppScheduler") > -1) return false; + if (o.tags.indexOf("Diagnostics") > -1) return false; + if (o.tags.indexOf("Printing") > -1) return false; + if (o.tags.indexOf("WinPhoneOnly") > -1) return false; + if (o.tags.indexOf("IEOnly") > -1) return false; + } + if (typeof o.exposed === "string") { + if (o.exposed.indexOf("Diagnostics") > -1) return false; + if (o.exposed.indexOf("WorkerDiagnostics") > -1) return false; + if (o.exposed.indexOf("Isolated") > -1) return false; + } + if (o.iterable === "pair-iterator") return false; + if (o.name === "Function") return false; + if (o.name === "MSExecAtPriorityFunctionCallback") return false; + if (o.name === "MSUnsafeFunctionCallback") return false; + } + if (typeof n === "string") { + if (n.indexOf("-") === 0) return false; + } + return true; + }); + + + fs.writeFileSync(path.join(inputFolder, "browser.webidl.preprocessed.json"), JSON.stringify(browser, undefined, 4)); +} + +preprocess(); \ No newline at end of file diff --git a/src/test.ts b/src/test.ts new file mode 100644 index 000000000..f66aba914 --- /dev/null +++ b/src/test.ts @@ -0,0 +1,49 @@ +import * as fs from "fs"; +import * as path from "path"; +import child_process from "child_process"; + +const __SOURCE_DIRECTORY__ = __dirname; +const baselineFolder = path.join(__SOURCE_DIRECTORY__, "../", "baselines"); +const outputFolder = path.join(__SOURCE_DIRECTORY__, "../", "generated"); +const tscPath = path.join(__SOURCE_DIRECTORY__, "../", "node_modules", "typescript", "lib", "tsc.js"); + +function normalizeLineEndings(text: string): string { + return text.replace(/\r\n?/g, "\n"); +} + +function compareToBaselines() { + for (const file of fs.readdirSync(baselineFolder)) { + const baseline = normalizeLineEndings(fs.readFileSync(path.join(baselineFolder, file)).toString()); + const generated = normalizeLineEndings(fs.readFileSync(path.join(outputFolder, file)).toString()); + if (baseline !== generated) { + console.error(`Test failed: '${file}' is different from baseline file.`); + return false; + } + } + return true; + +} + +function compileGeneratedFile(file: string) { + try { + child_process.execSync(`node ${tscPath} --strict --lib es5 --noEmit ${path.join(outputFolder, file)}`); + } catch (e) { + console.error(`Test failed: could not compile '${file}':`); + console.error(e.stdout.toString()); + console.error(); + return false; + } + return true; +} + +function test() { + if (compareToBaselines() && + compileGeneratedFile("dom.generated.d.ts") && + compileGeneratedFile("webworker.generated.d.ts")) { + console.log("All tests passed."); + process.exit(0); + } + process.exit(1); +} + +test(); \ No newline at end of file diff --git a/src/types.d.ts b/src/types.d.ts new file mode 100644 index 000000000..ff2b12a90 --- /dev/null +++ b/src/types.d.ts @@ -0,0 +1,243 @@ +export type Typed = { + "type": string | Typed[]; + "subtype"?: Typed; + "nullable"?: 1; + "type-original"?: string; + "override-type"?: string; +}; + +export type Param = { + "name": string; + "type": string | Typed[]; + "subtype"?: Typed; + "nullable"?: 1; + "type-original": string; + "optional"?: 1; + "variadic"?: string; + "treat-null-as"?: string; +}; + +export type Signature = { + "type": string | Typed[]; + "subtype"?: Typed; + "nullable"?: 1; + "type-original": string; + "param"?: Param[]; + "param-min-required"?: number, +}; + +export type Member = { + "name": string; + "type": string | Typed[]; + "subtype"?: Typed; + "nullable"?: 1; + "type-original": string; + "default"?: string; + "required"?: 1; + "override-type"?: string; + "specs"?: string; +}; + +export type Property = { + "name": string; + "event-handler"?: string; + "type": string | Typed[]; + "subtype"?: Typed; + "nullable"?: 1; + "type-original": string; + "read-only"?: 1; + "replaceable"?: string; + "put-forwards"?: string; + "stringifier"?: string; + "tags"?: string; + "property-descriptor-not-enumerable"?: string; + "content-attribute"?: string; + "content-attribute-reflects"?: string; + "content-attribute-value-syntax"?: string; + "content-attribute-enum-values"?: string; + "content-attribute-aliases"?: string; + "content-attribute-boolean"?: string; + "css-property"?: string; + "css-property-enum-values"?: string; + "css-property-initial"?: string; + "css-property-value-syntax"?: string; + "css-property-shorthand"?: string; + "css-property-subproperties"?: string; + "css-property-animatable"?: string; + "css-property-aliases"?: string; + "lenient-this"?: string; + "treat-null-as"?: string; + "event-handler-map-to-window"?: string; + "static"?: string; + "comment"?: string; + "override-type"?: string; + "required"?: string; + "specs"?: string; + "deprecated"?: 1; + "interop"?: 1; + "exposed"?: string; + "constant"?: 1; +}; + +export type Event = { + "name": string; + "type": string; + "dispatch"?: string; + "skips-window"?: string; + "bubbles"?: 1; + "cancelable"?: 1; + "follows"?: string; + "precedes"?: string; + "tags"?: string; + "aliases"?: string; + "specs"?: string; +}; + +export type Method = { + "name": string; + "tags"?: string; + "static"?: string; + "getter"?: 1; + "stringifier"?: string; + "serializer"?: string; + "serializer-info"?: string; + "comment"?: string; + "override-signatures"?: string[]; + "additional-signatures"?: string[]; + "specs"?: string; + "exposed"?: string; + "deprecated"?: 1; + "signature": Signature[]; +}; + +export type CallbackFunction = { + "name": string; + "callback": 1; + "signature": Signature[]; + "tags"?: string; + "override-signatures"?: string[]; + "specs"?: string; +}; + +export type Constructor = { + "signature": Signature[]; + "comment"?: string; + "specs"?: string; +}; + +export type NamedConstructor = { + "name": string; + "signature": Signature[]; + "specs"?: string; +}; + +export type Constant = { + "name": string; + "type": string | Typed[]; + "subtype"?: Typed; + "nullable"?: 1; + "type-original": string; + "value": string; + "tags"?: string + "exposed"?: string; + "specs"?: string; +}; + +export type ParsedAttribute ={ + "enum-values"?: string; + "name": string; + "value-syntax"?: string; +}; + +export type Element = { + "name": string; + "namespace"?: string; + "html-self-closing"?: string; + "specs"?: string; +}; + +export type Interface = { + "name": string; + "extends": string; + "constants"?: { + "constant": Record; + }; + "methods": { + "method": Record; + }; + "events"?: { + "event": Event[]; + }; + "properties"?: { + "property": Record; + }; + "constructor"?: Constructor; + "secure-context"?: string; + "implements"?: string[]; + "static"?: undefined; + "anonymous-methods"?: { + "method": Method[]; + }; + "anonymous-content-attributes"?: { + "parsedattribute": ParsedAttribute[]; + }; + "element"?: Element[]; + "named-constructor"?: NamedConstructor; + "override-builtins"?: string; + "exposed"?: string; + "tags"?: string; + "implicit-this"?: string; + "primary-global"?: string; + "no-interface-object"?: string; + "global"?: string; + "type-parameters"?: string[]; + "overide-index-signatures"?: string[]; + "specs"?: string; + "iterable"?: "value" | "pair" | "pair-iterator"; +}; + +export type Enum = { + "name": string; + "value": string[]; + "specs"?: string; +}; + +export type TypeDef = { + "new-type": string; + "type": string; + "override-type"?: string; +}; + +export type Dictionary = { + "name": string; + "extends": string; + "members": { + "member": Record; + }; + "specs"?: string; + "type-parameters"?: string[]; +}; + +export type WebIdl = { + "callback-functions"?: { + "callback-function": Record; + }, + "callback-interfaces"?: { + "interface": Record; + }; + "dictionaries"?: { + "dictionary": Record; + }; + "enums"?: { + "enum": Record; + }; + "interfaces"?: { + "interface": Record; + }; + "mixins"?: { + "mixin": Record; + }; + "typedefs"?: { + "typedef": TypeDef[]; + }; +}; diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 000000000..42ee03d79 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,16 @@ +{ + "compilerOptions": { + "target": "es6", + "module": "commonjs", + "lib": ["es2016"], + "outDir": "./lib", + "strict": true, + "esModuleInterop": true, + "sourceMap": true, + "noUnusedLocals": true, + "noUnusedParameters": true + }, + "include": [ + "./src" + ] +} \ No newline at end of file