aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/htmlformelement.rs
Commit message (Collapse)AuthorAgeFilesLines
...
* Move boxing to runnable initializationConnor Brewster2016-07-131-1/+1
|
* Make all task source runnables cancellableConnor Brewster2016-07-131-3/+2
| | | | Implement all Runnable methods on CancellableRunnable to redirect to their inner runnable
* Add event runnablesConnor Brewster2016-07-111-1/+1
| | | | Make tasks a wrapper over runnables
* add Runnable::name() implementation for PlannedNavigation resolve #12333sappharx2016-07-101-0/+2
|
* Combined DOMManipulationTask runnable variants into a single variantConnor Brewster2016-07-061-2/+1
|
* Auto merge of #12258 - izgzhen:remove-data-slice, r=Manishearthbors-servo2016-07-051-2/+2
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove DataSlice, fix #12249 r? @Manishearth --- <!-- 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 - [x] These changes fix #12249 <!-- Either: --> - [ ] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- 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/12258) <!-- Reviewable:end -->
| * Remove DataSlice, fix #12249Zhen Zhang2016-07-051-2/+2
| |
* | Move util::str to styleAnthony Ramine2016-07-051-1/+1
|/
* indexed getter of form elementsmrmiywj2016-06-141-0/+7
|
* Stop re-exporting AttrValue.Ms2ger2016-06-071-1/+1
|
* delete suffixesRafael Quintero2016-06-041-8/+8
| | | | | | | | delete suffixes for variants SubmittedFrom, ResetFrom delete suffixes for variants SubmittedFrom, ResetFrom
* Clean up DOMManipulationTaskSourceKeith Yeung2016-06-021-0/+1
|
* Add file backend support for Blob and relatedZhen Zhang2016-06-011-4/+10
| | | | | | | | Changes include: - Add BlobImpl to Blob, and related caching mechanism - Expose ResourceThreads to document_loader, workerglobalscope, worker, and global - Fix encode_multipart_form_data - Other small fixes to accommodate the above changes
* Move DOMString back to scriptAnthony Ramine2016-05-241-2/+3
| | | | This entirely removes the 'non-geckolib' feature of the util crate.
* Auto merge of #11333 - Manishearth:submit-submit-button, r=noxbors-servo2016-05-231-1/+6
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Include <button type=submit> data whilst constructing the form dataset This makes it possible to close things in github (see https://github.com/Manishearth/mitochondria/issues/1) - [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 OR - [ ] These changes do not require tests because _____ <!-- 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/11333) <!-- Reviewable:end -->
| * Include <button type=submit> data whilst constructing the form datasetManish Goregaokar2016-05-231-1/+6
| |
* | Implement file-type functionalities in htmlinputelement and relatedZhen Zhang2016-05-231-1/+1
|/ | | | | | | | Changes include: - Implement file selection and other DOM behaviours in htmlinputelement - Integrate IpcSender<FileManagerThreadMsg> into ResourceThreads - Improve filemanager_thread, including adding type_string field to SelectedFile - Improve interfaces in FileList/File/Blob to accommodate the above changes
* Removed unused importsPer Lundberg2016-05-151-1/+0
| | | | This fixes #11185.
* Implement text/plain form encodingKeith Yeung2016-05-111-2/+35
|
* Add picking of encoding for url encoded dataKeith Yeung2016-05-111-1/+2
|
* Rename encode_form_data to encode_multipart_form_dataKeith Yeung2016-05-111-4/+4
|
* fix formsubmitter methods for buttonsConnor Brewster2016-05-041-6/+6
|
* Add planned navigation to submit as entity body (fixes #9829)Keith Yeung2016-04-301-0/+1
|
* Support form submission of multipart/form-dataPrabhjyot Singh Sodhi2016-04-301-13/+124
|
* Remove extraneous script_chan parameter from Trusted::newKeith Yeung2016-04-281-3/+2
|
* Add referrer policy pass-through and referrer header logicRebecca2016-04-251-1/+1
| | | | | | | add pass-through from doc to http-loader for referrer_policy, ref_URL add logic for setting referer header add script pass-through for referrer add unit tests for setting referer header
* Upgrade to rust-url 1.0 and hyper 0.9Simon Sapin2016-04-231-6/+8
|
* Move '&&' to the end of the previous line.Zbynek Winkler2016-04-221-2/+2
| | | | | | Following https://github.com/servo/servo/issues/10692 this is just a formating change to satisfy a new tidy requirement of not having '&&' at the beginning of a line.
* Rename fn get_form_datum to form_datumKeith Yeung2016-04-111-1/+1
|
* Remove `get_*` on getters as per RFC 0344.Corey Farwell2016-04-101-1/+1
| | | | | | https://github.com/rust-lang/rfcs/blob/master/text/0344-conventions-galore.md#gettersetter-apis https://github.com/servo/servo/issues/6224
* refactors entities from script_thread into script_runtimeRahul Sharma2016-04-061-1/+2
|
* Add task_source directoryKeith Yeung2016-03-101-5/+12
| | | | Use DOMManipulationTaskSource whenever possible
* Implement planned navigationKeith Yeung2016-02-181-9/+58
|
* Remove the global argument to EventTarget::{fire_event, fire_simple_event}.Ms2ger2016-02-081-12/+5
|
* Update HTMLFormElement.length to be of type unsigned longJoshua Holmer2016-01-221-2/+2
| | | | Fixes #9402
* HTMLFormElement::Elements should honor [SameObject] attributeCorey Farwell2016-01-101-2/+10
| | | | | | | Ideally, this would get tested by web-platform-tests, but that has yet to be implemented: https://github.com/w3c/web-platform-tests/issues/2462
* Implement HTMLFormElement::LengthCorey Farwell2016-01-101-0/+5
|
* Implement HTMLFormElement::ElementsCorey Farwell2016-01-101-0/+60
| | | | Fixes #8566
* task -> threadrohan.prinja2016-01-101-1/+1
|
* Rename fire_simple_event_params to fire_eventBrandon Fairchild2016-01-071-12/+12
| | | | Fixes #9180.
* Generate PartialEq automaticallyGuillaume Gomez2016-01-031-6/+0
|
* Fix a bunch of clippy lintsJohannes Linke2016-01-021-38/+32
|
* form submission for <textarea> and <select>Nicolas2015-12-301-11/+29
| | | | | | small changes from code review !child.get_disabled_state() becomes child.get_enabled_state()
* Auto merge of #9055 - simartin:issue_9042, r=Wafflespeanutbors-servo2015-12-241-1/+1
|\ | | | | | | | | | | | | | | | | | | Issue #9042: Report incorrect number of spaces around => in the style checker Fixes https://github.com/servo/servo/issues/9042 <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/9055) <!-- Reviewable:end -->
| * Issue #9042: Report incorrect number of spaces around => in the style checker.Simon Martin2015-12-231-1/+1
| |
* | Implement EventTarget::fire_simple_event and ↵Arthur Skobara2015-12-221-23/+19
|/ | | | EventTarget::fire_simple_event_params
* Use Url.join instead of UrlParser.base_url(...).parse (#9002)Mathieu Agopian2015-12-181-2/+1
|
* Silence warnings in htmlformelement.rs.Ms2ger2015-12-171-4/+3
|
* Remove big blob of commented codeKeith Yeung2015-12-161-65/+3
|
* Implement basic framework for static and interactive validation on formsKeith Yeung2015-12-151-19/+213
|