aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/HTMLScriptElement.webidl
diff options
context:
space:
mode:
authorAnthony Ramine <n.oxyde@gmail.com>2017-01-13 14:02:26 +0100
committerAnthony Ramine <n.oxyde@gmail.com>2017-01-14 14:53:04 +0100
commit91717ab17cbcfec3fc5125e0f1345e77467199bf (patch)
tree228029be7ef470394a451852c56829902a18bfea /components/script/dom/webidls/HTMLScriptElement.webidl
parent89c210f2c8974f5575047fdab6f2b7bc640c684b (diff)
downloadservo-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.webidl2
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]