diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2017-01-13 14:02:26 +0100 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2017-01-14 14:53:04 +0100 |
commit | 91717ab17cbcfec3fc5125e0f1345e77467199bf (patch) | |
tree | 228029be7ef470394a451852c56829902a18bfea /components/script/dom/webidls/HTMLScriptElement.webidl | |
parent | 89c210f2c8974f5575047fdab6f2b7bc640c684b (diff) | |
download | servo-91717ab17cbcfec3fc5125e0f1345e77467199bf.tar.gz servo-91717ab17cbcfec3fc5125e0f1345e77467199bf.zip |
Implement HTMLScriptElement async attribute
Diffstat (limited to 'components/script/dom/webidls/HTMLScriptElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLScriptElement.webidl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/webidls/HTMLScriptElement.webidl b/components/script/dom/webidls/HTMLScriptElement.webidl index 0dcc9ddf69a..8a1dbc3fc35 100644 --- a/components/script/dom/webidls/HTMLScriptElement.webidl +++ b/components/script/dom/webidls/HTMLScriptElement.webidl @@ -7,7 +7,7 @@ interface HTMLScriptElement : HTMLElement { attribute DOMString src; attribute DOMString type; attribute DOMString charset; - // attribute boolean async; + attribute boolean async; attribute boolean defer; attribute DOMString? crossOrigin; [Pure] |