aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/htmlinputelement.rs
Commit message (Collapse)AuthorAgeFilesLines
...
* Rename JS<T> to Dom<T>Anthony Ramine2017-09-261-3/+3
|
* Rename dom::bindings::js to dom::bindings::rootAnthony Ramine2017-09-261-1/+1
|
* order derivable traits listsClément DAVID2017-08-231-1/+1
| | | | | | Ignoring : - **generated**.rs - python/tidy/servo_tidy_tests/rust_tidy.rs
* make use of ScriptToConstellationChanPaul Rouget2017-08-151-6/+6
|
* Solving merge conficts related to the html5ever_atoms -> html5ever changeChristian Poveda2017-05-031-1/+1
|\
| * Upgrade to html5ever 0.16Simon Sapin2017-05-021-1/+1
| |
* | Changed all prefixes from DOMString to the atomic Prefix from html5everChristian Poveda2017-05-031-3/+3
|/
* Auto merge of #15822 - charlesvdv:unicode-panic, r=emiliobors-servo2017-04-161-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Correct unicode handling for text input <!-- Please describe your changes on the following line: --> Allow proprer handling of unicode sequence in text input. --- <!-- 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 #15819 <!-- 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="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/15822) <!-- Reviewable:end -->
| * Correct unicode handling for text inputCharles Vandevoorde2017-03-051-1/+1
| |
* | Implement the form owner conceptMukilan Thiyagarajan2017-03-151-2/+19
|/
* Make #[dom_struct] a proc_macro attributeAnthony Ramine2017-02-241-0/+1
|
* Position insertion point in input field with mouseFlorian Merz2017-01-111-0/+31
|
* Fire 'input' event after 'keypress' in input and textarea elementsRavi Shankar2016-12-271-12/+13
|
* Allow 'keypress' event to emerge from input and textarea elementsRavi Shankar2016-12-271-2/+2
|
* Remove HeapGCValueAnthony Ramine2016-12-121-3/+3
| | | | | | It could be used to have mutable JSVal fields without GC barriers. With the removal of that trait, MutHeap and MutNullableHeap can respectively be replaced by MutJS and MutNullableJS.
* Auto merge of #13969 - bbansalWolfPack:master, r=jdmbors-servo2016-11-251-1/+11
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | html form validation initial steps with test html file <!-- Please describe your changes on the following line: --> Added code for initial steps in html form validation. 1. Added methods for trait validatable 2. implemented stub methods for elements like HTMLInputElement, HTMLButtonElement, etc <!-- 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 - [ ] These changes fix #__ (github issue number if applicable). <!-- 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="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/13969) <!-- Reviewable:end -->
| * html form validation initial steps with test html file, added stub methods, ↵Bhavya Bansal2016-11-231-1/+11
| | | | | | | | added code to handle validations
* | Return `KeyReaction::Nothing` for a Tab eventJean-Marie Comets2016-11-121-13/+4
| | | | | | | | | | | | Hitting the tab key in an html text input shouldn't submit the form, and for any text input, the tab key should have a particular action associated, not the default action. This cleans up #12701.
* | Migrate `EventTarget` event firing functions to use `Atom`s.Corey Farwell2016-11-031-4/+4
| | | | | | | | This allows us to utilize more `atom` macros.
* | Remove "fire a simple event" concept, refactor event firing API.Corey Farwell2016-11-031-12/+4
| | | | | | | | | | "fire a simple event" concept was removed in https://github.com/whatwg/html/pull/1933.
* | Update to string-cache 0.3Simon Sapin2016-11-031-27/+28
|/
* Make make_enumerated_getter prettier again.Corey Farwell2016-10-121-9/+9
| | | | Fixes https://github.com/servo/servo/issues/4723.
* Remove intrinsic Root::r()Anthony Ramine2016-10-111-10/+10
|
* Introduce GlobalScope::resource_threadsAnthony Ramine2016-10-061-1/+1
|
* Introduce GlobalScope::constellation_chanAnthony Ramine2016-10-061-1/+2
|
* Implement minlength for text inputsTaryn Hill2016-09-211-2/+29
|
* Most of the code refactoring needed to be done is done with this commit.Arthur Marble2016-09-181-4/+4
|
* Refactored metaKey to meta_key where possibleArthur Marble2016-09-171-2/+2
|
* This commit refactors altKey to alt_key when possible.Arthur Marble2016-09-171-2/+2
|
* This commit refactors shiftKey to shift_key where possible.Arthur Marble2016-09-171-2/+2
|
* This commit refactors ctrlKey to ctrl_key wherever possible.Arthur Marble2016-09-171-2/+2
|
* Reorder `use` statementsUK9922016-09-091-5/+5
|
* Add cancellability to file manager load and related refactoringZhen Zhang2016-08-021-4/+4
|
* Add form submission for file type input and related fixingsZhen Zhang2016-08-021-7/+36
|
* Put Blob URL onlineZhen Zhang2016-07-151-15/+9
|
* Inline DOM element creation into box expressions in components/script/dom/Kuba Birecki2016-07-141-2/+3
|
* Auto merge of #12404 - ConnorGBrewster:task_source_cleanup, r=asajeffreybors-servo2016-07-131-2/+4
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Clean up task sources and make all tasks cancellable <!-- Please describe your changes on the following line: --> This makes it so each task is a thin wrapper over a runnable and whenever a task is queued, it is automatically wrapped by the window's `runnable_wrapper`. --- <!-- 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 #11703 (github issue number if applicable). <!-- 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="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/12404) <!-- Reviewable:end -->
| * Make all task source runnables cancellableConnor Brewster2016-07-131-2/+4
| | | | | | | | Implement all Runnable methods on CancellableRunnable to redirect to their inner runnable
* | Issue #12071: Don't submit forms when typing Tab on an input.Simon Martin2016-07-121-4/+13
|/
* Add ability to WPT-test file uploads and fetches, fixes #12322Zhen Zhang2016-07-091-59/+85
|
* Move util::str to styleAnthony Ramine2016-07-051-1/+1
|
* Auto merge of #11875 - izgzhen:file-manager-backend, r=Manishearthbors-servo2016-07-041-2/+3
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Integration and improvements of File API backends Basically three major changes: 1. More complete origin check in `FileManagerThreadMsg` 2. Add reference counting logic to file manage store and script API 3. Integrate the support of slicing 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 - [ ] These changes fix #__ (github issue number if applicable). <!-- 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/11875) <!-- Reviewable:end -->
| * Integration and improvements of File API backendsZhen Zhang2016-07-041-2/+3
| | | | | | | | | | | | 1. More complete origin check in FileManagerThreadMsg 2. Add reference counting logic to file manage store and script API 3. Integrate the support of slicing
* | Emit change event when files are selectedZhen Zhang2016-07-031-1/+19
|/
* Fix file-type input elementZhen Zhang2016-06-301-0/+14
|
* Implement filter for file-type input's accept attributeZhen Zhang2016-06-201-6/+19
|
* filepickerZhen Zhang2016-06-141-4/+13
|
* Stop re-exporting AttrValue.Ms2ger2016-06-071-1/+2
|
* Auto merge of #11572 - nox:placeholder-shown, r=SimonSapinbors-servo2016-06-061-7/+24
|\ | | | | | | | | | | | | | | Implement :placeholder-shown (fixes #10561) <!-- 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/11572) <!-- Reviewable:end -->
| * Implement :placeholder-shown (fixes #10561)Anthony Ramine2016-06-031-7/+24
| |