Skip to content

Commit

Permalink
Use Web IDL's new-ish interface mixins concept (#1252)
Browse files Browse the repository at this point in the history
WebIDL recently introduced dedicated syntax for mixins [1]. So, this
change replaces the existing `implements` with `includes` as per the new
concept.

[1] whatwg/webidl@45e8173
  • Loading branch information
romandev authored and jungkees committed Jan 13, 2018
1 parent b4b2f9e commit 9cca518
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/index.bs
Expand Up @@ -302,7 +302,7 @@ spec: webappsec-referrer-policy; urlPrefix: https://w3c.github.io/webappsec-refe
// event
attribute EventHandler onstatechange;
};
ServiceWorker implements AbstractWorker;
ServiceWorker includes AbstractWorker;

enum ServiceWorkerState {
"installing",
Expand Down

0 comments on commit 9cca518

Please sign in to comment.