diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2017-05-23 14:14:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-23 14:14:09 +0200 |
commit | 95fc78884c8b28acaf9f9c94d109f7161b9eb250 (patch) | |
tree | e27446c525713396290f5b7534f0522f5a3358eb /components/script/dom | |
parent | e24d96cdd04fb40c0681a6ba46476ba04607f573 (diff) | |
parent | 6a4173fbeb9b4e85fbea154af3bd3529f14805b8 (diff) | |
download | servo-95fc78884c8b28acaf9f9c94d109f7161b9eb250.tar.gz servo-95fc78884c8b28acaf9f9c94d109f7161b9eb250.zip |
Rollup merge of #16885 - jonathanGB:master, r=jdm
Bug 1270740 - remove requestAutocomplete reference
<!-- Please describe your changes on the following line: -->
I was in charge of removing the `requestAutocomplete` feature in [mozilla-central](https://bugzilla.mozilla.org/show_bug.cgi?id=1270740), and needed to remove a reference to that feature in the **servo** comments. The change, therefore, is really trivial.
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [ ] `./mach build -d` does not report any errors
- [ ] `./mach test-tidy` does not report any errors
- [ ] These changes fix #__ (github issue number if applicable).
<!-- Either: -->
- [X] These changes do not require tests because I simply removed a comment
<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->
<!-- 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="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/16885)
<!-- Reviewable:end -->
Diffstat (limited to 'components/script/dom')
-rw-r--r-- | components/script/dom/webidls/HTMLFormElement.webidl | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/components/script/dom/webidls/HTMLFormElement.webidl b/components/script/dom/webidls/HTMLFormElement.webidl index fba10d25509..c9232cc6d6c 100644 --- a/components/script/dom/webidls/HTMLFormElement.webidl +++ b/components/script/dom/webidls/HTMLFormElement.webidl @@ -24,6 +24,4 @@ interface HTMLFormElement : HTMLElement { void reset(); //boolean checkValidity(); //boolean reportValidity(); - - //void requestAutocomplete(); }; |