diff options
Diffstat (limited to 'components/script/dom/htmltextareaelement.rs')
-rw-r--r-- | components/script/dom/htmltextareaelement.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/htmltextareaelement.rs b/components/script/dom/htmltextareaelement.rs index c2231b070b7..b8beaed2a98 100644 --- a/components/script/dom/htmltextareaelement.rs +++ b/components/script/dom/htmltextareaelement.rs @@ -123,10 +123,10 @@ impl HTMLTextAreaElementMethods for HTMLTextAreaElement { // https://html.spec.whatwg.org/multipage/#dom-textarea-cols make_limited_uint_setter!(SetCols, "cols", DEFAULT_COLS); - // https://www.whatwg.org/html/#dom-fe-disabled + // https://html.spec.whatwg.org/multipage#dom-fe-disabled make_bool_getter!(Disabled); - // https://www.whatwg.org/html/#dom-fe-disabled + // https://html.spec.whatwg.org/multipage#dom-fe-disabled make_bool_setter!(SetDisabled, "disabled"); // https://html.spec.whatwg.org/multipage#dom-fae-form |