From 747dee22a747162752878acef92c5b4d32c6ecf5 Mon Sep 17 00:00:00 2001 From: Dmitri Shuralyov Date: Tue, 6 Jan 2015 02:05:58 -0800 Subject: [PATCH 1/5] Very rough initial implementation of snippet sharing support. --- playground/index.html | 4 ++- playground/playground.css | 4 +++ playground/playground.go | 70 ++++++++++++++++++++++++++++++++++++++- 3 files changed, 76 insertions(+), 2 deletions(-) diff --git a/playground/index.html b/playground/index.html index 38a00bd1..2c903d33 100644 --- a/playground/index.html +++ b/playground/index.html @@ -12,10 +12,12 @@ + + - +
diff --git a/playground/playground.css b/playground/playground.css index 27e4d9d4..aa0cc3a7 100644 --- a/playground/playground.css +++ b/playground/playground.css @@ -34,6 +34,10 @@ a { padding: 10px; } +#share-url.show-share-url-false { + display: none; +} + .show-generated-false #generated { display: none; } diff --git a/playground/playground.go b/playground/playground.go index 6ceba069..6eec985a 100644 --- a/playground/playground.go +++ b/playground/playground.go @@ -13,17 +13,46 @@ import ( "github.com/gopherjs/gopherjs/compiler" "github.com/gopherjs/gopherjs/js" "github.com/neelance/go-angularjs" + "honnef.co/go/js/dom" // TODO: Should it be used? ) type Line map[string]string var output []Line +//const snippetStoreHost = "localhost:8080" +const snippetStoreHost = "gotools.org:26204" // TODO: Decide on where the snippet-store server will be hosted. + func main() { app := angularjs.NewModule("playground", nil, nil) app.NewController("PlaygroundCtrl", func(scope *angularjs.Scope) { - scope.Set("code", "package main\n\nimport (\n\t\"fmt\"\n\t\"github.com/gopherjs/gopherjs/js\"\n)\n\nfunc main() {\n\tfmt.Println(\"Hello, playground\")\n\tjs.Global.Call(\"alert\", \"Hello, JavaScript\")\n\tprintln(\"Hello, JS console\")\n}\n") + if strings.HasPrefix(dom.GetWindow().Location().Hash, "#/") { + id := dom.GetWindow().Location().Hash[2:] + + // TODO: Maybe use "honnef.co/go/js/xhr" now that there are more requests being done? + req := js.Global.Get("XMLHttpRequest").New() + req.Call("open", "GET", "http://"+snippetStoreHost+"/p/"+id, true) + req.Set("responseType", "arraybuffer") + req.Set("onload", func() { + if req.Get("status").Int() != 200 { + scope.Apply(func() { + scope.Set("output", []Line{Line{"type": "err", "content": `cannot load snippet "` + id + `"`}}) + }) + return + } + + data := js.Global.Get("Uint8Array").New(req.Get("response")).Interface().([]byte) + scope.Apply(func() { + scope.Set("code", string(data)) + }) + }) + req.Call("send") + } else { + scope.Set("code", "package main\n\nimport (\n\t\"fmt\"\n\t\"github.com/gopherjs/gopherjs/js\"\n)\n\nfunc main() {\n\tfmt.Println(\"Hello, playground\")\n\tjs.Global.Call(\"alert\", \"Hello, JavaScript\")\n\tprintln(\"Hello, JS console\")\n}\n") + } + //scope.Set("shareUrl", "") + scope.Set("showShareUrl", false) scope.Set("showGenerated", false) scope.Set("generated", `(generated code will be shown here after clicking "Run")`) @@ -42,6 +71,10 @@ func main() { setupEnvironment(scope) codeArea := angularjs.ElementById("code") + codeArea.On("input", func(e *angularjs.Event) { + scope.Set("showShareUrl", false) + dom.GetWindow().Location().Hash = "" + }) codeArea.On("keydown", func(e *angularjs.Event) { toInsert := "" switch e.KeyCode { @@ -62,6 +95,9 @@ func main() { } } if toInsert != "" { + scope.Set("showShareUrl", false) + dom.GetWindow().Location().Hash = "" + start := codeArea.Prop("selectionStart").Int() end := codeArea.Prop("selectionEnd").Int() code := scope.Get("code").Str() @@ -174,6 +210,38 @@ func main() { scope.Set("code", string(out)) scope.Set("output", []Line{}) }) + + scope.Set("share", func() { + req := js.Global.Get("XMLHttpRequest").New() + req.Call("open", "POST", "http://"+snippetStoreHost+"/share", true) + req.Set("responseType", "arraybuffer") + req.Set("onload", func() { + if req.Get("status").Int() != 200 { + scope.Apply(func() { + scope.Set("output", []Line{Line{"type": "err", "content": `cannot share snippet`}}) + }) + return + } + + data := js.Global.Get("Uint8Array").New(req.Get("response")).Interface().([]byte) + scope.Apply(func() { + id := string(data) + + dom.GetWindow().Location().Hash = "#/" + id + + scope.Set("shareUrl", dom.GetWindow().Location().Str()) + scope.Set("showShareUrl", true) + // TODO: Do this better using AngularJS. + // Perhaps using http://stackoverflow.com/questions/14833326/how-to-set-focus-on-input-field/18295416. + go func() { + time.Sleep(time.Millisecond) + dom.GetWindow().Document().GetElementByID("share-url").(*dom.HTMLInputElement).Select() + }() + }) + }) + // TODO: Should be sending as binary blob or is text okay? + req.Call("send", scope.Get("code").Str()) + }) }) } From dada667870db7ad09fe86a074c9d2eb44e257e8e Mon Sep 17 00:00:00 2001 From: Dmitri Shuralyov Date: Tue, 6 Jan 2015 23:38:15 -0800 Subject: [PATCH 2/5] Use honnef.co/go/js/xhr package for XHR. --- playground/playground.go | 53 +++++++++++++++++++--------------------- 1 file changed, 25 insertions(+), 28 deletions(-) diff --git a/playground/playground.go b/playground/playground.go index 6eec985a..b9968ea7 100644 --- a/playground/playground.go +++ b/playground/playground.go @@ -13,7 +13,8 @@ import ( "github.com/gopherjs/gopherjs/compiler" "github.com/gopherjs/gopherjs/js" "github.com/neelance/go-angularjs" - "honnef.co/go/js/dom" // TODO: Should it be used? + "honnef.co/go/js/dom" + "honnef.co/go/js/xhr" ) type Line map[string]string @@ -30,28 +31,26 @@ func main() { if strings.HasPrefix(dom.GetWindow().Location().Hash, "#/") { id := dom.GetWindow().Location().Hash[2:] - // TODO: Maybe use "honnef.co/go/js/xhr" now that there are more requests being done? - req := js.Global.Get("XMLHttpRequest").New() - req.Call("open", "GET", "http://"+snippetStoreHost+"/p/"+id, true) - req.Set("responseType", "arraybuffer") - req.Set("onload", func() { - if req.Get("status").Int() != 200 { + req := xhr.NewRequest("GET", "http://"+snippetStoreHost+"/p/"+id) + req.ResponseType = xhr.ArrayBuffer + go func() { + err := req.Send(nil) + if err != nil || req.Status != 200 { scope.Apply(func() { scope.Set("output", []Line{Line{"type": "err", "content": `cannot load snippet "` + id + `"`}}) }) return } - data := js.Global.Get("Uint8Array").New(req.Get("response")).Interface().([]byte) + data := js.Global.Get("Uint8Array").New(req.Response).Interface().([]byte) scope.Apply(func() { scope.Set("code", string(data)) }) - }) - req.Call("send") + }() } else { scope.Set("code", "package main\n\nimport (\n\t\"fmt\"\n\t\"github.com/gopherjs/gopherjs/js\"\n)\n\nfunc main() {\n\tfmt.Println(\"Hello, playground\")\n\tjs.Global.Call(\"alert\", \"Hello, JavaScript\")\n\tprintln(\"Hello, JS console\")\n}\n") } - //scope.Set("shareUrl", "") + scope.Set("shareUrl", "") scope.Set("showShareUrl", false) scope.Set("showGenerated", false) scope.Set("generated", `(generated code will be shown here after clicking "Run")`) @@ -154,18 +153,18 @@ func main() { for _, p := range pkgsToLoad { path := p - req := js.Global.Get("XMLHttpRequest").New() - req.Call("open", "GET", "pkg/"+path+".a.js", true) - req.Set("responseType", "arraybuffer") - req.Set("onload", func() { - if req.Get("status").Int() != 200 { + req := xhr.NewRequest("GET", "pkg/"+path+".a.js") + req.ResponseType = xhr.ArrayBuffer + go func() { + err := req.Send(nil) + if err != nil || req.Status != 200 { scope.Apply(func() { scope.Set("output", []Line{Line{"type": "err", "content": `cannot load package "` + path + `"`}}) }) return } - data := js.Global.Get("Uint8Array").New(req.Get("response")).Interface().([]byte) + data := js.Global.Get("Uint8Array").New(req.Response).Interface().([]byte) packages[path], err = compiler.ReadArchive(path+".a", path, bytes.NewReader(data), importContext.Packages) if err != nil { scope.Apply(func() { @@ -177,8 +176,7 @@ func main() { if pkgsReceived == len(pkgsToLoad) { run(loadOnly) } - }) - req.Call("send") + }() } return } @@ -212,18 +210,19 @@ func main() { }) scope.Set("share", func() { - req := js.Global.Get("XMLHttpRequest").New() - req.Call("open", "POST", "http://"+snippetStoreHost+"/share", true) - req.Set("responseType", "arraybuffer") - req.Set("onload", func() { - if req.Get("status").Int() != 200 { + req := xhr.NewRequest("POST", "http://"+snippetStoreHost+"/share") + req.ResponseType = xhr.ArrayBuffer + go func() { + // TODO: Send as binary? + err := req.Send(scope.Get("code").Str()) + if err != nil || req.Status != 200 { scope.Apply(func() { scope.Set("output", []Line{Line{"type": "err", "content": `cannot share snippet`}}) }) return } - data := js.Global.Get("Uint8Array").New(req.Get("response")).Interface().([]byte) + data := js.Global.Get("Uint8Array").New(req.Response).Interface().([]byte) scope.Apply(func() { id := string(data) @@ -238,9 +237,7 @@ func main() { dom.GetWindow().Document().GetElementByID("share-url").(*dom.HTMLInputElement).Select() }() }) - }) - // TODO: Should be sending as binary blob or is text okay? - req.Call("send", scope.Get("code").Str()) + }() }) }) } From 2b1855a0e317184d9e4bc153cee1ef29b7306f05 Mon Sep 17 00:00:00 2001 From: Dmitri Shuralyov Date: Wed, 7 Jan 2015 00:13:00 -0800 Subject: [PATCH 3/5] Improve share-url style. --- playground/playground.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/playground/playground.css b/playground/playground.css index aa0cc3a7..c82bcb11 100644 --- a/playground/playground.css +++ b/playground/playground.css @@ -34,6 +34,12 @@ a { padding: 10px; } +#share-url { + width: 320px; + font-size: 16px; + border: 1px solid #ccc; + background: #eee; +} #share-url.show-share-url-false { display: none; } From d0c68681238730fa18c5dfd076f0e8b09b0e553f Mon Sep 17 00:00:00 2001 From: Dmitri Shuralyov Date: Thu, 8 Jan 2015 22:32:53 -0800 Subject: [PATCH 4/5] Synchronize run so it doesn't happen before snippet finished loading. Use "snippets.gotools.org" as the current snippet store host. Change error language from "cannot do something" to "failed to do something". I think this is more clear and suggests that it's a (potentially temporary) system failure, rather than the user doing something wrong. --- playground/playground.go | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/playground/playground.go b/playground/playground.go index b9968ea7..2abc92bf 100644 --- a/playground/playground.go +++ b/playground/playground.go @@ -21,10 +21,11 @@ type Line map[string]string var output []Line -//const snippetStoreHost = "localhost:8080" -const snippetStoreHost = "gotools.org:26204" // TODO: Decide on where the snippet-store server will be hosted. +const snippetStoreHost = "snippets.gotools.org" func main() { + codeReady := make(chan struct{}) // Used to synchronize when "code" value is ready. + app := angularjs.NewModule("playground", nil, nil) app.NewController("PlaygroundCtrl", func(scope *angularjs.Scope) { @@ -37,7 +38,7 @@ func main() { err := req.Send(nil) if err != nil || req.Status != 200 { scope.Apply(func() { - scope.Set("output", []Line{Line{"type": "err", "content": `cannot load snippet "` + id + `"`}}) + scope.Set("output", []Line{Line{"type": "err", "content": `failed to load snippet "` + id + `"`}}) }) return } @@ -45,10 +46,12 @@ func main() { data := js.Global.Get("Uint8Array").New(req.Response).Interface().([]byte) scope.Apply(func() { scope.Set("code", string(data)) + close(codeReady) }) }() } else { scope.Set("code", "package main\n\nimport (\n\t\"fmt\"\n\t\"github.com/gopherjs/gopherjs/js\"\n)\n\nfunc main() {\n\tfmt.Println(\"Hello, playground\")\n\tjs.Global.Call(\"alert\", \"Hello, JavaScript\")\n\tprintln(\"Hello, JS console\")\n}\n") + close(codeReady) } scope.Set("shareUrl", "") scope.Set("showShareUrl", false) @@ -159,7 +162,7 @@ func main() { err := req.Send(nil) if err != nil || req.Status != 200 { scope.Apply(func() { - scope.Set("output", []Line{Line{"type": "err", "content": `cannot load package "` + path + `"`}}) + scope.Set("output", []Line{Line{"type": "err", "content": `failed to load package "` + path + `"`}}) }) return } @@ -197,7 +200,10 @@ func main() { js.Global.Call("eval", js.InternalObject(jsCode.String())) } scope.Set("run", run) - run(true) + go func() { + <-codeReady // Wait for "code" value to be ready. + run(true) + }() scope.Set("format", func() { out, err := format.Source([]byte(scope.Get("code").Str())) @@ -217,7 +223,7 @@ func main() { err := req.Send(scope.Get("code").Str()) if err != nil || req.Status != 200 { scope.Apply(func() { - scope.Set("output", []Line{Line{"type": "err", "content": `cannot share snippet`}}) + scope.Set("output", []Line{Line{"type": "err", "content": `failed to share snippet`}}) }) return } From af6b3b2e242ebbdfdc0450f8fffc8f4aa7f917e2 Mon Sep 17 00:00:00 2001 From: Dmitri Shuralyov Date: Thu, 8 Jan 2015 23:04:28 -0800 Subject: [PATCH 5/5] Rebuild playground.js. It did get quite a bit larger due to use of dom and xhr packages (which are somewhat overkill for this tiny project if we wanted to really optimize its size, but I think worth it in general and shows better example code). --- playground/playground.js | 4603 ++++++++++++++++++++++++++++++++++++-- 1 file changed, 4381 insertions(+), 222 deletions(-) diff --git a/playground/playground.js b/playground/playground.js index 11f06530..525ba958 100644 --- a/playground/playground.js +++ b/playground/playground.js @@ -12215,7 +12215,7 @@ $packages["strings"] = (function() { return $pkg; })(); $packages["time"] = (function() { - var $pkg = {}, errors, js, nosync, runtime, strings, syscall, sliceType, sliceType$1, sliceType$2, ptrType, funcType, arrayType, sliceType$3, arrayType$1, arrayType$2, ptrType$1, chanType$2, funcType$1, ptrType$2, ptrType$3, ptrType$5, ptrType$6, ptrType$7, ptrType$8, runtimeTimer, ParseError, Timer, Time, Month, Weekday, Duration, Location, zone, zoneTrans, std0x, longDayNames, shortDayNames, shortMonthNames, longMonthNames, atoiError, errBad, errLeadingInt, unitMap, months, days, daysBefore, utcLoc, localLoc, localOnce, zoneinfo, badData, zoneDirs, _map, _key, _tuple, initLocal, runtimeNano, now, startTimer, stopTimer, startsWithLowerCase, nextStdChunk, match, lookup, appendUint, atoi, formatNano, quote, isDigit, getnum, cutspace, skip, Parse, parse, parseTimeZone, parseGMT, parseNanoseconds, leadingInt, ParseDuration, when, AfterFunc, goFunc, absWeekday, absClock, fmtFrac, fmtInt, absDate, Now, Unix, isLeap, norm, Date, div, FixedZone; + var $pkg = {}, errors, js, nosync, runtime, strings, syscall, sliceType, sliceType$1, sliceType$2, ptrType, structType, chanType, funcType, arrayType, sliceType$3, arrayType$1, arrayType$2, ptrType$1, chanType$2, funcType$1, ptrType$2, ptrType$3, ptrType$5, ptrType$6, ptrType$7, ptrType$8, runtimeTimer, ParseError, Timer, Time, Month, Weekday, Duration, Location, zone, zoneTrans, std0x, longDayNames, shortDayNames, shortMonthNames, longMonthNames, atoiError, errBad, errLeadingInt, unitMap, months, days, daysBefore, utcLoc, localLoc, localOnce, zoneinfo, badData, zoneDirs, _map, _key, _tuple, initLocal, runtimeNano, now, Sleep, startTimer, stopTimer, startsWithLowerCase, nextStdChunk, match, lookup, appendUint, atoi, formatNano, quote, isDigit, getnum, cutspace, skip, Parse, parse, parseTimeZone, parseGMT, parseNanoseconds, leadingInt, ParseDuration, when, AfterFunc, goFunc, absWeekday, absClock, fmtFrac, fmtInt, absDate, Now, Unix, isLeap, norm, Date, div, FixedZone; errors = $packages["errors"]; js = $packages["github.com/gopherjs/gopherjs/js"]; nosync = $packages["github.com/gopherjs/gopherjs/nosync"]; @@ -12298,6 +12298,17 @@ $packages["time"] = (function() { _tmp = $div64(n, new $Int64(0, 1000000000), false); _tmp$1 = ((x = $div64(n, new $Int64(0, 1000000000), true), x.$low + ((x.$high >> 31) * 4294967296)) >> 0); sec = _tmp; nsec = _tmp$1; return [sec, nsec]; }; + Sleep = $pkg.Sleep = function(d, $b) { + var $this = this, $args = arguments, $r, $s = 0, c, x, _r; + /* */ if($b !== $BLOCKING) { $nonblockingCall(); }; var $blocking_Sleep = function() { s: while (true) { switch ($s) { case 0: + c = new chanType(0); + $global.setTimeout($externalize((function() { + $close(c); + }), funcType), ((x = $div64(d, new Duration(0, 1000000), false), x.$low + ((x.$high >> 31) * 4294967296)) >> 0)); + _r = $recv(c, $BLOCKING); /* */ $s = 1; case 1: if (_r && _r.$blocking) { _r = _r(); } + _r[0]; + /* */ case -1: } return; } }; $blocking_Sleep.$blocking = true; return $blocking_Sleep; + }; startTimer = function(t) { var x, x$1, diff; t.active = true; @@ -14194,6 +14205,8 @@ $packages["time"] = (function() { sliceType$1 = $sliceType(zone); sliceType$2 = $sliceType(zoneTrans); ptrType = $ptrType(zone); + structType = $structType([]); + chanType = $chanType(structType, false, false); funcType = $funcType([], [], false); arrayType = $arrayType($Uint8, 32); sliceType$3 = $sliceType($Uint8); @@ -60513,242 +60526,4388 @@ $packages["go/format"] = (function() { }; return $pkg; })(); -$packages["github.com/gopherjs/gopherjs.github.io/playground"] = (function() { - var $pkg = {}, bytes, compiler, js, angularjs, ast, format, parser, scanner, token, strings, time, sliceType, sliceType$1, ptrType, sliceType$2, ptrType$1, sliceType$3, ptrType$2, sliceType$4, sliceType$5, funcType, ptrType$3, funcType$1, Line, output, main, setupEnvironment; - bytes = $packages["bytes"]; - compiler = $packages["github.com/gopherjs/gopherjs/compiler"]; +$packages["honnef.co/go/js/dom"] = (function() { + var $pkg = {}, js, strings, time, sliceType, sliceType$1, sliceType$2, sliceType$3, ptrType, ptrType$1, ptrType$2, ptrType$3, ptrType$4, sliceType$4, sliceType$5, sliceType$6, ptrType$5, ptrType$6, sliceType$7, ptrType$7, sliceType$8, ptrType$8, sliceType$9, sliceType$10, ptrType$9, funcType, funcType$1, funcType$2, ptrType$10, sliceType$11, ptrType$11, sliceType$12, ptrType$12, ptrType$13, sliceType$13, ptrType$14, sliceType$14, ptrType$15, sliceType$15, ptrType$16, ptrType$17, ptrType$18, funcType$3, ptrType$19, ptrType$20, ptrType$21, ptrType$22, ptrType$23, ptrType$24, ptrType$25, ptrType$26, funcType$4, funcType$5, ptrType$27, ptrType$28, ptrType$29, ptrType$30, ptrType$31, ptrType$32, ptrType$33, ptrType$34, ptrType$35, ptrType$36, ptrType$37, ptrType$38, ptrType$39, ptrType$40, ptrType$41, ptrType$42, ptrType$43, ptrType$44, ptrType$45, ptrType$46, ptrType$47, ptrType$48, ptrType$49, ptrType$50, ptrType$51, ptrType$52, ptrType$53, ptrType$54, ptrType$55, ptrType$56, ptrType$57, ptrType$58, ptrType$59, ptrType$60, ptrType$61, ptrType$62, ptrType$63, ptrType$64, ptrType$65, ptrType$66, ptrType$67, ptrType$68, ptrType$69, ptrType$70, ptrType$71, ptrType$72, ptrType$73, ptrType$74, ptrType$75, ptrType$76, ptrType$77, ptrType$78, ptrType$79, ptrType$80, ptrType$81, ptrType$82, ptrType$83, ptrType$84, ptrType$85, ptrType$86, ptrType$87, ptrType$88, ptrType$89, mapType, ptrType$90, ptrType$91, ptrType$92, ptrType$93, ptrType$94, ptrType$95, ptrType$96, ptrType$97, ptrType$98, ptrType$99, ptrType$100, ptrType$101, ptrType$102, ptrType$103, ptrType$104, ptrType$105, ptrType$106, ptrType$107, ptrType$108, ptrType$109, ptrType$110, ptrType$111, ptrType$112, ptrType$113, ptrType$114, ptrType$115, ptrType$116, ptrType$117, ptrType$118, ptrType$119, ptrType$120, ptrType$121, ptrType$122, ptrType$123, ptrType$124, ptrType$125, ptrType$126, ptrType$127, ptrType$128, ptrType$129, ptrType$130, ptrType$131, ptrType$132, ptrType$133, TokenList, Document, document, htmlDocument, URLUtils, Location, HTMLElement, Window, window, Selection, Screen, Navigator, Geolocation, PositionError, PositionOptions, Position, Coordinates, History, Console, DocumentType, DOMImplementation, StyleSheet, Node, BasicNode, Element, ClientRect, BasicHTMLElement, BasicElement, HTMLAnchorElement, HTMLAppletElement, HTMLAreaElement, HTMLAudioElement, HTMLBRElement, HTMLBaseElement, HTMLBodyElement, ValidityState, HTMLButtonElement, HTMLCanvasElement, CanvasRenderingContext2D, HTMLDListElement, HTMLDataElement, HTMLDataListElement, HTMLDirectoryElement, HTMLDivElement, HTMLEmbedElement, HTMLFieldSetElement, HTMLFontElement, HTMLFormElement, HTMLFrameElement, HTMLFrameSetElement, HTMLHRElement, HTMLHeadElement, HTMLHeadingElement, HTMLHtmlElement, HTMLIFrameElement, HTMLImageElement, HTMLInputElement, File, HTMLKeygenElement, HTMLLIElement, HTMLLabelElement, HTMLLegendElement, HTMLLinkElement, HTMLMapElement, HTMLMediaElement, HTMLMenuElement, HTMLMetaElement, HTMLMeterElement, HTMLModElement, HTMLOListElement, HTMLObjectElement, HTMLOptGroupElement, HTMLOptionElement, HTMLOutputElement, HTMLParagraphElement, HTMLParamElement, HTMLPreElement, HTMLProgressElement, HTMLQuoteElement, HTMLScriptElement, HTMLSelectElement, HTMLSourceElement, HTMLSpanElement, HTMLStyleElement, HTMLTableCaptionElement, HTMLTableCellElement, HTMLTableColElement, HTMLTableDataCellElement, HTMLTableElement, HTMLTableHeaderCellElement, HTMLTableRowElement, HTMLTableSectionElement, HTMLTextAreaElement, HTMLTimeElement, HTMLTitleElement, TextTrack, HTMLTrackElement, HTMLUListElement, HTMLUnknownElement, HTMLVideoElement, CSSStyleDeclaration, Text, Event, BasicEvent, AnimationEvent, AudioProcessingEvent, BeforeInputEvent, BeforeUnloadEvent, BlobEvent, ClipboardEvent, CloseEvent, CompositionEvent, CSSFontFaceLoadEvent, CustomEvent, DeviceLightEvent, DeviceMotionEvent, DeviceOrientationEvent, DeviceProximityEvent, DOMTransactionEvent, DragEvent, EditingBeforeInputEvent, ErrorEvent, FocusEvent, GamepadEvent, HashChangeEvent, IDBVersionChangeEvent, KeyboardEvent, MediaStreamEvent, MessageEvent, MouseEvent, MutationEvent, OfflineAudioCompletionEvent, PageTransitionEvent, PointerEvent, PopStateEvent, ProgressEvent, RelatedEvent, RTCPeerConnectionIceEvent, SensorEvent, StorageEvent, SVGEvent, SVGZoomEvent, TimeEvent, TouchEvent, TrackEvent, TransitionEvent, UIEvent, UserProximityEvent, WheelEvent, callRecover, nodeListToNodes, nodeListToElements, nodeListToHTMLElements, wrapDocument, wrapNode, wrapElement, wrapHTMLElement, getForm, getLabels, GetWindow, wrapEvent; js = $packages["github.com/gopherjs/gopherjs/js"]; - angularjs = $packages["github.com/neelance/go-angularjs"]; - ast = $packages["go/ast"]; - format = $packages["go/format"]; - parser = $packages["go/parser"]; - scanner = $packages["go/scanner"]; - token = $packages["go/token"]; strings = $packages["strings"]; time = $packages["time"]; - Line = $pkg.Line = $newType(4, $kindMap, "main.Line", "Line", "github.com/gopherjs/gopherjs.github.io/playground", null); - main = function() { - var app; - app = angularjs.NewModule("playground", sliceType$1.nil, $throwNilPointerError); - app.NewController("PlaygroundCtrl", (function(scope) { - var packages, pkgsToLoad, importContext, fileSet, pkgsReceived, codeArea, run; - scope.Object.code = $externalize("package main\n\nimport (\n\t\"fmt\"\n\t\"github.com/gopherjs/gopherjs/js\"\n)\n\nfunc main() {\n\tfmt.Println(\"Hello, playground\")\n\tjs.Global.Call(\"alert\", \"Hello, JavaScript\")\n\tprintln(\"Hello, JS console\")\n}\n", $String); - scope.Object.showGenerated = $externalize(false, $Bool); - scope.Object.generated = $externalize("(generated code will be shown here after clicking \"Run\")", $String); - packages = new $Map(); - pkgsToLoad = sliceType$1.nil; - importContext = compiler.NewImportContext((function(path) { - var _tuple, _entry, pkg, found; - _tuple = (_entry = packages[path], _entry !== undefined ? [_entry.v, true] : [ptrType.nil, false]); pkg = _tuple[0]; found = _tuple[1]; - if (found) { - return [pkg, $ifaceNil]; - } - pkgsToLoad = $append(pkgsToLoad, path); - return [new compiler.Archive.Ptr("", sliceType$1.nil, sliceType$2.nil, sliceType$3.nil, sliceType$2.nil, false), $ifaceNil]; - })); - fileSet = token.NewFileSet(); - pkgsReceived = 0; - setupEnvironment(scope); - codeArea = angularjs.ElementById("code"); - codeArea.On("keydown", (function(e) { - var toInsert, _ref, start, code, i, c, start$1, end, code$1; - toInsert = ""; - _ref = $parseInt(e.Object.keyCode) >> 0; - if (_ref === 9) { - toInsert = "\t"; - } else if (_ref === 13) { - toInsert = "\n"; - start = $parseInt(codeArea.Prop("selectionStart")) >> 0; - code = $internalize(scope.Object.code, $String); - i = strings.LastIndex(code.substring(0, start), "\n") + 1 >> 0; - while (i < start) { - c = code.charCodeAt(i); - if (!((c === 32)) && !((c === 9))) { - break; - } - toInsert = toInsert + ($encodeRune(c)); - i = i + (1) >> 0; - } - } - if (!(toInsert === "")) { - start$1 = $parseInt(codeArea.Prop("selectionStart")) >> 0; - end = $parseInt(codeArea.Prop("selectionEnd")) >> 0; - code$1 = $internalize(scope.Object.code, $String); - scope.Apply((function() { - scope.Object.code = $externalize(code$1.substring(0, start$1) + toInsert + code$1.substring(end), $String); - })); - codeArea.SetProp(new $String("selectionStart"), new $Int((start$1 + toInsert.length >> 0))); - codeArea.SetProp(new $String("selectionEnd"), new $Int((start$1 + toInsert.length >> 0))); - e.PreventDefault(); - } - })); - run = $throwNilPointerError; - run = (function(loadOnly) { - var _tuple, file, err, _tuple$1, list, ok, _ref, _i, entry, _map, _key, _map$1, _key$1, _tuple$2, mainPkg, _key$2, _tuple$3, list$1, ok$1, output$1, _ref$1, _i$1, entry$1, _map$2, _key$3, _map$3, _key$4, allPkgs, _tuple$4, _ref$2, _i$2, req, path, p, mainPkgCode, _entry, jsCode; - output = sliceType.nil; - scope.Object.output = $externalize(output, sliceType); - pkgsToLoad = sliceType$1.nil; - _tuple = parser.ParseFile(fileSet, "prog.go", new sliceType$2($stringToBytes($internalize(scope.Object.code, $String))), 4); file = _tuple[0]; err = _tuple[1]; - if (!($interfaceIsEqual(err, $ifaceNil))) { - _tuple$1 = $assertType(err, scanner.ErrorList, true); list = _tuple$1[0]; ok = _tuple$1[1]; - if (ok) { - _ref = list; - _i = 0; - while (_i < _ref.$length) { - entry = ((_i < 0 || _i >= _ref.$length) ? $throwRuntimeError("index out of range") : _ref.$array[_ref.$offset + _i]); - output = $append(output, (_map = new $Map(), _key = "type", _map[_key] = { k: _key, v: "err" }, _key = "content", _map[_key] = { k: _key, v: entry.Error() }, _map)); - _i++; - } - scope.Object.output = $externalize(output, sliceType); - return; - } - scope.Object.output = $externalize(new sliceType([(_map$1 = new $Map(), _key$1 = "type", _map$1[_key$1] = { k: _key$1, v: "err" }, _key$1 = "content", _map$1[_key$1] = { k: _key$1, v: err.Error() }, _map$1)]), sliceType); - return; - } - _tuple$2 = compiler.Compile("main", new sliceType$4([file]), fileSet, importContext, false); mainPkg = _tuple$2[0]; err = _tuple$2[1]; - _key$2 = "main"; (packages || $throwRuntimeError("assignment to entry in nil map"))[_key$2] = { k: _key$2, v: mainPkg }; - if (!($interfaceIsEqual(err, $ifaceNil)) && (pkgsToLoad.$length === 0)) { - _tuple$3 = $assertType(err, compiler.ErrorList, true); list$1 = _tuple$3[0]; ok$1 = _tuple$3[1]; - if (ok$1) { - output$1 = sliceType.make(0); - _ref$1 = list$1; - _i$1 = 0; - while (_i$1 < _ref$1.$length) { - entry$1 = ((_i$1 < 0 || _i$1 >= _ref$1.$length) ? $throwRuntimeError("index out of range") : _ref$1.$array[_ref$1.$offset + _i$1]); - output$1 = $append(output$1, (_map$2 = new $Map(), _key$3 = "type", _map$2[_key$3] = { k: _key$3, v: "err" }, _key$3 = "content", _map$2[_key$3] = { k: _key$3, v: entry$1.Error() }, _map$2)); - _i$1++; - } - scope.Object.output = $externalize(output$1, sliceType); - return; - } - scope.Object.output = $externalize(new sliceType([(_map$3 = new $Map(), _key$4 = "type", _map$3[_key$4] = { k: _key$4, v: "err" }, _key$4 = "content", _map$3[_key$4] = { k: _key$4, v: err.Error() }, _map$3)]), sliceType); - return; - } - allPkgs = sliceType$5.nil; - if (pkgsToLoad.$length === 0) { - _tuple$4 = compiler.ImportDependencies(mainPkg, importContext.Import); allPkgs = _tuple$4[0]; - } - if (!((pkgsToLoad.$length === 0))) { - pkgsReceived = 0; - _ref$2 = pkgsToLoad; - _i$2 = 0; - while (_i$2 < _ref$2.$length) { - path = [undefined]; - req = [undefined]; - p = ((_i$2 < 0 || _i$2 >= _ref$2.$length) ? $throwRuntimeError("index out of range") : _ref$2.$array[_ref$2.$offset + _i$2]); - path[0] = p; - req[0] = new ($global.XMLHttpRequest)(); - req[0].open($externalize("GET", $String), $externalize("pkg/" + path[0] + ".a.js", $String), $externalize(true, $Bool)); - req[0].responseType = $externalize("arraybuffer", $String); - req[0].onload = $externalize((function(path, req) { return function() { - var data, _tuple$5, _key$5; - if (!((($parseInt(req[0].status) >> 0) === 200))) { - scope.Apply((function(path, req) { return function() { - var _map$4, _key$5; - scope.Object.output = $externalize(new sliceType([(_map$4 = new $Map(), _key$5 = "type", _map$4[_key$5] = { k: _key$5, v: "err" }, _key$5 = "content", _map$4[_key$5] = { k: _key$5, v: "cannot load package \"" + path[0] + "\"" }, _map$4)]), sliceType); - }; })(path, req)); - return; - } - data = $assertType($internalize(new ($global.Uint8Array)(req[0].response), $emptyInterface), sliceType$2); - _tuple$5 = compiler.ReadArchive(path[0] + ".a", path[0], bytes.NewReader(data), importContext.Packages); _key$5 = path[0]; (packages || $throwRuntimeError("assignment to entry in nil map"))[_key$5] = { k: _key$5, v: _tuple$5[0] }; err = _tuple$5[1]; - if (!($interfaceIsEqual(err, $ifaceNil))) { - scope.Apply((function(path, req) { return function() { - var _map$4, _key$6; - scope.Object.output = $externalize(new sliceType([(_map$4 = new $Map(), _key$6 = "type", _map$4[_key$6] = { k: _key$6, v: "err" }, _key$6 = "content", _map$4[_key$6] = { k: _key$6, v: err.Error() }, _map$4)]), sliceType); - }; })(path, req)); - return; - } - pkgsReceived = pkgsReceived + (1) >> 0; - if (pkgsReceived === pkgsToLoad.$length) { - run(loadOnly); - } - }; })(path, req), funcType); - req[0].send(); - _i$2++; - } - return; - } - if (loadOnly) { - return; - } - mainPkgCode = bytes.NewBuffer(sliceType$2.nil); - compiler.WritePkgCode((_entry = packages["main"], _entry !== undefined ? _entry.v : ptrType.nil), false, new compiler.SourceMapFilter.Ptr(mainPkgCode, $throwNilPointerError, 0, 0, ptrType$3.nil)); - scope.Object.generated = $externalize(mainPkgCode.String(), $String); - jsCode = bytes.NewBuffer(sliceType$2.nil); - jsCode.WriteString("try{\n"); - compiler.WriteProgramCode(allPkgs, new compiler.SourceMapFilter.Ptr(jsCode, $throwNilPointerError, 0, 0, ptrType$3.nil)); - jsCode.WriteString("} catch (err) {\ngoPanicHandler(err.message);\n}\n"); - $checkForDeadlock = $externalize(true, $Bool); - $global.eval(jsCode.String()); - }); - scope.Object.run = $externalize(run, funcType$1); - run(true); - scope.Object.format = $externalize((function() { - var _tuple, out, err, _map, _key; - _tuple = format.Source(new sliceType$2($stringToBytes($internalize(scope.Object.code, $String)))); out = _tuple[0]; err = _tuple[1]; - if (!($interfaceIsEqual(err, $ifaceNil))) { - scope.Object.output = $externalize(new sliceType([(_map = new $Map(), _key = "type", _map[_key] = { k: _key, v: "err" }, _key = "content", _map[_key] = { k: _key, v: err.Error() }, _map)]), sliceType); - return; - } - scope.Object.code = $externalize($bytesToString(out), $String); - scope.Object.output = $externalize(new sliceType([]), sliceType); - }), funcType); - })); - }; - setupEnvironment = function(scope) { - $global.goPrintToConsole = (function(b) { - var lines, _entry, x, _map, _key, _lhs, _index, x$1, _key$1, _entry$1, i, _map$1, _key$2; - lines = strings.Split($bytesToString(b), "\n"); - if ((output.$length === 0) || !((_entry = (x = output.$length - 1 >> 0, ((x < 0 || x >= output.$length) ? $throwRuntimeError("index out of range") : output.$array[output.$offset + x]))["type"], _entry !== undefined ? _entry.v : "") === "out")) { - output = $append(output, (_map = new $Map(), _key = "type", _map[_key] = { k: _key, v: "out" }, _key = "content", _map[_key] = { k: _key, v: "" }, _map)); + TokenList = $pkg.TokenList = $newType(0, $kindStruct, "dom.TokenList", "TokenList", "honnef.co/go/js/dom", function(dtl_, o_, sa_, Length_) { + this.$val = this; + this.dtl = dtl_ !== undefined ? dtl_ : null; + this.o = o_ !== undefined ? o_ : null; + this.sa = sa_ !== undefined ? sa_ : ""; + this.Length = Length_ !== undefined ? Length_ : 0; + }); + Document = $pkg.Document = $newType(8, $kindInterface, "dom.Document", "Document", "honnef.co/go/js/dom", null); + document = $pkg.document = $newType(0, $kindStruct, "dom.document", "document", "honnef.co/go/js/dom", function(BasicNode_) { + this.$val = this; + this.BasicNode = BasicNode_ !== undefined ? BasicNode_ : ptrType$20.nil; + }); + htmlDocument = $pkg.htmlDocument = $newType(0, $kindStruct, "dom.htmlDocument", "htmlDocument", "honnef.co/go/js/dom", function(document_) { + this.$val = this; + this.document = document_ !== undefined ? document_ : ptrType$21.nil; + }); + URLUtils = $pkg.URLUtils = $newType(0, $kindStruct, "dom.URLUtils", "URLUtils", "honnef.co/go/js/dom", function(Object_, Href_, Protocol_, Host_, Hostname_, Port_, Pathname_, Search_, Hash_, Username_, Password_, Origin_) { + this.$val = this; + this.Object = Object_ !== undefined ? Object_ : null; + this.Href = Href_ !== undefined ? Href_ : ""; + this.Protocol = Protocol_ !== undefined ? Protocol_ : ""; + this.Host = Host_ !== undefined ? Host_ : ""; + this.Hostname = Hostname_ !== undefined ? Hostname_ : ""; + this.Port = Port_ !== undefined ? Port_ : ""; + this.Pathname = Pathname_ !== undefined ? Pathname_ : ""; + this.Search = Search_ !== undefined ? Search_ : ""; + this.Hash = Hash_ !== undefined ? Hash_ : ""; + this.Username = Username_ !== undefined ? Username_ : ""; + this.Password = Password_ !== undefined ? Password_ : ""; + this.Origin = Origin_ !== undefined ? Origin_ : ""; + }); + Location = $pkg.Location = $newType(0, $kindStruct, "dom.Location", "Location", "honnef.co/go/js/dom", function(Object_, URLUtils_) { + this.$val = this; + this.Object = Object_ !== undefined ? Object_ : null; + this.URLUtils = URLUtils_ !== undefined ? URLUtils_ : ptrType$1.nil; + }); + HTMLElement = $pkg.HTMLElement = $newType(8, $kindInterface, "dom.HTMLElement", "HTMLElement", "honnef.co/go/js/dom", null); + Window = $pkg.Window = $newType(8, $kindInterface, "dom.Window", "Window", "honnef.co/go/js/dom", null); + window = $pkg.window = $newType(0, $kindStruct, "dom.window", "window", "honnef.co/go/js/dom", function(Object_) { + this.$val = this; + this.Object = Object_ !== undefined ? Object_ : null; + }); + Selection = $pkg.Selection = $newType(8, $kindInterface, "dom.Selection", "Selection", "honnef.co/go/js/dom", null); + Screen = $pkg.Screen = $newType(0, $kindStruct, "dom.Screen", "Screen", "honnef.co/go/js/dom", function(Object_, AvailTop_, AvailLeft_, AvailHeight_, AvailWidth_, ColorDepth_, Height_, Left_, PixelDepth_, Top_, Width_) { + this.$val = this; + this.Object = Object_ !== undefined ? Object_ : null; + this.AvailTop = AvailTop_ !== undefined ? AvailTop_ : 0; + this.AvailLeft = AvailLeft_ !== undefined ? AvailLeft_ : 0; + this.AvailHeight = AvailHeight_ !== undefined ? AvailHeight_ : 0; + this.AvailWidth = AvailWidth_ !== undefined ? AvailWidth_ : 0; + this.ColorDepth = ColorDepth_ !== undefined ? ColorDepth_ : 0; + this.Height = Height_ !== undefined ? Height_ : 0; + this.Left = Left_ !== undefined ? Left_ : 0; + this.PixelDepth = PixelDepth_ !== undefined ? PixelDepth_ : 0; + this.Top = Top_ !== undefined ? Top_ : 0; + this.Width = Width_ !== undefined ? Width_ : 0; + }); + Navigator = $pkg.Navigator = $newType(8, $kindInterface, "dom.Navigator", "Navigator", "honnef.co/go/js/dom", null); + Geolocation = $pkg.Geolocation = $newType(8, $kindInterface, "dom.Geolocation", "Geolocation", "honnef.co/go/js/dom", null); + PositionError = $pkg.PositionError = $newType(0, $kindStruct, "dom.PositionError", "PositionError", "honnef.co/go/js/dom", function(Object_, Code_) { + this.$val = this; + this.Object = Object_ !== undefined ? Object_ : null; + this.Code = Code_ !== undefined ? Code_ : 0; + }); + PositionOptions = $pkg.PositionOptions = $newType(0, $kindStruct, "dom.PositionOptions", "PositionOptions", "honnef.co/go/js/dom", function(EnableHighAccuracy_, Timeout_, MaximumAge_) { + this.$val = this; + this.EnableHighAccuracy = EnableHighAccuracy_ !== undefined ? EnableHighAccuracy_ : false; + this.Timeout = Timeout_ !== undefined ? Timeout_ : new time.Duration(0, 0); + this.MaximumAge = MaximumAge_ !== undefined ? MaximumAge_ : new time.Duration(0, 0); + }); + Position = $pkg.Position = $newType(0, $kindStruct, "dom.Position", "Position", "honnef.co/go/js/dom", function(Coords_, Timestamp_) { + this.$val = this; + this.Coords = Coords_ !== undefined ? Coords_ : ptrType$28.nil; + this.Timestamp = Timestamp_ !== undefined ? Timestamp_ : new time.Time.Ptr(); + }); + Coordinates = $pkg.Coordinates = $newType(0, $kindStruct, "dom.Coordinates", "Coordinates", "honnef.co/go/js/dom", function(Object_, Latitude_, Longitude_, Altitude_, Accuracy_, AltitudeAccuracy_, Heading_, Speed_) { + this.$val = this; + this.Object = Object_ !== undefined ? Object_ : null; + this.Latitude = Latitude_ !== undefined ? Latitude_ : 0; + this.Longitude = Longitude_ !== undefined ? Longitude_ : 0; + this.Altitude = Altitude_ !== undefined ? Altitude_ : 0; + this.Accuracy = Accuracy_ !== undefined ? Accuracy_ : 0; + this.AltitudeAccuracy = AltitudeAccuracy_ !== undefined ? AltitudeAccuracy_ : 0; + this.Heading = Heading_ !== undefined ? Heading_ : 0; + this.Speed = Speed_ !== undefined ? Speed_ : 0; + }); + History = $pkg.History = $newType(8, $kindInterface, "dom.History", "History", "honnef.co/go/js/dom", null); + Console = $pkg.Console = $newType(0, $kindStruct, "dom.Console", "Console", "honnef.co/go/js/dom", function(Object_) { + this.$val = this; + this.Object = Object_ !== undefined ? Object_ : null; + }); + DocumentType = $pkg.DocumentType = $newType(8, $kindInterface, "dom.DocumentType", "DocumentType", "honnef.co/go/js/dom", null); + DOMImplementation = $pkg.DOMImplementation = $newType(8, $kindInterface, "dom.DOMImplementation", "DOMImplementation", "honnef.co/go/js/dom", null); + StyleSheet = $pkg.StyleSheet = $newType(8, $kindInterface, "dom.StyleSheet", "StyleSheet", "honnef.co/go/js/dom", null); + Node = $pkg.Node = $newType(8, $kindInterface, "dom.Node", "Node", "honnef.co/go/js/dom", null); + BasicNode = $pkg.BasicNode = $newType(0, $kindStruct, "dom.BasicNode", "BasicNode", "honnef.co/go/js/dom", function(Object_) { + this.$val = this; + this.Object = Object_ !== undefined ? Object_ : null; + }); + Element = $pkg.Element = $newType(8, $kindInterface, "dom.Element", "Element", "honnef.co/go/js/dom", null); + ClientRect = $pkg.ClientRect = $newType(0, $kindStruct, "dom.ClientRect", "ClientRect", "honnef.co/go/js/dom", function(Object_, Height_, Width_, Left_, Right_, Top_, Bottom_) { + this.$val = this; + this.Object = Object_ !== undefined ? Object_ : null; + this.Height = Height_ !== undefined ? Height_ : 0; + this.Width = Width_ !== undefined ? Width_ : 0; + this.Left = Left_ !== undefined ? Left_ : 0; + this.Right = Right_ !== undefined ? Right_ : 0; + this.Top = Top_ !== undefined ? Top_ : 0; + this.Bottom = Bottom_ !== undefined ? Bottom_ : 0; + }); + BasicHTMLElement = $pkg.BasicHTMLElement = $newType(0, $kindStruct, "dom.BasicHTMLElement", "BasicHTMLElement", "honnef.co/go/js/dom", function(BasicElement_) { + this.$val = this; + this.BasicElement = BasicElement_ !== undefined ? BasicElement_ : ptrType$30.nil; + }); + BasicElement = $pkg.BasicElement = $newType(0, $kindStruct, "dom.BasicElement", "BasicElement", "honnef.co/go/js/dom", function(BasicNode_) { + this.$val = this; + this.BasicNode = BasicNode_ !== undefined ? BasicNode_ : ptrType$20.nil; + }); + HTMLAnchorElement = $pkg.HTMLAnchorElement = $newType(0, $kindStruct, "dom.HTMLAnchorElement", "HTMLAnchorElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, URLUtils_, HrefLang_, Media_, TabIndex_, Target_, Text_, Type_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.URLUtils = URLUtils_ !== undefined ? URLUtils_ : ptrType$1.nil; + this.HrefLang = HrefLang_ !== undefined ? HrefLang_ : ""; + this.Media = Media_ !== undefined ? Media_ : ""; + this.TabIndex = TabIndex_ !== undefined ? TabIndex_ : 0; + this.Target = Target_ !== undefined ? Target_ : ""; + this.Text = Text_ !== undefined ? Text_ : ""; + this.Type = Type_ !== undefined ? Type_ : ""; + }); + HTMLAppletElement = $pkg.HTMLAppletElement = $newType(0, $kindStruct, "dom.HTMLAppletElement", "HTMLAppletElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, Alt_, Coords_, HrefLang_, Media_, Search_, Shape_, TabIndex_, Target_, Type_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.Alt = Alt_ !== undefined ? Alt_ : ""; + this.Coords = Coords_ !== undefined ? Coords_ : ""; + this.HrefLang = HrefLang_ !== undefined ? HrefLang_ : ""; + this.Media = Media_ !== undefined ? Media_ : ""; + this.Search = Search_ !== undefined ? Search_ : ""; + this.Shape = Shape_ !== undefined ? Shape_ : ""; + this.TabIndex = TabIndex_ !== undefined ? TabIndex_ : 0; + this.Target = Target_ !== undefined ? Target_ : ""; + this.Type = Type_ !== undefined ? Type_ : ""; + }); + HTMLAreaElement = $pkg.HTMLAreaElement = $newType(0, $kindStruct, "dom.HTMLAreaElement", "HTMLAreaElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, URLUtils_, Alt_, Coords_, HrefLang_, Media_, Search_, Shape_, TabIndex_, Target_, Type_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.URLUtils = URLUtils_ !== undefined ? URLUtils_ : ptrType$1.nil; + this.Alt = Alt_ !== undefined ? Alt_ : ""; + this.Coords = Coords_ !== undefined ? Coords_ : ""; + this.HrefLang = HrefLang_ !== undefined ? HrefLang_ : ""; + this.Media = Media_ !== undefined ? Media_ : ""; + this.Search = Search_ !== undefined ? Search_ : ""; + this.Shape = Shape_ !== undefined ? Shape_ : ""; + this.TabIndex = TabIndex_ !== undefined ? TabIndex_ : 0; + this.Target = Target_ !== undefined ? Target_ : ""; + this.Type = Type_ !== undefined ? Type_ : ""; + }); + HTMLAudioElement = $pkg.HTMLAudioElement = $newType(0, $kindStruct, "dom.HTMLAudioElement", "HTMLAudioElement", "honnef.co/go/js/dom", function(HTMLMediaElement_) { + this.$val = this; + this.HTMLMediaElement = HTMLMediaElement_ !== undefined ? HTMLMediaElement_ : ptrType$2.nil; + }); + HTMLBRElement = $pkg.HTMLBRElement = $newType(0, $kindStruct, "dom.HTMLBRElement", "HTMLBRElement", "honnef.co/go/js/dom", function(BasicHTMLElement_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + }); + HTMLBaseElement = $pkg.HTMLBaseElement = $newType(0, $kindStruct, "dom.HTMLBaseElement", "HTMLBaseElement", "honnef.co/go/js/dom", function(BasicHTMLElement_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + }); + HTMLBodyElement = $pkg.HTMLBodyElement = $newType(0, $kindStruct, "dom.HTMLBodyElement", "HTMLBodyElement", "honnef.co/go/js/dom", function(BasicHTMLElement_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + }); + ValidityState = $pkg.ValidityState = $newType(0, $kindStruct, "dom.ValidityState", "ValidityState", "honnef.co/go/js/dom", function(Object_, CustomError_, PatternMismatch_, RangeOverflow_, RangeUnderflow_, StepMismatch_, TooLong_, TypeMismatch_, Valid_, ValueMissing_) { + this.$val = this; + this.Object = Object_ !== undefined ? Object_ : null; + this.CustomError = CustomError_ !== undefined ? CustomError_ : false; + this.PatternMismatch = PatternMismatch_ !== undefined ? PatternMismatch_ : false; + this.RangeOverflow = RangeOverflow_ !== undefined ? RangeOverflow_ : false; + this.RangeUnderflow = RangeUnderflow_ !== undefined ? RangeUnderflow_ : false; + this.StepMismatch = StepMismatch_ !== undefined ? StepMismatch_ : false; + this.TooLong = TooLong_ !== undefined ? TooLong_ : false; + this.TypeMismatch = TypeMismatch_ !== undefined ? TypeMismatch_ : false; + this.Valid = Valid_ !== undefined ? Valid_ : false; + this.ValueMissing = ValueMissing_ !== undefined ? ValueMissing_ : false; + }); + HTMLButtonElement = $pkg.HTMLButtonElement = $newType(0, $kindStruct, "dom.HTMLButtonElement", "HTMLButtonElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, AutoFocus_, Disabled_, FormAction_, FormEncType_, FormMethod_, FormNoValidate_, FormTarget_, Name_, TabIndex_, Type_, ValidationMessage_, Value_, WillValidate_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.AutoFocus = AutoFocus_ !== undefined ? AutoFocus_ : false; + this.Disabled = Disabled_ !== undefined ? Disabled_ : false; + this.FormAction = FormAction_ !== undefined ? FormAction_ : ""; + this.FormEncType = FormEncType_ !== undefined ? FormEncType_ : ""; + this.FormMethod = FormMethod_ !== undefined ? FormMethod_ : ""; + this.FormNoValidate = FormNoValidate_ !== undefined ? FormNoValidate_ : false; + this.FormTarget = FormTarget_ !== undefined ? FormTarget_ : ""; + this.Name = Name_ !== undefined ? Name_ : ""; + this.TabIndex = TabIndex_ !== undefined ? TabIndex_ : 0; + this.Type = Type_ !== undefined ? Type_ : ""; + this.ValidationMessage = ValidationMessage_ !== undefined ? ValidationMessage_ : ""; + this.Value = Value_ !== undefined ? Value_ : ""; + this.WillValidate = WillValidate_ !== undefined ? WillValidate_ : false; + }); + HTMLCanvasElement = $pkg.HTMLCanvasElement = $newType(0, $kindStruct, "dom.HTMLCanvasElement", "HTMLCanvasElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, Height_, Width_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.Height = Height_ !== undefined ? Height_ : 0; + this.Width = Width_ !== undefined ? Width_ : 0; + }); + CanvasRenderingContext2D = $pkg.CanvasRenderingContext2D = $newType(0, $kindStruct, "dom.CanvasRenderingContext2D", "CanvasRenderingContext2D", "honnef.co/go/js/dom", function(Object_, FillStyle_, StrokeStyle_, ShadowColor_, ShadowBlur_, ShadowOffsetX_, ShadowOffsetY_, LineCap_, LineJoin_, LineWidth_, MiterLimit_, Font_, TextAlign_, TextBaseline_, GlobalAlpha_, GlobalCompositeOperation_) { + this.$val = this; + this.Object = Object_ !== undefined ? Object_ : null; + this.FillStyle = FillStyle_ !== undefined ? FillStyle_ : ""; + this.StrokeStyle = StrokeStyle_ !== undefined ? StrokeStyle_ : ""; + this.ShadowColor = ShadowColor_ !== undefined ? ShadowColor_ : ""; + this.ShadowBlur = ShadowBlur_ !== undefined ? ShadowBlur_ : 0; + this.ShadowOffsetX = ShadowOffsetX_ !== undefined ? ShadowOffsetX_ : 0; + this.ShadowOffsetY = ShadowOffsetY_ !== undefined ? ShadowOffsetY_ : 0; + this.LineCap = LineCap_ !== undefined ? LineCap_ : ""; + this.LineJoin = LineJoin_ !== undefined ? LineJoin_ : ""; + this.LineWidth = LineWidth_ !== undefined ? LineWidth_ : 0; + this.MiterLimit = MiterLimit_ !== undefined ? MiterLimit_ : 0; + this.Font = Font_ !== undefined ? Font_ : ""; + this.TextAlign = TextAlign_ !== undefined ? TextAlign_ : ""; + this.TextBaseline = TextBaseline_ !== undefined ? TextBaseline_ : ""; + this.GlobalAlpha = GlobalAlpha_ !== undefined ? GlobalAlpha_ : 0; + this.GlobalCompositeOperation = GlobalCompositeOperation_ !== undefined ? GlobalCompositeOperation_ : ""; + }); + HTMLDListElement = $pkg.HTMLDListElement = $newType(0, $kindStruct, "dom.HTMLDListElement", "HTMLDListElement", "honnef.co/go/js/dom", function(BasicHTMLElement_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + }); + HTMLDataElement = $pkg.HTMLDataElement = $newType(0, $kindStruct, "dom.HTMLDataElement", "HTMLDataElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, Value_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.Value = Value_ !== undefined ? Value_ : ""; + }); + HTMLDataListElement = $pkg.HTMLDataListElement = $newType(0, $kindStruct, "dom.HTMLDataListElement", "HTMLDataListElement", "honnef.co/go/js/dom", function(BasicHTMLElement_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + }); + HTMLDirectoryElement = $pkg.HTMLDirectoryElement = $newType(0, $kindStruct, "dom.HTMLDirectoryElement", "HTMLDirectoryElement", "honnef.co/go/js/dom", function(BasicHTMLElement_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + }); + HTMLDivElement = $pkg.HTMLDivElement = $newType(0, $kindStruct, "dom.HTMLDivElement", "HTMLDivElement", "honnef.co/go/js/dom", function(BasicHTMLElement_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + }); + HTMLEmbedElement = $pkg.HTMLEmbedElement = $newType(0, $kindStruct, "dom.HTMLEmbedElement", "HTMLEmbedElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, Src_, Type_, Width_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.Src = Src_ !== undefined ? Src_ : ""; + this.Type = Type_ !== undefined ? Type_ : ""; + this.Width = Width_ !== undefined ? Width_ : ""; + }); + HTMLFieldSetElement = $pkg.HTMLFieldSetElement = $newType(0, $kindStruct, "dom.HTMLFieldSetElement", "HTMLFieldSetElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, Disabled_, Name_, Type_, ValidationMessage_, WillValidate_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.Disabled = Disabled_ !== undefined ? Disabled_ : false; + this.Name = Name_ !== undefined ? Name_ : ""; + this.Type = Type_ !== undefined ? Type_ : ""; + this.ValidationMessage = ValidationMessage_ !== undefined ? ValidationMessage_ : ""; + this.WillValidate = WillValidate_ !== undefined ? WillValidate_ : false; + }); + HTMLFontElement = $pkg.HTMLFontElement = $newType(0, $kindStruct, "dom.HTMLFontElement", "HTMLFontElement", "honnef.co/go/js/dom", function(BasicHTMLElement_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + }); + HTMLFormElement = $pkg.HTMLFormElement = $newType(0, $kindStruct, "dom.HTMLFormElement", "HTMLFormElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, AcceptCharset_, Action_, Autocomplete_, Encoding_, Enctype_, Length_, Method_, Name_, NoValidate_, Target_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.AcceptCharset = AcceptCharset_ !== undefined ? AcceptCharset_ : ""; + this.Action = Action_ !== undefined ? Action_ : ""; + this.Autocomplete = Autocomplete_ !== undefined ? Autocomplete_ : ""; + this.Encoding = Encoding_ !== undefined ? Encoding_ : ""; + this.Enctype = Enctype_ !== undefined ? Enctype_ : ""; + this.Length = Length_ !== undefined ? Length_ : 0; + this.Method = Method_ !== undefined ? Method_ : ""; + this.Name = Name_ !== undefined ? Name_ : ""; + this.NoValidate = NoValidate_ !== undefined ? NoValidate_ : false; + this.Target = Target_ !== undefined ? Target_ : ""; + }); + HTMLFrameElement = $pkg.HTMLFrameElement = $newType(0, $kindStruct, "dom.HTMLFrameElement", "HTMLFrameElement", "honnef.co/go/js/dom", function(BasicHTMLElement_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + }); + HTMLFrameSetElement = $pkg.HTMLFrameSetElement = $newType(0, $kindStruct, "dom.HTMLFrameSetElement", "HTMLFrameSetElement", "honnef.co/go/js/dom", function(BasicHTMLElement_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + }); + HTMLHRElement = $pkg.HTMLHRElement = $newType(0, $kindStruct, "dom.HTMLHRElement", "HTMLHRElement", "honnef.co/go/js/dom", function(BasicHTMLElement_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + }); + HTMLHeadElement = $pkg.HTMLHeadElement = $newType(0, $kindStruct, "dom.HTMLHeadElement", "HTMLHeadElement", "honnef.co/go/js/dom", function(BasicHTMLElement_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + }); + HTMLHeadingElement = $pkg.HTMLHeadingElement = $newType(0, $kindStruct, "dom.HTMLHeadingElement", "HTMLHeadingElement", "honnef.co/go/js/dom", function(BasicHTMLElement_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + }); + HTMLHtmlElement = $pkg.HTMLHtmlElement = $newType(0, $kindStruct, "dom.HTMLHtmlElement", "HTMLHtmlElement", "honnef.co/go/js/dom", function(BasicHTMLElement_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + }); + HTMLIFrameElement = $pkg.HTMLIFrameElement = $newType(0, $kindStruct, "dom.HTMLIFrameElement", "HTMLIFrameElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, Width_, Height_, Name_, Src_, SrcDoc_, Seamless_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.Width = Width_ !== undefined ? Width_ : ""; + this.Height = Height_ !== undefined ? Height_ : ""; + this.Name = Name_ !== undefined ? Name_ : ""; + this.Src = Src_ !== undefined ? Src_ : ""; + this.SrcDoc = SrcDoc_ !== undefined ? SrcDoc_ : ""; + this.Seamless = Seamless_ !== undefined ? Seamless_ : false; + }); + HTMLImageElement = $pkg.HTMLImageElement = $newType(0, $kindStruct, "dom.HTMLImageElement", "HTMLImageElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, Complete_, CrossOrigin_, Height_, IsMap_, NaturalHeight_, NaturalWidth_, Src_, UseMap_, Width_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.Complete = Complete_ !== undefined ? Complete_ : false; + this.CrossOrigin = CrossOrigin_ !== undefined ? CrossOrigin_ : ""; + this.Height = Height_ !== undefined ? Height_ : 0; + this.IsMap = IsMap_ !== undefined ? IsMap_ : false; + this.NaturalHeight = NaturalHeight_ !== undefined ? NaturalHeight_ : 0; + this.NaturalWidth = NaturalWidth_ !== undefined ? NaturalWidth_ : 0; + this.Src = Src_ !== undefined ? Src_ : ""; + this.UseMap = UseMap_ !== undefined ? UseMap_ : ""; + this.Width = Width_ !== undefined ? Width_ : 0; + }); + HTMLInputElement = $pkg.HTMLInputElement = $newType(0, $kindStruct, "dom.HTMLInputElement", "HTMLInputElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, Accept_, Alt_, Autocomplete_, Autofocus_, Checked_, DefaultChecked_, DefaultValue_, DirName_, Disabled_, FormAction_, FormEncType_, FormMethod_, FormNoValidate_, FormTarget_, Height_, Indeterminate_, Max_, MaxLength_, Min_, Multiple_, Name_, Pattern_, Placeholder_, ReadOnly_, Required_, SelectionDirection_, SelectionEnd_, SelectionStart_, Size_, Src_, Step_, TabIndex_, Type_, ValidationMessage_, Value_, ValueAsDate_, ValueAsNumber_, Width_, WillValidate_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.Accept = Accept_ !== undefined ? Accept_ : ""; + this.Alt = Alt_ !== undefined ? Alt_ : ""; + this.Autocomplete = Autocomplete_ !== undefined ? Autocomplete_ : ""; + this.Autofocus = Autofocus_ !== undefined ? Autofocus_ : false; + this.Checked = Checked_ !== undefined ? Checked_ : false; + this.DefaultChecked = DefaultChecked_ !== undefined ? DefaultChecked_ : false; + this.DefaultValue = DefaultValue_ !== undefined ? DefaultValue_ : ""; + this.DirName = DirName_ !== undefined ? DirName_ : ""; + this.Disabled = Disabled_ !== undefined ? Disabled_ : false; + this.FormAction = FormAction_ !== undefined ? FormAction_ : ""; + this.FormEncType = FormEncType_ !== undefined ? FormEncType_ : ""; + this.FormMethod = FormMethod_ !== undefined ? FormMethod_ : ""; + this.FormNoValidate = FormNoValidate_ !== undefined ? FormNoValidate_ : false; + this.FormTarget = FormTarget_ !== undefined ? FormTarget_ : ""; + this.Height = Height_ !== undefined ? Height_ : ""; + this.Indeterminate = Indeterminate_ !== undefined ? Indeterminate_ : false; + this.Max = Max_ !== undefined ? Max_ : ""; + this.MaxLength = MaxLength_ !== undefined ? MaxLength_ : 0; + this.Min = Min_ !== undefined ? Min_ : ""; + this.Multiple = Multiple_ !== undefined ? Multiple_ : false; + this.Name = Name_ !== undefined ? Name_ : ""; + this.Pattern = Pattern_ !== undefined ? Pattern_ : ""; + this.Placeholder = Placeholder_ !== undefined ? Placeholder_ : ""; + this.ReadOnly = ReadOnly_ !== undefined ? ReadOnly_ : false; + this.Required = Required_ !== undefined ? Required_ : false; + this.SelectionDirection = SelectionDirection_ !== undefined ? SelectionDirection_ : ""; + this.SelectionEnd = SelectionEnd_ !== undefined ? SelectionEnd_ : 0; + this.SelectionStart = SelectionStart_ !== undefined ? SelectionStart_ : 0; + this.Size = Size_ !== undefined ? Size_ : 0; + this.Src = Src_ !== undefined ? Src_ : ""; + this.Step = Step_ !== undefined ? Step_ : ""; + this.TabIndex = TabIndex_ !== undefined ? TabIndex_ : 0; + this.Type = Type_ !== undefined ? Type_ : ""; + this.ValidationMessage = ValidationMessage_ !== undefined ? ValidationMessage_ : ""; + this.Value = Value_ !== undefined ? Value_ : ""; + this.ValueAsDate = ValueAsDate_ !== undefined ? ValueAsDate_ : new time.Time.Ptr(); + this.ValueAsNumber = ValueAsNumber_ !== undefined ? ValueAsNumber_ : 0; + this.Width = Width_ !== undefined ? Width_ : ""; + this.WillValidate = WillValidate_ !== undefined ? WillValidate_ : false; + }); + File = $pkg.File = $newType(0, $kindStruct, "dom.File", "File", "honnef.co/go/js/dom", function(Object_) { + this.$val = this; + this.Object = Object_ !== undefined ? Object_ : null; + }); + HTMLKeygenElement = $pkg.HTMLKeygenElement = $newType(0, $kindStruct, "dom.HTMLKeygenElement", "HTMLKeygenElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, Autofocus_, Challenge_, Disabled_, Keytype_, Name_, Type_, ValidationMessage_, WillValidate_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.Autofocus = Autofocus_ !== undefined ? Autofocus_ : false; + this.Challenge = Challenge_ !== undefined ? Challenge_ : ""; + this.Disabled = Disabled_ !== undefined ? Disabled_ : false; + this.Keytype = Keytype_ !== undefined ? Keytype_ : ""; + this.Name = Name_ !== undefined ? Name_ : ""; + this.Type = Type_ !== undefined ? Type_ : ""; + this.ValidationMessage = ValidationMessage_ !== undefined ? ValidationMessage_ : ""; + this.WillValidate = WillValidate_ !== undefined ? WillValidate_ : false; + }); + HTMLLIElement = $pkg.HTMLLIElement = $newType(0, $kindStruct, "dom.HTMLLIElement", "HTMLLIElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, Value_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.Value = Value_ !== undefined ? Value_ : 0; + }); + HTMLLabelElement = $pkg.HTMLLabelElement = $newType(0, $kindStruct, "dom.HTMLLabelElement", "HTMLLabelElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, For_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.For = For_ !== undefined ? For_ : ""; + }); + HTMLLegendElement = $pkg.HTMLLegendElement = $newType(0, $kindStruct, "dom.HTMLLegendElement", "HTMLLegendElement", "honnef.co/go/js/dom", function(BasicHTMLElement_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + }); + HTMLLinkElement = $pkg.HTMLLinkElement = $newType(0, $kindStruct, "dom.HTMLLinkElement", "HTMLLinkElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, Disabled_, Href_, HrefLang_, Media_, Type_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.Disabled = Disabled_ !== undefined ? Disabled_ : false; + this.Href = Href_ !== undefined ? Href_ : ""; + this.HrefLang = HrefLang_ !== undefined ? HrefLang_ : ""; + this.Media = Media_ !== undefined ? Media_ : ""; + this.Type = Type_ !== undefined ? Type_ : ""; + }); + HTMLMapElement = $pkg.HTMLMapElement = $newType(0, $kindStruct, "dom.HTMLMapElement", "HTMLMapElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, Name_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.Name = Name_ !== undefined ? Name_ : ""; + }); + HTMLMediaElement = $pkg.HTMLMediaElement = $newType(0, $kindStruct, "dom.HTMLMediaElement", "HTMLMediaElement", "honnef.co/go/js/dom", function(BasicHTMLElement_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + }); + HTMLMenuElement = $pkg.HTMLMenuElement = $newType(0, $kindStruct, "dom.HTMLMenuElement", "HTMLMenuElement", "honnef.co/go/js/dom", function(BasicHTMLElement_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + }); + HTMLMetaElement = $pkg.HTMLMetaElement = $newType(0, $kindStruct, "dom.HTMLMetaElement", "HTMLMetaElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, Content_, HTTPEquiv_, Name_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.Content = Content_ !== undefined ? Content_ : ""; + this.HTTPEquiv = HTTPEquiv_ !== undefined ? HTTPEquiv_ : ""; + this.Name = Name_ !== undefined ? Name_ : ""; + }); + HTMLMeterElement = $pkg.HTMLMeterElement = $newType(0, $kindStruct, "dom.HTMLMeterElement", "HTMLMeterElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, High_, Low_, Max_, Min_, Optimum_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.High = High_ !== undefined ? High_ : 0; + this.Low = Low_ !== undefined ? Low_ : 0; + this.Max = Max_ !== undefined ? Max_ : 0; + this.Min = Min_ !== undefined ? Min_ : 0; + this.Optimum = Optimum_ !== undefined ? Optimum_ : 0; + }); + HTMLModElement = $pkg.HTMLModElement = $newType(0, $kindStruct, "dom.HTMLModElement", "HTMLModElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, Cite_, DateTime_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.Cite = Cite_ !== undefined ? Cite_ : ""; + this.DateTime = DateTime_ !== undefined ? DateTime_ : ""; + }); + HTMLOListElement = $pkg.HTMLOListElement = $newType(0, $kindStruct, "dom.HTMLOListElement", "HTMLOListElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, Reversed_, Start_, Type_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.Reversed = Reversed_ !== undefined ? Reversed_ : false; + this.Start = Start_ !== undefined ? Start_ : 0; + this.Type = Type_ !== undefined ? Type_ : ""; + }); + HTMLObjectElement = $pkg.HTMLObjectElement = $newType(0, $kindStruct, "dom.HTMLObjectElement", "HTMLObjectElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, Data_, Height_, Name_, TabIndex_, Type_, TypeMustMatch_, UseMap_, ValidationMessage_, With_, WillValidate_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.Data = Data_ !== undefined ? Data_ : ""; + this.Height = Height_ !== undefined ? Height_ : ""; + this.Name = Name_ !== undefined ? Name_ : ""; + this.TabIndex = TabIndex_ !== undefined ? TabIndex_ : 0; + this.Type = Type_ !== undefined ? Type_ : ""; + this.TypeMustMatch = TypeMustMatch_ !== undefined ? TypeMustMatch_ : false; + this.UseMap = UseMap_ !== undefined ? UseMap_ : ""; + this.ValidationMessage = ValidationMessage_ !== undefined ? ValidationMessage_ : ""; + this.With = With_ !== undefined ? With_ : ""; + this.WillValidate = WillValidate_ !== undefined ? WillValidate_ : false; + }); + HTMLOptGroupElement = $pkg.HTMLOptGroupElement = $newType(0, $kindStruct, "dom.HTMLOptGroupElement", "HTMLOptGroupElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, Disabled_, Label_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.Disabled = Disabled_ !== undefined ? Disabled_ : false; + this.Label = Label_ !== undefined ? Label_ : ""; + }); + HTMLOptionElement = $pkg.HTMLOptionElement = $newType(0, $kindStruct, "dom.HTMLOptionElement", "HTMLOptionElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, DefaultSelected_, Disabled_, Index_, Label_, Selected_, Text_, Value_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.DefaultSelected = DefaultSelected_ !== undefined ? DefaultSelected_ : false; + this.Disabled = Disabled_ !== undefined ? Disabled_ : false; + this.Index = Index_ !== undefined ? Index_ : 0; + this.Label = Label_ !== undefined ? Label_ : ""; + this.Selected = Selected_ !== undefined ? Selected_ : false; + this.Text = Text_ !== undefined ? Text_ : ""; + this.Value = Value_ !== undefined ? Value_ : ""; + }); + HTMLOutputElement = $pkg.HTMLOutputElement = $newType(0, $kindStruct, "dom.HTMLOutputElement", "HTMLOutputElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, DefaultValue_, Name_, Type_, ValidationMessage_, Value_, WillValidate_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.DefaultValue = DefaultValue_ !== undefined ? DefaultValue_ : ""; + this.Name = Name_ !== undefined ? Name_ : ""; + this.Type = Type_ !== undefined ? Type_ : ""; + this.ValidationMessage = ValidationMessage_ !== undefined ? ValidationMessage_ : ""; + this.Value = Value_ !== undefined ? Value_ : ""; + this.WillValidate = WillValidate_ !== undefined ? WillValidate_ : false; + }); + HTMLParagraphElement = $pkg.HTMLParagraphElement = $newType(0, $kindStruct, "dom.HTMLParagraphElement", "HTMLParagraphElement", "honnef.co/go/js/dom", function(BasicHTMLElement_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + }); + HTMLParamElement = $pkg.HTMLParamElement = $newType(0, $kindStruct, "dom.HTMLParamElement", "HTMLParamElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, Name_, Value_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.Name = Name_ !== undefined ? Name_ : ""; + this.Value = Value_ !== undefined ? Value_ : ""; + }); + HTMLPreElement = $pkg.HTMLPreElement = $newType(0, $kindStruct, "dom.HTMLPreElement", "HTMLPreElement", "honnef.co/go/js/dom", function(BasicHTMLElement_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + }); + HTMLProgressElement = $pkg.HTMLProgressElement = $newType(0, $kindStruct, "dom.HTMLProgressElement", "HTMLProgressElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, Max_, Position_, Value_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.Max = Max_ !== undefined ? Max_ : 0; + this.Position = Position_ !== undefined ? Position_ : 0; + this.Value = Value_ !== undefined ? Value_ : 0; + }); + HTMLQuoteElement = $pkg.HTMLQuoteElement = $newType(0, $kindStruct, "dom.HTMLQuoteElement", "HTMLQuoteElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, Cite_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.Cite = Cite_ !== undefined ? Cite_ : ""; + }); + HTMLScriptElement = $pkg.HTMLScriptElement = $newType(0, $kindStruct, "dom.HTMLScriptElement", "HTMLScriptElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, Type_, Src_, Charset_, Async_, Defer_, Text_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.Type = Type_ !== undefined ? Type_ : ""; + this.Src = Src_ !== undefined ? Src_ : ""; + this.Charset = Charset_ !== undefined ? Charset_ : ""; + this.Async = Async_ !== undefined ? Async_ : false; + this.Defer = Defer_ !== undefined ? Defer_ : false; + this.Text = Text_ !== undefined ? Text_ : ""; + }); + HTMLSelectElement = $pkg.HTMLSelectElement = $newType(0, $kindStruct, "dom.HTMLSelectElement", "HTMLSelectElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, Autofocus_, Disabled_, Length_, Multiple_, Name_, Required_, SelectedIndex_, Size_, Type_, ValidationMessage_, Value_, WillValidate_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.Autofocus = Autofocus_ !== undefined ? Autofocus_ : false; + this.Disabled = Disabled_ !== undefined ? Disabled_ : false; + this.Length = Length_ !== undefined ? Length_ : 0; + this.Multiple = Multiple_ !== undefined ? Multiple_ : false; + this.Name = Name_ !== undefined ? Name_ : ""; + this.Required = Required_ !== undefined ? Required_ : false; + this.SelectedIndex = SelectedIndex_ !== undefined ? SelectedIndex_ : 0; + this.Size = Size_ !== undefined ? Size_ : 0; + this.Type = Type_ !== undefined ? Type_ : ""; + this.ValidationMessage = ValidationMessage_ !== undefined ? ValidationMessage_ : ""; + this.Value = Value_ !== undefined ? Value_ : ""; + this.WillValidate = WillValidate_ !== undefined ? WillValidate_ : false; + }); + HTMLSourceElement = $pkg.HTMLSourceElement = $newType(0, $kindStruct, "dom.HTMLSourceElement", "HTMLSourceElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, Media_, Src_, Type_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.Media = Media_ !== undefined ? Media_ : ""; + this.Src = Src_ !== undefined ? Src_ : ""; + this.Type = Type_ !== undefined ? Type_ : ""; + }); + HTMLSpanElement = $pkg.HTMLSpanElement = $newType(0, $kindStruct, "dom.HTMLSpanElement", "HTMLSpanElement", "honnef.co/go/js/dom", function(BasicHTMLElement_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + }); + HTMLStyleElement = $pkg.HTMLStyleElement = $newType(0, $kindStruct, "dom.HTMLStyleElement", "HTMLStyleElement", "honnef.co/go/js/dom", function(BasicHTMLElement_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + }); + HTMLTableCaptionElement = $pkg.HTMLTableCaptionElement = $newType(0, $kindStruct, "dom.HTMLTableCaptionElement", "HTMLTableCaptionElement", "honnef.co/go/js/dom", function(BasicHTMLElement_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + }); + HTMLTableCellElement = $pkg.HTMLTableCellElement = $newType(0, $kindStruct, "dom.HTMLTableCellElement", "HTMLTableCellElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, ColSpan_, RowSpan_, CellIndex_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.ColSpan = ColSpan_ !== undefined ? ColSpan_ : 0; + this.RowSpan = RowSpan_ !== undefined ? RowSpan_ : 0; + this.CellIndex = CellIndex_ !== undefined ? CellIndex_ : 0; + }); + HTMLTableColElement = $pkg.HTMLTableColElement = $newType(0, $kindStruct, "dom.HTMLTableColElement", "HTMLTableColElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, Span_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.Span = Span_ !== undefined ? Span_ : 0; + }); + HTMLTableDataCellElement = $pkg.HTMLTableDataCellElement = $newType(0, $kindStruct, "dom.HTMLTableDataCellElement", "HTMLTableDataCellElement", "honnef.co/go/js/dom", function(BasicHTMLElement_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + }); + HTMLTableElement = $pkg.HTMLTableElement = $newType(0, $kindStruct, "dom.HTMLTableElement", "HTMLTableElement", "honnef.co/go/js/dom", function(BasicHTMLElement_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + }); + HTMLTableHeaderCellElement = $pkg.HTMLTableHeaderCellElement = $newType(0, $kindStruct, "dom.HTMLTableHeaderCellElement", "HTMLTableHeaderCellElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, Abbr_, Scope_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.Abbr = Abbr_ !== undefined ? Abbr_ : ""; + this.Scope = Scope_ !== undefined ? Scope_ : ""; + }); + HTMLTableRowElement = $pkg.HTMLTableRowElement = $newType(0, $kindStruct, "dom.HTMLTableRowElement", "HTMLTableRowElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, RowIndex_, SectionRowIndex_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.RowIndex = RowIndex_ !== undefined ? RowIndex_ : 0; + this.SectionRowIndex = SectionRowIndex_ !== undefined ? SectionRowIndex_ : 0; + }); + HTMLTableSectionElement = $pkg.HTMLTableSectionElement = $newType(0, $kindStruct, "dom.HTMLTableSectionElement", "HTMLTableSectionElement", "honnef.co/go/js/dom", function(BasicHTMLElement_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + }); + HTMLTextAreaElement = $pkg.HTMLTextAreaElement = $newType(0, $kindStruct, "dom.HTMLTextAreaElement", "HTMLTextAreaElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, Autocomplete_, Autofocus_, Cols_, DefaultValue_, DirName_, Disabled_, MaxLength_, Name_, Placeholder_, ReadOnly_, Required_, Rows_, SelectionDirection_, SelectionStart_, SelectionEnd_, TabIndex_, TextLength_, Type_, ValidationMessage_, Value_, WillValidate_, Wrap_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.Autocomplete = Autocomplete_ !== undefined ? Autocomplete_ : ""; + this.Autofocus = Autofocus_ !== undefined ? Autofocus_ : false; + this.Cols = Cols_ !== undefined ? Cols_ : 0; + this.DefaultValue = DefaultValue_ !== undefined ? DefaultValue_ : ""; + this.DirName = DirName_ !== undefined ? DirName_ : ""; + this.Disabled = Disabled_ !== undefined ? Disabled_ : false; + this.MaxLength = MaxLength_ !== undefined ? MaxLength_ : 0; + this.Name = Name_ !== undefined ? Name_ : ""; + this.Placeholder = Placeholder_ !== undefined ? Placeholder_ : ""; + this.ReadOnly = ReadOnly_ !== undefined ? ReadOnly_ : false; + this.Required = Required_ !== undefined ? Required_ : false; + this.Rows = Rows_ !== undefined ? Rows_ : 0; + this.SelectionDirection = SelectionDirection_ !== undefined ? SelectionDirection_ : ""; + this.SelectionStart = SelectionStart_ !== undefined ? SelectionStart_ : 0; + this.SelectionEnd = SelectionEnd_ !== undefined ? SelectionEnd_ : 0; + this.TabIndex = TabIndex_ !== undefined ? TabIndex_ : 0; + this.TextLength = TextLength_ !== undefined ? TextLength_ : 0; + this.Type = Type_ !== undefined ? Type_ : ""; + this.ValidationMessage = ValidationMessage_ !== undefined ? ValidationMessage_ : ""; + this.Value = Value_ !== undefined ? Value_ : ""; + this.WillValidate = WillValidate_ !== undefined ? WillValidate_ : false; + this.Wrap = Wrap_ !== undefined ? Wrap_ : ""; + }); + HTMLTimeElement = $pkg.HTMLTimeElement = $newType(0, $kindStruct, "dom.HTMLTimeElement", "HTMLTimeElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, DateTime_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.DateTime = DateTime_ !== undefined ? DateTime_ : ""; + }); + HTMLTitleElement = $pkg.HTMLTitleElement = $newType(0, $kindStruct, "dom.HTMLTitleElement", "HTMLTitleElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, Text_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.Text = Text_ !== undefined ? Text_ : ""; + }); + TextTrack = $pkg.TextTrack = $newType(0, $kindStruct, "dom.TextTrack", "TextTrack", "honnef.co/go/js/dom", function(Object_) { + this.$val = this; + this.Object = Object_ !== undefined ? Object_ : null; + }); + HTMLTrackElement = $pkg.HTMLTrackElement = $newType(0, $kindStruct, "dom.HTMLTrackElement", "HTMLTrackElement", "honnef.co/go/js/dom", function(BasicHTMLElement_, Kind_, Src_, Srclang_, Label_, Default_, ReadyState_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + this.Kind = Kind_ !== undefined ? Kind_ : ""; + this.Src = Src_ !== undefined ? Src_ : ""; + this.Srclang = Srclang_ !== undefined ? Srclang_ : ""; + this.Label = Label_ !== undefined ? Label_ : ""; + this.Default = Default_ !== undefined ? Default_ : false; + this.ReadyState = ReadyState_ !== undefined ? ReadyState_ : 0; + }); + HTMLUListElement = $pkg.HTMLUListElement = $newType(0, $kindStruct, "dom.HTMLUListElement", "HTMLUListElement", "honnef.co/go/js/dom", function(BasicHTMLElement_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + }); + HTMLUnknownElement = $pkg.HTMLUnknownElement = $newType(0, $kindStruct, "dom.HTMLUnknownElement", "HTMLUnknownElement", "honnef.co/go/js/dom", function(BasicHTMLElement_) { + this.$val = this; + this.BasicHTMLElement = BasicHTMLElement_ !== undefined ? BasicHTMLElement_ : ptrType.nil; + }); + HTMLVideoElement = $pkg.HTMLVideoElement = $newType(0, $kindStruct, "dom.HTMLVideoElement", "HTMLVideoElement", "honnef.co/go/js/dom", function(HTMLMediaElement_) { + this.$val = this; + this.HTMLMediaElement = HTMLMediaElement_ !== undefined ? HTMLMediaElement_ : ptrType$2.nil; + }); + CSSStyleDeclaration = $pkg.CSSStyleDeclaration = $newType(0, $kindStruct, "dom.CSSStyleDeclaration", "CSSStyleDeclaration", "honnef.co/go/js/dom", function(Object_) { + this.$val = this; + this.Object = Object_ !== undefined ? Object_ : null; + }); + Text = $pkg.Text = $newType(0, $kindStruct, "dom.Text", "Text", "honnef.co/go/js/dom", function(BasicNode_) { + this.$val = this; + this.BasicNode = BasicNode_ !== undefined ? BasicNode_ : ptrType$20.nil; + }); + Event = $pkg.Event = $newType(8, $kindInterface, "dom.Event", "Event", "honnef.co/go/js/dom", null); + BasicEvent = $pkg.BasicEvent = $newType(0, $kindStruct, "dom.BasicEvent", "BasicEvent", "honnef.co/go/js/dom", function(Object_) { + this.$val = this; + this.Object = Object_ !== undefined ? Object_ : null; + }); + AnimationEvent = $pkg.AnimationEvent = $newType(0, $kindStruct, "dom.AnimationEvent", "AnimationEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + AudioProcessingEvent = $pkg.AudioProcessingEvent = $newType(0, $kindStruct, "dom.AudioProcessingEvent", "AudioProcessingEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + BeforeInputEvent = $pkg.BeforeInputEvent = $newType(0, $kindStruct, "dom.BeforeInputEvent", "BeforeInputEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + BeforeUnloadEvent = $pkg.BeforeUnloadEvent = $newType(0, $kindStruct, "dom.BeforeUnloadEvent", "BeforeUnloadEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + BlobEvent = $pkg.BlobEvent = $newType(0, $kindStruct, "dom.BlobEvent", "BlobEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + ClipboardEvent = $pkg.ClipboardEvent = $newType(0, $kindStruct, "dom.ClipboardEvent", "ClipboardEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + CloseEvent = $pkg.CloseEvent = $newType(0, $kindStruct, "dom.CloseEvent", "CloseEvent", "honnef.co/go/js/dom", function(BasicEvent_, Code_, Reason_, WasClean_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + this.Code = Code_ !== undefined ? Code_ : 0; + this.Reason = Reason_ !== undefined ? Reason_ : ""; + this.WasClean = WasClean_ !== undefined ? WasClean_ : false; + }); + CompositionEvent = $pkg.CompositionEvent = $newType(0, $kindStruct, "dom.CompositionEvent", "CompositionEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + CSSFontFaceLoadEvent = $pkg.CSSFontFaceLoadEvent = $newType(0, $kindStruct, "dom.CSSFontFaceLoadEvent", "CSSFontFaceLoadEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + CustomEvent = $pkg.CustomEvent = $newType(0, $kindStruct, "dom.CustomEvent", "CustomEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + DeviceLightEvent = $pkg.DeviceLightEvent = $newType(0, $kindStruct, "dom.DeviceLightEvent", "DeviceLightEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + DeviceMotionEvent = $pkg.DeviceMotionEvent = $newType(0, $kindStruct, "dom.DeviceMotionEvent", "DeviceMotionEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + DeviceOrientationEvent = $pkg.DeviceOrientationEvent = $newType(0, $kindStruct, "dom.DeviceOrientationEvent", "DeviceOrientationEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + DeviceProximityEvent = $pkg.DeviceProximityEvent = $newType(0, $kindStruct, "dom.DeviceProximityEvent", "DeviceProximityEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + DOMTransactionEvent = $pkg.DOMTransactionEvent = $newType(0, $kindStruct, "dom.DOMTransactionEvent", "DOMTransactionEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + DragEvent = $pkg.DragEvent = $newType(0, $kindStruct, "dom.DragEvent", "DragEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + EditingBeforeInputEvent = $pkg.EditingBeforeInputEvent = $newType(0, $kindStruct, "dom.EditingBeforeInputEvent", "EditingBeforeInputEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + ErrorEvent = $pkg.ErrorEvent = $newType(0, $kindStruct, "dom.ErrorEvent", "ErrorEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + FocusEvent = $pkg.FocusEvent = $newType(0, $kindStruct, "dom.FocusEvent", "FocusEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + GamepadEvent = $pkg.GamepadEvent = $newType(0, $kindStruct, "dom.GamepadEvent", "GamepadEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + HashChangeEvent = $pkg.HashChangeEvent = $newType(0, $kindStruct, "dom.HashChangeEvent", "HashChangeEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + IDBVersionChangeEvent = $pkg.IDBVersionChangeEvent = $newType(0, $kindStruct, "dom.IDBVersionChangeEvent", "IDBVersionChangeEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + KeyboardEvent = $pkg.KeyboardEvent = $newType(0, $kindStruct, "dom.KeyboardEvent", "KeyboardEvent", "honnef.co/go/js/dom", function(BasicEvent_, AltKey_, CharCode_, CtrlKey_, Key_, KeyIdentifier_, KeyCode_, Locale_, Location_, KeyLocation_, MetaKey_, Repeat_, ShiftKey_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + this.AltKey = AltKey_ !== undefined ? AltKey_ : false; + this.CharCode = CharCode_ !== undefined ? CharCode_ : 0; + this.CtrlKey = CtrlKey_ !== undefined ? CtrlKey_ : false; + this.Key = Key_ !== undefined ? Key_ : ""; + this.KeyIdentifier = KeyIdentifier_ !== undefined ? KeyIdentifier_ : ""; + this.KeyCode = KeyCode_ !== undefined ? KeyCode_ : 0; + this.Locale = Locale_ !== undefined ? Locale_ : ""; + this.Location = Location_ !== undefined ? Location_ : 0; + this.KeyLocation = KeyLocation_ !== undefined ? KeyLocation_ : 0; + this.MetaKey = MetaKey_ !== undefined ? MetaKey_ : false; + this.Repeat = Repeat_ !== undefined ? Repeat_ : false; + this.ShiftKey = ShiftKey_ !== undefined ? ShiftKey_ : false; + }); + MediaStreamEvent = $pkg.MediaStreamEvent = $newType(0, $kindStruct, "dom.MediaStreamEvent", "MediaStreamEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + MessageEvent = $pkg.MessageEvent = $newType(0, $kindStruct, "dom.MessageEvent", "MessageEvent", "honnef.co/go/js/dom", function(BasicEvent_, Data_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + this.Data = Data_ !== undefined ? Data_ : null; + }); + MouseEvent = $pkg.MouseEvent = $newType(0, $kindStruct, "dom.MouseEvent", "MouseEvent", "honnef.co/go/js/dom", function(UIEvent_, AltKey_, Button_, ClientX_, ClientY_, CtrlKey_, MetaKey_, MovementX_, MovementY_, ScreenX_, ScreenY_, ShiftKey_) { + this.$val = this; + this.UIEvent = UIEvent_ !== undefined ? UIEvent_ : ptrType$17.nil; + this.AltKey = AltKey_ !== undefined ? AltKey_ : false; + this.Button = Button_ !== undefined ? Button_ : 0; + this.ClientX = ClientX_ !== undefined ? ClientX_ : 0; + this.ClientY = ClientY_ !== undefined ? ClientY_ : 0; + this.CtrlKey = CtrlKey_ !== undefined ? CtrlKey_ : false; + this.MetaKey = MetaKey_ !== undefined ? MetaKey_ : false; + this.MovementX = MovementX_ !== undefined ? MovementX_ : 0; + this.MovementY = MovementY_ !== undefined ? MovementY_ : 0; + this.ScreenX = ScreenX_ !== undefined ? ScreenX_ : 0; + this.ScreenY = ScreenY_ !== undefined ? ScreenY_ : 0; + this.ShiftKey = ShiftKey_ !== undefined ? ShiftKey_ : false; + }); + MutationEvent = $pkg.MutationEvent = $newType(0, $kindStruct, "dom.MutationEvent", "MutationEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + OfflineAudioCompletionEvent = $pkg.OfflineAudioCompletionEvent = $newType(0, $kindStruct, "dom.OfflineAudioCompletionEvent", "OfflineAudioCompletionEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + PageTransitionEvent = $pkg.PageTransitionEvent = $newType(0, $kindStruct, "dom.PageTransitionEvent", "PageTransitionEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + PointerEvent = $pkg.PointerEvent = $newType(0, $kindStruct, "dom.PointerEvent", "PointerEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + PopStateEvent = $pkg.PopStateEvent = $newType(0, $kindStruct, "dom.PopStateEvent", "PopStateEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + ProgressEvent = $pkg.ProgressEvent = $newType(0, $kindStruct, "dom.ProgressEvent", "ProgressEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + RelatedEvent = $pkg.RelatedEvent = $newType(0, $kindStruct, "dom.RelatedEvent", "RelatedEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + RTCPeerConnectionIceEvent = $pkg.RTCPeerConnectionIceEvent = $newType(0, $kindStruct, "dom.RTCPeerConnectionIceEvent", "RTCPeerConnectionIceEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + SensorEvent = $pkg.SensorEvent = $newType(0, $kindStruct, "dom.SensorEvent", "SensorEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + StorageEvent = $pkg.StorageEvent = $newType(0, $kindStruct, "dom.StorageEvent", "StorageEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + SVGEvent = $pkg.SVGEvent = $newType(0, $kindStruct, "dom.SVGEvent", "SVGEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + SVGZoomEvent = $pkg.SVGZoomEvent = $newType(0, $kindStruct, "dom.SVGZoomEvent", "SVGZoomEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + TimeEvent = $pkg.TimeEvent = $newType(0, $kindStruct, "dom.TimeEvent", "TimeEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + TouchEvent = $pkg.TouchEvent = $newType(0, $kindStruct, "dom.TouchEvent", "TouchEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + TrackEvent = $pkg.TrackEvent = $newType(0, $kindStruct, "dom.TrackEvent", "TrackEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + TransitionEvent = $pkg.TransitionEvent = $newType(0, $kindStruct, "dom.TransitionEvent", "TransitionEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + UIEvent = $pkg.UIEvent = $newType(0, $kindStruct, "dom.UIEvent", "UIEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + UserProximityEvent = $pkg.UserProximityEvent = $newType(0, $kindStruct, "dom.UserProximityEvent", "UserProximityEvent", "honnef.co/go/js/dom", function(BasicEvent_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + }); + WheelEvent = $pkg.WheelEvent = $newType(0, $kindStruct, "dom.WheelEvent", "WheelEvent", "honnef.co/go/js/dom", function(BasicEvent_, DeltaX_, DeltaY_, DeltaZ_, DeltaMode_) { + this.$val = this; + this.BasicEvent = BasicEvent_ !== undefined ? BasicEvent_ : ptrType$16.nil; + this.DeltaX = DeltaX_ !== undefined ? DeltaX_ : 0; + this.DeltaY = DeltaY_ !== undefined ? DeltaY_ : 0; + this.DeltaZ = DeltaZ_ !== undefined ? DeltaZ_ : 0; + this.DeltaMode = DeltaMode_ !== undefined ? DeltaMode_ : 0; + }); + callRecover = function(o, fn, args) { + var err = $ifaceNil, $deferred = [], $err = null, obj; + /* */ try { $deferFrames.push($deferred); + $deferred.push([(function() { + var e, _tuple, panicErr, ok; + e = $recover(); + if ($interfaceIsEqual(e, $ifaceNil)) { + return; } - _lhs = (x$1 = output.$length - 1 >> 0, ((x$1 < 0 || x$1 >= output.$length) ? $throwRuntimeError("index out of range") : output.$array[output.$offset + x$1])); _index = "content"; _key$1 = _index; (_lhs || $throwRuntimeError("assignment to entry in nil map"))[_key$1] = { k: _key$1, v: (_entry$1 = _lhs[_index], _entry$1 !== undefined ? _entry$1.v : "") + (((0 < 0 || 0 >= lines.$length) ? $throwRuntimeError("index out of range") : lines.$array[lines.$offset + 0])) }; - i = 1; - while (i < lines.$length) { - output = $append(output, (_map$1 = new $Map(), _key$2 = "type", _map$1[_key$2] = { k: _key$2, v: "out" }, _key$2 = "content", _map$1[_key$2] = { k: _key$2, v: ((i < 0 || i >= lines.$length) ? $throwRuntimeError("index out of range") : lines.$array[lines.$offset + i]) }, _map$1)); - i = i + (1) >> 0; + _tuple = $assertType(e, $error, true); panicErr = _tuple[0]; ok = _tuple[1]; + if (ok && !($interfaceIsEqual(panicErr, $ifaceNil))) { + err = panicErr; + } else { + $panic(e); } - scope.Object.output = $externalize(output, sliceType); - scope.EvalAsync((function() { - time.AfterFunc(new time.Duration(0, 0), (function() { - var box; - box = angularjs.ElementById("output"); - box.SetProp(new $String("scrollTop"), box.Prop("scrollHeight")); - })); - })); - }); - $global.goPanicHandler = (function(msg) { - var _map, _key; - output = $append(output, (_map = new $Map(), _key = "type", _map[_key] = { k: _key, v: "err" }, _key = "content", _map[_key] = { k: _key, v: "panic: " + msg }, _map)); - scope.Object.output = $externalize(output, sliceType); - }); + }), []]); + (obj = o, obj[$externalize(fn, $String)].apply(obj, $externalize(args, sliceType))); + err = $ifaceNil; + return err; + /* */ } catch(err) { $err = err; } finally { $deferFrames.pop(); $callDeferred($deferred, $err); return err; } }; - $pkg.$init = function() { - $pkg.$init = function() {}; - /* */ var $r, $s = 0; var $f = function() { while (true) { switch ($s) { case 0: - $r = bytes.$init($BLOCKING); /* */ $s = 1; case 1: if ($r && $r.$blocking) { $r = $r(); } - $r = compiler.$init($BLOCKING); /* */ $s = 2; case 2: if ($r && $r.$blocking) { $r = $r(); } - $r = js.$init($BLOCKING); /* */ $s = 3; case 3: if ($r && $r.$blocking) { $r = $r(); } - $r = angularjs.$init($BLOCKING); /* */ $s = 4; case 4: if ($r && $r.$blocking) { $r = $r(); } - $r = ast.$init($BLOCKING); /* */ $s = 5; case 5: if ($r && $r.$blocking) { $r = $r(); } - $r = format.$init($BLOCKING); /* */ $s = 6; case 6: if ($r && $r.$blocking) { $r = $r(); } - $r = parser.$init($BLOCKING); /* */ $s = 7; case 7: if ($r && $r.$blocking) { $r = $r(); } - $r = scanner.$init($BLOCKING); /* */ $s = 8; case 8: if ($r && $r.$blocking) { $r = $r(); } + nodeListToNodes = function(o) { + var out, length, i; + out = sliceType$1.nil; + length = $parseInt(o.length) >> 0; + i = 0; + while (i < length) { + out = $append(out, wrapNode(o.item(i))); + i = i + (1) >> 0; + } + return out; + }; + nodeListToElements = function(o) { + var out, length, i; + out = sliceType$2.nil; + length = $parseInt(o.length) >> 0; + i = 0; + while (i < length) { + out = $append(out, wrapElement(o.item(i))); + i = i + (1) >> 0; + } + return out; + }; + nodeListToHTMLElements = function(o) { + var out, length, i; + out = sliceType$3.nil; + length = $parseInt(o.length) >> 0; + i = 0; + while (i < length) { + out = $append(out, wrapHTMLElement(o.item(i))); + i = i + (1) >> 0; + } + return out; + }; + wrapDocument = function(o) { + var _ref; + _ref = o.constructor; + if (_ref === $global.HTMLDocument) { + return new htmlDocument.Ptr(new document.Ptr(new BasicNode.Ptr(o))); + } else { + return new document.Ptr(new BasicNode.Ptr(o)); + } + }; + wrapNode = function(o) { + var _ref; + if (o === null || o === undefined) { + return $ifaceNil; + } + _ref = o.constructor; + if (_ref === $global.Text) { + return new Text.Ptr(new BasicNode.Ptr(o)); + } else { + return wrapElement(o); + } + }; + wrapElement = function(o) { + var _ref; + if (o === null || o === undefined) { + return $ifaceNil; + } + _ref = o.constructor; + return wrapHTMLElement(o); + }; + wrapHTMLElement = function(o) { + var el, c, _ref; + if (o === null || o === undefined) { + return $ifaceNil; + } + el = new BasicHTMLElement.Ptr(new BasicElement.Ptr(new BasicNode.Ptr(o))); + c = o.constructor; + _ref = c; + if (_ref === $global.HTMLAnchorElement) { + return new HTMLAnchorElement.Ptr(el, new URLUtils.Ptr(o, "", "", "", "", "", "", "", "", "", "", ""), "", "", 0, "", "", ""); + } else if (_ref === $global.HTMLAppletElement) { + return new HTMLAppletElement.Ptr(el, "", "", "", "", "", "", 0, "", ""); + } else if (_ref === $global.HTMLAreaElement) { + return new HTMLAreaElement.Ptr(el, new URLUtils.Ptr(o, "", "", "", "", "", "", "", "", "", "", ""), "", "", "", "", "", "", 0, "", ""); + } else if (_ref === $global.HTMLAudioElement) { + return new HTMLAudioElement.Ptr(new HTMLMediaElement.Ptr(el)); + } else if (_ref === $global.HTMLBaseElement) { + return new HTMLBaseElement.Ptr(el); + } else if (_ref === $global.HTMLBodyElement) { + return new HTMLBodyElement.Ptr(el); + } else if (_ref === $global.HTMLBRElement) { + return new HTMLBRElement.Ptr(el); + } else if (_ref === $global.HTMLButtonElement) { + return new HTMLButtonElement.Ptr(el, false, false, "", "", "", false, "", "", 0, "", "", "", false); + } else if (_ref === $global.HTMLCanvasElement) { + return new HTMLCanvasElement.Ptr(el, 0, 0); + } else if (_ref === $global.HTMLDataElement) { + return new HTMLDataElement.Ptr(el, ""); + } else if (_ref === $global.HTMLDataListElement) { + return new HTMLDataListElement.Ptr(el); + } else if (_ref === $global.HTMLDirectoryElement) { + return new HTMLDirectoryElement.Ptr(el); + } else if (_ref === $global.HTMLDivElement) { + return new HTMLDivElement.Ptr(el); + } else if (_ref === $global.HTMLDListElement) { + return new HTMLDListElement.Ptr(el); + } else if (_ref === $global.HTMLEmbedElement) { + return new HTMLEmbedElement.Ptr(el, "", "", ""); + } else if (_ref === $global.HTMLFieldSetElement) { + return new HTMLFieldSetElement.Ptr(el, false, "", "", "", false); + } else if (_ref === $global.HTMLFontElement) { + return new HTMLFontElement.Ptr(el); + } else if (_ref === $global.HTMLFormElement) { + return new HTMLFormElement.Ptr(el, "", "", "", "", "", 0, "", "", false, ""); + } else if (_ref === $global.HTMLFrameElement) { + return new HTMLFrameElement.Ptr(el); + } else if (_ref === $global.HTMLFrameSetElement) { + return new HTMLFrameSetElement.Ptr(el); + } else if (_ref === $global.HTMLHeadElement) { + return new HTMLHeadElement.Ptr(el); + } else if (_ref === $global.HTMLHeadingElement) { + return new HTMLHeadingElement.Ptr(el); + } else if (_ref === $global.HTMLHtmlElement) { + return new HTMLHtmlElement.Ptr(el); + } else if (_ref === $global.HTMLHRElement) { + return new HTMLHRElement.Ptr(el); + } else if (_ref === $global.HTMLIFrameElement) { + return new HTMLIFrameElement.Ptr(el, "", "", "", "", "", false); + } else if (_ref === $global.HTMLImageElement) { + return new HTMLImageElement.Ptr(el, false, "", 0, false, 0, 0, "", "", 0); + } else if (_ref === $global.HTMLInputElement) { + return new HTMLInputElement.Ptr(el, "", "", "", false, false, false, "", "", false, "", "", "", false, "", "", false, "", 0, "", false, "", "", "", false, false, "", 0, 0, 0, "", "", 0, "", "", "", new time.Time.Ptr(), 0, "", false); + } else if (_ref === $global.HTMLKeygenElement) { + return new HTMLKeygenElement.Ptr(el, false, "", false, "", "", "", "", false); + } else if (_ref === $global.HTMLLabelElement) { + return new HTMLLabelElement.Ptr(el, ""); + } else if (_ref === $global.HTMLLegendElement) { + return new HTMLLegendElement.Ptr(el); + } else if (_ref === $global.HTMLLIElement) { + return new HTMLLIElement.Ptr(el, 0); + } else if (_ref === $global.HTMLLinkElement) { + return new HTMLLinkElement.Ptr(el, false, "", "", "", ""); + } else if (_ref === $global.HTMLMapElement) { + return new HTMLMapElement.Ptr(el, ""); + } else if (_ref === $global.HTMLMediaElement) { + return new HTMLMediaElement.Ptr(el); + } else if (_ref === $global.HTMLMenuElement) { + return new HTMLMenuElement.Ptr(el); + } else if (_ref === $global.HTMLMetaElement) { + return new HTMLMetaElement.Ptr(el, "", "", ""); + } else if (_ref === $global.HTMLMeterElement) { + return new HTMLMeterElement.Ptr(el, 0, 0, 0, 0, 0); + } else if (_ref === $global.HTMLModElement) { + return new HTMLModElement.Ptr(el, "", ""); + } else if (_ref === $global.HTMLObjectElement) { + return new HTMLObjectElement.Ptr(el, "", "", "", 0, "", false, "", "", "", false); + } else if (_ref === $global.HTMLOListElement) { + return new HTMLOListElement.Ptr(el, false, 0, ""); + } else if (_ref === $global.HTMLOptGroupElement) { + return new HTMLOptGroupElement.Ptr(el, false, ""); + } else if (_ref === $global.HTMLOptionElement) { + return new HTMLOptionElement.Ptr(el, false, false, 0, "", false, "", ""); + } else if (_ref === $global.HTMLOutputElement) { + return new HTMLOutputElement.Ptr(el, "", "", "", "", "", false); + } else if (_ref === $global.HTMLParagraphElement) { + return new HTMLParagraphElement.Ptr(el); + } else if (_ref === $global.HTMLParamElement) { + return new HTMLParamElement.Ptr(el, "", ""); + } else if (_ref === $global.HTMLPreElement) { + return new HTMLPreElement.Ptr(el); + } else if (_ref === $global.HTMLProgressElement) { + return new HTMLProgressElement.Ptr(el, 0, 0, 0); + } else if (_ref === $global.HTMLQuoteElement) { + return new HTMLQuoteElement.Ptr(el, ""); + } else if (_ref === $global.HTMLScriptElement) { + return new HTMLScriptElement.Ptr(el, "", "", "", false, false, ""); + } else if (_ref === $global.HTMLSelectElement) { + return new HTMLSelectElement.Ptr(el, false, false, 0, false, "", false, 0, 0, "", "", "", false); + } else if (_ref === $global.HTMLSourceElement) { + return new HTMLSourceElement.Ptr(el, "", "", ""); + } else if (_ref === $global.HTMLSpanElement) { + return new HTMLSpanElement.Ptr(el); + } else if (_ref === $global.HTMLStyleElement) { + return new HTMLStyleElement.Ptr(el); + } else if (_ref === $global.HTMLTableElement) { + return new HTMLTableElement.Ptr(el); + } else if (_ref === $global.HTMLTableCaptionElement) { + return new HTMLTableCaptionElement.Ptr(el); + } else if (_ref === $global.HTMLTableCellElement) { + return new HTMLTableCellElement.Ptr(el, 0, 0, 0); + } else if (_ref === $global.HTMLTableDataCellElement) { + return new HTMLTableDataCellElement.Ptr(el); + } else if (_ref === $global.HTMLTableHeaderCellElement) { + return new HTMLTableHeaderCellElement.Ptr(el, "", ""); + } else if (_ref === $global.HTMLTableColElement) { + return new HTMLTableColElement.Ptr(el, 0); + } else if (_ref === $global.HTMLTableRowElement) { + return new HTMLTableRowElement.Ptr(el, 0, 0); + } else if (_ref === $global.HTMLTableSectionElement) { + return new HTMLTableSectionElement.Ptr(el); + } else if (_ref === $global.HTMLTextAreaElement) { + return new HTMLTextAreaElement.Ptr(el, "", false, 0, "", "", false, 0, "", "", false, false, 0, "", 0, 0, 0, 0, "", "", "", false, ""); + } else if (_ref === $global.HTMLTimeElement) { + return new HTMLTimeElement.Ptr(el, ""); + } else if (_ref === $global.HTMLTitleElement) { + return new HTMLTitleElement.Ptr(el, ""); + } else if (_ref === $global.HTMLTrackElement) { + return new HTMLTrackElement.Ptr(el, "", "", "", "", false, 0); + } else if (_ref === $global.HTMLUListElement) { + return new HTMLUListElement.Ptr(el); + } else if (_ref === $global.HTMLUnknownElement) { + return new HTMLUnknownElement.Ptr(el); + } else if (_ref === $global.HTMLVideoElement) { + return new HTMLVideoElement.Ptr(new HTMLMediaElement.Ptr(el)); + } else if (_ref === $global.HTMLElement) { + return el; + } else { + return el; + } + }; + getForm = function(o) { + var form; + form = wrapHTMLElement(o.form); + if ($interfaceIsEqual(form, $ifaceNil)) { + return ptrType$3.nil; + } + return $assertType(form, ptrType$3); + }; + getLabels = function(o) { + var labels, out, _ref, _i, i, label; + labels = nodeListToElements(o.labels); + out = sliceType$4.make(labels.$length); + _ref = labels; + _i = 0; + while (_i < _ref.$length) { + i = _i; + label = ((_i < 0 || _i >= _ref.$length) ? $throwRuntimeError("index out of range") : _ref.$array[_ref.$offset + _i]); + (i < 0 || i >= out.$length) ? $throwRuntimeError("index out of range") : out.$array[out.$offset + i] = $assertType(label, ptrType$4); + _i++; + } + return out; + }; + GetWindow = $pkg.GetWindow = function() { + return new window.Ptr($global); + }; + TokenList.Ptr.prototype.Item = function(idx) { + var tl, o; + tl = this; + o = tl.dtl.item(idx); + if (o === null || o === undefined) { + return ""; + } + return $internalize(o, $String); + }; + TokenList.prototype.Item = function(idx) { return this.$val.Item(idx); }; + TokenList.Ptr.prototype.Contains = function(token) { + var tl; + tl = this; + return !!(tl.dtl.contains($externalize(token, $String))); + }; + TokenList.prototype.Contains = function(token) { return this.$val.Contains(token); }; + TokenList.Ptr.prototype.Add = function(token) { + var tl; + tl = this; + tl.dtl.add($externalize(token, $String)); + }; + TokenList.prototype.Add = function(token) { return this.$val.Add(token); }; + TokenList.Ptr.prototype.Remove = function(token) { + var tl; + tl = this; + tl.dtl.remove($externalize(token, $String)); + }; + TokenList.prototype.Remove = function(token) { return this.$val.Remove(token); }; + TokenList.Ptr.prototype.Toggle = function(token) { + var tl; + tl = this; + tl.dtl.toggle($externalize(token, $String)); + }; + TokenList.prototype.Toggle = function(token) { return this.$val.Toggle(token); }; + TokenList.Ptr.prototype.String = function() { + var tl; + tl = this; + if (!(tl.sa === "")) { + return $internalize(tl.o[$externalize(tl.sa, $String)], $String); + } + if (tl.dtl.constructor === $global.DOMSettableTokenList) { + return $internalize(tl.dtl.value, $String); + } + return ""; + }; + TokenList.prototype.String = function() { return this.$val.String(); }; + TokenList.Ptr.prototype.Slice = function() { + var tl, out, length, i; + tl = this; + out = sliceType$5.nil; + length = $parseInt(tl.dtl.length) >> 0; + i = 0; + while (i < length) { + out = $append(out, $internalize(tl.dtl.item(i), $String)); + i = i + (1) >> 0; + } + return out; + }; + TokenList.prototype.Slice = function() { return this.$val.Slice(); }; + TokenList.Ptr.prototype.SetString = function(s) { + var tl; + tl = this; + if (!(tl.sa === "")) { + tl.o[$externalize(tl.sa, $String)] = $externalize(s, $String); + return; + } + if (tl.dtl.constructor === $global.DOMSettableTokenList) { + tl.dtl.value = $externalize(s, $String); + return; + } + $panic(new $String("no way to SetString on this TokenList")); + }; + TokenList.prototype.SetString = function(s) { return this.$val.SetString(s); }; + TokenList.Ptr.prototype.Set = function(s) { + var tl; + tl = this; + tl.SetString(strings.Join(s, " ")); + }; + TokenList.prototype.Set = function(s) { return this.$val.Set(s); }; + htmlDocument.Ptr.prototype.ActiveElement = function() { + var d; + d = this; + return wrapHTMLElement(d.document.BasicNode.Object.activeElement); + }; + htmlDocument.prototype.ActiveElement = function() { return this.$val.ActiveElement(); }; + htmlDocument.Ptr.prototype.Body = function() { + var d; + d = this; + return wrapHTMLElement(d.document.BasicNode.Object.body); + }; + htmlDocument.prototype.Body = function() { return this.$val.Body(); }; + htmlDocument.Ptr.prototype.Cookie = function() { + var d; + d = this; + return $internalize(d.document.BasicNode.Object.cookie, $String); + }; + htmlDocument.prototype.Cookie = function() { return this.$val.Cookie(); }; + htmlDocument.Ptr.prototype.SetCookie = function(s) { + var d; + d = this; + d.document.BasicNode.Object.cookie = $externalize(s, $String); + }; + htmlDocument.prototype.SetCookie = function(s) { return this.$val.SetCookie(s); }; + htmlDocument.Ptr.prototype.DefaultView = function() { + var d; + d = this; + return new window.Ptr(d.document.BasicNode.Object.defaultView); + }; + htmlDocument.prototype.DefaultView = function() { return this.$val.DefaultView(); }; + htmlDocument.Ptr.prototype.DesignMode = function() { + var d, s; + d = this; + s = $internalize(d.document.BasicNode.Object.designMode, $String); + if (s === "off") { + return false; + } + return true; + }; + htmlDocument.prototype.DesignMode = function() { return this.$val.DesignMode(); }; + htmlDocument.Ptr.prototype.SetDesignMode = function(b) { + var d, s; + d = this; + s = "off"; + if (b) { + s = "on"; + } + d.document.BasicNode.Object.designMode = $externalize(s, $String); + }; + htmlDocument.prototype.SetDesignMode = function(b) { return this.$val.SetDesignMode(b); }; + htmlDocument.Ptr.prototype.Domain = function() { + var d; + d = this; + return $internalize(d.document.BasicNode.Object.domain, $String); + }; + htmlDocument.prototype.Domain = function() { return this.$val.Domain(); }; + htmlDocument.Ptr.prototype.SetDomain = function(s) { + var d; + d = this; + d.document.BasicNode.Object.domain = $externalize(s, $String); + }; + htmlDocument.prototype.SetDomain = function(s) { return this.$val.SetDomain(s); }; + htmlDocument.Ptr.prototype.Forms = function() { + var d, els, forms, length, i; + d = this; + els = sliceType$6.nil; + forms = d.document.BasicNode.Object.forms; + length = $parseInt(forms.length) >> 0; + i = 0; + while (i < length) { + els = $append(els, $assertType(wrapHTMLElement(forms.item(i)), ptrType$3)); + i = i + (1) >> 0; + } + return els; + }; + htmlDocument.prototype.Forms = function() { return this.$val.Forms(); }; + htmlDocument.Ptr.prototype.Head = function() { + var d, head; + d = this; + head = wrapElement(d.document.BasicNode.Object.head); + if ($interfaceIsEqual(head, $ifaceNil)) { + return ptrType$5.nil; + } + return $assertType(head, ptrType$5); + }; + htmlDocument.prototype.Head = function() { return this.$val.Head(); }; + htmlDocument.Ptr.prototype.Images = function() { + var d, els, images, length, i; + d = this; + els = sliceType$7.nil; + images = d.document.BasicNode.Object.images; + length = $parseInt(images.length) >> 0; + i = 0; + while (i < length) { + els = $append(els, $assertType(wrapHTMLElement(images.item(i)), ptrType$6)); + i = i + (1) >> 0; + } + return els; + }; + htmlDocument.prototype.Images = function() { return this.$val.Images(); }; + htmlDocument.Ptr.prototype.LastModified = function() { + var d; + d = this; + return $assertType($internalize(d.document.BasicNode.Object.lastModified, $emptyInterface), time.Time); + }; + htmlDocument.prototype.LastModified = function() { return this.$val.LastModified(); }; + htmlDocument.Ptr.prototype.Links = function() { + var d, els, links, length, i; + d = this; + els = sliceType$3.nil; + links = d.document.BasicNode.Object.links; + length = $parseInt(links.length) >> 0; + i = 0; + while (i < length) { + els = $append(els, wrapHTMLElement(links.item(i))); + i = i + (1) >> 0; + } + return els; + }; + htmlDocument.prototype.Links = function() { return this.$val.Links(); }; + htmlDocument.Ptr.prototype.Location = function() { + var d, o; + d = this; + o = d.document.BasicNode.Object.location; + return new Location.Ptr(o, new URLUtils.Ptr(o, "", "", "", "", "", "", "", "", "", "", "")); + }; + htmlDocument.prototype.Location = function() { return this.$val.Location(); }; + htmlDocument.Ptr.prototype.Plugins = function() { + var d, els, forms, length, i; + d = this; + els = sliceType$8.nil; + forms = d.document.BasicNode.Object.plugins; + length = $parseInt(forms.length) >> 0; + i = 0; + while (i < length) { + els = $append(els, $assertType(wrapHTMLElement(forms.item(i)), ptrType$7)); + i = i + (1) >> 0; + } + return els; + }; + htmlDocument.prototype.Plugins = function() { return this.$val.Plugins(); }; + htmlDocument.Ptr.prototype.ReadyState = function() { + var d; + d = this; + return $internalize(d.document.BasicNode.Object.readyState, $String); + }; + htmlDocument.prototype.ReadyState = function() { return this.$val.ReadyState(); }; + htmlDocument.Ptr.prototype.Referrer = function() { + var d; + d = this; + return $internalize(d.document.BasicNode.Object.referrer, $String); + }; + htmlDocument.prototype.Referrer = function() { return this.$val.Referrer(); }; + htmlDocument.Ptr.prototype.Scripts = function() { + var d, els, forms, length, i; + d = this; + els = sliceType$9.nil; + forms = d.document.BasicNode.Object.scripts; + length = $parseInt(forms.length) >> 0; + i = 0; + while (i < length) { + els = $append(els, $assertType(wrapHTMLElement(forms.item(i)), ptrType$8)); + i = i + (1) >> 0; + } + return els; + }; + htmlDocument.prototype.Scripts = function() { return this.$val.Scripts(); }; + htmlDocument.Ptr.prototype.Title = function() { + var d; + d = this; + return $internalize(d.document.BasicNode.Object.title, $String); + }; + htmlDocument.prototype.Title = function() { return this.$val.Title(); }; + htmlDocument.Ptr.prototype.SetTitle = function(s) { + var d; + d = this; + d.document.BasicNode.Object.title = $externalize(s, $String); + }; + htmlDocument.prototype.SetTitle = function(s) { return this.$val.SetTitle(s); }; + htmlDocument.Ptr.prototype.URL = function() { + var d; + d = this; + return $internalize(d.document.BasicNode.Object.url, $String); + }; + htmlDocument.prototype.URL = function() { return this.$val.URL(); }; + document.Ptr.prototype.Async = function() { + var d; + d = $clone(this, document); + return !!(d.BasicNode.Object.async); + }; + document.prototype.Async = function() { return this.$val.Async(); }; + document.Ptr.prototype.SetAsync = function(b) { + var d; + d = $clone(this, document); + d.BasicNode.Object.async = $externalize(b, $Bool); + }; + document.prototype.SetAsync = function(b) { return this.$val.SetAsync(b); }; + document.Ptr.prototype.Doctype = function() { + var d; + d = $clone(this, document); + return $ifaceNil; + }; + document.prototype.Doctype = function() { return this.$val.Doctype(); }; + document.Ptr.prototype.DocumentElement = function() { + var d; + d = $clone(this, document); + return wrapElement(d.BasicNode.Object.documentElement); + }; + document.prototype.DocumentElement = function() { return this.$val.DocumentElement(); }; + document.Ptr.prototype.DocumentURI = function() { + var d; + d = $clone(this, document); + return $internalize(d.BasicNode.Object.documentURI, $String); + }; + document.prototype.DocumentURI = function() { return this.$val.DocumentURI(); }; + document.Ptr.prototype.Implementation = function() { + var d; + d = $clone(this, document); + return $ifaceNil; + }; + document.prototype.Implementation = function() { return this.$val.Implementation(); }; + document.Ptr.prototype.LastStyleSheetSet = function() { + var d; + d = $clone(this, document); + return $internalize(d.BasicNode.Object.lastStyleSheetSet, $String); + }; + document.prototype.LastStyleSheetSet = function() { return this.$val.LastStyleSheetSet(); }; + document.Ptr.prototype.PreferredStyleSheetSet = function() { + var d; + d = $clone(this, document); + return $internalize(d.BasicNode.Object.preferredStyleSheetSet, $String); + }; + document.prototype.PreferredStyleSheetSet = function() { return this.$val.PreferredStyleSheetSet(); }; + document.Ptr.prototype.SelectedStyleSheetSet = function() { + var d; + d = $clone(this, document); + return $internalize(d.BasicNode.Object.selectedStyleSheetSet, $String); + }; + document.prototype.SelectedStyleSheetSet = function() { return this.$val.SelectedStyleSheetSet(); }; + document.Ptr.prototype.StyleSheets = function() { + var d; + d = $clone(this, document); + return sliceType$10.nil; + }; + document.prototype.StyleSheets = function() { return this.$val.StyleSheets(); }; + document.Ptr.prototype.StyleSheetSets = function() { + var d; + d = $clone(this, document); + return sliceType$10.nil; + }; + document.prototype.StyleSheetSets = function() { return this.$val.StyleSheetSets(); }; + document.Ptr.prototype.AdoptNode = function(node) { + var d; + d = $clone(this, document); + return wrapNode(d.BasicNode.Object.adoptNode(node.Underlying())); + }; + document.prototype.AdoptNode = function(node) { return this.$val.AdoptNode(node); }; + document.Ptr.prototype.CreateElement = function(name) { + var d; + d = $clone(this, document); + return wrapElement(d.BasicNode.Object.createElement($externalize(name, $String))); + }; + document.prototype.CreateElement = function(name) { return this.$val.CreateElement(name); }; + document.Ptr.prototype.CreateElementNS = function(ns, name) { + var d; + d = $clone(this, document); + return wrapElement(d.BasicNode.Object.createElement($externalize(ns, $String), $externalize(name, $String))); + }; + document.prototype.CreateElementNS = function(ns, name) { return this.$val.CreateElementNS(ns, name); }; + document.Ptr.prototype.CreateTextNode = function(s) { + var d; + d = $clone(this, document); + return $assertType(wrapNode(d.BasicNode.Object.createTextNode($externalize(s, $String))), ptrType$9); + }; + document.prototype.CreateTextNode = function(s) { return this.$val.CreateTextNode(s); }; + document.Ptr.prototype.ElementFromPoint = function(x, y) { + var d; + d = $clone(this, document); + return wrapElement(d.BasicNode.Object.elementFromPoint(x, y)); + }; + document.prototype.ElementFromPoint = function(x, y) { return this.$val.ElementFromPoint(x, y); }; + document.Ptr.prototype.EnableStyleSheetsForSet = function(name) { + var d; + d = $clone(this, document); + d.BasicNode.Object.enableStyleSheetsForSet($externalize(name, $String)); + }; + document.prototype.EnableStyleSheetsForSet = function(name) { return this.$val.EnableStyleSheetsForSet(name); }; + document.Ptr.prototype.GetElementsByClassName = function(name) { + var d; + d = $clone(this, document); + return (new BasicElement.Ptr(new BasicNode.Ptr(d.BasicNode.Object))).GetElementsByClassName(name); + }; + document.prototype.GetElementsByClassName = function(name) { return this.$val.GetElementsByClassName(name); }; + document.Ptr.prototype.GetElementsByTagName = function(name) { + var d; + d = $clone(this, document); + return (new BasicElement.Ptr(new BasicNode.Ptr(d.BasicNode.Object))).GetElementsByTagName(name); + }; + document.prototype.GetElementsByTagName = function(name) { return this.$val.GetElementsByTagName(name); }; + document.Ptr.prototype.GetElementsByTagNameNS = function(ns, name) { + var d; + d = $clone(this, document); + return (new BasicElement.Ptr(new BasicNode.Ptr(d.BasicNode.Object))).GetElementsByTagNameNS(ns, name); + }; + document.prototype.GetElementsByTagNameNS = function(ns, name) { return this.$val.GetElementsByTagNameNS(ns, name); }; + document.Ptr.prototype.GetElementByID = function(id) { + var d; + d = $clone(this, document); + return wrapElement(d.BasicNode.Object.getElementById($externalize(id, $String))); + }; + document.prototype.GetElementByID = function(id) { return this.$val.GetElementByID(id); }; + document.Ptr.prototype.QuerySelector = function(sel) { + var d; + d = $clone(this, document); + return (new BasicElement.Ptr(new BasicNode.Ptr(d.BasicNode.Object))).QuerySelector(sel); + }; + document.prototype.QuerySelector = function(sel) { return this.$val.QuerySelector(sel); }; + document.Ptr.prototype.QuerySelectorAll = function(sel) { + var d; + d = $clone(this, document); + return (new BasicElement.Ptr(new BasicNode.Ptr(d.BasicNode.Object))).QuerySelectorAll(sel); + }; + document.prototype.QuerySelectorAll = function(sel) { return this.$val.QuerySelectorAll(sel); }; + window.Ptr.prototype.Console = function() { + var w; + w = this; + return new Console.Ptr(w.Object.console); + }; + window.prototype.Console = function() { return this.$val.Console(); }; + window.Ptr.prototype.Document = function() { + var w; + w = this; + return wrapDocument(w.Object.document); + }; + window.prototype.Document = function() { return this.$val.Document(); }; + window.Ptr.prototype.FrameElement = function() { + var w; + w = this; + return wrapElement(w.Object.frameElement); + }; + window.prototype.FrameElement = function() { return this.$val.FrameElement(); }; + window.Ptr.prototype.Location = function() { + var w, o; + w = this; + o = w.Object.location; + return new Location.Ptr(o, new URLUtils.Ptr(o, "", "", "", "", "", "", "", "", "", "", "")); + }; + window.prototype.Location = function() { return this.$val.Location(); }; + window.Ptr.prototype.Name = function() { + var w; + w = this; + return $internalize(w.Object.name, $String); + }; + window.prototype.Name = function() { return this.$val.Name(); }; + window.Ptr.prototype.SetName = function(s) { + var w; + w = this; + w.Object.name = $externalize(s, $String); + }; + window.prototype.SetName = function(s) { return this.$val.SetName(s); }; + window.Ptr.prototype.InnerHeight = function() { + var w; + w = this; + return $parseInt(w.Object.innerHeight) >> 0; + }; + window.prototype.InnerHeight = function() { return this.$val.InnerHeight(); }; + window.Ptr.prototype.InnerWidth = function() { + var w; + w = this; + return $parseInt(w.Object.innerWidth) >> 0; + }; + window.prototype.InnerWidth = function() { return this.$val.InnerWidth(); }; + window.Ptr.prototype.Length = function() { + var w; + w = this; + return $parseInt(w.Object.length) >> 0; + }; + window.prototype.Length = function() { return this.$val.Length(); }; + window.Ptr.prototype.Opener = function() { + var w; + w = this; + return new window.Ptr(w.Object.opener); + }; + window.prototype.Opener = function() { return this.$val.Opener(); }; + window.Ptr.prototype.OuterHeight = function() { + var w; + w = this; + return $parseInt(w.Object.outerHeight) >> 0; + }; + window.prototype.OuterHeight = function() { return this.$val.OuterHeight(); }; + window.Ptr.prototype.OuterWidth = function() { + var w; + w = this; + return $parseInt(w.Object.outerWidth) >> 0; + }; + window.prototype.OuterWidth = function() { return this.$val.OuterWidth(); }; + window.Ptr.prototype.ScrollX = function() { + var w; + w = this; + return $parseInt(w.Object.scrollX) >> 0; + }; + window.prototype.ScrollX = function() { return this.$val.ScrollX(); }; + window.Ptr.prototype.ScrollY = function() { + var w; + w = this; + return $parseInt(w.Object.scrollY) >> 0; + }; + window.prototype.ScrollY = function() { return this.$val.ScrollY(); }; + window.Ptr.prototype.Parent = function() { + var w; + w = this; + return new window.Ptr(w.Object.parent); + }; + window.prototype.Parent = function() { return this.$val.Parent(); }; + window.Ptr.prototype.ScreenX = function() { + var w; + w = this; + return $parseInt(w.Object.screenX) >> 0; + }; + window.prototype.ScreenX = function() { return this.$val.ScreenX(); }; + window.Ptr.prototype.ScreenY = function() { + var w; + w = this; + return $parseInt(w.Object.screenY) >> 0; + }; + window.prototype.ScreenY = function() { return this.$val.ScreenY(); }; + window.Ptr.prototype.ScrollMaxX = function() { + var w; + w = this; + return $parseInt(w.Object.scrollMaxX) >> 0; + }; + window.prototype.ScrollMaxX = function() { return this.$val.ScrollMaxX(); }; + window.Ptr.prototype.ScrollMaxY = function() { + var w; + w = this; + return $parseInt(w.Object.scrollMaxY) >> 0; + }; + window.prototype.ScrollMaxY = function() { return this.$val.ScrollMaxY(); }; + window.Ptr.prototype.Top = function() { + var w; + w = this; + return new window.Ptr(w.Object.top); + }; + window.prototype.Top = function() { return this.$val.Top(); }; + window.Ptr.prototype.History = function() { + var w; + w = this; + return $ifaceNil; + }; + window.prototype.History = function() { return this.$val.History(); }; + window.Ptr.prototype.Navigator = function() { + var w; + w = this; + return $ifaceNil; + }; + window.prototype.Navigator = function() { return this.$val.Navigator(); }; + window.Ptr.prototype.Screen = function() { + var w; + w = this; + return new Screen.Ptr(w.Object.screen, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); + }; + window.prototype.Screen = function() { return this.$val.Screen(); }; + window.Ptr.prototype.Alert = function(msg) { + var w; + w = this; + w.Object.alert($externalize(msg, $String)); + }; + window.prototype.Alert = function(msg) { return this.$val.Alert(msg); }; + window.Ptr.prototype.Back = function() { + var w; + w = this; + w.Object.back(); + }; + window.prototype.Back = function() { return this.$val.Back(); }; + window.Ptr.prototype.Blur = function() { + var w; + w = this; + w.Object.blur(); + }; + window.prototype.Blur = function() { return this.$val.Blur(); }; + window.Ptr.prototype.ClearInterval = function(id) { + var w; + w = this; + w.Object.clearInterval(id); + }; + window.prototype.ClearInterval = function(id) { return this.$val.ClearInterval(id); }; + window.Ptr.prototype.ClearTimeout = function(id) { + var w; + w = this; + w.Object.clearTimeout(id); + }; + window.prototype.ClearTimeout = function(id) { return this.$val.ClearTimeout(id); }; + window.Ptr.prototype.Close = function() { + var w; + w = this; + w.Object.close(); + }; + window.prototype.Close = function() { return this.$val.Close(); }; + window.Ptr.prototype.Confirm = function(prompt) { + var w; + w = this; + return !!(w.Object.confirm($externalize(prompt, $String))); + }; + window.prototype.Confirm = function(prompt) { return this.$val.Confirm(prompt); }; + window.Ptr.prototype.Focus = function() { + var w; + w = this; + w.Object.focus(); + }; + window.prototype.Focus = function() { return this.$val.Focus(); }; + window.Ptr.prototype.Forward = function() { + var w; + w = this; + w.Object.forward(); + }; + window.prototype.Forward = function() { return this.$val.Forward(); }; + window.Ptr.prototype.GetComputedStyle = function(el, pseudoElt) { + var w, optArg; + w = this; + optArg = $ifaceNil; + if (!(pseudoElt === "")) { + optArg = new $String(pseudoElt); + } + return new CSSStyleDeclaration.Ptr(w.Object.getComputedStyle(el.Underlying(), $externalize(optArg, $emptyInterface))); + }; + window.prototype.GetComputedStyle = function(el, pseudoElt) { return this.$val.GetComputedStyle(el, pseudoElt); }; + window.Ptr.prototype.GetSelection = function() { + var w; + w = this; + return $ifaceNil; + }; + window.prototype.GetSelection = function() { return this.$val.GetSelection(); }; + window.Ptr.prototype.Home = function() { + var w; + w = this; + w.Object.home(); + }; + window.prototype.Home = function() { return this.$val.Home(); }; + window.Ptr.prototype.MoveBy = function(dx, dy) { + var w; + w = this; + w.Object.moveBy(dx, dy); + }; + window.prototype.MoveBy = function(dx, dy) { return this.$val.MoveBy(dx, dy); }; + window.Ptr.prototype.MoveTo = function(x, y) { + var w; + w = this; + w.Object.moveTo(x, y); + }; + window.prototype.MoveTo = function(x, y) { return this.$val.MoveTo(x, y); }; + window.Ptr.prototype.Open = function(url, name, features) { + var w; + w = this; + return new window.Ptr(w.Object.open($externalize(url, $String), $externalize(name, $String), $externalize(features, $String))); + }; + window.prototype.Open = function(url, name, features) { return this.$val.Open(url, name, features); }; + window.Ptr.prototype.OpenDialog = function(url, name, features, args) { + var w; + w = this; + return new window.Ptr(w.Object.openDialog($externalize(url, $String), $externalize(name, $String), $externalize(features, $String), $externalize(args, sliceType))); + }; + window.prototype.OpenDialog = function(url, name, features, args) { return this.$val.OpenDialog(url, name, features, args); }; + window.Ptr.prototype.PostMessage = function(message, target, transfer) { + var w; + w = this; + w.Object.postMessage($externalize(message, $String), $externalize(target, $String), $externalize(transfer, sliceType)); + }; + window.prototype.PostMessage = function(message, target, transfer) { return this.$val.PostMessage(message, target, transfer); }; + window.Ptr.prototype.Print = function() { + var w; + w = this; + w.Object.print(); + }; + window.prototype.Print = function() { return this.$val.Print(); }; + window.Ptr.prototype.Prompt = function(prompt, initial) { + var w; + w = this; + return $internalize(w.Object.prompt($externalize(prompt, $String), $externalize(initial, $String)), $String); + }; + window.prototype.Prompt = function(prompt, initial) { return this.$val.Prompt(prompt, initial); }; + window.Ptr.prototype.ResizeBy = function(dw, dh) { + var w; + w = this; + w.Object.resizeBy(dw, dh); + }; + window.prototype.ResizeBy = function(dw, dh) { return this.$val.ResizeBy(dw, dh); }; + window.Ptr.prototype.ResizeTo = function(width, height) { + var w; + w = this; + w.Object.resizeTo(width, height); + }; + window.prototype.ResizeTo = function(width, height) { return this.$val.ResizeTo(width, height); }; + window.Ptr.prototype.Scroll = function(x, y) { + var w; + w = this; + w.Object.scroll(x, y); + }; + window.prototype.Scroll = function(x, y) { return this.$val.Scroll(x, y); }; + window.Ptr.prototype.ScrollBy = function(dx, dy) { + var w; + w = this; + w.Object.scrollBy(dx, dy); + }; + window.prototype.ScrollBy = function(dx, dy) { return this.$val.ScrollBy(dx, dy); }; + window.Ptr.prototype.ScrollByLines = function(i) { + var w; + w = this; + w.Object.scrollByLines(i); + }; + window.prototype.ScrollByLines = function(i) { return this.$val.ScrollByLines(i); }; + window.Ptr.prototype.ScrollTo = function(x, y) { + var w; + w = this; + w.Object.scrollTo(x, y); + }; + window.prototype.ScrollTo = function(x, y) { return this.$val.ScrollTo(x, y); }; + window.Ptr.prototype.SetCursor = function(name) { + var w; + w = this; + w.Object.setCursor($externalize(name, $String)); + }; + window.prototype.SetCursor = function(name) { return this.$val.SetCursor(name); }; + window.Ptr.prototype.SetInterval = function(fn, delay) { + var w; + w = this; + return $parseInt(w.Object.setInterval($externalize(fn, funcType), delay)) >> 0; + }; + window.prototype.SetInterval = function(fn, delay) { return this.$val.SetInterval(fn, delay); }; + window.Ptr.prototype.SetTimeout = function(fn, delay) { + var w; + w = this; + return $parseInt(w.Object.setTimeout($externalize(fn, funcType), delay)) >> 0; + }; + window.prototype.SetTimeout = function(fn, delay) { return this.$val.SetTimeout(fn, delay); }; + window.Ptr.prototype.Stop = function() { + var w; + w = this; + w.Object.stop(); + }; + window.prototype.Stop = function() { return this.$val.Stop(); }; + window.Ptr.prototype.AddEventListener = function(typ, useCapture, listener) { + var w, wrapper; + w = this; + wrapper = (function(o) { + listener(wrapEvent(o)); + }); + w.Object.addEventListener($externalize(typ, $String), $externalize(wrapper, funcType$1), $externalize(useCapture, $Bool)); + return wrapper; + }; + window.prototype.AddEventListener = function(typ, useCapture, listener) { return this.$val.AddEventListener(typ, useCapture, listener); }; + window.Ptr.prototype.RemoveEventListener = function(typ, useCapture, listener) { + var w; + w = this; + w.Object.removeEventListener($externalize(typ, $String), $externalize(listener, funcType$2), $externalize(useCapture, $Bool)); + }; + window.prototype.RemoveEventListener = function(typ, useCapture, listener) { return this.$val.RemoveEventListener(typ, useCapture, listener); }; + PositionError.Ptr.prototype.Error = function() { + var err; + err = this; + return $internalize(err.Object.message(), $String); + }; + PositionError.prototype.Error = function() { return this.$val.Error(); }; + BasicNode.Ptr.prototype.Underlying = function() { + var n; + n = this; + return n.Object; + }; + BasicNode.prototype.Underlying = function() { return this.$val.Underlying(); }; + BasicNode.Ptr.prototype.AddEventListener = function(typ, useCapture, listener) { + var n, wrapper; + n = this; + wrapper = (function(o) { + listener(wrapEvent(o)); + }); + n.Object.addEventListener($externalize(typ, $String), $externalize(wrapper, funcType$1), $externalize(useCapture, $Bool)); + return wrapper; + }; + BasicNode.prototype.AddEventListener = function(typ, useCapture, listener) { return this.$val.AddEventListener(typ, useCapture, listener); }; + BasicNode.Ptr.prototype.RemoveEventListener = function(typ, useCapture, listener) { + var n; + n = this; + n.Object.removeEventListener($externalize(typ, $String), $externalize(listener, funcType$2), $externalize(useCapture, $Bool)); + }; + BasicNode.prototype.RemoveEventListener = function(typ, useCapture, listener) { return this.$val.RemoveEventListener(typ, useCapture, listener); }; + BasicNode.Ptr.prototype.BaseURI = function() { + var n; + n = this; + return $internalize(n.Object.baseURI, $String); + }; + BasicNode.prototype.BaseURI = function() { return this.$val.BaseURI(); }; + BasicNode.Ptr.prototype.ChildNodes = function() { + var n; + n = this; + return nodeListToNodes(n.Object.childNodes); + }; + BasicNode.prototype.ChildNodes = function() { return this.$val.ChildNodes(); }; + BasicNode.Ptr.prototype.FirstChild = function() { + var n; + n = this; + return wrapNode(n.Object.firstChild); + }; + BasicNode.prototype.FirstChild = function() { return this.$val.FirstChild(); }; + BasicNode.Ptr.prototype.LastChild = function() { + var n; + n = this; + return wrapNode(n.Object.lastChild); + }; + BasicNode.prototype.LastChild = function() { return this.$val.LastChild(); }; + BasicNode.Ptr.prototype.NextSibling = function() { + var n; + n = this; + return wrapNode(n.Object.nextSibling); + }; + BasicNode.prototype.NextSibling = function() { return this.$val.NextSibling(); }; + BasicNode.Ptr.prototype.NodeName = function() { + var n; + n = this; + return $internalize(n.Object.nodeName, $String); + }; + BasicNode.prototype.NodeName = function() { return this.$val.NodeName(); }; + BasicNode.Ptr.prototype.NodeType = function() { + var n; + n = this; + return $parseInt(n.Object.nodeType) >> 0; + }; + BasicNode.prototype.NodeType = function() { return this.$val.NodeType(); }; + BasicNode.Ptr.prototype.NodeValue = function() { + var n; + n = this; + return $internalize(n.Object.nodeValue, $String); + }; + BasicNode.prototype.NodeValue = function() { return this.$val.NodeValue(); }; + BasicNode.Ptr.prototype.SetNodeValue = function(s) { + var n; + n = this; + n.Object.nodeValue = $externalize(s, $String); + }; + BasicNode.prototype.SetNodeValue = function(s) { return this.$val.SetNodeValue(s); }; + BasicNode.Ptr.prototype.OwnerDocument = function() { + var n; + n = this; + return $ifaceNil; + }; + BasicNode.prototype.OwnerDocument = function() { return this.$val.OwnerDocument(); }; + BasicNode.Ptr.prototype.ParentNode = function() { + var n; + n = this; + return wrapNode(n.Object.parentNode); + }; + BasicNode.prototype.ParentNode = function() { return this.$val.ParentNode(); }; + BasicNode.Ptr.prototype.ParentElement = function() { + var n; + n = this; + return wrapElement(n.Object.parentElement); + }; + BasicNode.prototype.ParentElement = function() { return this.$val.ParentElement(); }; + BasicNode.Ptr.prototype.PreviousSibling = function() { + var n; + n = this; + return wrapNode(n.Object.previousSibling); + }; + BasicNode.prototype.PreviousSibling = function() { return this.$val.PreviousSibling(); }; + BasicNode.Ptr.prototype.TextContent = function() { + var n; + n = this; + return $internalize(n.Object.textContent, $String); + }; + BasicNode.prototype.TextContent = function() { return this.$val.TextContent(); }; + BasicNode.Ptr.prototype.SetTextContent = function(s) { + var n; + n = this; + n.Object.textContent = $externalize(s, $String); + }; + BasicNode.prototype.SetTextContent = function(s) { return this.$val.SetTextContent(s); }; + BasicNode.Ptr.prototype.AppendChild = function(newchild) { + var n; + n = this; + n.Object.appendChild(newchild.Underlying()); + }; + BasicNode.prototype.AppendChild = function(newchild) { return this.$val.AppendChild(newchild); }; + BasicNode.Ptr.prototype.CloneNode = function(deep) { + var n; + n = this; + return wrapNode(n.Object.cloneNode($externalize(deep, $Bool))); + }; + BasicNode.prototype.CloneNode = function(deep) { return this.$val.CloneNode(deep); }; + BasicNode.Ptr.prototype.CompareDocumentPosition = function(other) { + var n; + n = this; + return $parseInt(n.Object.compareDocumentPosition(other.Underlying())) >> 0; + }; + BasicNode.prototype.CompareDocumentPosition = function(other) { return this.$val.CompareDocumentPosition(other); }; + BasicNode.Ptr.prototype.Contains = function(other) { + var n; + n = this; + return !!(n.Object.contains(other.Underlying())); + }; + BasicNode.prototype.Contains = function(other) { return this.$val.Contains(other); }; + BasicNode.Ptr.prototype.HasChildNodes = function() { + var n; + n = this; + return !!(n.Object.hasChildNodes()); + }; + BasicNode.prototype.HasChildNodes = function() { return this.$val.HasChildNodes(); }; + BasicNode.Ptr.prototype.InsertBefore = function(which, before) { + var n, o; + n = this; + o = $ifaceNil; + if (!($interfaceIsEqual(before, $ifaceNil))) { + o = before.Underlying(); + } + n.Object.insertBefore(which.Underlying(), $externalize(o, $emptyInterface)); + }; + BasicNode.prototype.InsertBefore = function(which, before) { return this.$val.InsertBefore(which, before); }; + BasicNode.Ptr.prototype.IsDefaultNamespace = function(s) { + var n; + n = this; + return !!(n.Object.isDefaultNamespace($externalize(s, $String))); + }; + BasicNode.prototype.IsDefaultNamespace = function(s) { return this.$val.IsDefaultNamespace(s); }; + BasicNode.Ptr.prototype.IsEqualNode = function(other) { + var n; + n = this; + return !!(n.Object.isEqualNode(other.Underlying())); + }; + BasicNode.prototype.IsEqualNode = function(other) { return this.$val.IsEqualNode(other); }; + BasicNode.Ptr.prototype.LookupPrefix = function() { + var n; + n = this; + return $internalize(n.Object.lookupPrefix(), $String); + }; + BasicNode.prototype.LookupPrefix = function() { return this.$val.LookupPrefix(); }; + BasicNode.Ptr.prototype.LookupNamespaceURI = function(s) { + var n; + n = this; + return $internalize(n.Object.lookupNamespaceURI($externalize(s, $String)), $String); + }; + BasicNode.prototype.LookupNamespaceURI = function(s) { return this.$val.LookupNamespaceURI(s); }; + BasicNode.Ptr.prototype.Normalize = function() { + var n; + n = this; + n.Object.normalize(); + }; + BasicNode.prototype.Normalize = function() { return this.$val.Normalize(); }; + BasicNode.Ptr.prototype.RemoveChild = function(other) { + var n; + n = this; + n.Object.removeChild(other.Underlying()); + }; + BasicNode.prototype.RemoveChild = function(other) { return this.$val.RemoveChild(other); }; + BasicNode.Ptr.prototype.ReplaceChild = function(newChild, oldChild) { + var n; + n = this; + n.Object.replaceChild(newChild.Underlying(), oldChild.Underlying()); + }; + BasicNode.prototype.ReplaceChild = function(newChild, oldChild) { return this.$val.ReplaceChild(newChild, oldChild); }; + BasicHTMLElement.Ptr.prototype.AccessKey = function() { + var e; + e = this; + return $internalize(e.BasicElement.BasicNode.Object.accessKey, $String); + }; + BasicHTMLElement.prototype.AccessKey = function() { return this.$val.AccessKey(); }; + BasicHTMLElement.Ptr.prototype.SetAccessKey = function(s) { + var e; + e = this; + e.BasicElement.BasicNode.Object.accessKey = $externalize(s, $String); + }; + BasicHTMLElement.prototype.SetAccessKey = function(s) { return this.$val.SetAccessKey(s); }; + BasicHTMLElement.Ptr.prototype.AccessKeyLabel = function() { + var e; + e = this; + return $internalize(e.BasicElement.BasicNode.Object.accessKeyLabel, $String); + }; + BasicHTMLElement.prototype.AccessKeyLabel = function() { return this.$val.AccessKeyLabel(); }; + BasicHTMLElement.Ptr.prototype.SetAccessKeyLabel = function(s) { + var e; + e = this; + e.BasicElement.BasicNode.Object.accessKeyLabel = $externalize(s, $String); + }; + BasicHTMLElement.prototype.SetAccessKeyLabel = function(s) { return this.$val.SetAccessKeyLabel(s); }; + BasicHTMLElement.Ptr.prototype.ContentEditable = function() { + var e; + e = this; + return $internalize(e.BasicElement.BasicNode.Object.contentEditable, $String); + }; + BasicHTMLElement.prototype.ContentEditable = function() { return this.$val.ContentEditable(); }; + BasicHTMLElement.Ptr.prototype.SetContentEditable = function(s) { + var e; + e = this; + e.BasicElement.BasicNode.Object.contentEditable = $externalize(s, $String); + }; + BasicHTMLElement.prototype.SetContentEditable = function(s) { return this.$val.SetContentEditable(s); }; + BasicHTMLElement.Ptr.prototype.IsContentEditable = function() { + var e; + e = this; + return !!(e.BasicElement.BasicNode.Object.isContentEditable); + }; + BasicHTMLElement.prototype.IsContentEditable = function() { return this.$val.IsContentEditable(); }; + BasicHTMLElement.Ptr.prototype.Dataset = function() { + var e; + e = this; + }; + BasicHTMLElement.prototype.Dataset = function() { return this.$val.Dataset(); }; + BasicHTMLElement.Ptr.prototype.Dir = function() { + var e; + e = this; + return $internalize(e.BasicElement.BasicNode.Object.dir, $String); + }; + BasicHTMLElement.prototype.Dir = function() { return this.$val.Dir(); }; + BasicHTMLElement.Ptr.prototype.SetDir = function(s) { + var e; + e = this; + e.BasicElement.BasicNode.Object.dir = $externalize(s, $String); + }; + BasicHTMLElement.prototype.SetDir = function(s) { return this.$val.SetDir(s); }; + BasicHTMLElement.Ptr.prototype.Draggable = function() { + var e; + e = this; + return !!(e.BasicElement.BasicNode.Object.draggable); + }; + BasicHTMLElement.prototype.Draggable = function() { return this.$val.Draggable(); }; + BasicHTMLElement.Ptr.prototype.SetDraggable = function(b) { + var e; + e = this; + e.BasicElement.BasicNode.Object.draggable = $externalize(b, $Bool); + }; + BasicHTMLElement.prototype.SetDraggable = function(b) { return this.$val.SetDraggable(b); }; + BasicHTMLElement.Ptr.prototype.Lang = function() { + var e; + e = this; + return $internalize(e.BasicElement.BasicNode.Object.lang, $String); + }; + BasicHTMLElement.prototype.Lang = function() { return this.$val.Lang(); }; + BasicHTMLElement.Ptr.prototype.SetLang = function(s) { + var e; + e = this; + e.BasicElement.BasicNode.Object.lang = $externalize(s, $String); + }; + BasicHTMLElement.prototype.SetLang = function(s) { return this.$val.SetLang(s); }; + BasicHTMLElement.Ptr.prototype.OffsetHeight = function() { + var e; + e = this; + return $parseFloat(e.BasicElement.BasicNode.Object.offsetHeight); + }; + BasicHTMLElement.prototype.OffsetHeight = function() { return this.$val.OffsetHeight(); }; + BasicHTMLElement.Ptr.prototype.OffsetLeft = function() { + var e; + e = this; + return $parseFloat(e.BasicElement.BasicNode.Object.offsetLeft); + }; + BasicHTMLElement.prototype.OffsetLeft = function() { return this.$val.OffsetLeft(); }; + BasicHTMLElement.Ptr.prototype.OffsetParent = function() { + var e; + e = this; + return wrapHTMLElement(e.BasicElement.BasicNode.Object.offsetParent); + }; + BasicHTMLElement.prototype.OffsetParent = function() { return this.$val.OffsetParent(); }; + BasicHTMLElement.Ptr.prototype.OffsetTop = function() { + var e; + e = this; + return $parseFloat(e.BasicElement.BasicNode.Object.offsetTop); + }; + BasicHTMLElement.prototype.OffsetTop = function() { return this.$val.OffsetTop(); }; + BasicHTMLElement.Ptr.prototype.OffsetWidth = function() { + var e; + e = this; + return $parseFloat(e.BasicElement.BasicNode.Object.offsetWidth); + }; + BasicHTMLElement.prototype.OffsetWidth = function() { return this.$val.OffsetWidth(); }; + BasicHTMLElement.Ptr.prototype.Style = function() { + var e; + e = this; + return new CSSStyleDeclaration.Ptr(e.BasicElement.BasicNode.Object.style); + }; + BasicHTMLElement.prototype.Style = function() { return this.$val.Style(); }; + BasicHTMLElement.Ptr.prototype.TabIndex = function() { + var e; + e = this; + return $parseInt(e.BasicElement.BasicNode.Object.tabIndex) >> 0; + }; + BasicHTMLElement.prototype.TabIndex = function() { return this.$val.TabIndex(); }; + BasicHTMLElement.Ptr.prototype.SetTabIndex = function(i) { + var e; + e = this; + e.BasicElement.BasicNode.Object.tabIndex = i; + }; + BasicHTMLElement.prototype.SetTabIndex = function(i) { return this.$val.SetTabIndex(i); }; + BasicHTMLElement.Ptr.prototype.Title = function() { + var e; + e = this; + return $internalize(e.BasicElement.BasicNode.Object.title, $String); + }; + BasicHTMLElement.prototype.Title = function() { return this.$val.Title(); }; + BasicHTMLElement.Ptr.prototype.SetTitle = function(s) { + var e; + e = this; + e.BasicElement.BasicNode.Object.title = $externalize(s, $String); + }; + BasicHTMLElement.prototype.SetTitle = function(s) { return this.$val.SetTitle(s); }; + BasicHTMLElement.Ptr.prototype.Blur = function() { + var e; + e = this; + e.BasicElement.BasicNode.Object.blur(); + }; + BasicHTMLElement.prototype.Blur = function() { return this.$val.Blur(); }; + BasicHTMLElement.Ptr.prototype.Click = function() { + var e; + e = this; + e.BasicElement.BasicNode.Object.click(); + }; + BasicHTMLElement.prototype.Click = function() { return this.$val.Click(); }; + BasicHTMLElement.Ptr.prototype.Focus = function() { + var e; + e = this; + e.BasicElement.BasicNode.Object.focus(); + }; + BasicHTMLElement.prototype.Focus = function() { return this.$val.Focus(); }; + BasicElement.Ptr.prototype.GetBoundingClientRect = function() { + var e, obj; + e = this; + obj = e.BasicNode.Object.getBoundingClientRect(); + return new ClientRect.Ptr(obj, 0, 0, 0, 0, 0, 0); + }; + BasicElement.prototype.GetBoundingClientRect = function() { return this.$val.GetBoundingClientRect(); }; + BasicElement.Ptr.prototype.PreviousElementSibling = function() { + var e; + e = this; + return wrapElement(e.BasicNode.Object.previousElementSibling); + }; + BasicElement.prototype.PreviousElementSibling = function() { return this.$val.PreviousElementSibling(); }; + BasicElement.Ptr.prototype.NextElementSibling = function() { + var e; + e = this; + return wrapElement(e.BasicNode.Object.nextElementSibling); + }; + BasicElement.prototype.NextElementSibling = function() { return this.$val.NextElementSibling(); }; + BasicElement.Ptr.prototype.Class = function() { + var e; + e = this; + return new TokenList.Ptr(e.BasicNode.Object.classList, e, "className", 0); + }; + BasicElement.prototype.Class = function() { return this.$val.Class(); }; + BasicElement.Ptr.prototype.SetClass = function(s) { + var e; + e = this; + e.BasicNode.Object.className = $externalize(s, $String); + }; + BasicElement.prototype.SetClass = function(s) { return this.$val.SetClass(s); }; + BasicElement.Ptr.prototype.ID = function() { + var e; + e = this; + return $internalize(e.BasicNode.Object.id, $String); + }; + BasicElement.prototype.ID = function() { return this.$val.ID(); }; + BasicElement.Ptr.prototype.SetID = function(s) { + var e; + e = this; + e.BasicNode.Object.id = $externalize(s, $String); + }; + BasicElement.prototype.SetID = function(s) { return this.$val.SetID(s); }; + BasicElement.Ptr.prototype.TagName = function() { + var e; + e = this; + return $internalize(e.BasicNode.Object.tagName, $String); + }; + BasicElement.prototype.TagName = function() { return this.$val.TagName(); }; + BasicElement.Ptr.prototype.GetAttribute = function(name) { + var e; + e = this; + return $internalize(e.BasicNode.Object.getAttribute($externalize(name, $String)), $String); + }; + BasicElement.prototype.GetAttribute = function(name) { return this.$val.GetAttribute(name); }; + BasicElement.Ptr.prototype.GetAttributeNS = function(ns, name) { + var e; + e = this; + return $internalize(e.BasicNode.Object.getAttributeNS($externalize(ns, $String), $externalize(name, $String)), $String); + }; + BasicElement.prototype.GetAttributeNS = function(ns, name) { return this.$val.GetAttributeNS(ns, name); }; + BasicElement.Ptr.prototype.GetElementsByClassName = function(s) { + var e; + e = this; + return nodeListToElements(e.BasicNode.Object.getElementsByClassName($externalize(s, $String))); + }; + BasicElement.prototype.GetElementsByClassName = function(s) { return this.$val.GetElementsByClassName(s); }; + BasicElement.Ptr.prototype.GetElementsByTagName = function(s) { + var e; + e = this; + return nodeListToElements(e.BasicNode.Object.getElementsByTagName($externalize(s, $String))); + }; + BasicElement.prototype.GetElementsByTagName = function(s) { return this.$val.GetElementsByTagName(s); }; + BasicElement.Ptr.prototype.GetElementsByTagNameNS = function(ns, name) { + var e; + e = this; + return nodeListToElements(e.BasicNode.Object.getElementsByTagNameNS($externalize(ns, $String), $externalize(name, $String))); + }; + BasicElement.prototype.GetElementsByTagNameNS = function(ns, name) { return this.$val.GetElementsByTagNameNS(ns, name); }; + BasicElement.Ptr.prototype.HasAttribute = function(s) { + var e; + e = this; + return !!(e.BasicNode.Object.hasAttribute($externalize(s, $String))); + }; + BasicElement.prototype.HasAttribute = function(s) { return this.$val.HasAttribute(s); }; + BasicElement.Ptr.prototype.HasAttributeNS = function(ns, name) { + var e; + e = this; + return !!(e.BasicNode.Object.hasAttributeNS($externalize(ns, $String), $externalize(name, $String))); + }; + BasicElement.prototype.HasAttributeNS = function(ns, name) { return this.$val.HasAttributeNS(ns, name); }; + BasicElement.Ptr.prototype.QuerySelector = function(s) { + var e; + e = this; + return wrapElement(e.BasicNode.Object.querySelector($externalize(s, $String))); + }; + BasicElement.prototype.QuerySelector = function(s) { return this.$val.QuerySelector(s); }; + BasicElement.Ptr.prototype.QuerySelectorAll = function(s) { + var e; + e = this; + return nodeListToElements(e.BasicNode.Object.querySelectorAll($externalize(s, $String))); + }; + BasicElement.prototype.QuerySelectorAll = function(s) { return this.$val.QuerySelectorAll(s); }; + BasicElement.Ptr.prototype.RemoveAttribute = function(s) { + var e; + e = this; + e.BasicNode.Object.removeAttribute($externalize(s, $String)); + }; + BasicElement.prototype.RemoveAttribute = function(s) { return this.$val.RemoveAttribute(s); }; + BasicElement.Ptr.prototype.RemoveAttributeNS = function(ns, name) { + var e; + e = this; + e.BasicNode.Object.removeAttributeNS($externalize(ns, $String), $externalize(name, $String)); + }; + BasicElement.prototype.RemoveAttributeNS = function(ns, name) { return this.$val.RemoveAttributeNS(ns, name); }; + BasicElement.Ptr.prototype.SetAttribute = function(name, value) { + var e; + e = this; + e.BasicNode.Object.setAttribute($externalize(name, $String), $externalize(value, $String)); + }; + BasicElement.prototype.SetAttribute = function(name, value) { return this.$val.SetAttribute(name, value); }; + BasicElement.Ptr.prototype.SetAttributeNS = function(ns, name, value) { + var e; + e = this; + e.BasicNode.Object.setAttributeNS($externalize(ns, $String), $externalize(name, $String), $externalize(value, $String)); + }; + BasicElement.prototype.SetAttributeNS = function(ns, name, value) { return this.$val.SetAttributeNS(ns, name, value); }; + BasicElement.Ptr.prototype.InnerHTML = function() { + var e; + e = this; + return $internalize(e.BasicNode.Object.innerHTML, $String); + }; + BasicElement.prototype.InnerHTML = function() { return this.$val.InnerHTML(); }; + BasicElement.Ptr.prototype.SetInnerHTML = function(s) { + var e; + e = this; + e.BasicNode.Object.innerHTML = $externalize(s, $String); + }; + BasicElement.prototype.SetInnerHTML = function(s) { return this.$val.SetInnerHTML(s); }; + HTMLAnchorElement.Ptr.prototype.Rel = function() { + var e; + e = this; + return new TokenList.Ptr(e.URLUtils.Object.relList, e, "rel", 0); + }; + HTMLAnchorElement.prototype.Rel = function() { return this.$val.Rel(); }; + HTMLAppletElement.Ptr.prototype.Rel = function() { + var e; + e = this; + return new TokenList.Ptr(e.BasicHTMLElement.BasicElement.BasicNode.Object.relList, e, "rel", 0); + }; + HTMLAppletElement.prototype.Rel = function() { return this.$val.Rel(); }; + HTMLAreaElement.Ptr.prototype.Rel = function() { + var e; + e = this; + return new TokenList.Ptr(e.URLUtils.Object.relList, e, "rel", 0); + }; + HTMLAreaElement.prototype.Rel = function() { return this.$val.Rel(); }; + HTMLButtonElement.Ptr.prototype.Form = function() { + var e; + e = this; + return getForm(e); + }; + HTMLButtonElement.prototype.Form = function() { return this.$val.Form(); }; + HTMLButtonElement.Ptr.prototype.Labels = function() { + var e; + e = this; + return getLabels(e); + }; + HTMLButtonElement.prototype.Labels = function() { return this.$val.Labels(); }; + HTMLButtonElement.Ptr.prototype.Validity = function() { + var e; + e = this; + return new ValidityState.Ptr(e.BasicHTMLElement.BasicElement.BasicNode.Object.validity, false, false, false, false, false, false, false, false, false); + }; + HTMLButtonElement.prototype.Validity = function() { return this.$val.Validity(); }; + HTMLButtonElement.Ptr.prototype.CheckValidity = function() { + var e; + e = this; + return !!(e.BasicHTMLElement.BasicElement.BasicNode.Object.checkValidity()); + }; + HTMLButtonElement.prototype.CheckValidity = function() { return this.$val.CheckValidity(); }; + HTMLButtonElement.Ptr.prototype.SetCustomValidity = function(s) { + var e; + e = this; + e.BasicHTMLElement.BasicElement.BasicNode.Object.setCustomValidity($externalize(s, $String)); + }; + HTMLButtonElement.prototype.SetCustomValidity = function(s) { return this.$val.SetCustomValidity(s); }; + HTMLCanvasElement.Ptr.prototype.GetContext2d = function() { + var e, ctx; + e = this; + ctx = e.GetContext("2d"); + return new CanvasRenderingContext2D.Ptr(ctx, "", "", "", 0, 0, 0, "", "", 0, 0, "", "", "", 0, ""); + }; + HTMLCanvasElement.prototype.GetContext2d = function() { return this.$val.GetContext2d(); }; + HTMLCanvasElement.Ptr.prototype.GetContext = function(param) { + var e; + e = this; + return e.BasicHTMLElement.BasicElement.BasicNode.Object.getContext($externalize(param, $String)); + }; + HTMLCanvasElement.prototype.GetContext = function(param) { return this.$val.GetContext(param); }; + CanvasRenderingContext2D.Ptr.prototype.CreateLinearGradient = function(x0, y0, x1, y1) { + var ctx; + ctx = this; + ctx.Object.createLinearGradient(x0, y0, x1, y1); + }; + CanvasRenderingContext2D.prototype.CreateLinearGradient = function(x0, y0, x1, y1) { return this.$val.CreateLinearGradient(x0, y0, x1, y1); }; + CanvasRenderingContext2D.Ptr.prototype.Rect = function(x, y, width, height) { + var ctx; + ctx = this; + ctx.Object.rect(x, y, width, height); + }; + CanvasRenderingContext2D.prototype.Rect = function(x, y, width, height) { return this.$val.Rect(x, y, width, height); }; + CanvasRenderingContext2D.Ptr.prototype.FillRect = function(x, y, width, height) { + var ctx; + ctx = this; + ctx.Object.fillRect(x, y, width, height); + }; + CanvasRenderingContext2D.prototype.FillRect = function(x, y, width, height) { return this.$val.FillRect(x, y, width, height); }; + CanvasRenderingContext2D.Ptr.prototype.StrokeRect = function(x, y, width, height) { + var ctx; + ctx = this; + ctx.Object.strokeRect(x, y, width, height); + }; + CanvasRenderingContext2D.prototype.StrokeRect = function(x, y, width, height) { return this.$val.StrokeRect(x, y, width, height); }; + CanvasRenderingContext2D.Ptr.prototype.ClearRect = function(x, y, width, height) { + var ctx; + ctx = this; + ctx.Object.clearRect(x, y, width, height); + }; + CanvasRenderingContext2D.prototype.ClearRect = function(x, y, width, height) { return this.$val.ClearRect(x, y, width, height); }; + CanvasRenderingContext2D.Ptr.prototype.Fill = function() { + var ctx; + ctx = this; + ctx.Object.fill(); + }; + CanvasRenderingContext2D.prototype.Fill = function() { return this.$val.Fill(); }; + CanvasRenderingContext2D.Ptr.prototype.Stroke = function() { + var ctx; + ctx = this; + ctx.Object.stroke(); + }; + CanvasRenderingContext2D.prototype.Stroke = function() { return this.$val.Stroke(); }; + CanvasRenderingContext2D.Ptr.prototype.BeginPath = function() { + var ctx; + ctx = this; + ctx.Object.beginPath(); + }; + CanvasRenderingContext2D.prototype.BeginPath = function() { return this.$val.BeginPath(); }; + CanvasRenderingContext2D.Ptr.prototype.MoveTo = function(x, y) { + var ctx; + ctx = this; + ctx.Object.moveTo(x, y); + }; + CanvasRenderingContext2D.prototype.MoveTo = function(x, y) { return this.$val.MoveTo(x, y); }; + CanvasRenderingContext2D.Ptr.prototype.ClosePath = function() { + var ctx; + ctx = this; + ctx.Object.closePath(); + }; + CanvasRenderingContext2D.prototype.ClosePath = function() { return this.$val.ClosePath(); }; + CanvasRenderingContext2D.Ptr.prototype.LineTo = function(x, y) { + var ctx; + ctx = this; + ctx.Object.lineTo(x, y); + }; + CanvasRenderingContext2D.prototype.LineTo = function(x, y) { return this.$val.LineTo(x, y); }; + CanvasRenderingContext2D.Ptr.prototype.Clip = function() { + var ctx; + ctx = this; + ctx.Object.clip(); + }; + CanvasRenderingContext2D.prototype.Clip = function() { return this.$val.Clip(); }; + CanvasRenderingContext2D.Ptr.prototype.QuadraticCurveTo = function(cpx, cpy, x, y) { + var ctx; + ctx = this; + ctx.Object.quadraticCurveTo(cpx, cpy, x, y); + }; + CanvasRenderingContext2D.prototype.QuadraticCurveTo = function(cpx, cpy, x, y) { return this.$val.QuadraticCurveTo(cpx, cpy, x, y); }; + CanvasRenderingContext2D.Ptr.prototype.BezierCurveTo = function(cp1x, cp1y, cp2x, cp2y, x, y) { + var ctx; + ctx = this; + ctx.Object.bezierCurveTo(cp1x, cp1y, cp2x, cp2y, x, y); + }; + CanvasRenderingContext2D.prototype.BezierCurveTo = function(cp1x, cp1y, cp2x, cp2y, x, y) { return this.$val.BezierCurveTo(cp1x, cp1y, cp2x, cp2y, x, y); }; + CanvasRenderingContext2D.Ptr.prototype.Arc = function(x, y, r, sAngle, eAngle, counterclockwise) { + var ctx; + ctx = this; + ctx.Object.arc(x, y, r, sAngle, eAngle, $externalize(counterclockwise, $Bool)); + }; + CanvasRenderingContext2D.prototype.Arc = function(x, y, r, sAngle, eAngle, counterclockwise) { return this.$val.Arc(x, y, r, sAngle, eAngle, counterclockwise); }; + CanvasRenderingContext2D.Ptr.prototype.ArcTo = function(x1, y1, x2, y2, r) { + var ctx; + ctx = this; + ctx.Object.arcTo(x1, y1, x2, y2, r); + }; + CanvasRenderingContext2D.prototype.ArcTo = function(x1, y1, x2, y2, r) { return this.$val.ArcTo(x1, y1, x2, y2, r); }; + CanvasRenderingContext2D.Ptr.prototype.IsPointInPath = function(x, y) { + var ctx; + ctx = this; + return !!(ctx.Object.isPointInPath(x, y)); + }; + CanvasRenderingContext2D.prototype.IsPointInPath = function(x, y) { return this.$val.IsPointInPath(x, y); }; + CanvasRenderingContext2D.Ptr.prototype.Scale = function(scaleWidth, scaleHeight) { + var ctx; + ctx = this; + ctx.Object.scale(scaleWidth, scaleHeight); + }; + CanvasRenderingContext2D.prototype.Scale = function(scaleWidth, scaleHeight) { return this.$val.Scale(scaleWidth, scaleHeight); }; + CanvasRenderingContext2D.Ptr.prototype.Rotate = function(angle) { + var ctx; + ctx = this; + ctx.Object.rotate(angle); + }; + CanvasRenderingContext2D.prototype.Rotate = function(angle) { return this.$val.Rotate(angle); }; + CanvasRenderingContext2D.Ptr.prototype.Translate = function(x, y) { + var ctx; + ctx = this; + ctx.Object.translate(x, y); + }; + CanvasRenderingContext2D.prototype.Translate = function(x, y) { return this.$val.Translate(x, y); }; + CanvasRenderingContext2D.Ptr.prototype.Transform = function(a, b, c, d, e, f) { + var ctx; + ctx = this; + ctx.Object.transform(a, b, c, d, e, f); + }; + CanvasRenderingContext2D.prototype.Transform = function(a, b, c, d, e, f) { return this.$val.Transform(a, b, c, d, e, f); }; + CanvasRenderingContext2D.Ptr.prototype.SetTransform = function(a, b, c, d, e, f) { + var ctx; + ctx = this; + ctx.Object.setTransform(a, b, c, d, e, f); + }; + CanvasRenderingContext2D.prototype.SetTransform = function(a, b, c, d, e, f) { return this.$val.SetTransform(a, b, c, d, e, f); }; + CanvasRenderingContext2D.Ptr.prototype.FillText = function(text, x, y, maxWidth) { + var ctx; + ctx = this; + if (maxWidth === -1) { + ctx.Object.fillText($externalize(text, $String), x, y); + return; + } + ctx.Object.fillText($externalize(text, $String), x, y, maxWidth); + }; + CanvasRenderingContext2D.prototype.FillText = function(text, x, y, maxWidth) { return this.$val.FillText(text, x, y, maxWidth); }; + CanvasRenderingContext2D.Ptr.prototype.StrokeText = function(text, x, y, maxWidth) { + var ctx; + ctx = this; + if (maxWidth === -1) { + ctx.Object.strokeText($externalize(text, $String), x, y); + return; + } + ctx.Object.strokeText($externalize(text, $String), x, y, maxWidth); + }; + CanvasRenderingContext2D.prototype.StrokeText = function(text, x, y, maxWidth) { return this.$val.StrokeText(text, x, y, maxWidth); }; + HTMLDataListElement.Ptr.prototype.Options = function() { + var e, options, out, _ref, _i, i, option; + e = this; + options = nodeListToElements(e.BasicHTMLElement.BasicElement.BasicNode.Object.options); + out = sliceType$11.make(options.$length); + _ref = options; + _i = 0; + while (_i < _ref.$length) { + i = _i; + option = ((_i < 0 || _i >= _ref.$length) ? $throwRuntimeError("index out of range") : _ref.$array[_ref.$offset + _i]); + (i < 0 || i >= out.$length) ? $throwRuntimeError("index out of range") : out.$array[out.$offset + i] = $assertType(option, ptrType$10); + _i++; + } + return out; + }; + HTMLDataListElement.prototype.Options = function() { return this.$val.Options(); }; + HTMLFieldSetElement.Ptr.prototype.Elements = function() { + var e; + e = this; + return nodeListToHTMLElements(e.BasicHTMLElement.BasicElement.BasicNode.Object.elements); + }; + HTMLFieldSetElement.prototype.Elements = function() { return this.$val.Elements(); }; + HTMLFieldSetElement.Ptr.prototype.Form = function() { + var e; + e = this; + return getForm(e); + }; + HTMLFieldSetElement.prototype.Form = function() { return this.$val.Form(); }; + HTMLFieldSetElement.Ptr.prototype.Validity = function() { + var e; + e = this; + return new ValidityState.Ptr(e.BasicHTMLElement.BasicElement.BasicNode.Object.validity, false, false, false, false, false, false, false, false, false); + }; + HTMLFieldSetElement.prototype.Validity = function() { return this.$val.Validity(); }; + HTMLFieldSetElement.Ptr.prototype.CheckValidity = function() { + var e; + e = this; + return !!(e.BasicHTMLElement.BasicElement.BasicNode.Object.checkValidity()); + }; + HTMLFieldSetElement.prototype.CheckValidity = function() { return this.$val.CheckValidity(); }; + HTMLFieldSetElement.Ptr.prototype.SetCustomValidity = function(s) { + var e; + e = this; + e.BasicHTMLElement.BasicElement.BasicNode.Object.setCustomValidity($externalize(s, $String)); + }; + HTMLFieldSetElement.prototype.SetCustomValidity = function(s) { return this.$val.SetCustomValidity(s); }; + HTMLFormElement.Ptr.prototype.Elements = function() { + var e; + e = this; + return nodeListToHTMLElements(e.BasicHTMLElement.BasicElement.BasicNode.Object.elements); + }; + HTMLFormElement.prototype.Elements = function() { return this.$val.Elements(); }; + HTMLFormElement.Ptr.prototype.CheckValidity = function() { + var e; + e = this; + return !!(e.BasicHTMLElement.BasicElement.BasicNode.Object.checkValidity()); + }; + HTMLFormElement.prototype.CheckValidity = function() { return this.$val.CheckValidity(); }; + HTMLFormElement.Ptr.prototype.Submit = function() { + var e; + e = this; + e.BasicHTMLElement.BasicElement.BasicNode.Object.submit(); + }; + HTMLFormElement.prototype.Submit = function() { return this.$val.Submit(); }; + HTMLFormElement.Ptr.prototype.Reset = function() { + var e; + e = this; + e.BasicHTMLElement.BasicElement.BasicNode.Object.reset(); + }; + HTMLFormElement.prototype.Reset = function() { return this.$val.Reset(); }; + HTMLFormElement.Ptr.prototype.Item = function(index) { + var e; + e = this; + return wrapHTMLElement(e.BasicHTMLElement.BasicElement.BasicNode.Object.item(index)); + }; + HTMLFormElement.prototype.Item = function(index) { return this.$val.Item(index); }; + HTMLFormElement.Ptr.prototype.NamedItem = function(name) { + var e; + e = this; + return wrapHTMLElement(e.BasicHTMLElement.BasicElement.BasicNode.Object.namedItem($externalize(name, $String))); + }; + HTMLFormElement.prototype.NamedItem = function(name) { return this.$val.NamedItem(name); }; + HTMLIFrameElement.Ptr.prototype.ContentDocument = function() { + var e; + e = this; + return wrapDocument(e.BasicHTMLElement.BasicElement.BasicNode.Object.contentDocument); + }; + HTMLIFrameElement.prototype.ContentDocument = function() { return this.$val.ContentDocument(); }; + HTMLIFrameElement.Ptr.prototype.ContentWindow = function() { + var e; + e = this; + return new window.Ptr(e.BasicHTMLElement.BasicElement.BasicNode.Object.contentWindow); + }; + HTMLIFrameElement.prototype.ContentWindow = function() { return this.$val.ContentWindow(); }; + HTMLInputElement.Ptr.prototype.Files = function() { + var e, files, out, _ref, _i, i; + e = this; + files = e.BasicHTMLElement.BasicElement.BasicNode.Object.files; + out = sliceType$12.make(($parseInt(files.length) >> 0)); + _ref = out; + _i = 0; + while (_i < _ref.$length) { + i = _i; + (i < 0 || i >= out.$length) ? $throwRuntimeError("index out of range") : out.$array[out.$offset + i] = new File.Ptr(files.item(i)); + _i++; + } + return out; + }; + HTMLInputElement.prototype.Files = function() { return this.$val.Files(); }; + HTMLInputElement.Ptr.prototype.List = function() { + var e, list; + e = this; + list = wrapHTMLElement(e.BasicHTMLElement.BasicElement.BasicNode.Object.list); + if ($interfaceIsEqual(list, $ifaceNil)) { + return ptrType$12.nil; + } + return $assertType(list, ptrType$12); + }; + HTMLInputElement.prototype.List = function() { return this.$val.List(); }; + HTMLInputElement.Ptr.prototype.Labels = function() { + var e; + e = this; + return getLabels(e); + }; + HTMLInputElement.prototype.Labels = function() { return this.$val.Labels(); }; + HTMLInputElement.Ptr.prototype.Form = function() { + var e; + e = this; + return getForm(e); + }; + HTMLInputElement.prototype.Form = function() { return this.$val.Form(); }; + HTMLInputElement.Ptr.prototype.Validity = function() { + var e; + e = this; + return new ValidityState.Ptr(e.BasicHTMLElement.BasicElement.BasicNode.Object.validity, false, false, false, false, false, false, false, false, false); + }; + HTMLInputElement.prototype.Validity = function() { return this.$val.Validity(); }; + HTMLInputElement.Ptr.prototype.CheckValidity = function() { + var e; + e = this; + return !!(e.BasicHTMLElement.BasicElement.BasicNode.Object.checkValidity()); + }; + HTMLInputElement.prototype.CheckValidity = function() { return this.$val.CheckValidity(); }; + HTMLInputElement.Ptr.prototype.SetCustomValidity = function(s) { + var e; + e = this; + e.BasicHTMLElement.BasicElement.BasicNode.Object.setCustomValidity($externalize(s, $String)); + }; + HTMLInputElement.prototype.SetCustomValidity = function(s) { return this.$val.SetCustomValidity(s); }; + HTMLInputElement.Ptr.prototype.Select = function() { + var e; + e = this; + e.BasicHTMLElement.BasicElement.BasicNode.Object.select(); + }; + HTMLInputElement.prototype.Select = function() { return this.$val.Select(); }; + HTMLInputElement.Ptr.prototype.SetSelectionRange = function(start, end, direction) { + var e; + e = this; + e.BasicHTMLElement.BasicElement.BasicNode.Object.setSelectionRange(start, end, $externalize(direction, $String)); + }; + HTMLInputElement.prototype.SetSelectionRange = function(start, end, direction) { return this.$val.SetSelectionRange(start, end, direction); }; + HTMLInputElement.Ptr.prototype.StepDown = function(n) { + var e; + e = this; + return callRecover(e, "stepDown", new sliceType([new $Int(n)])); + }; + HTMLInputElement.prototype.StepDown = function(n) { return this.$val.StepDown(n); }; + HTMLInputElement.Ptr.prototype.StepUp = function(n) { + var e; + e = this; + return callRecover(e, "stepUp", new sliceType([new $Int(n)])); + }; + HTMLInputElement.prototype.StepUp = function(n) { return this.$val.StepUp(n); }; + HTMLKeygenElement.Ptr.prototype.Form = function() { + var e; + e = this; + return getForm(e); + }; + HTMLKeygenElement.prototype.Form = function() { return this.$val.Form(); }; + HTMLKeygenElement.Ptr.prototype.Labels = function() { + var e; + e = this; + return getLabels(e); + }; + HTMLKeygenElement.prototype.Labels = function() { return this.$val.Labels(); }; + HTMLKeygenElement.Ptr.prototype.Validity = function() { + var e; + e = this; + return new ValidityState.Ptr(e.BasicHTMLElement.BasicElement.BasicNode.Object.validity, false, false, false, false, false, false, false, false, false); + }; + HTMLKeygenElement.prototype.Validity = function() { return this.$val.Validity(); }; + HTMLKeygenElement.Ptr.prototype.CheckValidity = function() { + var e; + e = this; + return !!(e.BasicHTMLElement.BasicElement.BasicNode.Object.checkValidity()); + }; + HTMLKeygenElement.prototype.CheckValidity = function() { return this.$val.CheckValidity(); }; + HTMLKeygenElement.Ptr.prototype.SetCustomValidity = function(s) { + var e; + e = this; + e.BasicHTMLElement.BasicElement.BasicNode.Object.setCustomValidity($externalize(s, $String)); + }; + HTMLKeygenElement.prototype.SetCustomValidity = function(s) { return this.$val.SetCustomValidity(s); }; + HTMLLabelElement.Ptr.prototype.Control = function() { + var e; + e = this; + return wrapHTMLElement(e.BasicHTMLElement.BasicElement.BasicNode.Object.control); + }; + HTMLLabelElement.prototype.Control = function() { return this.$val.Control(); }; + HTMLLabelElement.Ptr.prototype.Form = function() { + var e; + e = this; + return getForm(e); + }; + HTMLLabelElement.prototype.Form = function() { return this.$val.Form(); }; + HTMLLegendElement.Ptr.prototype.Form = function() { + var e; + e = this; + return getForm(e); + }; + HTMLLegendElement.prototype.Form = function() { return this.$val.Form(); }; + HTMLLinkElement.Ptr.prototype.Rel = function() { + var e; + e = this; + return new TokenList.Ptr(e.BasicHTMLElement.BasicElement.BasicNode.Object.relList, e, "rel", 0); + }; + HTMLLinkElement.prototype.Rel = function() { return this.$val.Rel(); }; + HTMLLinkElement.Ptr.prototype.Sizes = function() { + var e; + e = this; + return new TokenList.Ptr(e.BasicHTMLElement.BasicElement.BasicNode.Object.sizes, e, "", 0); + }; + HTMLLinkElement.prototype.Sizes = function() { return this.$val.Sizes(); }; + HTMLLinkElement.Ptr.prototype.Sheet = function() { + var e; + e = this; + return $ifaceNil; + }; + HTMLLinkElement.prototype.Sheet = function() { return this.$val.Sheet(); }; + HTMLMapElement.Ptr.prototype.Areas = function() { + var e, areas, out, _ref, _i, i, area; + e = this; + areas = nodeListToElements(e.BasicHTMLElement.BasicElement.BasicNode.Object.areas); + out = sliceType$13.make(areas.$length); + _ref = areas; + _i = 0; + while (_i < _ref.$length) { + i = _i; + area = ((_i < 0 || _i >= _ref.$length) ? $throwRuntimeError("index out of range") : _ref.$array[_ref.$offset + _i]); + (i < 0 || i >= out.$length) ? $throwRuntimeError("index out of range") : out.$array[out.$offset + i] = $assertType(area, ptrType$13); + _i++; + } + return out; + }; + HTMLMapElement.prototype.Areas = function() { return this.$val.Areas(); }; + HTMLMapElement.Ptr.prototype.Images = function() { + var e; + e = this; + return nodeListToHTMLElements(e.BasicHTMLElement.BasicElement.BasicNode.Object.areas); + }; + HTMLMapElement.prototype.Images = function() { return this.$val.Images(); }; + HTMLMeterElement.Ptr.prototype.Labels = function() { + var e; + e = $clone(this, HTMLMeterElement); + return getLabels(new e.constructor.Struct(e)); + }; + HTMLMeterElement.prototype.Labels = function() { return this.$val.Labels(); }; + HTMLObjectElement.Ptr.prototype.Form = function() { + var e; + e = this; + return getForm(e); + }; + HTMLObjectElement.prototype.Form = function() { return this.$val.Form(); }; + HTMLObjectElement.Ptr.prototype.ContentDocument = function() { + var e; + e = this; + return wrapDocument(e.BasicHTMLElement.BasicElement.BasicNode.Object.contentDocument); + }; + HTMLObjectElement.prototype.ContentDocument = function() { return this.$val.ContentDocument(); }; + HTMLObjectElement.Ptr.prototype.ContentWindow = function() { + var e; + e = this; + return new window.Ptr(e.BasicHTMLElement.BasicElement.BasicNode.Object.contentWindow); + }; + HTMLObjectElement.prototype.ContentWindow = function() { return this.$val.ContentWindow(); }; + HTMLObjectElement.Ptr.prototype.Validity = function() { + var e; + e = this; + return new ValidityState.Ptr(e.BasicHTMLElement.BasicElement.BasicNode.Object.validity, false, false, false, false, false, false, false, false, false); + }; + HTMLObjectElement.prototype.Validity = function() { return this.$val.Validity(); }; + HTMLObjectElement.Ptr.prototype.CheckValidity = function() { + var e; + e = this; + return !!(e.BasicHTMLElement.BasicElement.BasicNode.Object.checkValidity()); + }; + HTMLObjectElement.prototype.CheckValidity = function() { return this.$val.CheckValidity(); }; + HTMLObjectElement.Ptr.prototype.SetCustomValidity = function(s) { + var e; + e = this; + e.BasicHTMLElement.BasicElement.BasicNode.Object.setCustomValidity($externalize(s, $String)); + }; + HTMLObjectElement.prototype.SetCustomValidity = function(s) { return this.$val.SetCustomValidity(s); }; + HTMLOptionElement.Ptr.prototype.Form = function() { + var e; + e = this; + return getForm(e.BasicHTMLElement.BasicElement.BasicNode.Object); + }; + HTMLOptionElement.prototype.Form = function() { return this.$val.Form(); }; + HTMLOutputElement.Ptr.prototype.Form = function() { + var e; + e = this; + return getForm(e); + }; + HTMLOutputElement.prototype.Form = function() { return this.$val.Form(); }; + HTMLOutputElement.Ptr.prototype.Labels = function() { + var e; + e = this; + return getLabels(e); + }; + HTMLOutputElement.prototype.Labels = function() { return this.$val.Labels(); }; + HTMLOutputElement.Ptr.prototype.Validity = function() { + var e; + e = this; + return new ValidityState.Ptr(e.BasicHTMLElement.BasicElement.BasicNode.Object.validity, false, false, false, false, false, false, false, false, false); + }; + HTMLOutputElement.prototype.Validity = function() { return this.$val.Validity(); }; + HTMLOutputElement.Ptr.prototype.For = function() { + var e; + e = this; + return new TokenList.Ptr(e.BasicHTMLElement.BasicElement.BasicNode.Object.htmlFor, e, "", 0); + }; + HTMLOutputElement.prototype.For = function() { return this.$val.For(); }; + HTMLOutputElement.Ptr.prototype.CheckValidity = function() { + var e; + e = this; + return !!(e.BasicHTMLElement.BasicElement.BasicNode.Object.checkValidity()); + }; + HTMLOutputElement.prototype.CheckValidity = function() { return this.$val.CheckValidity(); }; + HTMLOutputElement.Ptr.prototype.SetCustomValidity = function(s) { + var e; + e = this; + e.BasicHTMLElement.BasicElement.BasicNode.Object.setCustomValidity($externalize(s, $String)); + }; + HTMLOutputElement.prototype.SetCustomValidity = function(s) { return this.$val.SetCustomValidity(s); }; + HTMLProgressElement.Ptr.prototype.Labels = function() { + var e; + e = $clone(this, HTMLProgressElement); + return getLabels(new e.constructor.Struct(e)); + }; + HTMLProgressElement.prototype.Labels = function() { return this.$val.Labels(); }; + HTMLTableRowElement.Ptr.prototype.Cells = function() { + var e, cells, out, _ref, _i, i, cell; + e = this; + cells = nodeListToElements(e.BasicHTMLElement.BasicElement.BasicNode.Object.cells); + out = sliceType$14.make(cells.$length); + _ref = cells; + _i = 0; + while (_i < _ref.$length) { + i = _i; + cell = ((_i < 0 || _i >= _ref.$length) ? $throwRuntimeError("index out of range") : _ref.$array[_ref.$offset + _i]); + (i < 0 || i >= out.$length) ? $throwRuntimeError("index out of range") : out.$array[out.$offset + i] = $assertType(cell, ptrType$14); + _i++; + } + return out; + }; + HTMLTableRowElement.prototype.Cells = function() { return this.$val.Cells(); }; + HTMLTableRowElement.Ptr.prototype.InsertCell = function(index) { + var e; + e = this; + return $assertType(wrapHTMLElement(e.BasicHTMLElement.BasicElement.BasicNode.Object.insertCell(index)), ptrType$14); + }; + HTMLTableRowElement.prototype.InsertCell = function(index) { return this.$val.InsertCell(index); }; + HTMLTableRowElement.Ptr.prototype.DeleteCell = function(index) { + var e; + e = this; + e.BasicHTMLElement.BasicElement.BasicNode.Object.deleteCell(index); + }; + HTMLTableRowElement.prototype.DeleteCell = function(index) { return this.$val.DeleteCell(index); }; + HTMLTableSectionElement.Ptr.prototype.Rows = function() { + var e, rows, out, _ref, _i, i, row; + e = this; + rows = nodeListToElements(e.BasicHTMLElement.BasicElement.BasicNode.Object.rows); + out = sliceType$15.make(rows.$length); + _ref = rows; + _i = 0; + while (_i < _ref.$length) { + i = _i; + row = ((_i < 0 || _i >= _ref.$length) ? $throwRuntimeError("index out of range") : _ref.$array[_ref.$offset + _i]); + (i < 0 || i >= out.$length) ? $throwRuntimeError("index out of range") : out.$array[out.$offset + i] = $assertType(row, ptrType$15); + _i++; + } + return out; + }; + HTMLTableSectionElement.prototype.Rows = function() { return this.$val.Rows(); }; + HTMLTableSectionElement.Ptr.prototype.DeleteRow = function(index) { + var e; + e = this; + e.BasicHTMLElement.BasicElement.BasicNode.Object.deleteRow(index); + }; + HTMLTableSectionElement.prototype.DeleteRow = function(index) { return this.$val.DeleteRow(index); }; + HTMLTableSectionElement.Ptr.prototype.InsertRow = function(index) { + var e; + e = this; + return $assertType(wrapHTMLElement(e.BasicHTMLElement.BasicElement.BasicNode.Object.insertRow(index)), ptrType$15); + }; + HTMLTableSectionElement.prototype.InsertRow = function(index) { return this.$val.InsertRow(index); }; + HTMLTextAreaElement.Ptr.prototype.Form = function() { + var e; + e = this; + return getForm(e); + }; + HTMLTextAreaElement.prototype.Form = function() { return this.$val.Form(); }; + HTMLTextAreaElement.Ptr.prototype.Labels = function() { + var e; + e = this; + return getLabels(e); + }; + HTMLTextAreaElement.prototype.Labels = function() { return this.$val.Labels(); }; + HTMLTextAreaElement.Ptr.prototype.Validity = function() { + var e; + e = this; + return new ValidityState.Ptr(e.BasicHTMLElement.BasicElement.BasicNode.Object.validity, false, false, false, false, false, false, false, false, false); + }; + HTMLTextAreaElement.prototype.Validity = function() { return this.$val.Validity(); }; + HTMLTextAreaElement.Ptr.prototype.CheckValidity = function() { + var e; + e = this; + return !!(e.BasicHTMLElement.BasicElement.BasicNode.Object.checkValidity()); + }; + HTMLTextAreaElement.prototype.CheckValidity = function() { return this.$val.CheckValidity(); }; + HTMLTextAreaElement.Ptr.prototype.SetCustomValidity = function(s) { + var e; + e = this; + e.BasicHTMLElement.BasicElement.BasicNode.Object.setCustomValidity($externalize(s, $String)); + }; + HTMLTextAreaElement.prototype.SetCustomValidity = function(s) { return this.$val.SetCustomValidity(s); }; + HTMLTextAreaElement.Ptr.prototype.Select = function() { + var e; + e = this; + e.BasicHTMLElement.BasicElement.BasicNode.Object.select(); + }; + HTMLTextAreaElement.prototype.Select = function() { return this.$val.Select(); }; + HTMLTextAreaElement.Ptr.prototype.SetSelectionRange = function(start, end, direction) { + var e; + e = this; + e.BasicHTMLElement.BasicElement.BasicNode.Object.setSelectionRange(start, end, $externalize(direction, $String)); + }; + HTMLTextAreaElement.prototype.SetSelectionRange = function(start, end, direction) { return this.$val.SetSelectionRange(start, end, direction); }; + HTMLTrackElement.Ptr.prototype.Track = function() { + var e; + e = this; + return new TextTrack.Ptr(e.BasicHTMLElement.BasicElement.BasicNode.Object.track); + }; + HTMLTrackElement.prototype.Track = function() { return this.$val.Track(); }; + HTMLBaseElement.Ptr.prototype.Href = function() { + var e; + e = this; + return $internalize(e.BasicHTMLElement.BasicElement.BasicNode.Object.href, $String); + }; + HTMLBaseElement.prototype.Href = function() { return this.$val.Href(); }; + HTMLBaseElement.Ptr.prototype.Target = function() { + var e; + e = this; + return $internalize(e.BasicHTMLElement.BasicElement.BasicNode.Object.target, $String); + }; + HTMLBaseElement.prototype.Target = function() { return this.$val.Target(); }; + CSSStyleDeclaration.Ptr.prototype.ToMap = function() { + var css, m, N, i, name, value, _key; + css = this; + m = new $Map(); + N = $parseInt(css.Object.length) >> 0; + i = 0; + while (i < N) { + name = $internalize(css.Object.index(i), $String); + value = $internalize(css.Object.getPropertyValue(), $String); + _key = name; (m || $throwRuntimeError("assignment to entry in nil map"))[_key] = { k: _key, v: value }; + i = i + (1) >> 0; + } + return m; + }; + CSSStyleDeclaration.prototype.ToMap = function() { return this.$val.ToMap(); }; + CSSStyleDeclaration.Ptr.prototype.RemoveProperty = function(name) { + var css; + css = this; + css.Object.remoteProperty($externalize(name, $String)); + }; + CSSStyleDeclaration.prototype.RemoveProperty = function(name) { return this.$val.RemoveProperty(name); }; + CSSStyleDeclaration.Ptr.prototype.GetPropertyValue = function(name) { + var css; + css = this; + return $internalize(css.Object.getPropertyValue($externalize(name, $String)), $String); + }; + CSSStyleDeclaration.prototype.GetPropertyValue = function(name) { return this.$val.GetPropertyValue(name); }; + CSSStyleDeclaration.Ptr.prototype.GetPropertyPriority = function(name) { + var css; + css = this; + return $internalize(css.Object.getPropertyPriority($externalize(name, $String)), $String); + }; + CSSStyleDeclaration.prototype.GetPropertyPriority = function(name) { return this.$val.GetPropertyPriority(name); }; + CSSStyleDeclaration.Ptr.prototype.SetProperty = function(name, value, priority) { + var css; + css = this; + css.Object.setProperty($externalize(name, $String), $externalize(value, $String), $externalize(priority, $String)); + }; + CSSStyleDeclaration.prototype.SetProperty = function(name, value, priority) { return this.$val.SetProperty(name, value, priority); }; + CSSStyleDeclaration.Ptr.prototype.Index = function(idx) { + var css; + css = this; + return $internalize(css.Object.index(idx), $String); + }; + CSSStyleDeclaration.prototype.Index = function(idx) { return this.$val.Index(idx); }; + CSSStyleDeclaration.Ptr.prototype.Length = function() { + var css; + css = this; + return $parseInt(css.Object.length) >> 0; + }; + CSSStyleDeclaration.prototype.Length = function() { return this.$val.Length(); }; + wrapEvent = function(o) { + var ev, c, _ref; + if (o === null || o === undefined) { + return $ifaceNil; + } + ev = new BasicEvent.Ptr(o); + c = o.constructor; + _ref = c; + if (_ref === $global.AnimationEvent) { + return new AnimationEvent.Ptr(ev); + } else if (_ref === $global.AudioProcessingEvent) { + return new AudioProcessingEvent.Ptr(ev); + } else if (_ref === $global.BeforeInputEvent) { + return new BeforeInputEvent.Ptr(ev); + } else if (_ref === $global.BeforeUnloadEvent) { + return new BeforeUnloadEvent.Ptr(ev); + } else if (_ref === $global.BlobEvent) { + return new BlobEvent.Ptr(ev); + } else if (_ref === $global.ClipboardEvent) { + return new ClipboardEvent.Ptr(ev); + } else if (_ref === $global.CloseEvent) { + return new CloseEvent.Ptr(ev, 0, "", false); + } else if (_ref === $global.CompositionEvent) { + return new CompositionEvent.Ptr(ev); + } else if (_ref === $global.CSSFontFaceLoadEvent) { + return new CSSFontFaceLoadEvent.Ptr(ev); + } else if (_ref === $global.CustomEvent) { + return new CustomEvent.Ptr(ev); + } else if (_ref === $global.DeviceLightEvent) { + return new DeviceLightEvent.Ptr(ev); + } else if (_ref === $global.DeviceMotionEvent) { + return new DeviceMotionEvent.Ptr(ev); + } else if (_ref === $global.DeviceOrientationEvent) { + return new DeviceOrientationEvent.Ptr(ev); + } else if (_ref === $global.DeviceProximityEvent) { + return new DeviceProximityEvent.Ptr(ev); + } else if (_ref === $global.DOMTransactionEvent) { + return new DOMTransactionEvent.Ptr(ev); + } else if (_ref === $global.DragEvent) { + return new DragEvent.Ptr(ev); + } else if (_ref === $global.EditingBeforeInputEvent) { + return new EditingBeforeInputEvent.Ptr(ev); + } else if (_ref === $global.ErrorEvent) { + return new ErrorEvent.Ptr(ev); + } else if (_ref === $global.FocusEvent) { + return new FocusEvent.Ptr(ev); + } else if (_ref === $global.GamepadEvent) { + return new GamepadEvent.Ptr(ev); + } else if (_ref === $global.HashChangeEvent) { + return new HashChangeEvent.Ptr(ev); + } else if (_ref === $global.IDBVersionChangeEvent) { + return new IDBVersionChangeEvent.Ptr(ev); + } else if (_ref === $global.KeyboardEvent) { + return new KeyboardEvent.Ptr(ev, false, 0, false, "", "", 0, "", 0, 0, false, false, false); + } else if (_ref === $global.MediaStreamEvent) { + return new MediaStreamEvent.Ptr(ev); + } else if (_ref === $global.MessageEvent) { + return new MessageEvent.Ptr(ev, null); + } else if (_ref === $global.MouseEvent) { + return new MouseEvent.Ptr(new UIEvent.Ptr(ev), false, 0, 0, 0, false, false, 0, 0, 0, 0, false); + } else if (_ref === $global.MutationEvent) { + return new MutationEvent.Ptr(ev); + } else if (_ref === $global.OfflineAudioCompletionEvent) { + return new OfflineAudioCompletionEvent.Ptr(ev); + } else if (_ref === $global.PageTransitionEvent) { + return new PageTransitionEvent.Ptr(ev); + } else if (_ref === $global.PointerEvent) { + return new PointerEvent.Ptr(ev); + } else if (_ref === $global.PopStateEvent) { + return new PopStateEvent.Ptr(ev); + } else if (_ref === $global.ProgressEvent) { + return new ProgressEvent.Ptr(ev); + } else if (_ref === $global.RelatedEvent) { + return new RelatedEvent.Ptr(ev); + } else if (_ref === $global.RTCPeerConnectionIceEvent) { + return new RTCPeerConnectionIceEvent.Ptr(ev); + } else if (_ref === $global.SensorEvent) { + return new SensorEvent.Ptr(ev); + } else if (_ref === $global.StorageEvent) { + return new StorageEvent.Ptr(ev); + } else if (_ref === $global.SVGEvent) { + return new SVGEvent.Ptr(ev); + } else if (_ref === $global.SVGZoomEvent) { + return new SVGZoomEvent.Ptr(ev); + } else if (_ref === $global.TimeEvent) { + return new TimeEvent.Ptr(ev); + } else if (_ref === $global.TouchEvent) { + return new TouchEvent.Ptr(ev); + } else if (_ref === $global.TrackEvent) { + return new TrackEvent.Ptr(ev); + } else if (_ref === $global.TransitionEvent) { + return new TransitionEvent.Ptr(ev); + } else if (_ref === $global.UIEvent) { + return new UIEvent.Ptr(ev); + } else if (_ref === $global.UserProximityEvent) { + return new UserProximityEvent.Ptr(ev); + } else if (_ref === $global.WheelEvent) { + return new WheelEvent.Ptr(ev, 0, 0, 0, 0); + } else { + return ev; + } + }; + BasicEvent.Ptr.prototype.Bubbles = function() { + var ev; + ev = this; + return !!(ev.Object.bubbles); + }; + BasicEvent.prototype.Bubbles = function() { return this.$val.Bubbles(); }; + BasicEvent.Ptr.prototype.Cancelable = function() { + var ev; + ev = this; + return !!(ev.Object.cancelable); + }; + BasicEvent.prototype.Cancelable = function() { return this.$val.Cancelable(); }; + BasicEvent.Ptr.prototype.CurrentTarget = function() { + var ev; + ev = this; + return wrapElement(ev.Object.currentTarget); + }; + BasicEvent.prototype.CurrentTarget = function() { return this.$val.CurrentTarget(); }; + BasicEvent.Ptr.prototype.DefaultPrevented = function() { + var ev; + ev = this; + return !!(ev.Object.defaultPrevented); + }; + BasicEvent.prototype.DefaultPrevented = function() { return this.$val.DefaultPrevented(); }; + BasicEvent.Ptr.prototype.EventPhase = function() { + var ev; + ev = this; + return $parseInt(ev.Object.eventPhase) >> 0; + }; + BasicEvent.prototype.EventPhase = function() { return this.$val.EventPhase(); }; + BasicEvent.Ptr.prototype.Target = function() { + var ev; + ev = this; + return wrapElement(ev.Object.target); + }; + BasicEvent.prototype.Target = function() { return this.$val.Target(); }; + BasicEvent.Ptr.prototype.Timestamp = function() { + var ev, ms, _q, s, _r, ns; + ev = this; + ms = $parseInt(ev.Object.timeStamp) >> 0; + s = (_q = ms / 1000, (_q === _q && _q !== 1/0 && _q !== -1/0) ? _q >> 0 : $throwRuntimeError("integer divide by zero")); + ns = ((_r = ms % 1000, _r === _r ? _r : $throwRuntimeError("integer divide by zero")) * 1000000 >> 0); + return time.Unix(new $Int64(0, s), new $Int64(0, ns)); + }; + BasicEvent.prototype.Timestamp = function() { return this.$val.Timestamp(); }; + BasicEvent.Ptr.prototype.Type = function() { + var ev; + ev = this; + return $internalize(ev.Object.type, $String); + }; + BasicEvent.prototype.Type = function() { return this.$val.Type(); }; + BasicEvent.Ptr.prototype.PreventDefault = function() { + var ev; + ev = this; + ev.Object.preventDefault(); + }; + BasicEvent.prototype.PreventDefault = function() { return this.$val.PreventDefault(); }; + BasicEvent.Ptr.prototype.StopImmediatePropagation = function() { + var ev; + ev = this; + ev.Object.stopImmediatePropagation(); + }; + BasicEvent.prototype.StopImmediatePropagation = function() { return this.$val.StopImmediatePropagation(); }; + BasicEvent.Ptr.prototype.StopPropagation = function() { + var ev; + ev = this; + ev.Object.stopPropagation(); + }; + BasicEvent.prototype.StopPropagation = function() { return this.$val.StopPropagation(); }; + KeyboardEvent.Ptr.prototype.ModifierState = function(mod) { + var ev; + ev = this; + return !!(ev.BasicEvent.Object.getModifierState($externalize(mod, $String))); + }; + KeyboardEvent.prototype.ModifierState = function(mod) { return this.$val.ModifierState(mod); }; + MouseEvent.Ptr.prototype.RelatedTarget = function() { + var ev; + ev = this; + return wrapElement(ev.UIEvent.BasicEvent.Object.target); + }; + MouseEvent.prototype.RelatedTarget = function() { return this.$val.RelatedTarget(); }; + MouseEvent.Ptr.prototype.ModifierState = function(mod) { + var ev; + ev = this; + return !!(ev.UIEvent.BasicEvent.Object.getModifierState($externalize(mod, $String))); + }; + MouseEvent.prototype.ModifierState = function(mod) { return this.$val.ModifierState(mod); }; + $pkg.$init = function() { + $pkg.$init = function() {}; + /* */ var $r, $s = 0; var $f = function() { while (true) { switch ($s) { case 0: + $r = js.$init($BLOCKING); /* */ $s = 1; case 1: if ($r && $r.$blocking) { $r = $r(); } + $r = strings.$init($BLOCKING); /* */ $s = 2; case 2: if ($r && $r.$blocking) { $r = $r(); } + $r = time.$init($BLOCKING); /* */ $s = 3; case 3: if ($r && $r.$blocking) { $r = $r(); } + sliceType = $sliceType($emptyInterface); + sliceType$1 = $sliceType(Node); + sliceType$2 = $sliceType(Element); + sliceType$3 = $sliceType(HTMLElement); + ptrType = $ptrType(BasicHTMLElement); + ptrType$1 = $ptrType(URLUtils); + ptrType$2 = $ptrType(HTMLMediaElement); + ptrType$3 = $ptrType(HTMLFormElement); + ptrType$4 = $ptrType(HTMLLabelElement); + sliceType$4 = $sliceType(ptrType$4); + sliceType$5 = $sliceType($String); + sliceType$6 = $sliceType(ptrType$3); + ptrType$5 = $ptrType(HTMLHeadElement); + ptrType$6 = $ptrType(HTMLImageElement); + sliceType$7 = $sliceType(ptrType$6); + ptrType$7 = $ptrType(HTMLEmbedElement); + sliceType$8 = $sliceType(ptrType$7); + ptrType$8 = $ptrType(HTMLScriptElement); + sliceType$9 = $sliceType(ptrType$8); + sliceType$10 = $sliceType(StyleSheet); + ptrType$9 = $ptrType(Text); + funcType = $funcType([], [], false); + funcType$1 = $funcType([js.Object], [], false); + funcType$2 = $funcType([js.Object], [], false); + ptrType$10 = $ptrType(HTMLOptionElement); + sliceType$11 = $sliceType(ptrType$10); + ptrType$11 = $ptrType(File); + sliceType$12 = $sliceType(ptrType$11); + ptrType$12 = $ptrType(HTMLDataListElement); + ptrType$13 = $ptrType(HTMLAreaElement); + sliceType$13 = $sliceType(ptrType$13); + ptrType$14 = $ptrType(HTMLTableCellElement); + sliceType$14 = $sliceType(ptrType$14); + ptrType$15 = $ptrType(HTMLTableRowElement); + sliceType$15 = $sliceType(ptrType$15); + ptrType$16 = $ptrType(BasicEvent); + ptrType$17 = $ptrType(UIEvent); + ptrType$18 = $ptrType(TokenList); + funcType$3 = $funcType([Event], [], false); + ptrType$19 = $ptrType(Location); + ptrType$20 = $ptrType(BasicNode); + ptrType$21 = $ptrType(document); + ptrType$22 = $ptrType(htmlDocument); + ptrType$23 = $ptrType(CSSStyleDeclaration); + ptrType$24 = $ptrType(Console); + ptrType$25 = $ptrType(Screen); + ptrType$26 = $ptrType(window); + funcType$4 = $funcType([Position], [], false); + funcType$5 = $funcType([PositionError], [], false); + ptrType$27 = $ptrType(PositionError); + ptrType$28 = $ptrType(Coordinates); + ptrType$29 = $ptrType(ClientRect); + ptrType$30 = $ptrType(BasicElement); + ptrType$31 = $ptrType(HTMLAnchorElement); + ptrType$32 = $ptrType(HTMLAppletElement); + ptrType$33 = $ptrType(HTMLAudioElement); + ptrType$34 = $ptrType(HTMLBRElement); + ptrType$35 = $ptrType(HTMLBaseElement); + ptrType$36 = $ptrType(HTMLBodyElement); + ptrType$37 = $ptrType(ValidityState); + ptrType$38 = $ptrType(HTMLButtonElement); + ptrType$39 = $ptrType(CanvasRenderingContext2D); + ptrType$40 = $ptrType(HTMLCanvasElement); + ptrType$41 = $ptrType(HTMLDListElement); + ptrType$42 = $ptrType(HTMLDataElement); + ptrType$43 = $ptrType(HTMLDirectoryElement); + ptrType$44 = $ptrType(HTMLDivElement); + ptrType$45 = $ptrType(HTMLFieldSetElement); + ptrType$46 = $ptrType(HTMLFontElement); + ptrType$47 = $ptrType(HTMLFrameElement); + ptrType$48 = $ptrType(HTMLFrameSetElement); + ptrType$49 = $ptrType(HTMLHRElement); + ptrType$50 = $ptrType(HTMLHeadingElement); + ptrType$51 = $ptrType(HTMLHtmlElement); + ptrType$52 = $ptrType(HTMLIFrameElement); + ptrType$53 = $ptrType(HTMLInputElement); + ptrType$54 = $ptrType(HTMLKeygenElement); + ptrType$55 = $ptrType(HTMLLIElement); + ptrType$56 = $ptrType(HTMLLegendElement); + ptrType$57 = $ptrType(HTMLLinkElement); + ptrType$58 = $ptrType(HTMLMapElement); + ptrType$59 = $ptrType(HTMLMenuElement); + ptrType$60 = $ptrType(HTMLMetaElement); + ptrType$61 = $ptrType(HTMLMeterElement); + ptrType$62 = $ptrType(HTMLModElement); + ptrType$63 = $ptrType(HTMLOListElement); + ptrType$64 = $ptrType(HTMLObjectElement); + ptrType$65 = $ptrType(HTMLOptGroupElement); + ptrType$66 = $ptrType(HTMLOutputElement); + ptrType$67 = $ptrType(HTMLParagraphElement); + ptrType$68 = $ptrType(HTMLParamElement); + ptrType$69 = $ptrType(HTMLPreElement); + ptrType$70 = $ptrType(HTMLProgressElement); + ptrType$71 = $ptrType(HTMLQuoteElement); + ptrType$72 = $ptrType(HTMLSelectElement); + ptrType$73 = $ptrType(HTMLSourceElement); + ptrType$74 = $ptrType(HTMLSpanElement); + ptrType$75 = $ptrType(HTMLStyleElement); + ptrType$76 = $ptrType(HTMLTableCaptionElement); + ptrType$77 = $ptrType(HTMLTableColElement); + ptrType$78 = $ptrType(HTMLTableDataCellElement); + ptrType$79 = $ptrType(HTMLTableElement); + ptrType$80 = $ptrType(HTMLTableHeaderCellElement); + ptrType$81 = $ptrType(HTMLTableSectionElement); + ptrType$82 = $ptrType(HTMLTextAreaElement); + ptrType$83 = $ptrType(HTMLTimeElement); + ptrType$84 = $ptrType(HTMLTitleElement); + ptrType$85 = $ptrType(TextTrack); + ptrType$86 = $ptrType(HTMLTrackElement); + ptrType$87 = $ptrType(HTMLUListElement); + ptrType$88 = $ptrType(HTMLUnknownElement); + ptrType$89 = $ptrType(HTMLVideoElement); + mapType = $mapType($String, $String); + ptrType$90 = $ptrType(AnimationEvent); + ptrType$91 = $ptrType(AudioProcessingEvent); + ptrType$92 = $ptrType(BeforeInputEvent); + ptrType$93 = $ptrType(BeforeUnloadEvent); + ptrType$94 = $ptrType(BlobEvent); + ptrType$95 = $ptrType(ClipboardEvent); + ptrType$96 = $ptrType(CloseEvent); + ptrType$97 = $ptrType(CompositionEvent); + ptrType$98 = $ptrType(CSSFontFaceLoadEvent); + ptrType$99 = $ptrType(CustomEvent); + ptrType$100 = $ptrType(DeviceLightEvent); + ptrType$101 = $ptrType(DeviceMotionEvent); + ptrType$102 = $ptrType(DeviceOrientationEvent); + ptrType$103 = $ptrType(DeviceProximityEvent); + ptrType$104 = $ptrType(DOMTransactionEvent); + ptrType$105 = $ptrType(DragEvent); + ptrType$106 = $ptrType(EditingBeforeInputEvent); + ptrType$107 = $ptrType(ErrorEvent); + ptrType$108 = $ptrType(FocusEvent); + ptrType$109 = $ptrType(GamepadEvent); + ptrType$110 = $ptrType(HashChangeEvent); + ptrType$111 = $ptrType(IDBVersionChangeEvent); + ptrType$112 = $ptrType(KeyboardEvent); + ptrType$113 = $ptrType(MediaStreamEvent); + ptrType$114 = $ptrType(MessageEvent); + ptrType$115 = $ptrType(MouseEvent); + ptrType$116 = $ptrType(MutationEvent); + ptrType$117 = $ptrType(OfflineAudioCompletionEvent); + ptrType$118 = $ptrType(PageTransitionEvent); + ptrType$119 = $ptrType(PointerEvent); + ptrType$120 = $ptrType(PopStateEvent); + ptrType$121 = $ptrType(ProgressEvent); + ptrType$122 = $ptrType(RelatedEvent); + ptrType$123 = $ptrType(RTCPeerConnectionIceEvent); + ptrType$124 = $ptrType(SensorEvent); + ptrType$125 = $ptrType(StorageEvent); + ptrType$126 = $ptrType(SVGEvent); + ptrType$127 = $ptrType(SVGZoomEvent); + ptrType$128 = $ptrType(TimeEvent); + ptrType$129 = $ptrType(TouchEvent); + ptrType$130 = $ptrType(TrackEvent); + ptrType$131 = $ptrType(TransitionEvent); + ptrType$132 = $ptrType(UserProximityEvent); + ptrType$133 = $ptrType(WheelEvent); + ptrType$18.methods = [["Add", "Add", "", $funcType([$String], [], false), -1], ["Contains", "Contains", "", $funcType([$String], [$Bool], false), -1], ["Item", "Item", "", $funcType([$Int], [$String], false), -1], ["Remove", "Remove", "", $funcType([$String], [], false), -1], ["Set", "Set", "", $funcType([sliceType$5], [], false), -1], ["SetString", "SetString", "", $funcType([$String], [], false), -1], ["Slice", "Slice", "", $funcType([], [sliceType$5], false), -1], ["String", "String", "", $funcType([], [$String], false), -1], ["Toggle", "Toggle", "", $funcType([$String], [], false), -1]]; + TokenList.init([["dtl", "dtl", "honnef.co/go/js/dom", js.Object, ""], ["o", "o", "honnef.co/go/js/dom", js.Object, ""], ["sa", "sa", "honnef.co/go/js/dom", $String, ""], ["Length", "Length", "", $Int, "js:\"length\""]]); + Document.init([["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false)], ["AdoptNode", "AdoptNode", "", $funcType([Node], [Node], false)], ["AppendChild", "AppendChild", "", $funcType([Node], [], false)], ["Async", "Async", "", $funcType([], [$Bool], false)], ["BaseURI", "BaseURI", "", $funcType([], [$String], false)], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false)], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false)], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false)], ["Contains", "Contains", "", $funcType([Node], [$Bool], false)], ["CreateElement", "CreateElement", "", $funcType([$String], [Element], false)], ["CreateElementNS", "CreateElementNS", "", $funcType([$String, $String], [Element], false)], ["CreateTextNode", "CreateTextNode", "", $funcType([$String], [ptrType$9], false)], ["Doctype", "Doctype", "", $funcType([], [DocumentType], false)], ["DocumentElement", "DocumentElement", "", $funcType([], [Element], false)], ["DocumentURI", "DocumentURI", "", $funcType([], [$String], false)], ["ElementFromPoint", "ElementFromPoint", "", $funcType([$Int, $Int], [Element], false)], ["EnableStyleSheetsForSet", "EnableStyleSheetsForSet", "", $funcType([$String], [], false)], ["FirstChild", "FirstChild", "", $funcType([], [Node], false)], ["GetElementByID", "GetElementByID", "", $funcType([$String], [Element], false)], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false)], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false)], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false)], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false)], ["Implementation", "Implementation", "", $funcType([], [DOMImplementation], false)], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false)], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false)], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false)], ["LastChild", "LastChild", "", $funcType([], [Node], false)], ["LastStyleSheetSet", "LastStyleSheetSet", "", $funcType([], [$String], false)], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false)], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false)], ["NextSibling", "NextSibling", "", $funcType([], [Node], false)], ["NodeName", "NodeName", "", $funcType([], [$String], false)], ["NodeType", "NodeType", "", $funcType([], [$Int], false)], ["NodeValue", "NodeValue", "", $funcType([], [$String], false)], ["Normalize", "Normalize", "", $funcType([], [], false)], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false)], ["ParentElement", "ParentElement", "", $funcType([], [Element], false)], ["ParentNode", "ParentNode", "", $funcType([], [Node], false)], ["PreferredStyleSheetSet", "PreferredStyleSheetSet", "", $funcType([], [$String], false)], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false)], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false)], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false)], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false)], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false)], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false)], ["SelectedStyleSheetSet", "SelectedStyleSheetSet", "", $funcType([], [$String], false)], ["SetAsync", "SetAsync", "", $funcType([$Bool], [], false)], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false)], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false)], ["StyleSheetSets", "StyleSheetSets", "", $funcType([], [sliceType$10], false)], ["StyleSheets", "StyleSheets", "", $funcType([], [sliceType$10], false)], ["TextContent", "TextContent", "", $funcType([], [$String], false)], ["Underlying", "Underlying", "", $funcType([], [js.Object], false)]]); + document.methods = [["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AdoptNode", "AdoptNode", "", $funcType([Node], [Node], false), -1], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["Async", "Async", "", $funcType([], [$Bool], false), -1], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["CreateElement", "CreateElement", "", $funcType([$String], [Element], false), -1], ["CreateElementNS", "CreateElementNS", "", $funcType([$String, $String], [Element], false), -1], ["CreateTextNode", "CreateTextNode", "", $funcType([$String], [ptrType$9], false), -1], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Doctype", "Doctype", "", $funcType([], [DocumentType], false), -1], ["DocumentElement", "DocumentElement", "", $funcType([], [Element], false), -1], ["DocumentURI", "DocumentURI", "", $funcType([], [$String], false), -1], ["ElementFromPoint", "ElementFromPoint", "", $funcType([$Int, $Int], [Element], false), -1], ["EnableStyleSheetsForSet", "EnableStyleSheetsForSet", "", $funcType([$String], [], false), -1], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetElementByID", "GetElementByID", "", $funcType([$String], [Element], false), -1], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), -1], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), -1], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), -1], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["Implementation", "Implementation", "", $funcType([], [DOMImplementation], false), -1], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["LastStyleSheetSet", "LastStyleSheetSet", "", $funcType([], [$String], false), -1], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreferredStyleSheetSet", "PreferredStyleSheetSet", "", $funcType([], [$String], false), -1], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), -1], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), -1], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["SelectedStyleSheetSet", "SelectedStyleSheetSet", "", $funcType([], [$String], false), -1], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAsync", "SetAsync", "", $funcType([$Bool], [], false), -1], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["StyleSheetSets", "StyleSheetSets", "", $funcType([], [sliceType$10], false), -1], ["StyleSheets", "StyleSheets", "", $funcType([], [sliceType$10], false), -1], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$21.methods = [["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AdoptNode", "AdoptNode", "", $funcType([Node], [Node], false), -1], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["Async", "Async", "", $funcType([], [$Bool], false), -1], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["CreateElement", "CreateElement", "", $funcType([$String], [Element], false), -1], ["CreateElementNS", "CreateElementNS", "", $funcType([$String, $String], [Element], false), -1], ["CreateTextNode", "CreateTextNode", "", $funcType([$String], [ptrType$9], false), -1], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Doctype", "Doctype", "", $funcType([], [DocumentType], false), -1], ["DocumentElement", "DocumentElement", "", $funcType([], [Element], false), -1], ["DocumentURI", "DocumentURI", "", $funcType([], [$String], false), -1], ["ElementFromPoint", "ElementFromPoint", "", $funcType([$Int, $Int], [Element], false), -1], ["EnableStyleSheetsForSet", "EnableStyleSheetsForSet", "", $funcType([$String], [], false), -1], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetElementByID", "GetElementByID", "", $funcType([$String], [Element], false), -1], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), -1], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), -1], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), -1], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["Implementation", "Implementation", "", $funcType([], [DOMImplementation], false), -1], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["LastStyleSheetSet", "LastStyleSheetSet", "", $funcType([], [$String], false), -1], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreferredStyleSheetSet", "PreferredStyleSheetSet", "", $funcType([], [$String], false), -1], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), -1], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), -1], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["SelectedStyleSheetSet", "SelectedStyleSheetSet", "", $funcType([], [$String], false), -1], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAsync", "SetAsync", "", $funcType([$Bool], [], false), -1], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["StyleSheetSets", "StyleSheetSets", "", $funcType([], [sliceType$10], false), -1], ["StyleSheets", "StyleSheets", "", $funcType([], [sliceType$10], false), -1], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + document.init([["BasicNode", "", "", ptrType$20, ""]]); + htmlDocument.methods = [["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AdoptNode", "AdoptNode", "", $funcType([Node], [Node], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["Async", "Async", "", $funcType([], [$Bool], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["CreateElement", "CreateElement", "", $funcType([$String], [Element], false), 0], ["CreateElementNS", "CreateElementNS", "", $funcType([$String, $String], [Element], false), 0], ["CreateTextNode", "CreateTextNode", "", $funcType([$String], [ptrType$9], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Doctype", "Doctype", "", $funcType([], [DocumentType], false), 0], ["DocumentElement", "DocumentElement", "", $funcType([], [Element], false), 0], ["DocumentURI", "DocumentURI", "", $funcType([], [$String], false), 0], ["ElementFromPoint", "ElementFromPoint", "", $funcType([$Int, $Int], [Element], false), 0], ["EnableStyleSheetsForSet", "EnableStyleSheetsForSet", "", $funcType([$String], [], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetElementByID", "GetElementByID", "", $funcType([$String], [Element], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["Implementation", "Implementation", "", $funcType([], [DOMImplementation], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["LastStyleSheetSet", "LastStyleSheetSet", "", $funcType([], [$String], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreferredStyleSheetSet", "PreferredStyleSheetSet", "", $funcType([], [$String], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["SelectedStyleSheetSet", "SelectedStyleSheetSet", "", $funcType([], [$String], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAsync", "SetAsync", "", $funcType([$Bool], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["StyleSheetSets", "StyleSheetSets", "", $funcType([], [sliceType$10], false), 0], ["StyleSheets", "StyleSheets", "", $funcType([], [sliceType$10], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$22.methods = [["ActiveElement", "ActiveElement", "", $funcType([], [HTMLElement], false), -1], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AdoptNode", "AdoptNode", "", $funcType([Node], [Node], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["Async", "Async", "", $funcType([], [$Bool], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Body", "Body", "", $funcType([], [HTMLElement], false), -1], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["Cookie", "Cookie", "", $funcType([], [$String], false), -1], ["CreateElement", "CreateElement", "", $funcType([$String], [Element], false), 0], ["CreateElementNS", "CreateElementNS", "", $funcType([$String, $String], [Element], false), 0], ["CreateTextNode", "CreateTextNode", "", $funcType([$String], [ptrType$9], false), 0], ["DefaultView", "DefaultView", "", $funcType([], [Window], false), -1], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["DesignMode", "DesignMode", "", $funcType([], [$Bool], false), -1], ["Doctype", "Doctype", "", $funcType([], [DocumentType], false), 0], ["DocumentElement", "DocumentElement", "", $funcType([], [Element], false), 0], ["DocumentURI", "DocumentURI", "", $funcType([], [$String], false), 0], ["Domain", "Domain", "", $funcType([], [$String], false), -1], ["ElementFromPoint", "ElementFromPoint", "", $funcType([$Int, $Int], [Element], false), 0], ["EnableStyleSheetsForSet", "EnableStyleSheetsForSet", "", $funcType([$String], [], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Forms", "Forms", "", $funcType([], [sliceType$6], false), -1], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetElementByID", "GetElementByID", "", $funcType([$String], [Element], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["Head", "Head", "", $funcType([], [ptrType$5], false), -1], ["Images", "Images", "", $funcType([], [sliceType$7], false), -1], ["Implementation", "Implementation", "", $funcType([], [DOMImplementation], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["LastModified", "LastModified", "", $funcType([], [time.Time], false), -1], ["LastStyleSheetSet", "LastStyleSheetSet", "", $funcType([], [$String], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["Links", "Links", "", $funcType([], [sliceType$3], false), -1], ["Location", "Location", "", $funcType([], [ptrType$19], false), -1], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["Plugins", "Plugins", "", $funcType([], [sliceType$8], false), -1], ["PreferredStyleSheetSet", "PreferredStyleSheetSet", "", $funcType([], [$String], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["ReadyState", "ReadyState", "", $funcType([], [$String], false), -1], ["Referrer", "Referrer", "", $funcType([], [$String], false), -1], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Scripts", "Scripts", "", $funcType([], [sliceType$9], false), -1], ["SelectedStyleSheetSet", "SelectedStyleSheetSet", "", $funcType([], [$String], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAsync", "SetAsync", "", $funcType([$Bool], [], false), 0], ["SetCookie", "SetCookie", "", $funcType([$String], [], false), -1], ["SetDesignMode", "SetDesignMode", "", $funcType([$Bool], [], false), -1], ["SetDomain", "SetDomain", "", $funcType([$String], [], false), -1], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), -1], ["Str", "Str", "", $funcType([], [$String], false), 0], ["StyleSheetSets", "StyleSheetSets", "", $funcType([], [sliceType$10], false), 0], ["StyleSheets", "StyleSheets", "", $funcType([], [sliceType$10], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), -1], ["URL", "URL", "", $funcType([], [$String], false), -1], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + htmlDocument.init([["document", "", "honnef.co/go/js/dom", ptrType$21, ""]]); + URLUtils.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$1.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + URLUtils.init([["Object", "", "", js.Object, ""], ["Href", "Href", "", $String, "js:\"href\""], ["Protocol", "Protocol", "", $String, "js:\"protocol\""], ["Host", "Host", "", $String, "js:\"host\""], ["Hostname", "Hostname", "", $String, "js:\"hostname\""], ["Port", "Port", "", $String, "js:\"port\""], ["Pathname", "Pathname", "", $String, "js:\"pathname\""], ["Search", "Search", "", $String, "js:\"search\""], ["Hash", "Hash", "", $String, "js:\"hash\""], ["Username", "Username", "", $String, "js:\"username\""], ["Password", "Password", "", $String, "js:\"password\""], ["Origin", "Origin", "", $String, "js:\"origin\""]]); + Location.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$19.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + Location.init([["Object", "", "", js.Object, ""], ["URLUtils", "", "", ptrType$1, ""]]); + HTMLElement.init([["AccessKey", "AccessKey", "", $funcType([], [$String], false)], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false)], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false)], ["AppendChild", "AppendChild", "", $funcType([Node], [], false)], ["BaseURI", "BaseURI", "", $funcType([], [$String], false)], ["Blur", "Blur", "", $funcType([], [], false)], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false)], ["Class", "Class", "", $funcType([], [ptrType$18], false)], ["Click", "Click", "", $funcType([], [], false)], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false)], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false)], ["Contains", "Contains", "", $funcType([Node], [$Bool], false)], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false)], ["Dataset", "Dataset", "", $funcType([], [], false)], ["Dir", "Dir", "", $funcType([], [$String], false)], ["Draggable", "Draggable", "", $funcType([], [$Bool], false)], ["FirstChild", "FirstChild", "", $funcType([], [Node], false)], ["Focus", "Focus", "", $funcType([], [], false)], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false)], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false)], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false)], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false)], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false)], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false)], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false)], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false)], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false)], ["ID", "ID", "", $funcType([], [$String], false)], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false)], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false)], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false)], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false)], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false)], ["Lang", "Lang", "", $funcType([], [$String], false)], ["LastChild", "LastChild", "", $funcType([], [Node], false)], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false)], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false)], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false)], ["NextSibling", "NextSibling", "", $funcType([], [Node], false)], ["NodeName", "NodeName", "", $funcType([], [$String], false)], ["NodeType", "NodeType", "", $funcType([], [$Int], false)], ["NodeValue", "NodeValue", "", $funcType([], [$String], false)], ["Normalize", "Normalize", "", $funcType([], [], false)], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false)], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false)], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false)], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false)], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false)], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false)], ["ParentElement", "ParentElement", "", $funcType([], [Element], false)], ["ParentNode", "ParentNode", "", $funcType([], [Node], false)], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false)], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false)], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false)], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false)], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false)], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false)], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false)], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false)], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false)], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false)], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false)], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false)], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false)], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false)], ["SetDir", "SetDir", "", $funcType([$String], [], false)], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false)], ["SetID", "SetID", "", $funcType([$String], [], false)], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false)], ["SetLang", "SetLang", "", $funcType([$String], [], false)], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false)], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false)], ["SetTitle", "SetTitle", "", $funcType([$String], [], false)], ["Style", "Style", "", $funcType([], [ptrType$23], false)], ["TagName", "TagName", "", $funcType([], [$String], false)], ["TextContent", "TextContent", "", $funcType([], [$String], false)], ["Title", "Title", "", $funcType([], [$String], false)], ["Underlying", "Underlying", "", $funcType([], [js.Object], false)]]); + Window.init([["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false)], ["Alert", "Alert", "", $funcType([$String], [], false)], ["Back", "Back", "", $funcType([], [], false)], ["Blur", "Blur", "", $funcType([], [], false)], ["ClearInterval", "ClearInterval", "", $funcType([$Int], [], false)], ["ClearTimeout", "ClearTimeout", "", $funcType([$Int], [], false)], ["Close", "Close", "", $funcType([], [], false)], ["Confirm", "Confirm", "", $funcType([$String], [$Bool], false)], ["Console", "Console", "", $funcType([], [ptrType$24], false)], ["Document", "Document", "", $funcType([], [Document], false)], ["Focus", "Focus", "", $funcType([], [], false)], ["Forward", "Forward", "", $funcType([], [], false)], ["FrameElement", "FrameElement", "", $funcType([], [Element], false)], ["GetComputedStyle", "GetComputedStyle", "", $funcType([Element, $String], [ptrType$23], false)], ["GetSelection", "GetSelection", "", $funcType([], [Selection], false)], ["History", "History", "", $funcType([], [History], false)], ["Home", "Home", "", $funcType([], [], false)], ["InnerHeight", "InnerHeight", "", $funcType([], [$Int], false)], ["InnerWidth", "InnerWidth", "", $funcType([], [$Int], false)], ["Length", "Length", "", $funcType([], [$Int], false)], ["Location", "Location", "", $funcType([], [ptrType$19], false)], ["MoveBy", "MoveBy", "", $funcType([$Int, $Int], [], false)], ["MoveTo", "MoveTo", "", $funcType([$Int, $Int], [], false)], ["Name", "Name", "", $funcType([], [$String], false)], ["Navigator", "Navigator", "", $funcType([], [Navigator], false)], ["Open", "Open", "", $funcType([$String, $String, $String], [Window], false)], ["OpenDialog", "OpenDialog", "", $funcType([$String, $String, $String, sliceType], [Window], false)], ["Opener", "Opener", "", $funcType([], [Window], false)], ["OuterHeight", "OuterHeight", "", $funcType([], [$Int], false)], ["OuterWidth", "OuterWidth", "", $funcType([], [$Int], false)], ["Parent", "Parent", "", $funcType([], [Window], false)], ["PostMessage", "PostMessage", "", $funcType([$String, $String, sliceType], [], false)], ["Print", "Print", "", $funcType([], [], false)], ["Prompt", "Prompt", "", $funcType([$String, $String], [$String], false)], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false)], ["ResizeBy", "ResizeBy", "", $funcType([$Int, $Int], [], false)], ["ResizeTo", "ResizeTo", "", $funcType([$Int, $Int], [], false)], ["Screen", "Screen", "", $funcType([], [ptrType$25], false)], ["ScreenX", "ScreenX", "", $funcType([], [$Int], false)], ["ScreenY", "ScreenY", "", $funcType([], [$Int], false)], ["Scroll", "Scroll", "", $funcType([$Int, $Int], [], false)], ["ScrollBy", "ScrollBy", "", $funcType([$Int, $Int], [], false)], ["ScrollByLines", "ScrollByLines", "", $funcType([$Int], [], false)], ["ScrollMaxX", "ScrollMaxX", "", $funcType([], [$Int], false)], ["ScrollMaxY", "ScrollMaxY", "", $funcType([], [$Int], false)], ["ScrollTo", "ScrollTo", "", $funcType([$Int, $Int], [], false)], ["ScrollX", "ScrollX", "", $funcType([], [$Int], false)], ["ScrollY", "ScrollY", "", $funcType([], [$Int], false)], ["SetCursor", "SetCursor", "", $funcType([$String], [], false)], ["SetInterval", "SetInterval", "", $funcType([funcType, $Int], [$Int], false)], ["SetName", "SetName", "", $funcType([$String], [], false)], ["SetTimeout", "SetTimeout", "", $funcType([funcType, $Int], [$Int], false)], ["Stop", "Stop", "", $funcType([], [], false)], ["Top", "Top", "", $funcType([], [Window], false)]]); + window.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$26.methods = [["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$1], false), -1], ["Alert", "Alert", "", $funcType([$String], [], false), -1], ["Back", "Back", "", $funcType([], [], false), -1], ["Blur", "Blur", "", $funcType([], [], false), -1], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ClearInterval", "ClearInterval", "", $funcType([$Int], [], false), -1], ["ClearTimeout", "ClearTimeout", "", $funcType([$Int], [], false), -1], ["Close", "Close", "", $funcType([], [], false), -1], ["Confirm", "Confirm", "", $funcType([$String], [$Bool], false), -1], ["Console", "Console", "", $funcType([], [ptrType$24], false), -1], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Document", "Document", "", $funcType([], [Document], false), -1], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), -1], ["Forward", "Forward", "", $funcType([], [], false), -1], ["FrameElement", "FrameElement", "", $funcType([], [Element], false), -1], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetComputedStyle", "GetComputedStyle", "", $funcType([Element, $String], [ptrType$23], false), -1], ["GetSelection", "GetSelection", "", $funcType([], [Selection], false), -1], ["History", "History", "", $funcType([], [History], false), -1], ["Home", "Home", "", $funcType([], [], false), -1], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHeight", "InnerHeight", "", $funcType([], [$Int], false), -1], ["InnerWidth", "InnerWidth", "", $funcType([], [$Int], false), -1], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), -1], ["Location", "Location", "", $funcType([], [ptrType$19], false), -1], ["MoveBy", "MoveBy", "", $funcType([$Int, $Int], [], false), -1], ["MoveTo", "MoveTo", "", $funcType([$Int, $Int], [], false), -1], ["Name", "Name", "", $funcType([], [$String], false), -1], ["Navigator", "Navigator", "", $funcType([], [Navigator], false), -1], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["Open", "Open", "", $funcType([$String, $String, $String], [Window], false), -1], ["OpenDialog", "OpenDialog", "", $funcType([$String, $String, $String, sliceType], [Window], false), -1], ["Opener", "Opener", "", $funcType([], [Window], false), -1], ["OuterHeight", "OuterHeight", "", $funcType([], [$Int], false), -1], ["OuterWidth", "OuterWidth", "", $funcType([], [$Int], false), -1], ["Parent", "Parent", "", $funcType([], [Window], false), -1], ["PostMessage", "PostMessage", "", $funcType([$String, $String, sliceType], [], false), -1], ["Print", "Print", "", $funcType([], [], false), -1], ["Prompt", "Prompt", "", $funcType([$String, $String], [$String], false), -1], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), -1], ["ResizeBy", "ResizeBy", "", $funcType([$Int, $Int], [], false), -1], ["ResizeTo", "ResizeTo", "", $funcType([$Int, $Int], [], false), -1], ["Screen", "Screen", "", $funcType([], [ptrType$25], false), -1], ["ScreenX", "ScreenX", "", $funcType([], [$Int], false), -1], ["ScreenY", "ScreenY", "", $funcType([], [$Int], false), -1], ["Scroll", "Scroll", "", $funcType([$Int, $Int], [], false), -1], ["ScrollBy", "ScrollBy", "", $funcType([$Int, $Int], [], false), -1], ["ScrollByLines", "ScrollByLines", "", $funcType([$Int], [], false), -1], ["ScrollMaxX", "ScrollMaxX", "", $funcType([], [$Int], false), -1], ["ScrollMaxY", "ScrollMaxY", "", $funcType([], [$Int], false), -1], ["ScrollTo", "ScrollTo", "", $funcType([$Int, $Int], [], false), -1], ["ScrollX", "ScrollX", "", $funcType([], [$Int], false), -1], ["ScrollY", "ScrollY", "", $funcType([], [$Int], false), -1], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetCursor", "SetCursor", "", $funcType([$String], [], false), -1], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInterval", "SetInterval", "", $funcType([funcType, $Int], [$Int], false), -1], ["SetName", "SetName", "", $funcType([$String], [], false), -1], ["SetTimeout", "SetTimeout", "", $funcType([funcType, $Int], [$Int], false), -1], ["Stop", "Stop", "", $funcType([], [], false), -1], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Top", "Top", "", $funcType([], [Window], false), -1], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + window.init([["Object", "", "", js.Object, ""]]); + Selection.init([]); + Screen.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$25.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + Screen.init([["Object", "", "", js.Object, ""], ["AvailTop", "AvailTop", "", $Int, "js:\"availTop\""], ["AvailLeft", "AvailLeft", "", $Int, "js:\"availLeft\""], ["AvailHeight", "AvailHeight", "", $Int, "js:\"availHeight\""], ["AvailWidth", "AvailWidth", "", $Int, "js:\"availWidth\""], ["ColorDepth", "ColorDepth", "", $Int, "js:\"colorDepth\""], ["Height", "Height", "", $Int, "js:\"height\""], ["Left", "Left", "", $Int, "js:\"left\""], ["PixelDepth", "PixelDepth", "", $Int, "js:\"pixelDepth\""], ["Top", "Top", "", $Int, "js:\"top\""], ["Width", "Width", "", $Int, "js:\"width\""]]); + Navigator.init([["AppName", "AppName", "", $funcType([], [$String], false)], ["AppVersion", "AppVersion", "", $funcType([], [$String], false)], ["CookieEnabled", "CookieEnabled", "", $funcType([], [$Bool], false)], ["DoNotTrack", "DoNotTrack", "", $funcType([], [$String], false)], ["Geolocation", "Geolocation", "", $funcType([], [Geolocation], false)], ["Language", "Language", "", $funcType([], [$String], false)], ["Online", "Online", "", $funcType([], [$Bool], false)], ["Platform", "Platform", "", $funcType([], [$String], false)], ["Product", "Product", "", $funcType([], [$String], false)], ["RegisterProtocolHandler", "RegisterProtocolHandler", "", $funcType([$String, $String, $String], [], false)], ["UserAgent", "UserAgent", "", $funcType([], [$String], false)]]); + Geolocation.init([["ClearWatch", "ClearWatch", "", $funcType([$Int], [], false)], ["CurrentPosition", "CurrentPosition", "", $funcType([funcType$4, funcType$5, PositionOptions], [Position], false)], ["WatchPosition", "WatchPosition", "", $funcType([funcType$4, funcType$5, PositionOptions], [$Int], false)]]); + PositionError.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$27.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Error", "Error", "", $funcType([], [$String], false), -1], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + PositionError.init([["Object", "", "", js.Object, ""], ["Code", "Code", "", $Int, "js:\"code\""]]); + PositionOptions.init([["EnableHighAccuracy", "EnableHighAccuracy", "", $Bool, ""], ["Timeout", "Timeout", "", time.Duration, ""], ["MaximumAge", "MaximumAge", "", time.Duration, ""]]); + Position.init([["Coords", "Coords", "", ptrType$28, ""], ["Timestamp", "Timestamp", "", time.Time, ""]]); + Coordinates.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$28.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + Coordinates.init([["Object", "", "", js.Object, ""], ["Latitude", "Latitude", "", $Float64, "js:\"latitude\""], ["Longitude", "Longitude", "", $Float64, "js:\"longitude\""], ["Altitude", "Altitude", "", $Float64, "js:\"altitude\""], ["Accuracy", "Accuracy", "", $Float64, "js:\"accuracy\""], ["AltitudeAccuracy", "AltitudeAccuracy", "", $Float64, "js:\"altitudeAccuracy\""], ["Heading", "Heading", "", $Float64, "js:\"heading\""], ["Speed", "Speed", "", $Float64, "js:\"speed\""]]); + History.init([["Back", "Back", "", $funcType([], [], false)], ["Forward", "Forward", "", $funcType([], [], false)], ["Go", "Go", "", $funcType([$Int], [], false)], ["Length", "Length", "", $funcType([], [$Int], false)], ["PushState", "PushState", "", $funcType([$emptyInterface, $String, $String], [], false)], ["ReplaceState", "ReplaceState", "", $funcType([$emptyInterface, $String, $String], [], false)], ["State", "State", "", $funcType([], [$emptyInterface], false)]]); + Console.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$24.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + Console.init([["Object", "", "", js.Object, ""]]); + DocumentType.init([]); + DOMImplementation.init([]); + StyleSheet.init([]); + Node.init([["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false)], ["AppendChild", "AppendChild", "", $funcType([Node], [], false)], ["BaseURI", "BaseURI", "", $funcType([], [$String], false)], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false)], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false)], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false)], ["Contains", "Contains", "", $funcType([Node], [$Bool], false)], ["FirstChild", "FirstChild", "", $funcType([], [Node], false)], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false)], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false)], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false)], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false)], ["LastChild", "LastChild", "", $funcType([], [Node], false)], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false)], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false)], ["NextSibling", "NextSibling", "", $funcType([], [Node], false)], ["NodeName", "NodeName", "", $funcType([], [$String], false)], ["NodeType", "NodeType", "", $funcType([], [$Int], false)], ["NodeValue", "NodeValue", "", $funcType([], [$String], false)], ["Normalize", "Normalize", "", $funcType([], [], false)], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false)], ["ParentElement", "ParentElement", "", $funcType([], [Element], false)], ["ParentNode", "ParentNode", "", $funcType([], [Node], false)], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false)], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false)], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false)], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false)], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false)], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false)], ["TextContent", "TextContent", "", $funcType([], [$String], false)], ["Underlying", "Underlying", "", $funcType([], [js.Object], false)]]); + BasicNode.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$20.methods = [["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), -1], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), -1], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), -1], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), -1], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), -1], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), -1], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), -1], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), -1], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), -1], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), -1], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), -1], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), -1], ["LastChild", "LastChild", "", $funcType([], [Node], false), -1], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), -1], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), -1], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), -1], ["NodeName", "NodeName", "", $funcType([], [$String], false), -1], ["NodeType", "NodeType", "", $funcType([], [$Int], false), -1], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), -1], ["Normalize", "Normalize", "", $funcType([], [], false), -1], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), -1], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), -1], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), -1], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), -1], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), -1], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), -1], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), -1], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), -1], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), -1], ["Str", "Str", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), -1], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), -1], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + BasicNode.init([["Object", "", "", js.Object, ""]]); + Element.init([["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false)], ["AppendChild", "AppendChild", "", $funcType([Node], [], false)], ["BaseURI", "BaseURI", "", $funcType([], [$String], false)], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false)], ["Class", "Class", "", $funcType([], [ptrType$18], false)], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false)], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false)], ["Contains", "Contains", "", $funcType([Node], [$Bool], false)], ["FirstChild", "FirstChild", "", $funcType([], [Node], false)], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false)], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false)], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false)], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false)], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false)], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false)], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false)], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false)], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false)], ["ID", "ID", "", $funcType([], [$String], false)], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false)], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false)], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false)], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false)], ["LastChild", "LastChild", "", $funcType([], [Node], false)], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false)], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false)], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false)], ["NextSibling", "NextSibling", "", $funcType([], [Node], false)], ["NodeName", "NodeName", "", $funcType([], [$String], false)], ["NodeType", "NodeType", "", $funcType([], [$Int], false)], ["NodeValue", "NodeValue", "", $funcType([], [$String], false)], ["Normalize", "Normalize", "", $funcType([], [], false)], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false)], ["ParentElement", "ParentElement", "", $funcType([], [Element], false)], ["ParentNode", "ParentNode", "", $funcType([], [Node], false)], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false)], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false)], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false)], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false)], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false)], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false)], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false)], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false)], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false)], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false)], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false)], ["SetID", "SetID", "", $funcType([$String], [], false)], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false)], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false)], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false)], ["TagName", "TagName", "", $funcType([], [$String], false)], ["TextContent", "TextContent", "", $funcType([], [$String], false)], ["Underlying", "Underlying", "", $funcType([], [js.Object], false)]]); + ClientRect.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$29.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ClientRect.init([["Object", "", "", js.Object, ""], ["Height", "Height", "", $Int, "js:\"height\""], ["Width", "Width", "", $Int, "js:\"width\""], ["Left", "Left", "", $Int, "js:\"left\""], ["Right", "Right", "", $Int, "js:\"right\""], ["Top", "Top", "", $Int, "js:\"top\""], ["Bottom", "Bottom", "", $Int, "js:\"bottom\""]]); + BasicHTMLElement.methods = [["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), -1], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), -1], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), -1], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), -1], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), -1], ["Dataset", "Dataset", "", $funcType([], [], false), -1], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), -1], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), -1], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), -1], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), -1], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), -1], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), -1], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), -1], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), -1], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), -1], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), -1], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), -1], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), -1], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), -1], ["SetDir", "SetDir", "", $funcType([$String], [], false), -1], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), -1], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), -1], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), -1], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), -1], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), -1], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), -1], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), -1], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + BasicHTMLElement.init([["BasicElement", "", "", ptrType$30, ""]]); + BasicElement.methods = [["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$30.methods = [["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), -1], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), -1], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), -1], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), -1], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), -1], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), -1], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), -1], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), -1], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), -1], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), -1], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), -1], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), -1], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), -1], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), -1], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), -1], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), -1], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), -1], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), -1], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), -1], ["SetClass", "SetClass", "", $funcType([$String], [], false), -1], ["SetID", "SetID", "", $funcType([$String], [], false), -1], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), -1], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), -1], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + BasicElement.init([["BasicNode", "", "", ptrType$20, ""]]); + HTMLAnchorElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 1], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 1], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 1], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 1], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 1], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 1], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 1], ["Int64", "Int64", "", $funcType([], [$Int64], false), 1], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 1], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 1], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 1], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 1], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 1], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 1], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 1], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 1], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 1]]; + ptrType$31.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 1], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 1], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 1], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 1], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 1], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 1], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 1], ["Int64", "Int64", "", $funcType([], [$Int64], false), 1], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 1], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 1], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 1], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 1], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["Rel", "Rel", "", $funcType([], [ptrType$18], false), -1], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 1], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 1], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 1], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 1], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 1]]; + HTMLAnchorElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["URLUtils", "", "", ptrType$1, ""], ["HrefLang", "HrefLang", "", $String, "js:\"hreflang\""], ["Media", "Media", "", $String, "js:\"media\""], ["TabIndex", "TabIndex", "", $Int, "js:\"tabIndex\""], ["Target", "Target", "", $String, "js:\"target\""], ["Text", "Text", "", $String, "js:\"text\""], ["Type", "Type", "", $String, "js:\"type\""]]); + HTMLAppletElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$32.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["Rel", "Rel", "", $funcType([], [ptrType$18], false), -1], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLAppletElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["Alt", "Alt", "", $String, "js:\"alt\""], ["Coords", "Coords", "", $String, "js:\"coords\""], ["HrefLang", "HrefLang", "", $String, "js:\"hreflang\""], ["Media", "Media", "", $String, "js:\"media\""], ["Search", "Search", "", $String, "js:\"search\""], ["Shape", "Shape", "", $String, "js:\"shape\""], ["TabIndex", "TabIndex", "", $Int, "js:\"tabIndex\""], ["Target", "Target", "", $String, "js:\"target\""], ["Type", "Type", "", $String, "js:\"type\""]]); + HTMLAreaElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 1], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 1], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 1], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 1], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 1], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 1], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 1], ["Int64", "Int64", "", $funcType([], [$Int64], false), 1], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 1], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 1], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 1], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 1], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 1], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 1], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 1], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 1], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 1]]; + ptrType$13.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 1], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 1], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 1], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 1], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 1], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 1], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 1], ["Int64", "Int64", "", $funcType([], [$Int64], false), 1], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 1], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 1], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 1], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 1], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["Rel", "Rel", "", $funcType([], [ptrType$18], false), -1], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 1], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 1], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 1], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 1], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 1]]; + HTMLAreaElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["URLUtils", "", "", ptrType$1, ""], ["Alt", "Alt", "", $String, "js:\"alt\""], ["Coords", "Coords", "", $String, "js:\"coords\""], ["HrefLang", "HrefLang", "", $String, "js:\"hreflang\""], ["Media", "Media", "", $String, "js:\"media\""], ["Search", "Search", "", $String, "js:\"search\""], ["Shape", "Shape", "", $String, "js:\"shape\""], ["TabIndex", "TabIndex", "", $Int, "js:\"tabIndex\""], ["Target", "Target", "", $String, "js:\"target\""], ["Type", "Type", "", $String, "js:\"type\""]]); + HTMLAudioElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$33.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLAudioElement.init([["HTMLMediaElement", "", "", ptrType$2, ""]]); + HTMLBRElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$34.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLBRElement.init([["BasicHTMLElement", "", "", ptrType, ""]]); + HTMLBaseElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$35.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["Href", "Href", "", $funcType([], [$String], false), -1], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [$String], false), -1], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLBaseElement.init([["BasicHTMLElement", "", "", ptrType, ""]]); + HTMLBodyElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$36.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLBodyElement.init([["BasicHTMLElement", "", "", ptrType, ""]]); + ValidityState.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$37.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ValidityState.init([["Object", "", "", js.Object, ""], ["CustomError", "CustomError", "", $Bool, "js:\"customError\""], ["PatternMismatch", "PatternMismatch", "", $Bool, "js:\"patternMismatch\""], ["RangeOverflow", "RangeOverflow", "", $Bool, "js:\"rangeOverflow\""], ["RangeUnderflow", "RangeUnderflow", "", $Bool, "js:\"rangeUnderflow\""], ["StepMismatch", "StepMismatch", "", $Bool, "js:\"stepMismatch\""], ["TooLong", "TooLong", "", $Bool, "js:\"tooLong\""], ["TypeMismatch", "TypeMismatch", "", $Bool, "js:\"typeMismatch\""], ["Valid", "Valid", "", $Bool, "js:\"valid\""], ["ValueMissing", "ValueMissing", "", $Bool, "js:\"valueMissing\""]]); + HTMLButtonElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$38.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["CheckValidity", "CheckValidity", "", $funcType([], [$Bool], false), -1], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Form", "Form", "", $funcType([], [ptrType$3], false), -1], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Labels", "Labels", "", $funcType([], [sliceType$4], false), -1], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetCustomValidity", "SetCustomValidity", "", $funcType([$String], [], false), -1], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0], ["Validity", "Validity", "", $funcType([], [ptrType$37], false), -1]]; + HTMLButtonElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["AutoFocus", "AutoFocus", "", $Bool, "js:\"autofocus\""], ["Disabled", "Disabled", "", $Bool, "js:\"disabled\""], ["FormAction", "FormAction", "", $String, "js:\"formAction\""], ["FormEncType", "FormEncType", "", $String, "js:\"formEncType\""], ["FormMethod", "FormMethod", "", $String, "js:\"formMethod\""], ["FormNoValidate", "FormNoValidate", "", $Bool, "js:\"formNoValidate\""], ["FormTarget", "FormTarget", "", $String, "js:\"formTarget\""], ["Name", "Name", "", $String, "js:\"name\""], ["TabIndex", "TabIndex", "", $Int, "js:\"tabIndex\""], ["Type", "Type", "", $String, "js:\"type\""], ["ValidationMessage", "ValidationMessage", "", $String, "js:\"validationMessage\""], ["Value", "Value", "", $String, "js:\"value\""], ["WillValidate", "WillValidate", "", $Bool, "js:\"willValidate\""]]); + HTMLCanvasElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$40.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetContext", "GetContext", "", $funcType([$String], [js.Object], false), -1], ["GetContext2d", "GetContext2d", "", $funcType([], [ptrType$39], false), -1], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLCanvasElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["Height", "Height", "", $Int, "js:\"height\""], ["Width", "Width", "", $Int, "js:\"width\""]]); + CanvasRenderingContext2D.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$39.methods = [["Arc", "Arc", "", $funcType([$Int, $Int, $Int, $Int, $Int, $Bool], [], false), -1], ["ArcTo", "ArcTo", "", $funcType([$Int, $Int, $Int, $Int, $Int], [], false), -1], ["BeginPath", "BeginPath", "", $funcType([], [], false), -1], ["BezierCurveTo", "BezierCurveTo", "", $funcType([$Int, $Int, $Int, $Int, $Int, $Int], [], false), -1], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ClearRect", "ClearRect", "", $funcType([$Int, $Int, $Int, $Int], [], false), -1], ["Clip", "Clip", "", $funcType([], [], false), -1], ["ClosePath", "ClosePath", "", $funcType([], [], false), -1], ["CreateLinearGradient", "CreateLinearGradient", "", $funcType([$Int, $Int, $Int, $Int], [], false), -1], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Fill", "Fill", "", $funcType([], [], false), -1], ["FillRect", "FillRect", "", $funcType([$Int, $Int, $Int, $Int], [], false), -1], ["FillText", "FillText", "", $funcType([$String, $Int, $Int, $Int], [], false), -1], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsPointInPath", "IsPointInPath", "", $funcType([$Int, $Int], [$Bool], false), -1], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LineTo", "LineTo", "", $funcType([$Int, $Int], [], false), -1], ["MoveTo", "MoveTo", "", $funcType([$Int, $Int], [], false), -1], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["QuadraticCurveTo", "QuadraticCurveTo", "", $funcType([$Int, $Int, $Int, $Int], [], false), -1], ["Rect", "Rect", "", $funcType([$Int, $Int, $Int, $Int], [], false), -1], ["Rotate", "Rotate", "", $funcType([$Int], [], false), -1], ["Scale", "Scale", "", $funcType([$Int, $Int], [], false), -1], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetTransform", "SetTransform", "", $funcType([$Int, $Int, $Int, $Int, $Int, $Int], [], false), -1], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Stroke", "Stroke", "", $funcType([], [], false), -1], ["StrokeRect", "StrokeRect", "", $funcType([$Int, $Int, $Int, $Int], [], false), -1], ["StrokeText", "StrokeText", "", $funcType([$String, $Int, $Int, $Int], [], false), -1], ["Transform", "Transform", "", $funcType([$Int, $Int, $Int, $Int, $Int, $Int], [], false), -1], ["Translate", "Translate", "", $funcType([$Int, $Int], [], false), -1], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + CanvasRenderingContext2D.init([["Object", "", "", js.Object, ""], ["FillStyle", "FillStyle", "", $String, "js:\"fillStyle\""], ["StrokeStyle", "StrokeStyle", "", $String, "js:\"strokeStyle\""], ["ShadowColor", "ShadowColor", "", $String, "js:\"shadowColor\""], ["ShadowBlur", "ShadowBlur", "", $Int, "js:\"shadowBlur\""], ["ShadowOffsetX", "ShadowOffsetX", "", $Int, "js:\"shadowOffsetX\""], ["ShadowOffsetY", "ShadowOffsetY", "", $Int, "js:\"shadowOffsetY\""], ["LineCap", "LineCap", "", $String, "js:\"lineCap\""], ["LineJoin", "LineJoin", "", $String, "js:\"lineJoin\""], ["LineWidth", "LineWidth", "", $Int, "js:\"lineWidth\""], ["MiterLimit", "MiterLimit", "", $Int, "js:\"miterLimit\""], ["Font", "Font", "", $String, "js:\"font\""], ["TextAlign", "TextAlign", "", $String, "js:\"textAlign\""], ["TextBaseline", "TextBaseline", "", $String, "js:\"textBaseline\""], ["GlobalAlpha", "GlobalAlpha", "", $Float64, "js:\"globalAlpha\""], ["GlobalCompositeOperation", "GlobalCompositeOperation", "", $String, "js:\"globalCompositeOperation\""]]); + HTMLDListElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$41.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLDListElement.init([["BasicHTMLElement", "", "", ptrType, ""]]); + HTMLDataElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$42.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLDataElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["Value", "Value", "", $String, "js:\"value\""]]); + HTMLDataListElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$12.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["Options", "Options", "", $funcType([], [sliceType$11], false), -1], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLDataListElement.init([["BasicHTMLElement", "", "", ptrType, ""]]); + HTMLDirectoryElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$43.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLDirectoryElement.init([["BasicHTMLElement", "", "", ptrType, ""]]); + HTMLDivElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$44.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLDivElement.init([["BasicHTMLElement", "", "", ptrType, ""]]); + HTMLEmbedElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$7.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLEmbedElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["Src", "Src", "", $String, "js:\"src\""], ["Type", "Type", "", $String, "js:\"type\""], ["Width", "Width", "", $String, "js:\"width\""]]); + HTMLFieldSetElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$45.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["CheckValidity", "CheckValidity", "", $funcType([], [$Bool], false), -1], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["Elements", "Elements", "", $funcType([], [sliceType$3], false), -1], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Form", "Form", "", $funcType([], [ptrType$3], false), -1], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetCustomValidity", "SetCustomValidity", "", $funcType([$String], [], false), -1], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0], ["Validity", "Validity", "", $funcType([], [ptrType$37], false), -1]]; + HTMLFieldSetElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["Disabled", "Disabled", "", $Bool, "js:\"disabled\""], ["Name", "Name", "", $String, "js:\"name\""], ["Type", "Type", "", $String, "js:\"type\""], ["ValidationMessage", "ValidationMessage", "", $String, "js:\"validationMessage\""], ["WillValidate", "WillValidate", "", $Bool, "js:\"willValidate\""]]); + HTMLFontElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$46.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLFontElement.init([["BasicHTMLElement", "", "", ptrType, ""]]); + HTMLFormElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$3.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["CheckValidity", "CheckValidity", "", $funcType([], [$Bool], false), -1], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["Elements", "Elements", "", $funcType([], [sliceType$3], false), -1], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Item", "Item", "", $funcType([$Int], [HTMLElement], false), -1], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["NamedItem", "NamedItem", "", $funcType([$String], [HTMLElement], false), -1], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Reset", "Reset", "", $funcType([], [], false), -1], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["Submit", "Submit", "", $funcType([], [], false), -1], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLFormElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["AcceptCharset", "AcceptCharset", "", $String, "js:\"acceptCharset\""], ["Action", "Action", "", $String, "js:\"action\""], ["Autocomplete", "Autocomplete", "", $String, "js:\"autocomplete\""], ["Encoding", "Encoding", "", $String, "js:\"encoding\""], ["Enctype", "Enctype", "", $String, "js:\"enctype\""], ["Length", "Length", "", $Int, "js:\"length\""], ["Method", "Method", "", $String, "js:\"method\""], ["Name", "Name", "", $String, "js:\"name\""], ["NoValidate", "NoValidate", "", $Bool, "js:\"noValidate\""], ["Target", "Target", "", $String, "js:\"target\""]]); + HTMLFrameElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$47.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLFrameElement.init([["BasicHTMLElement", "", "", ptrType, ""]]); + HTMLFrameSetElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$48.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLFrameSetElement.init([["BasicHTMLElement", "", "", ptrType, ""]]); + HTMLHRElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$49.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLHRElement.init([["BasicHTMLElement", "", "", ptrType, ""]]); + HTMLHeadElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$5.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLHeadElement.init([["BasicHTMLElement", "", "", ptrType, ""]]); + HTMLHeadingElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$50.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLHeadingElement.init([["BasicHTMLElement", "", "", ptrType, ""]]); + HTMLHtmlElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$51.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLHtmlElement.init([["BasicHTMLElement", "", "", ptrType, ""]]); + HTMLIFrameElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$52.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentDocument", "ContentDocument", "", $funcType([], [Document], false), -1], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["ContentWindow", "ContentWindow", "", $funcType([], [Window], false), -1], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLIFrameElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["Width", "Width", "", $String, "js:\"width\""], ["Height", "Height", "", $String, "js:\"height\""], ["Name", "Name", "", $String, "js:\"name\""], ["Src", "Src", "", $String, "js:\"src\""], ["SrcDoc", "SrcDoc", "", $String, "js:\"srcdoc\""], ["Seamless", "Seamless", "", $Bool, "js:\"seamless\""]]); + HTMLImageElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$6.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLImageElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["Complete", "Complete", "", $Bool, "js:\"complete\""], ["CrossOrigin", "CrossOrigin", "", $String, "js:\"crossOrigin\""], ["Height", "Height", "", $Int, "js:\"height\""], ["IsMap", "IsMap", "", $Bool, "js:\"isMap\""], ["NaturalHeight", "NaturalHeight", "", $Int, "js:\"naturalHeight\""], ["NaturalWidth", "NaturalWidth", "", $Int, "js:\"naturalWidth\""], ["Src", "Src", "", $String, "js:\"src\""], ["UseMap", "UseMap", "", $String, "js:\"useMap\""], ["Width", "Width", "", $Int, "js:\"width\""]]); + HTMLInputElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$53.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["CheckValidity", "CheckValidity", "", $funcType([], [$Bool], false), -1], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["Files", "Files", "", $funcType([], [sliceType$12], false), -1], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Form", "Form", "", $funcType([], [ptrType$3], false), -1], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Labels", "Labels", "", $funcType([], [sliceType$4], false), -1], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["List", "List", "", $funcType([], [ptrType$12], false), -1], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Select", "Select", "", $funcType([], [], false), -1], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetCustomValidity", "SetCustomValidity", "", $funcType([$String], [], false), -1], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetSelectionRange", "SetSelectionRange", "", $funcType([$Int, $Int, $String], [], false), -1], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["StepDown", "StepDown", "", $funcType([$Int], [$error], false), -1], ["StepUp", "StepUp", "", $funcType([$Int], [$error], false), -1], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0], ["Validity", "Validity", "", $funcType([], [ptrType$37], false), -1]]; + HTMLInputElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["Accept", "Accept", "", $String, "js:\"accept\""], ["Alt", "Alt", "", $String, "js:\"alt\""], ["Autocomplete", "Autocomplete", "", $String, "js:\"autocomplete\""], ["Autofocus", "Autofocus", "", $Bool, "js:\"autofocus\""], ["Checked", "Checked", "", $Bool, "js:\"checked\""], ["DefaultChecked", "DefaultChecked", "", $Bool, "js:\"defaultChecked\""], ["DefaultValue", "DefaultValue", "", $String, "js:\"defaultValue\""], ["DirName", "DirName", "", $String, "js:\"dirName\""], ["Disabled", "Disabled", "", $Bool, "js:\"disabled\""], ["FormAction", "FormAction", "", $String, "js:\"formAction\""], ["FormEncType", "FormEncType", "", $String, "js:\"formEncType\""], ["FormMethod", "FormMethod", "", $String, "js:\"formMethod\""], ["FormNoValidate", "FormNoValidate", "", $Bool, "js:\"formNoValidate\""], ["FormTarget", "FormTarget", "", $String, "js:\"formTarget\""], ["Height", "Height", "", $String, "js:\"height\""], ["Indeterminate", "Indeterminate", "", $Bool, "js:\"indeterminate\""], ["Max", "Max", "", $String, "js:\"max\""], ["MaxLength", "MaxLength", "", $Int, "js:\"maxLength\""], ["Min", "Min", "", $String, "js:\"min\""], ["Multiple", "Multiple", "", $Bool, "js:\"multiple\""], ["Name", "Name", "", $String, "js:\"name\""], ["Pattern", "Pattern", "", $String, "js:\"pattern\""], ["Placeholder", "Placeholder", "", $String, "js:\"placeholder\""], ["ReadOnly", "ReadOnly", "", $Bool, "js:\"readOnly\""], ["Required", "Required", "", $Bool, "js:\"required\""], ["SelectionDirection", "SelectionDirection", "", $String, "js:\"selectionDirection\""], ["SelectionEnd", "SelectionEnd", "", $Int, "js:\"selectionEnd\""], ["SelectionStart", "SelectionStart", "", $Int, "js:\"selectionStart\""], ["Size", "Size", "", $Int, "js:\"size\""], ["Src", "Src", "", $String, "js:\"src\""], ["Step", "Step", "", $String, "js:\"step\""], ["TabIndex", "TabIndex", "", $Int, "js:\"tabIndex\""], ["Type", "Type", "", $String, "js:\"type\""], ["ValidationMessage", "ValidationMessage", "", $String, "js:\"validationMessage\""], ["Value", "Value", "", $String, "js:\"value\""], ["ValueAsDate", "ValueAsDate", "", time.Time, "js:\"valueAsDate\""], ["ValueAsNumber", "ValueAsNumber", "", $Float64, "js:\"valueAsNumber\""], ["Width", "Width", "", $String, "js:\"width\""], ["WillValidate", "WillValidate", "", $Bool, "js:\"willValidate\""]]); + File.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$11.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + File.init([["Object", "", "", js.Object, ""]]); + HTMLKeygenElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$54.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["CheckValidity", "CheckValidity", "", $funcType([], [$Bool], false), -1], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Form", "Form", "", $funcType([], [ptrType$3], false), -1], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Labels", "Labels", "", $funcType([], [sliceType$4], false), -1], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetCustomValidity", "SetCustomValidity", "", $funcType([$String], [], false), -1], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0], ["Validity", "Validity", "", $funcType([], [ptrType$37], false), -1]]; + HTMLKeygenElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["Autofocus", "Autofocus", "", $Bool, "js:\"autofocus\""], ["Challenge", "Challenge", "", $String, "js:\"challenge\""], ["Disabled", "Disabled", "", $Bool, "js:\"disabled\""], ["Keytype", "Keytype", "", $String, "js:\"keytype\""], ["Name", "Name", "", $String, "js:\"name\""], ["Type", "Type", "", $String, "js:\"type\""], ["ValidationMessage", "ValidationMessage", "", $String, "js:\"validationMessage\""], ["WillValidate", "WillValidate", "", $Bool, "js:\"willValidate\""]]); + HTMLLIElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$55.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLLIElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["Value", "Value", "", $Int, "js:\"value\""]]); + HTMLLabelElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$4.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Control", "Control", "", $funcType([], [HTMLElement], false), -1], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Form", "Form", "", $funcType([], [ptrType$3], false), -1], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLLabelElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["For", "For", "", $String, "js:\"htmlFor\""]]); + HTMLLegendElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$56.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Form", "Form", "", $funcType([], [ptrType$3], false), -1], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLLegendElement.init([["BasicHTMLElement", "", "", ptrType, ""]]); + HTMLLinkElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$57.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["Rel", "Rel", "", $funcType([], [ptrType$18], false), -1], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Sheet", "Sheet", "", $funcType([], [StyleSheet], false), -1], ["Sizes", "Sizes", "", $funcType([], [ptrType$18], false), -1], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLLinkElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["Disabled", "Disabled", "", $Bool, "js:\"disabled\""], ["Href", "Href", "", $String, "js:\"href\""], ["HrefLang", "HrefLang", "", $String, "js:\"hrefLang\""], ["Media", "Media", "", $String, "js:\"media\""], ["Type", "Type", "", $String, "js:\"type\""]]); + HTMLMapElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$58.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["Areas", "Areas", "", $funcType([], [sliceType$13], false), -1], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Images", "Images", "", $funcType([], [sliceType$3], false), -1], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLMapElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["Name", "Name", "", $String, "js:\"name\""]]); + HTMLMediaElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$2.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLMediaElement.init([["BasicHTMLElement", "", "", ptrType, ""]]); + HTMLMenuElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$59.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLMenuElement.init([["BasicHTMLElement", "", "", ptrType, ""]]); + HTMLMetaElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$60.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLMetaElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["Content", "Content", "", $String, "js:\"content\""], ["HTTPEquiv", "HTTPEquiv", "", $String, "js:\"httpEquiv\""], ["Name", "Name", "", $String, "js:\"name\""]]); + HTMLMeterElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Labels", "Labels", "", $funcType([], [sliceType$4], false), -1], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$61.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Labels", "Labels", "", $funcType([], [sliceType$4], false), -1], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLMeterElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["High", "High", "", $Float64, "js:\"high\""], ["Low", "Low", "", $Float64, "js:\"low\""], ["Max", "Max", "", $Float64, "js:\"max\""], ["Min", "Min", "", $Float64, "js:\"min\""], ["Optimum", "Optimum", "", $Float64, "js:\"optimum\""]]); + HTMLModElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$62.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLModElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["Cite", "Cite", "", $String, "js:\"cite\""], ["DateTime", "DateTime", "", $String, "js:\"dateTime\""]]); + HTMLOListElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$63.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLOListElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["Reversed", "Reversed", "", $Bool, "js:\"reversed\""], ["Start", "Start", "", $Int, "js:\"start\""], ["Type", "Type", "", $String, "js:\"type\""]]); + HTMLObjectElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$64.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["CheckValidity", "CheckValidity", "", $funcType([], [$Bool], false), -1], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentDocument", "ContentDocument", "", $funcType([], [Document], false), -1], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["ContentWindow", "ContentWindow", "", $funcType([], [Window], false), -1], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Form", "Form", "", $funcType([], [ptrType$3], false), -1], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetCustomValidity", "SetCustomValidity", "", $funcType([$String], [], false), -1], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0], ["Validity", "Validity", "", $funcType([], [ptrType$37], false), -1]]; + HTMLObjectElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["Data", "Data", "", $String, "js:\"data\""], ["Height", "Height", "", $String, "js:\"height\""], ["Name", "Name", "", $String, "js:\"name\""], ["TabIndex", "TabIndex", "", $Int, "js:\"tabIndex\""], ["Type", "Type", "", $String, "js:\"type\""], ["TypeMustMatch", "TypeMustMatch", "", $Bool, "js:\"typeMustMatch\""], ["UseMap", "UseMap", "", $String, "js:\"useMap\""], ["ValidationMessage", "ValidationMessage", "", $String, "js:\"validationMessage\""], ["With", "With", "", $String, "js:\"with\""], ["WillValidate", "WillValidate", "", $Bool, "js:\"willValidate\""]]); + HTMLOptGroupElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$65.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLOptGroupElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["Disabled", "Disabled", "", $Bool, "js:\"disabled\""], ["Label", "Label", "", $String, "js:\"label\""]]); + HTMLOptionElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$10.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Form", "Form", "", $funcType([], [ptrType$3], false), -1], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLOptionElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["DefaultSelected", "DefaultSelected", "", $Bool, "js:\"defaultSelected\""], ["Disabled", "Disabled", "", $Bool, "js:\"disabled\""], ["Index", "Index", "", $Int, "js:\"index\""], ["Label", "Label", "", $String, "js:\"label\""], ["Selected", "Selected", "", $Bool, "js:\"selected\""], ["Text", "Text", "", $String, "js:\"text\""], ["Value", "Value", "", $String, "js:\"value\""]]); + HTMLOutputElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$66.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["CheckValidity", "CheckValidity", "", $funcType([], [$Bool], false), -1], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["For", "For", "", $funcType([], [ptrType$18], false), -1], ["Form", "Form", "", $funcType([], [ptrType$3], false), -1], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Labels", "Labels", "", $funcType([], [sliceType$4], false), -1], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetCustomValidity", "SetCustomValidity", "", $funcType([$String], [], false), -1], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0], ["Validity", "Validity", "", $funcType([], [ptrType$37], false), -1]]; + HTMLOutputElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["DefaultValue", "DefaultValue", "", $String, "js:\"defaultValue\""], ["Name", "Name", "", $String, "js:\"name\""], ["Type", "Type", "", $String, "js:\"type\""], ["ValidationMessage", "ValidationMessage", "", $String, "js:\"validationMessage\""], ["Value", "Value", "", $String, "js:\"value\""], ["WillValidate", "WillValidate", "", $Bool, "js:\"willValidate\""]]); + HTMLParagraphElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$67.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLParagraphElement.init([["BasicHTMLElement", "", "", ptrType, ""]]); + HTMLParamElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$68.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLParamElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["Name", "Name", "", $String, "js:\"name\""], ["Value", "Value", "", $String, "js:\"value\""]]); + HTMLPreElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$69.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLPreElement.init([["BasicHTMLElement", "", "", ptrType, ""]]); + HTMLProgressElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Labels", "Labels", "", $funcType([], [sliceType$4], false), -1], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$70.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Labels", "Labels", "", $funcType([], [sliceType$4], false), -1], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLProgressElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["Max", "Max", "", $Float64, "js:\"max\""], ["Position", "Position", "", $Float64, "js:\"position\""], ["Value", "Value", "", $Float64, "js:\"value\""]]); + HTMLQuoteElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$71.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLQuoteElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["Cite", "Cite", "", $String, "js:\"cite\""]]); + HTMLScriptElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$8.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLScriptElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["Type", "Type", "", $String, "js:\"type\""], ["Src", "Src", "", $String, "js:\"src\""], ["Charset", "Charset", "", $String, "js:\"charset\""], ["Async", "Async", "", $Bool, "js:\"async\""], ["Defer", "Defer", "", $Bool, "js:\"defer\""], ["Text", "Text", "", $String, "js:\"text\""]]); + HTMLSelectElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$72.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLSelectElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["Autofocus", "Autofocus", "", $Bool, "js:\"autofocus\""], ["Disabled", "Disabled", "", $Bool, "js:\"disabled\""], ["Length", "Length", "", $Int, "js:\"length\""], ["Multiple", "Multiple", "", $Bool, "js:\"multiple\""], ["Name", "Name", "", $String, "js:\"name\""], ["Required", "Required", "", $Bool, "js:\"required\""], ["SelectedIndex", "SelectedIndex", "", $Int, "js:\"selectedIndex\""], ["Size", "Size", "", $Int, "js:\"size\""], ["Type", "Type", "", $String, "js:\"type\""], ["ValidationMessage", "ValidationMessage", "", $String, "js:\"validationMessage\""], ["Value", "Value", "", $String, "js:\"value\""], ["WillValidate", "WillValidate", "", $Bool, "js:\"willValidate\""]]); + HTMLSourceElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$73.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLSourceElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["Media", "Media", "", $String, "js:\"media\""], ["Src", "Src", "", $String, "js:\"src\""], ["Type", "Type", "", $String, "js:\"type\""]]); + HTMLSpanElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$74.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLSpanElement.init([["BasicHTMLElement", "", "", ptrType, ""]]); + HTMLStyleElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$75.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLStyleElement.init([["BasicHTMLElement", "", "", ptrType, ""]]); + HTMLTableCaptionElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$76.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLTableCaptionElement.init([["BasicHTMLElement", "", "", ptrType, ""]]); + HTMLTableCellElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$14.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLTableCellElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["ColSpan", "ColSpan", "", $Int, "js:\"colSpan\""], ["RowSpan", "RowSpan", "", $Int, "js:\"rowSpan\""], ["CellIndex", "CellIndex", "", $Int, "js:\"cellIndex\""]]); + HTMLTableColElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$77.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLTableColElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["Span", "Span", "", $Int, "js:\"span\""]]); + HTMLTableDataCellElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$78.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLTableDataCellElement.init([["BasicHTMLElement", "", "", ptrType, ""]]); + HTMLTableElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$79.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLTableElement.init([["BasicHTMLElement", "", "", ptrType, ""]]); + HTMLTableHeaderCellElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$80.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLTableHeaderCellElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["Abbr", "Abbr", "", $String, "js:\"abbr\""], ["Scope", "Scope", "", $String, "js:\"scope\""]]); + HTMLTableRowElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$15.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cells", "Cells", "", $funcType([], [sliceType$14], false), -1], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["DeleteCell", "DeleteCell", "", $funcType([$Int], [], false), -1], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["InsertCell", "InsertCell", "", $funcType([$Int], [ptrType$14], false), -1], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLTableRowElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["RowIndex", "RowIndex", "", $Int, "js:\"rowIndex\""], ["SectionRowIndex", "SectionRowIndex", "", $Int, "js:\"sectionRowIndex\""]]); + HTMLTableSectionElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$81.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["DeleteRow", "DeleteRow", "", $funcType([$Int], [], false), -1], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["InsertRow", "InsertRow", "", $funcType([$Int], [ptrType$15], false), -1], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Rows", "Rows", "", $funcType([], [sliceType$15], false), -1], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLTableSectionElement.init([["BasicHTMLElement", "", "", ptrType, ""]]); + HTMLTextAreaElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$82.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["CheckValidity", "CheckValidity", "", $funcType([], [$Bool], false), -1], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Form", "Form", "", $funcType([], [ptrType$3], false), -1], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Labels", "Labels", "", $funcType([], [sliceType$4], false), -1], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Select", "Select", "", $funcType([], [], false), -1], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetCustomValidity", "SetCustomValidity", "", $funcType([$String], [], false), -1], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetSelectionRange", "SetSelectionRange", "", $funcType([$Int, $Int, $String], [], false), -1], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0], ["Validity", "Validity", "", $funcType([], [ptrType$37], false), -1]]; + HTMLTextAreaElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["Autocomplete", "Autocomplete", "", $String, "js:\"autocomplete\""], ["Autofocus", "Autofocus", "", $Bool, "js:\"autofocus\""], ["Cols", "Cols", "", $Int, "js:\"cols\""], ["DefaultValue", "DefaultValue", "", $String, "js:\"defaultValue\""], ["DirName", "DirName", "", $String, "js:\"dirName\""], ["Disabled", "Disabled", "", $Bool, "js:\"disabled\""], ["MaxLength", "MaxLength", "", $Int, "js:\"maxLength\""], ["Name", "Name", "", $String, "js:\"name\""], ["Placeholder", "Placeholder", "", $String, "js:\"placeholder\""], ["ReadOnly", "ReadOnly", "", $Bool, "js:\"readOnly\""], ["Required", "Required", "", $Bool, "js:\"required\""], ["Rows", "Rows", "", $Int, "js:\"rows\""], ["SelectionDirection", "SelectionDirection", "", $String, "js:\"selectionDirection\""], ["SelectionStart", "SelectionStart", "", $Int, "js:\"selectionStart\""], ["SelectionEnd", "SelectionEnd", "", $Int, "js:\"selectionEnd\""], ["TabIndex", "TabIndex", "", $Int, "js:\"tabIndex\""], ["TextLength", "TextLength", "", $Int, "js:\"textLength\""], ["Type", "Type", "", $String, "js:\"type\""], ["ValidationMessage", "ValidationMessage", "", $String, "js:\"validationMessage\""], ["Value", "Value", "", $String, "js:\"value\""], ["WillValidate", "WillValidate", "", $Bool, "js:\"willValidate\""], ["Wrap", "Wrap", "", $String, "js:\"wrap\""]]); + HTMLTimeElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$83.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLTimeElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["DateTime", "DateTime", "", $String, "js:\"dateTime\""]]); + HTMLTitleElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$84.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLTitleElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["Text", "Text", "", $String, "js:\"text\""]]); + TextTrack.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$85.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + TextTrack.init([["Object", "", "", js.Object, ""]]); + HTMLTrackElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$86.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Track", "Track", "", $funcType([], [ptrType$85], false), -1], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLTrackElement.init([["BasicHTMLElement", "", "", ptrType, ""], ["Kind", "Kind", "", $String, "js:\"kind\""], ["Src", "Src", "", $String, "js:\"src\""], ["Srclang", "Srclang", "", $String, "js:\"srclang\""], ["Label", "Label", "", $String, "js:\"label\""], ["Default", "Default", "", $Bool, "js:\"default\""], ["ReadyState", "ReadyState", "", $Int, "js:\"readyState\""]]); + HTMLUListElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$87.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLUListElement.init([["BasicHTMLElement", "", "", ptrType, ""]]); + HTMLUnknownElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$88.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLUnknownElement.init([["BasicHTMLElement", "", "", ptrType, ""]]); + HTMLVideoElement.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$89.methods = [["AccessKey", "AccessKey", "", $funcType([], [$String], false), 0], ["AccessKeyLabel", "AccessKeyLabel", "", $funcType([], [$String], false), 0], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Blur", "Blur", "", $funcType([], [], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["Class", "Class", "", $funcType([], [ptrType$18], false), 0], ["Click", "Click", "", $funcType([], [], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["ContentEditable", "ContentEditable", "", $funcType([], [$String], false), 0], ["Dataset", "Dataset", "", $funcType([], [], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Dir", "Dir", "", $funcType([], [$String], false), 0], ["Draggable", "Draggable", "", $funcType([], [$Bool], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Focus", "Focus", "", $funcType([], [], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetAttribute", "GetAttribute", "", $funcType([$String], [$String], false), 0], ["GetAttributeNS", "GetAttributeNS", "", $funcType([$String, $String], [$String], false), 0], ["GetBoundingClientRect", "GetBoundingClientRect", "", $funcType([], [ClientRect], false), 0], ["GetElementsByClassName", "GetElementsByClassName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagName", "GetElementsByTagName", "", $funcType([$String], [sliceType$2], false), 0], ["GetElementsByTagNameNS", "GetElementsByTagNameNS", "", $funcType([$String, $String], [sliceType$2], false), 0], ["HasAttribute", "HasAttribute", "", $funcType([$String], [$Bool], false), 0], ["HasAttributeNS", "HasAttributeNS", "", $funcType([$String, $String], [$Bool], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["ID", "ID", "", $funcType([], [$String], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InnerHTML", "InnerHTML", "", $funcType([], [$String], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsContentEditable", "IsContentEditable", "", $funcType([], [$Bool], false), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["Lang", "Lang", "", $funcType([], [$String], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextElementSibling", "NextElementSibling", "", $funcType([], [Element], false), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OffsetHeight", "OffsetHeight", "", $funcType([], [$Float64], false), 0], ["OffsetLeft", "OffsetLeft", "", $funcType([], [$Float64], false), 0], ["OffsetParent", "OffsetParent", "", $funcType([], [HTMLElement], false), 0], ["OffsetTop", "OffsetTop", "", $funcType([], [$Float64], false), 0], ["OffsetWidth", "OffsetWidth", "", $funcType([], [$Float64], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousElementSibling", "PreviousElementSibling", "", $funcType([], [Element], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["QuerySelector", "QuerySelector", "", $funcType([$String], [Element], false), 0], ["QuerySelectorAll", "QuerySelectorAll", "", $funcType([$String], [sliceType$2], false), 0], ["RemoveAttribute", "RemoveAttribute", "", $funcType([$String], [], false), 0], ["RemoveAttributeNS", "RemoveAttributeNS", "", $funcType([$String, $String], [], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetAccessKey", "SetAccessKey", "", $funcType([$String], [], false), 0], ["SetAccessKeyLabel", "SetAccessKeyLabel", "", $funcType([$String], [], false), 0], ["SetAttribute", "SetAttribute", "", $funcType([$String, $String], [], false), 0], ["SetAttributeNS", "SetAttributeNS", "", $funcType([$String, $String, $String], [], false), 0], ["SetClass", "SetClass", "", $funcType([$String], [], false), 0], ["SetContentEditable", "SetContentEditable", "", $funcType([$String], [], false), 0], ["SetDir", "SetDir", "", $funcType([$String], [], false), 0], ["SetDraggable", "SetDraggable", "", $funcType([$Bool], [], false), 0], ["SetID", "SetID", "", $funcType([$String], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetInnerHTML", "SetInnerHTML", "", $funcType([$String], [], false), 0], ["SetLang", "SetLang", "", $funcType([$String], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTabIndex", "SetTabIndex", "", $funcType([$Int], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["SetTitle", "SetTitle", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Style", "Style", "", $funcType([], [ptrType$23], false), 0], ["TabIndex", "TabIndex", "", $funcType([], [$Int], false), 0], ["TagName", "TagName", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Title", "Title", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HTMLVideoElement.init([["HTMLMediaElement", "", "", ptrType$2, ""]]); + CSSStyleDeclaration.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$23.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["GetPropertyPriority", "GetPropertyPriority", "", $funcType([$String], [$String], false), -1], ["GetPropertyValue", "GetPropertyValue", "", $funcType([$String], [$String], false), -1], ["Index", "Index", "", $funcType([$Int], [$String], false), -1], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), -1], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["RemoveProperty", "RemoveProperty", "", $funcType([$String], [], false), -1], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetProperty", "SetProperty", "", $funcType([$String, $String, $String], [], false), -1], ["Str", "Str", "", $funcType([], [$String], false), 0], ["ToMap", "ToMap", "", $funcType([], [mapType], false), -1], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + CSSStyleDeclaration.init([["Object", "", "", js.Object, ""]]); + Text.methods = [["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$9.methods = [["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType$3], [funcType$2], false), 0], ["AppendChild", "AppendChild", "", $funcType([Node], [], false), 0], ["BaseURI", "BaseURI", "", $funcType([], [$String], false), 0], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["ChildNodes", "ChildNodes", "", $funcType([], [sliceType$1], false), 0], ["CloneNode", "CloneNode", "", $funcType([$Bool], [Node], false), 0], ["CompareDocumentPosition", "CompareDocumentPosition", "", $funcType([Node], [$Int], false), 0], ["Contains", "Contains", "", $funcType([Node], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["FirstChild", "FirstChild", "", $funcType([], [Node], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["HasChildNodes", "HasChildNodes", "", $funcType([], [$Bool], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["InsertBefore", "InsertBefore", "", $funcType([Node, Node], [], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["IsDefaultNamespace", "IsDefaultNamespace", "", $funcType([$String], [$Bool], false), 0], ["IsEqualNode", "IsEqualNode", "", $funcType([Node], [$Bool], false), 0], ["LastChild", "LastChild", "", $funcType([], [Node], false), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["LookupNamespaceURI", "LookupNamespaceURI", "", $funcType([$String], [$String], false), 0], ["LookupPrefix", "LookupPrefix", "", $funcType([], [$String], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["NextSibling", "NextSibling", "", $funcType([], [Node], false), 0], ["NodeName", "NodeName", "", $funcType([], [$String], false), 0], ["NodeType", "NodeType", "", $funcType([], [$Int], false), 0], ["NodeValue", "NodeValue", "", $funcType([], [$String], false), 0], ["Normalize", "Normalize", "", $funcType([], [], false), 0], ["OwnerDocument", "OwnerDocument", "", $funcType([], [Document], false), 0], ["ParentElement", "ParentElement", "", $funcType([], [Element], false), 0], ["ParentNode", "ParentNode", "", $funcType([], [Node], false), 0], ["PreviousSibling", "PreviousSibling", "", $funcType([], [Node], false), 0], ["RemoveChild", "RemoveChild", "", $funcType([Node], [], false), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType$2], [], false), 0], ["ReplaceChild", "ReplaceChild", "", $funcType([Node, Node], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetNodeValue", "SetNodeValue", "", $funcType([$String], [], false), 0], ["SetTextContent", "SetTextContent", "", $funcType([$String], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["TextContent", "TextContent", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Underlying", "Underlying", "", $funcType([], [js.Object], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + Text.init([["BasicNode", "", "", ptrType$20, ""]]); + Event.init([["Bubbles", "Bubbles", "", $funcType([], [$Bool], false)], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false)], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false)], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false)], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false)], ["PreventDefault", "PreventDefault", "", $funcType([], [], false)], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false)], ["StopPropagation", "StopPropagation", "", $funcType([], [], false)], ["Target", "Target", "", $funcType([], [Element], false)], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false)], ["Type", "Type", "", $funcType([], [$String], false)]]); + BasicEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$16.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), -1], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), -1], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), -1], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), -1], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), -1], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), -1], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), -1], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), -1], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), -1], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), -1], ["Type", "Type", "", $funcType([], [$String], false), -1], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + BasicEvent.init([["Object", "", "", js.Object, ""]]); + AnimationEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$90.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + AnimationEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + AudioProcessingEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$91.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + AudioProcessingEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + BeforeInputEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$92.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + BeforeInputEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + BeforeUnloadEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$93.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + BeforeUnloadEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + BlobEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$94.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + BlobEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + ClipboardEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$95.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ClipboardEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + CloseEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$96.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + CloseEvent.init([["BasicEvent", "", "", ptrType$16, ""], ["Code", "Code", "", $Int, "js:\"code\""], ["Reason", "Reason", "", $String, "js:\"reason\""], ["WasClean", "WasClean", "", $Bool, "js:\"wasClean\""]]); + CompositionEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$97.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + CompositionEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + CSSFontFaceLoadEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$98.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + CSSFontFaceLoadEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + CustomEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$99.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + CustomEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + DeviceLightEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$100.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + DeviceLightEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + DeviceMotionEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$101.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + DeviceMotionEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + DeviceOrientationEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$102.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + DeviceOrientationEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + DeviceProximityEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$103.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + DeviceProximityEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + DOMTransactionEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$104.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + DOMTransactionEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + DragEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$105.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + DragEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + EditingBeforeInputEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$106.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + EditingBeforeInputEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + ErrorEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$107.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ErrorEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + FocusEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$108.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + FocusEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + GamepadEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$109.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + GamepadEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + HashChangeEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$110.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + HashChangeEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + IDBVersionChangeEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$111.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + IDBVersionChangeEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + KeyboardEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$112.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["ModifierState", "ModifierState", "", $funcType([$String], [$Bool], false), -1], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + KeyboardEvent.init([["BasicEvent", "", "", ptrType$16, ""], ["AltKey", "AltKey", "", $Bool, "js:\"altKey\""], ["CharCode", "CharCode", "", $Int, "js:\"charCode\""], ["CtrlKey", "CtrlKey", "", $Bool, "js:\"ctrlKey\""], ["Key", "Key", "", $String, "js:\"key\""], ["KeyIdentifier", "KeyIdentifier", "", $String, "js:\"keyIdentifier\""], ["KeyCode", "KeyCode", "", $Int, "js:\"keyCode\""], ["Locale", "Locale", "", $String, "js:\"locale\""], ["Location", "Location", "", $Int, "js:\"location\""], ["KeyLocation", "KeyLocation", "", $Int, "js:\"keyLocation\""], ["MetaKey", "MetaKey", "", $Bool, "js:\"metaKey\""], ["Repeat", "Repeat", "", $Bool, "js:\"repeat\""], ["ShiftKey", "ShiftKey", "", $Bool, "js:\"shiftKey\""]]); + MediaStreamEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$113.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + MediaStreamEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + MessageEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$114.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + MessageEvent.init([["BasicEvent", "", "", ptrType$16, ""], ["Data", "Data", "", js.Object, "js:\"data\""]]); + MouseEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$115.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["ModifierState", "ModifierState", "", $funcType([$String], [$Bool], false), -1], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["RelatedTarget", "RelatedTarget", "", $funcType([], [Element], false), -1], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + MouseEvent.init([["UIEvent", "", "", ptrType$17, ""], ["AltKey", "AltKey", "", $Bool, "js:\"altKey\""], ["Button", "Button", "", $Int, "js:\"button\""], ["ClientX", "ClientX", "", $Int, "js:\"clientX\""], ["ClientY", "ClientY", "", $Int, "js:\"clientY\""], ["CtrlKey", "CtrlKey", "", $Bool, "js:\"ctrlKey\""], ["MetaKey", "MetaKey", "", $Bool, "js:\"metaKey\""], ["MovementX", "MovementX", "", $Int, "js:\"movementX\""], ["MovementY", "MovementY", "", $Int, "js:\"movementY\""], ["ScreenX", "ScreenX", "", $Int, "js:\"screenX\""], ["ScreenY", "ScreenY", "", $Int, "js:\"screenY\""], ["ShiftKey", "ShiftKey", "", $Bool, "js:\"shiftKey\""]]); + MutationEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$116.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + MutationEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + OfflineAudioCompletionEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$117.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + OfflineAudioCompletionEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + PageTransitionEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$118.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + PageTransitionEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + PointerEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$119.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + PointerEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + PopStateEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$120.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + PopStateEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + ProgressEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$121.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ProgressEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + RelatedEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$122.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + RelatedEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + RTCPeerConnectionIceEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$123.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + RTCPeerConnectionIceEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + SensorEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$124.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + SensorEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + StorageEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$125.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + StorageEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + SVGEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$126.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + SVGEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + SVGZoomEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$127.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + SVGZoomEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + TimeEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$128.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + TimeEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + TouchEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$129.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + TouchEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + TrackEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$130.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + TrackEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + TransitionEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$131.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + TransitionEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + UIEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$17.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + UIEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + UserProximityEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$132.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + UserProximityEvent.init([["BasicEvent", "", "", ptrType$16, ""]]); + WheelEvent.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$133.methods = [["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Bubbles", "Bubbles", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Cancelable", "Cancelable", "", $funcType([], [$Bool], false), 0], ["CurrentTarget", "CurrentTarget", "", $funcType([], [Element], false), 0], ["DefaultPrevented", "DefaultPrevented", "", $funcType([], [$Bool], false), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["EventPhase", "EventPhase", "", $funcType([], [$Int], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["PreventDefault", "PreventDefault", "", $funcType([], [], false), 0], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["StopImmediatePropagation", "StopImmediatePropagation", "", $funcType([], [], false), 0], ["StopPropagation", "StopPropagation", "", $funcType([], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Target", "Target", "", $funcType([], [Element], false), 0], ["Timestamp", "Timestamp", "", $funcType([], [time.Time], false), 0], ["Type", "Type", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + WheelEvent.init([["BasicEvent", "", "", ptrType$16, ""], ["DeltaX", "DeltaX", "", $Float64, "js:\"deltaX\""], ["DeltaY", "DeltaY", "", $Float64, "js:\"deltaY\""], ["DeltaZ", "DeltaZ", "", $Float64, "js:\"deltaZ\""], ["DeltaMode", "DeltaMode", "", $Int, "js:\"deltaMode\""]]); + /* */ } return; } }; $f.$blocking = true; return $f; + }; + return $pkg; +})(); +$packages["honnef.co/go/js/util"] = (function() { + var $pkg = {}, js, sliceType$1, funcType, ptrType$1, EventTarget; + js = $packages["github.com/gopherjs/gopherjs/js"]; + EventTarget = $pkg.EventTarget = $newType(0, $kindStruct, "util.EventTarget", "EventTarget", "honnef.co/go/js/util", function(Object_) { + this.$val = this; + this.Object = Object_ !== undefined ? Object_ : null; + }); + EventTarget.Ptr.prototype.AddEventListener = function(typ, useCapture, listener) { + var t; + t = $clone(this, EventTarget); + t.Object.addEventListener($externalize(typ, $String), $externalize(listener, funcType), $externalize(useCapture, $Bool)); + }; + EventTarget.prototype.AddEventListener = function(typ, useCapture, listener) { return this.$val.AddEventListener(typ, useCapture, listener); }; + EventTarget.Ptr.prototype.RemoveEventListener = function(typ, useCapture, listener) { + var t; + t = $clone(this, EventTarget); + t.Object.removeEventListener($externalize(typ, $String), $externalize(listener, funcType), $externalize(useCapture, $Bool)); + }; + EventTarget.prototype.RemoveEventListener = function(typ, useCapture, listener) { return this.$val.RemoveEventListener(typ, useCapture, listener); }; + $pkg.$init = function() { + $pkg.$init = function() {}; + /* */ var $r, $s = 0; var $f = function() { while (true) { switch ($s) { case 0: + $r = js.$init($BLOCKING); /* */ $s = 1; case 1: if ($r && $r.$blocking) { $r = $r(); } + sliceType$1 = $sliceType($emptyInterface); + funcType = $funcType([js.Object], [], false); + ptrType$1 = $ptrType(EventTarget); + EventTarget.methods = [["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType], [], false), -1], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType$1], [js.Object], true), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType$1], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType$1], [js.Object], true), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType], [], false), -1], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$1.methods = [["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType], [], false), -1], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType$1], [js.Object], true), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType$1], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType$1], [js.Object], true), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType], [], false), -1], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + EventTarget.init([["Object", "", "", js.Object, ""]]); + /* */ } return; } }; $f.$blocking = true; return $f; + }; + return $pkg; +})(); +$packages["honnef.co/go/js/xhr"] = (function() { + var $pkg = {}, errors, js, util, chanType, funcType, sliceType, ptrType, ptrType$1, Request, Upload, NewRequest; + errors = $packages["errors"]; + js = $packages["github.com/gopherjs/gopherjs/js"]; + util = $packages["honnef.co/go/js/util"]; + Request = $pkg.Request = $newType(0, $kindStruct, "xhr.Request", "Request", "honnef.co/go/js/xhr", function(Object_, EventTarget_, ReadyState_, Response_, ResponseText_, ResponseType_, ResponseXML_, Status_, StatusText_, Timeout_, WithCredentials_, ch_) { + this.$val = this; + this.Object = Object_ !== undefined ? Object_ : null; + this.EventTarget = EventTarget_ !== undefined ? EventTarget_ : new util.EventTarget.Ptr(); + this.ReadyState = ReadyState_ !== undefined ? ReadyState_ : 0; + this.Response = Response_ !== undefined ? Response_ : null; + this.ResponseText = ResponseText_ !== undefined ? ResponseText_ : ""; + this.ResponseType = ResponseType_ !== undefined ? ResponseType_ : ""; + this.ResponseXML = ResponseXML_ !== undefined ? ResponseXML_ : null; + this.Status = Status_ !== undefined ? Status_ : 0; + this.StatusText = StatusText_ !== undefined ? StatusText_ : ""; + this.Timeout = Timeout_ !== undefined ? Timeout_ : 0; + this.WithCredentials = WithCredentials_ !== undefined ? WithCredentials_ : false; + this.ch = ch_ !== undefined ? ch_ : chanType.nil; + }); + Upload = $pkg.Upload = $newType(0, $kindStruct, "xhr.Upload", "Upload", "honnef.co/go/js/xhr", function(Object_, EventTarget_) { + this.$val = this; + this.Object = Object_ !== undefined ? Object_ : null; + this.EventTarget = EventTarget_ !== undefined ? EventTarget_ : new util.EventTarget.Ptr(); + }); + Request.Ptr.prototype.Upload = function() { + var r, o; + r = this; + o = r.Object.upload; + return new Upload.Ptr(o, new util.EventTarget.Ptr(o)); + }; + Request.prototype.Upload = function() { return this.$val.Upload(); }; + NewRequest = $pkg.NewRequest = function(method, url) { + var o, r; + o = new ($global.XMLHttpRequest)(); + r = new Request.Ptr(o, new util.EventTarget.Ptr(o), 0, null, "", "", null, 0, "", 0, false, chanType.nil); + r.Object.open($externalize(method, $String), $externalize(url, $String), $externalize(true, $Bool)); + return r; + }; + Request.Ptr.prototype.ResponseHeaders = function() { + var r; + r = this; + return $internalize(r.Object.getAllResponseHeaders(), $String); + }; + Request.prototype.ResponseHeaders = function() { return this.$val.ResponseHeaders(); }; + Request.Ptr.prototype.ResponseHeader = function(name) { + var r, value; + r = this; + value = r.Object.getResponseHeader($externalize(name, $String)); + if (value === null) { + return ""; + } + return $internalize(value, $String); + }; + Request.prototype.ResponseHeader = function(name) { return this.$val.ResponseHeader(name); }; + Request.Ptr.prototype.Abort = function() { + var r, _selection; + r = this; + if (r.ch === chanType.nil) { + return; + } + r.Object.abort(); + _selection = $select([[r.ch, $pkg.ErrAborted], []]); + }; + Request.prototype.Abort = function() { return this.$val.Abort(); }; + Request.Ptr.prototype.OverrideMimeType = function(mimetype) { + var r; + r = this; + r.Object.overrideMimeType($externalize(mimetype, $String)); + }; + Request.prototype.OverrideMimeType = function(mimetype) { return this.$val.OverrideMimeType(mimetype); }; + Request.Ptr.prototype.Send = function(data, $b) { + var $this = this, $args = arguments, $r, $s = 0, r, _r, val; + /* */ if($b !== $BLOCKING) { $nonblockingCall(); }; var $blocking_Send = function() { s: while (true) { switch ($s) { case 0: + r = $this; + if (!(r.ch === chanType.nil)) { + $panic(new $String("must not use a Request for multiple requests")); + } + r.ch = new chanType(1); + r.EventTarget.AddEventListener("load", false, (function(param) { + $go((function($b) { + var $this = this, $args = arguments, $r, $s = 0; + /* */ if($b !== $BLOCKING) { $nonblockingCall(); }; var $f = function() { s: while (true) { switch ($s) { case 0: + $r = $send(r.ch, $ifaceNil, $BLOCKING); /* */ $s = 1; case 1: if ($r && $r.$blocking) { $r = $r(); } + /* */ case -1: } return; } }; $f.$blocking = true; return $f; + }), []); + })); + r.EventTarget.AddEventListener("error", false, (function(o) { + $go((function($b) { + var $this = this, $args = arguments, $r, $s = 0; + /* */ if($b !== $BLOCKING) { $nonblockingCall(); }; var $f = function() { s: while (true) { switch ($s) { case 0: + $r = $send(r.ch, $pkg.ErrFailure, $BLOCKING); /* */ $s = 1; case 1: if ($r && $r.$blocking) { $r = $r(); } + /* */ case -1: } return; } }; $f.$blocking = true; return $f; + }), []); + })); + r.EventTarget.AddEventListener("timeout", false, (function(param) { + $go((function($b) { + var $this = this, $args = arguments, $r, $s = 0; + /* */ if($b !== $BLOCKING) { $nonblockingCall(); }; var $f = function() { s: while (true) { switch ($s) { case 0: + $r = $send(r.ch, $pkg.ErrTimeout, $BLOCKING); /* */ $s = 1; case 1: if ($r && $r.$blocking) { $r = $r(); } + /* */ case -1: } return; } }; $f.$blocking = true; return $f; + }), []); + })); + r.Object.send($externalize(data, $emptyInterface)); + _r = $recv(r.ch, $BLOCKING); /* */ $s = 1; case 1: if (_r && _r.$blocking) { _r = _r(); } + val = _r[0]; + return val; + /* */ case -1: } return; } }; $blocking_Send.$blocking = true; return $blocking_Send; + }; + Request.prototype.Send = function(data, $b) { return this.$val.Send(data, $b); }; + Request.Ptr.prototype.SetRequestHeader = function(header, value) { + var r; + r = this; + r.Object.setRequestHeader($externalize(header, $String), $externalize(value, $String)); + }; + Request.prototype.SetRequestHeader = function(header, value) { return this.$val.SetRequestHeader(header, value); }; + $pkg.$init = function() { + $pkg.$init = function() {}; + /* */ var $r, $s = 0; var $f = function() { while (true) { switch ($s) { case 0: + $r = errors.$init($BLOCKING); /* */ $s = 1; case 1: if ($r && $r.$blocking) { $r = $r(); } + $r = js.$init($BLOCKING); /* */ $s = 2; case 2: if ($r && $r.$blocking) { $r = $r(); } + $r = util.$init($BLOCKING); /* */ $s = 3; case 3: if ($r && $r.$blocking) { $r = $r(); } + chanType = $chanType($error, false, false); + funcType = $funcType([js.Object], [], false); + sliceType = $sliceType($emptyInterface); + ptrType = $ptrType(Upload); + ptrType$1 = $ptrType(Request); + Request.methods = [["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType], [], false), 1], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType], [], false), 1], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType$1.methods = [["Abort", "Abort", "", $funcType([], [], false), -1], ["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType], [], false), 1], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["OverrideMimeType", "OverrideMimeType", "", $funcType([$String], [], false), -1], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType], [], false), 1], ["ResponseHeader", "ResponseHeader", "", $funcType([$String], [$String], false), -1], ["ResponseHeaders", "ResponseHeaders", "", $funcType([], [$String], false), -1], ["Send", "Send", "", $funcType([$emptyInterface], [$error], false), -1], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["SetRequestHeader", "SetRequestHeader", "", $funcType([$String, $String], [], false), -1], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0], ["Upload", "Upload", "", $funcType([], [ptrType], false), -1]]; + Request.init([["Object", "", "", js.Object, ""], ["EventTarget", "", "", util.EventTarget, ""], ["ReadyState", "ReadyState", "", $Int, "js:\"readyState\""], ["Response", "Response", "", js.Object, "js:\"response\""], ["ResponseText", "ResponseText", "", $String, "js:\"responseText\""], ["ResponseType", "ResponseType", "", $String, "js:\"responseType\""], ["ResponseXML", "ResponseXML", "", js.Object, "js:\"responseXML\""], ["Status", "Status", "", $Int, "js:\"status\""], ["StatusText", "StatusText", "", $String, "js:\"statusText\""], ["Timeout", "Timeout", "", $Int, "js:\"timeout\""], ["WithCredentials", "WithCredentials", "", $Bool, "js:\"withCredentials\""], ["ch", "ch", "honnef.co/go/js/xhr", chanType, ""]]); + Upload.methods = [["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType], [], false), 1], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType], [], false), 1], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + ptrType.methods = [["AddEventListener", "AddEventListener", "", $funcType([$String, $Bool, funcType], [], false), 1], ["Bool", "Bool", "", $funcType([], [$Bool], false), 0], ["Call", "Call", "", $funcType([$String, sliceType], [js.Object], true), 0], ["Delete", "Delete", "", $funcType([$String], [], false), 0], ["Float", "Float", "", $funcType([], [$Float64], false), 0], ["Get", "Get", "", $funcType([$String], [js.Object], false), 0], ["Index", "Index", "", $funcType([$Int], [js.Object], false), 0], ["Int", "Int", "", $funcType([], [$Int], false), 0], ["Int64", "Int64", "", $funcType([], [$Int64], false), 0], ["Interface", "Interface", "", $funcType([], [$emptyInterface], false), 0], ["Invoke", "Invoke", "", $funcType([sliceType], [js.Object], true), 0], ["Length", "Length", "", $funcType([], [$Int], false), 0], ["New", "New", "", $funcType([sliceType], [js.Object], true), 0], ["RemoveEventListener", "RemoveEventListener", "", $funcType([$String, $Bool, funcType], [], false), 1], ["Set", "Set", "", $funcType([$String, $emptyInterface], [], false), 0], ["SetIndex", "SetIndex", "", $funcType([$Int, $emptyInterface], [], false), 0], ["Str", "Str", "", $funcType([], [$String], false), 0], ["Uint64", "Uint64", "", $funcType([], [$Uint64], false), 0], ["Unsafe", "Unsafe", "", $funcType([], [$Uintptr], false), 0]]; + Upload.init([["Object", "", "", js.Object, ""], ["EventTarget", "", "", util.EventTarget, ""]]); + $pkg.ErrAborted = errors.New("request aborted"); + $pkg.ErrTimeout = errors.New("request timed out"); + $pkg.ErrFailure = errors.New("send failed"); + /* */ } return; } }; $f.$blocking = true; return $f; + }; + return $pkg; +})(); +$packages["main"] = (function() { + var $pkg = {}, bytes, compiler, js, angularjs, ast, format, parser, scanner, token, dom, xhr, strings, time, sliceType, structType, chanType, sliceType$1, sliceType$2, ptrType, ptrType$1, sliceType$3, ptrType$2, sliceType$4, sliceType$5, ptrType$3, funcType, funcType$1, ptrType$4, Line, output, main, setupEnvironment; + bytes = $packages["bytes"]; + compiler = $packages["github.com/gopherjs/gopherjs/compiler"]; + js = $packages["github.com/gopherjs/gopherjs/js"]; + angularjs = $packages["github.com/neelance/go-angularjs"]; + ast = $packages["go/ast"]; + format = $packages["go/format"]; + parser = $packages["go/parser"]; + scanner = $packages["go/scanner"]; + token = $packages["go/token"]; + dom = $packages["honnef.co/go/js/dom"]; + xhr = $packages["honnef.co/go/js/xhr"]; + strings = $packages["strings"]; + time = $packages["time"]; + Line = $pkg.Line = $newType(4, $kindMap, "main.Line", "Line", "main", null); + main = function() { + var codeReady, app; + codeReady = new chanType(0); + app = angularjs.NewModule("playground", sliceType$1.nil, $throwNilPointerError); + app.NewController("PlaygroundCtrl", (function(scope) { + var id, req, packages, pkgsToLoad, importContext, fileSet, pkgsReceived, codeArea, run; + if (strings.HasPrefix($internalize(dom.GetWindow().Location().URLUtils.Object.hash, $String), "#/")) { + id = $internalize(dom.GetWindow().Location().URLUtils.Object.hash, $String).substring(2); + req = xhr.NewRequest("GET", "http://snippets.gotools.org/p/" + id); + req.Object.responseType = $externalize("arraybuffer", $String); + $go((function($b) { + var $this = this, $args = arguments, $r, $s = 0, _r, err, data; + /* */ if($b !== $BLOCKING) { $nonblockingCall(); }; var $f = function() { s: while (true) { switch ($s) { case 0: + _r = req.Send($ifaceNil, $BLOCKING); /* */ $s = 1; case 1: if (_r && _r.$blocking) { _r = _r(); } + err = _r; + if (!($interfaceIsEqual(err, $ifaceNil)) || !((($parseInt(req.Object.status) >> 0) === 200))) { + scope.Apply((function() { + var _map, _key; + scope.Object.output = $externalize(new sliceType([(_map = new $Map(), _key = "type", _map[_key] = { k: _key, v: "err" }, _key = "content", _map[_key] = { k: _key, v: "failed to load snippet \"" + id + "\"" }, _map)]), sliceType); + })); + return; + } + data = $assertType($internalize(new ($global.Uint8Array)(req.Object.response), $emptyInterface), sliceType$2); + scope.Apply((function() { + scope.Object.code = $externalize($bytesToString(data), $String); + $close(codeReady); + })); + /* */ case -1: } return; } }; $f.$blocking = true; return $f; + }), []); + } else { + scope.Object.code = $externalize("package main\n\nimport (\n\t\"fmt\"\n\t\"github.com/gopherjs/gopherjs/js\"\n)\n\nfunc main() {\n\tfmt.Println(\"Hello, playground\")\n\tjs.Global.Call(\"alert\", \"Hello, JavaScript\")\n\tprintln(\"Hello, JS console\")\n}\n", $String); + $close(codeReady); + } + scope.Object.shareUrl = $externalize("", $String); + scope.Object.showShareUrl = $externalize(false, $Bool); + scope.Object.showGenerated = $externalize(false, $Bool); + scope.Object.generated = $externalize("(generated code will be shown here after clicking \"Run\")", $String); + packages = new $Map(); + pkgsToLoad = sliceType$1.nil; + importContext = compiler.NewImportContext((function(path) { + var _tuple, _entry, pkg, found; + _tuple = (_entry = packages[path], _entry !== undefined ? [_entry.v, true] : [ptrType.nil, false]); pkg = _tuple[0]; found = _tuple[1]; + if (found) { + return [pkg, $ifaceNil]; + } + pkgsToLoad = $append(pkgsToLoad, path); + return [new compiler.Archive.Ptr("", sliceType$1.nil, sliceType$2.nil, sliceType$3.nil, sliceType$2.nil, false), $ifaceNil]; + })); + fileSet = token.NewFileSet(); + pkgsReceived = 0; + setupEnvironment(scope); + codeArea = angularjs.ElementById("code"); + codeArea.On("input", (function(e) { + scope.Object.showShareUrl = $externalize(false, $Bool); + dom.GetWindow().Location().URLUtils.Object.hash = $externalize("", $String); + })); + codeArea.On("keydown", (function(e) { + var toInsert, _ref, start, code, i, c, start$1, end, code$1; + toInsert = ""; + _ref = $parseInt(e.Object.keyCode) >> 0; + if (_ref === 9) { + toInsert = "\t"; + } else if (_ref === 13) { + toInsert = "\n"; + start = $parseInt(codeArea.Prop("selectionStart")) >> 0; + code = $internalize(scope.Object.code, $String); + i = strings.LastIndex(code.substring(0, start), "\n") + 1 >> 0; + while (i < start) { + c = code.charCodeAt(i); + if (!((c === 32)) && !((c === 9))) { + break; + } + toInsert = toInsert + ($encodeRune(c)); + i = i + (1) >> 0; + } + } + if (!(toInsert === "")) { + scope.Object.showShareUrl = $externalize(false, $Bool); + dom.GetWindow().Location().URLUtils.Object.hash = $externalize("", $String); + start$1 = $parseInt(codeArea.Prop("selectionStart")) >> 0; + end = $parseInt(codeArea.Prop("selectionEnd")) >> 0; + code$1 = $internalize(scope.Object.code, $String); + scope.Apply((function() { + scope.Object.code = $externalize(code$1.substring(0, start$1) + toInsert + code$1.substring(end), $String); + })); + codeArea.SetProp(new $String("selectionStart"), new $Int((start$1 + toInsert.length >> 0))); + codeArea.SetProp(new $String("selectionEnd"), new $Int((start$1 + toInsert.length >> 0))); + e.PreventDefault(); + } + })); + run = $throwNilPointerError; + run = (function(loadOnly) { + var _tuple, file, err, _tuple$1, list, ok, _ref, _i, entry, _map, _key, _map$1, _key$1, _tuple$2, mainPkg, _key$2, _tuple$3, list$1, ok$1, output$1, _ref$1, _i$1, entry$1, _map$2, _key$3, _map$3, _key$4, allPkgs, _tuple$4, _ref$2, _i$2, req$1, path, p, mainPkgCode, _entry, jsCode; + output = sliceType.nil; + scope.Object.output = $externalize(output, sliceType); + pkgsToLoad = sliceType$1.nil; + _tuple = parser.ParseFile(fileSet, "prog.go", new sliceType$2($stringToBytes($internalize(scope.Object.code, $String))), 4); file = _tuple[0]; err = _tuple[1]; + if (!($interfaceIsEqual(err, $ifaceNil))) { + _tuple$1 = $assertType(err, scanner.ErrorList, true); list = _tuple$1[0]; ok = _tuple$1[1]; + if (ok) { + _ref = list; + _i = 0; + while (_i < _ref.$length) { + entry = ((_i < 0 || _i >= _ref.$length) ? $throwRuntimeError("index out of range") : _ref.$array[_ref.$offset + _i]); + output = $append(output, (_map = new $Map(), _key = "type", _map[_key] = { k: _key, v: "err" }, _key = "content", _map[_key] = { k: _key, v: entry.Error() }, _map)); + _i++; + } + scope.Object.output = $externalize(output, sliceType); + return; + } + scope.Object.output = $externalize(new sliceType([(_map$1 = new $Map(), _key$1 = "type", _map$1[_key$1] = { k: _key$1, v: "err" }, _key$1 = "content", _map$1[_key$1] = { k: _key$1, v: err.Error() }, _map$1)]), sliceType); + return; + } + _tuple$2 = compiler.Compile("main", new sliceType$4([file]), fileSet, importContext, false); mainPkg = _tuple$2[0]; err = _tuple$2[1]; + _key$2 = "main"; (packages || $throwRuntimeError("assignment to entry in nil map"))[_key$2] = { k: _key$2, v: mainPkg }; + if (!($interfaceIsEqual(err, $ifaceNil)) && (pkgsToLoad.$length === 0)) { + _tuple$3 = $assertType(err, compiler.ErrorList, true); list$1 = _tuple$3[0]; ok$1 = _tuple$3[1]; + if (ok$1) { + output$1 = sliceType.make(0); + _ref$1 = list$1; + _i$1 = 0; + while (_i$1 < _ref$1.$length) { + entry$1 = ((_i$1 < 0 || _i$1 >= _ref$1.$length) ? $throwRuntimeError("index out of range") : _ref$1.$array[_ref$1.$offset + _i$1]); + output$1 = $append(output$1, (_map$2 = new $Map(), _key$3 = "type", _map$2[_key$3] = { k: _key$3, v: "err" }, _key$3 = "content", _map$2[_key$3] = { k: _key$3, v: entry$1.Error() }, _map$2)); + _i$1++; + } + scope.Object.output = $externalize(output$1, sliceType); + return; + } + scope.Object.output = $externalize(new sliceType([(_map$3 = new $Map(), _key$4 = "type", _map$3[_key$4] = { k: _key$4, v: "err" }, _key$4 = "content", _map$3[_key$4] = { k: _key$4, v: err.Error() }, _map$3)]), sliceType); + return; + } + allPkgs = sliceType$5.nil; + if (pkgsToLoad.$length === 0) { + _tuple$4 = compiler.ImportDependencies(mainPkg, importContext.Import); allPkgs = _tuple$4[0]; + } + if (!((pkgsToLoad.$length === 0))) { + pkgsReceived = 0; + _ref$2 = pkgsToLoad; + _i$2 = 0; + while (_i$2 < _ref$2.$length) { + path = [undefined]; + req$1 = [undefined]; + p = ((_i$2 < 0 || _i$2 >= _ref$2.$length) ? $throwRuntimeError("index out of range") : _ref$2.$array[_ref$2.$offset + _i$2]); + path[0] = p; + req$1[0] = xhr.NewRequest("GET", "pkg/" + path[0] + ".a.js"); + req$1[0].Object.responseType = $externalize("arraybuffer", $String); + $go((function(path, req$1) { return function($b) { + var $this = this, $args = arguments, $r, $s = 0, _r, err$1, data, _tuple$5, _key$5; + /* */ if($b !== $BLOCKING) { $nonblockingCall(); }; var $f = function() { s: while (true) { switch ($s) { case 0: + _r = req$1[0].Send($ifaceNil, $BLOCKING); /* */ $s = 1; case 1: if (_r && _r.$blocking) { _r = _r(); } + err$1 = _r; + if (!($interfaceIsEqual(err$1, $ifaceNil)) || !((($parseInt(req$1[0].Object.status) >> 0) === 200))) { + scope.Apply((function(path, req$1) { return function() { + var _map$4, _key$5; + scope.Object.output = $externalize(new sliceType([(_map$4 = new $Map(), _key$5 = "type", _map$4[_key$5] = { k: _key$5, v: "err" }, _key$5 = "content", _map$4[_key$5] = { k: _key$5, v: "failed to load package \"" + path[0] + "\"" }, _map$4)]), sliceType); + }; })(path, req$1)); + return; + } + data = $assertType($internalize(new ($global.Uint8Array)(req$1[0].Object.response), $emptyInterface), sliceType$2); + _tuple$5 = compiler.ReadArchive(path[0] + ".a", path[0], bytes.NewReader(data), importContext.Packages); _key$5 = path[0]; (packages || $throwRuntimeError("assignment to entry in nil map"))[_key$5] = { k: _key$5, v: _tuple$5[0] }; err$1 = _tuple$5[1]; + if (!($interfaceIsEqual(err$1, $ifaceNil))) { + scope.Apply((function(path, req$1) { return function() { + var _map$4, _key$6; + scope.Object.output = $externalize(new sliceType([(_map$4 = new $Map(), _key$6 = "type", _map$4[_key$6] = { k: _key$6, v: "err" }, _key$6 = "content", _map$4[_key$6] = { k: _key$6, v: err$1.Error() }, _map$4)]), sliceType); + }; })(path, req$1)); + return; + } + pkgsReceived = pkgsReceived + (1) >> 0; + if (pkgsReceived === pkgsToLoad.$length) { + run(loadOnly); + } + /* */ case -1: } return; } }; $f.$blocking = true; return $f; + }; })(path, req$1), []); + _i$2++; + } + return; + } + if (loadOnly) { + return; + } + mainPkgCode = bytes.NewBuffer(sliceType$2.nil); + compiler.WritePkgCode((_entry = packages["main"], _entry !== undefined ? _entry.v : ptrType.nil), false, new compiler.SourceMapFilter.Ptr(mainPkgCode, $throwNilPointerError, 0, 0, ptrType$3.nil)); + scope.Object.generated = $externalize(mainPkgCode.String(), $String); + jsCode = bytes.NewBuffer(sliceType$2.nil); + jsCode.WriteString("try{\n"); + compiler.WriteProgramCode(allPkgs, new compiler.SourceMapFilter.Ptr(jsCode, $throwNilPointerError, 0, 0, ptrType$3.nil)); + jsCode.WriteString("} catch (err) {\ngoPanicHandler(err.message);\n}\n"); + $checkForDeadlock = $externalize(true, $Bool); + $global.eval(jsCode.String()); + }); + scope.Object.run = $externalize(run, funcType); + $go((function($b) { + var $this = this, $args = arguments, $r, $s = 0, _r; + /* */ if($b !== $BLOCKING) { $nonblockingCall(); }; var $f = function() { s: while (true) { switch ($s) { case 0: + _r = $recv(codeReady, $BLOCKING); /* */ $s = 1; case 1: if (_r && _r.$blocking) { _r = _r(); } + _r[0]; + run(true); + /* */ case -1: } return; } }; $f.$blocking = true; return $f; + }), []); + scope.Object.format = $externalize((function() { + var _tuple, out, err, _map, _key; + _tuple = format.Source(new sliceType$2($stringToBytes($internalize(scope.Object.code, $String)))); out = _tuple[0]; err = _tuple[1]; + if (!($interfaceIsEqual(err, $ifaceNil))) { + scope.Object.output = $externalize(new sliceType([(_map = new $Map(), _key = "type", _map[_key] = { k: _key, v: "err" }, _key = "content", _map[_key] = { k: _key, v: err.Error() }, _map)]), sliceType); + return; + } + scope.Object.code = $externalize($bytesToString(out), $String); + scope.Object.output = $externalize(new sliceType([]), sliceType); + }), funcType$1); + scope.Object.share = $externalize((function() { + var req$1; + req$1 = xhr.NewRequest("POST", "http://snippets.gotools.org/share"); + req$1.Object.responseType = $externalize("arraybuffer", $String); + $go((function($b) { + var $this = this, $args = arguments, $r, $s = 0, _r, err, data; + /* */ if($b !== $BLOCKING) { $nonblockingCall(); }; var $f = function() { s: while (true) { switch ($s) { case 0: + _r = req$1.Send(new $String($internalize(scope.Object.code, $String)), $BLOCKING); /* */ $s = 1; case 1: if (_r && _r.$blocking) { _r = _r(); } + err = _r; + if (!($interfaceIsEqual(err, $ifaceNil)) || !((($parseInt(req$1.Object.status) >> 0) === 200))) { + scope.Apply((function() { + var _map, _key; + scope.Object.output = $externalize(new sliceType([(_map = new $Map(), _key = "type", _map[_key] = { k: _key, v: "err" }, _key = "content", _map[_key] = { k: _key, v: "failed to share snippet" }, _map)]), sliceType); + })); + return; + } + data = $assertType($internalize(new ($global.Uint8Array)(req$1.Object.response), $emptyInterface), sliceType$2); + scope.Apply((function() { + var id$1; + id$1 = $bytesToString(data); + dom.GetWindow().Location().URLUtils.Object.hash = $externalize("#/" + id$1, $String); + scope.Object.shareUrl = $externalize($internalize(dom.GetWindow().Location().Object, $String), $String); + scope.Object.showShareUrl = $externalize(true, $Bool); + $go((function($b) { + var $this = this, $args = arguments, $r, $s = 0; + /* */ if($b !== $BLOCKING) { $nonblockingCall(); }; var $f = function() { s: while (true) { switch ($s) { case 0: + $r = time.Sleep(new time.Duration(0, 1000000), $BLOCKING); /* */ $s = 1; case 1: if ($r && $r.$blocking) { $r = $r(); } + $assertType(dom.GetWindow().Document().GetElementByID("share-url"), ptrType$4).Select(); + /* */ case -1: } return; } }; $f.$blocking = true; return $f; + }), []); + })); + /* */ case -1: } return; } }; $f.$blocking = true; return $f; + }), []); + }), funcType$1); + })); + }; + setupEnvironment = function(scope) { + $global.goPrintToConsole = (function(b) { + var lines, _entry, x, _map, _key, _lhs, _index, x$1, _key$1, _entry$1, i, _map$1, _key$2; + lines = strings.Split($bytesToString(b), "\n"); + if ((output.$length === 0) || !((_entry = (x = output.$length - 1 >> 0, ((x < 0 || x >= output.$length) ? $throwRuntimeError("index out of range") : output.$array[output.$offset + x]))["type"], _entry !== undefined ? _entry.v : "") === "out")) { + output = $append(output, (_map = new $Map(), _key = "type", _map[_key] = { k: _key, v: "out" }, _key = "content", _map[_key] = { k: _key, v: "" }, _map)); + } + _lhs = (x$1 = output.$length - 1 >> 0, ((x$1 < 0 || x$1 >= output.$length) ? $throwRuntimeError("index out of range") : output.$array[output.$offset + x$1])); _index = "content"; _key$1 = _index; (_lhs || $throwRuntimeError("assignment to entry in nil map"))[_key$1] = { k: _key$1, v: (_entry$1 = _lhs[_index], _entry$1 !== undefined ? _entry$1.v : "") + (((0 < 0 || 0 >= lines.$length) ? $throwRuntimeError("index out of range") : lines.$array[lines.$offset + 0])) }; + i = 1; + while (i < lines.$length) { + output = $append(output, (_map$1 = new $Map(), _key$2 = "type", _map$1[_key$2] = { k: _key$2, v: "out" }, _key$2 = "content", _map$1[_key$2] = { k: _key$2, v: ((i < 0 || i >= lines.$length) ? $throwRuntimeError("index out of range") : lines.$array[lines.$offset + i]) }, _map$1)); + i = i + (1) >> 0; + } + scope.Object.output = $externalize(output, sliceType); + scope.EvalAsync((function() { + time.AfterFunc(new time.Duration(0, 0), (function() { + var box; + box = angularjs.ElementById("output"); + box.SetProp(new $String("scrollTop"), box.Prop("scrollHeight")); + })); + })); + }); + $global.goPanicHandler = (function(msg) { + var _map, _key; + output = $append(output, (_map = new $Map(), _key = "type", _map[_key] = { k: _key, v: "err" }, _key = "content", _map[_key] = { k: _key, v: "panic: " + msg }, _map)); + scope.Object.output = $externalize(output, sliceType); + }); + }; + $pkg.$init = function() { + $pkg.$init = function() {}; + /* */ var $r, $s = 0; var $f = function() { while (true) { switch ($s) { case 0: + $r = bytes.$init($BLOCKING); /* */ $s = 1; case 1: if ($r && $r.$blocking) { $r = $r(); } + $r = compiler.$init($BLOCKING); /* */ $s = 2; case 2: if ($r && $r.$blocking) { $r = $r(); } + $r = js.$init($BLOCKING); /* */ $s = 3; case 3: if ($r && $r.$blocking) { $r = $r(); } + $r = angularjs.$init($BLOCKING); /* */ $s = 4; case 4: if ($r && $r.$blocking) { $r = $r(); } + $r = ast.$init($BLOCKING); /* */ $s = 5; case 5: if ($r && $r.$blocking) { $r = $r(); } + $r = format.$init($BLOCKING); /* */ $s = 6; case 6: if ($r && $r.$blocking) { $r = $r(); } + $r = parser.$init($BLOCKING); /* */ $s = 7; case 7: if ($r && $r.$blocking) { $r = $r(); } + $r = scanner.$init($BLOCKING); /* */ $s = 8; case 8: if ($r && $r.$blocking) { $r = $r(); } $r = token.$init($BLOCKING); /* */ $s = 9; case 9: if ($r && $r.$blocking) { $r = $r(); } - $r = strings.$init($BLOCKING); /* */ $s = 10; case 10: if ($r && $r.$blocking) { $r = $r(); } - $r = time.$init($BLOCKING); /* */ $s = 11; case 11: if ($r && $r.$blocking) { $r = $r(); } + $r = dom.$init($BLOCKING); /* */ $s = 10; case 10: if ($r && $r.$blocking) { $r = $r(); } + $r = xhr.$init($BLOCKING); /* */ $s = 11; case 11: if ($r && $r.$blocking) { $r = $r(); } + $r = strings.$init($BLOCKING); /* */ $s = 12; case 12: if ($r && $r.$blocking) { $r = $r(); } + $r = time.$init($BLOCKING); /* */ $s = 13; case 13: if ($r && $r.$blocking) { $r = $r(); } sliceType = $sliceType(Line); + structType = $structType([]); + chanType = $chanType(structType, false, false); sliceType$1 = $sliceType($String); - ptrType = $ptrType(compiler.Archive); sliceType$2 = $sliceType($Uint8); + ptrType = $ptrType(compiler.Archive); ptrType$1 = $ptrType(compiler.Decl); sliceType$3 = $sliceType(ptrType$1); ptrType$2 = $ptrType(ast.File); sliceType$4 = $sliceType(ptrType$2); sliceType$5 = $sliceType(ptrType); - funcType = $funcType([], [], false); ptrType$3 = $ptrType(token.FileSet); - funcType$1 = $funcType([$Bool], [], false); + funcType = $funcType([$Bool], [], false); + funcType$1 = $funcType([], [], false); + ptrType$4 = $ptrType(dom.HTMLInputElement); Line.init($String, $String); output = sliceType.nil; main(); @@ -60757,7 +64916,7 @@ $packages["github.com/gopherjs/gopherjs.github.io/playground"] = (function() { return $pkg; })(); $packages["runtime"].$init()(); -$go($packages["github.com/gopherjs/gopherjs.github.io/playground"].$init, [], true); +$go($packages["main"].$init, [], true); $flushConsole(); })();