We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[NamedConstructor=Map(unsigned long width, unsigned long height, double lat, double lon, unsigned short zoom, optional string projection, boolean controls)] interface HTMLMapElement : HTMLElement { readonly attribute HTMLCollection layers; readonly attribute HTMLCollection areas; readonly attribute unsigned short zoom; readonly attribute double lat; readonly attribute double lon; readonly attribute string projection; attribute boolean controls; attribute unsigned long width; attribute unsigned long height; void zoomTo(double latitude, double longitude, optional unsigned short zoom); };
string
DOMString
[Exposed=Window]
[HTMLConstructor] constructor();
[CEReactions]
HTMLCollection
[SameObject]
NamedConstructor
[LegacyFactoryFunction]
see https://html.spec.whatwg.org/multipage/image-maps.html#the-map-element
The text was updated successfully, but these errors were encountered:
It should be noted that while some errors exist, most of the ones described above were fixed in bcfeb6a.
Sorry, something went wrong.
AFAIK these are all fixed:
string should be DOMString [Exposed=Window] is missing [HTMLConstructor] constructor(); is missing IDL attributes that reflect content attributes should have [CEReactions] IDL attributes that return HTMLCollection should have [SameObject] NamedConstructor was changed to [LegacyFactoryFunction].
Closing in favor of #212 for the remaining issues.
prushforth
No branches or pull requests
string
should beDOMString
[Exposed=Window]
is missing[HTMLConstructor] constructor();
is missing[CEReactions]
HTMLCollection
should have[SameObject]
NamedConstructor
was changed to[LegacyFactoryFunction]
.see https://html.spec.whatwg.org/multipage/image-maps.html#the-map-element
The text was updated successfully, but these errors were encountered: