DOM/WebIDL Review Checklist: Difference between revisions
< DOM
Jump to navigation
Jump to search
(Add a thing about intents to implement.) |
(Add link to intent to implement) |
||
Line 11: | Line 11: | ||
* The API should be easy to understand and use, and consistent. | * The API should be easy to understand and use, and consistent. | ||
* There should be an intent to implement for the feature, and the reviewer should not be objecting to the intent. In particular, this means checking whether other UAs plan to implement this spec, and if not why we're doing it. | * There should be an [https://wiki.mozilla.org/WebAPI/ExposureGuidelines#Intent_to_Implement intent to implement] for the feature, and the reviewer should not be objecting to the intent. In particular, this means checking whether other UAs plan to implement this spec, and if not why we're doing it. | ||
* Whether things are nullable or not needs to make sense. | * Whether things are nullable or not needs to make sense. | ||
* Whether arguments and dictionary members are optional or not needs to make sense. | * Whether arguments and dictionary members are optional or not needs to make sense. |
Revision as of 16:13, 10 April 2017
A review checklist for DOM Peers while doing WebIDL reviews. This is not exhaustive; things will be added as needed.
IDL follows spec
- The IDL has a link to the relevant specification. If there isn't one, the API must not be exposed to the web in general.
- The IDL matches the IDL in the spec.
- Double-check that our use of nullable sigils (
?
) matches the spec. - Double-check that our
Exposed
values match the spec.
- Double-check that our use of nullable sigils (
Spec makes sense
- The API should be easy to understand and use, and consistent.
- There should be an intent to implement for the feature, and the reviewer should not be objecting to the intent. In particular, this means checking whether other UAs plan to implement this spec, and if not why we're doing it.
- Whether things are nullable or not needs to make sense.
- Whether arguments and dictionary members are optional or not needs to make sense.
Exposed
values should make sense.- The order in which checks that lead to exceptions being thrown happen should be defined in cases when the method can have multiple exceptional conditions.
- The spec should almost certainly not be using the term "active document". If it is, think extra carefully about what happens when that document is not same-origin with any of the other things the spec is talking about.
- The spec is being reasonable with its usage of incumbent/entry/current/relevant globals, settings objects, and so forth.
- The spec handles origins that stringify to "null" correctly.
Implementation is correct
- Check that the implementation follows the spec, as much as is possible without domain expertise.
- All functions with non-nullable return values must never return null.
- All functions that accept nullable or optional values (as arguments, dictionary members, etc) must properly handle the null or "not present" cases.
- Exceptions thrown from functions should generally be specified. If there are non-specified exceptions being thrown, evaluate whether it's because Gecko has a state web specs assume can't arise (e.g. window without a document) or whether it's because the spec missed a case it should be handling.
- If the API has
[Exposed=SomethingOtherThanWindow]
:- Audit the API implementation to make sure it doesn't assume the existence of a Window or a Document
- Require basic test coverage for each of the contexts in which the API is exposed.
- Implementation should use the argument types described in our binding layer documentation, not whatever internal types bindings are using (e.g. no types in the
binding::detail
namespace, noNonNull<T>
arguments whereT&
would work, etc). - Check that the
GetParentObject()
methods of various objects, combined with how those objects get constructed, associate them with the correct global.
Further reading
Please refer to the WebIDL spec or the documentation for our binding layer in order to double check your understanding of the IDL as needed.