Conventions¶
Properties, methods and events which are scheduled to be implemented in the upcoming release, are marked with cyan background. Properties methods and events which have been implemented and released are marked with green background.
Properties, methods, and events names follow the lowerCamelCase naming convention.
For example:
-
window.host.propertyName
-
window.host.methodName()
-
window.addEventListener(‘eventName’, function(e) { })
Data structure names follow the UpperCamelCase naming convention.
For example:
- DataStructureName
Those rules apply over all identifiers in this document. In case detailed specs specify otherwise, that should be considered a typo.