diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-06-30 01:20:11 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-30 01:20:11 -0500 |
commit | 8052f5b80d812a3d266a03378ac610b5b544ef72 (patch) | |
tree | a215cb0daf48a76901f0589c84385b174f811cdb /components/script/dom/webidls/HTMLInputElement.webidl | |
parent | 461d7c4eebaebf27c369b30c318e56ee2796275d (diff) | |
parent | 6ca531fb8f306df94078565b276d9469c7a92642 (diff) | |
download | servo-8052f5b80d812a3d266a03378ac610b5b544ef72.tar.gz servo-8052f5b80d812a3d266a03378ac610b5b544ef72.zip |
Auto merge of #11931 - izgzhen:fix-html-input-element, r=Manishearth
Fix file-type input element
A simple fix to put `inputElem.files` online
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
<!-- Either: -->
- [x] There are tests for these changes
<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/11931)
<!-- Reviewable:end -->
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 48ec3c0ac7b..d145e498659 100644 --- a/components/script/dom/webidls/HTMLInputElement.webidl +++ b/components/script/dom/webidls/HTMLInputElement.webidl @@ -13,7 +13,7 @@ interface HTMLInputElement : HTMLElement { attribute DOMString dirName; attribute boolean disabled; readonly attribute HTMLFormElement? form; - //readonly attribute FileList? files; + readonly attribute FileList? files; attribute DOMString formAction; attribute DOMString formEnctype; attribute DOMString formMethod; |