[heycam/webidl] Should `async` be allowed as an attribute name? (#768)

```webidl
[Exposed=Window,
 HTMLConstructor]
interface HTMLScriptElement : HTMLElement {
  // -- snip --
  [CEReactions] attribute boolean async;
  [CEReactions] attribute boolean defer;
  // -- snip --
};
```

The attribute [`async`](https://html.spec.whatwg.org/multipage/scripting.html#the-script-element:dom-script-async) now has an invalid syntax after #720. Should it be just escaped with `_async` or should we add `async` to `AttributeName`?

cc @Ms2ger @bzbarsky 

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/heycam/webidl/issues/768

Received on Sunday, 11 August 2019 15:23:11 UTC