Web IDL
Web IDL is an interface description language format for describing APIs that are intended to be implemented in web browsers. Its adoption was motivated by the desire to improve the interoperability of web programming interfaces by specifying how languages such as ECMAScript should bind these interfaces.
Description
Web IDL is an IDL variant with:- A number of features that allow one to more easily describe the behavior of common script objects in a web context.
- A mapping of how interfaces described with Web IDL correspond to language constructs within an ECMAScript execution environment.
Status of Web IDL specifications
became a Candidate Recommendation on 19 April 2012 and a W3C Recommendation on 15 December 2016. For many years the, was what most new web specifications referenced. On 5 October 2021, the Editor's Draft was moved to the as the per an .Usage
- The W3C Wiki has a list of W3C Specifications that use Web IDL, and nearly all WHATWG specifications use it.
- The Chromium Project has a page about using WebIDL to specify interfaces in Blink.
- Mozilla uses Web IDL in their software creation process, mapping implementations to Web IDL specs.
- When WebKit is built, the IDL files are parsed, creates the code to bind interfaces to implementations.
- In the ES operating system, every system API is defined in Web IDL, and can be invoked from JavaScript directly.