%include file="page_nav.html"/>
<%
name = data.name
if data.typestr in ("method", "property", "event"):
name = "%s.%s" % (data.parent.name, name)
%>
${name}
<%include file="parent_info.html"/>
<%include file="platforms.html"/>
% if data.deprecated:
Deprecated
% if "since" in data.deprecated:
since ${data.deprecated["since"]}.
% endif
% if "removed" in data.deprecated:
Removed in ${data.deprecated["removed"]}.
% endif
% if "notes_html" in data.deprecated:
${data.deprecated["notes_html"]}
% endif
% endif
% if data.availability:
Availability: ${data.availability}
% endif
% if data.permission:
Permission: ${data.permission}
% else:
% if data.typestr == "property":
Permission: read-write
% endif
% endif
Summary
${data.summary_html}
% if data.typestr == "property":
Type
${data.type_html}
% if data.default is not None:
Default
${data.default_html}
% endif
% endif
<%include file="description.html"/>
<%include file="examples.html"/>