aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/HTMLScriptElement.webidl
diff options
context:
space:
mode:
authorPer Lundberg <perlun@gmail.com>2016-04-02 00:35:22 +0300
committerPer Lundberg <perlun@gmail.com>2016-04-03 22:33:57 +0300
commit99f473631affce4f3dc7aee125712c1e379ed2af (patch)
tree2d2ac10e5e8e8e279db0af6926e0d5c4ea0e268d /components/script/dom/webidls/HTMLScriptElement.webidl
parent4e4a213c73d49641fdfbf83c31152295d4856ae0 (diff)
downloadservo-99f473631affce4f3dc7aee125712c1e379ed2af.tar.gz
servo-99f473631affce4f3dc7aee125712c1e379ed2af.zip
HTMLScriptElement: Added missing DOM properties
This should sort out most (all?) of the ones pointed out in #10227. (Amended with suggested fixes in PR #10354.)
Diffstat (limited to 'components/script/dom/webidls/HTMLScriptElement.webidl')
-rw-r--r--components/script/dom/webidls/HTMLScriptElement.webidl12
1 files changed, 6 insertions, 6 deletions
diff --git a/components/script/dom/webidls/HTMLScriptElement.webidl b/components/script/dom/webidls/HTMLScriptElement.webidl
index 945cac2e0c7..8bd588a232b 100644
--- a/components/script/dom/webidls/HTMLScriptElement.webidl
+++ b/components/script/dom/webidls/HTMLScriptElement.webidl
@@ -6,12 +6,12 @@
// https://html.spec.whatwg.org/multipage/#htmlscriptelement
interface HTMLScriptElement : HTMLElement {
attribute DOMString src;
- // attribute DOMString type;
- // attribute DOMString charset;
+ attribute DOMString type;
+ attribute DOMString charset;
// attribute boolean async;
- // attribute boolean defer;
+ attribute boolean defer;
// attribute DOMString crossOrigin;
- [Pure]
+ [Pure]
attribute DOMString text;
// also has obsolete members
@@ -19,6 +19,6 @@ interface HTMLScriptElement : HTMLElement {
// https://html.spec.whatwg.org/multipage/#HTMLScriptElement-partial
partial interface HTMLScriptElement {
- // attribute DOMString event;
- // attribute DOMString htmlFor;
+ attribute DOMString event;
+ attribute DOMString htmlFor;
};