diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2014-11-15 11:18:10 +0530 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2014-12-05 18:32:11 -0800 |
commit | 7d51a543d8d04f9603ceb00d21faa298dda8b6c4 (patch) | |
tree | 58a0d4b4eba3b0f0d39d22550772d359f670fe62 /components/script/dom/webidls/HTMLInputElement.webidl | |
parent | 2c2d741b1fbfdcf61c7b72501d1b0ec68d941bd2 (diff) | |
download | servo-7d51a543d8d04f9603ceb00d21faa298dda8b6c4.tar.gz servo-7d51a543d8d04f9603ceb00d21faa298dda8b6c4.zip |
Implement form control mutability, rename FormOwner -> FormControl
Diffstat (limited to 'components/script/dom/webidls/HTMLInputElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLInputElement.webidl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/webidls/HTMLInputElement.webidl b/components/script/dom/webidls/HTMLInputElement.webidl index b69d8fcf4ff..32b4f04261b 100644 --- a/components/script/dom/webidls/HTMLInputElement.webidl +++ b/components/script/dom/webidls/HTMLInputElement.webidl @@ -32,7 +32,7 @@ interface HTMLInputElement : HTMLElement { attribute DOMString name; // attribute DOMString pattern; // attribute DOMString placeholder; - // attribute boolean readOnly; + attribute boolean readOnly; // attribute boolean required; attribute unsigned long size; // attribute DOMString src; |