aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/textinput.rs
Commit message (Expand)AuthorAgeFilesLines
* Adds support for input element's maxlength attrSam Gibson2015-12-031-5/+47
* Added in-place mutation to DOMString.Alan Jeffrey2015-11-121-1/+3
* Replaced DOMString constructor by conversion functions.Alan Jeffrey2015-11-121-5/+5
* Make DOMString a newtype around String, rather than a typedef.Ms2ger2015-11-041-7/+7
* Use DOMString::new() somewhat consistently.Ms2ger2015-11-041-1/+1
* display input caret for textarea. fixes #7758Florian Merz2015-10-211-0/+10
* sorted the extern crate, mod & use declarationsRavi Shankar2015-09-241-3/+2
* Fix reported test-tidy errors for unmerged import blocksBrandon Fairchild2015-09-191-3/+2
* script: Ask layout to redraw the selection whenever the user moves thePatrick Walton2015-09-171-9/+10
* Fix reported test-tidy errorsBrandon Fairchild2015-09-011-1/+1
* make test-tidy check that = have space after themerneyja2015-09-011-2/+2
* Refactor script::textinput to count UTF-8 bytes rather than code points.Simon Sapin2015-08-281-26/+64
* Remove helper traitsAnthony Ramine2015-08-271-1/+1
* sort all usesJohann Tuffe2015-08-201-1/+1
* Cleanup textinput, timersManish Goregaokar2015-08-181-3/+4
* Measure heap memory usage for more types. Fixes #6951Bogdan Cuza2015-08-131-2/+4
* Use local slice_charsJack Moffitt2015-07-311-6/+6
* Update rust-clipboard to the version with working set_contents.Avi Weinstock2015-07-291-1/+0
* Add set_clipboard_context function and relevant plumbing. Use Option more con...Avi Weinstock2015-07-291-42/+68
* Refactor #[jstraceable] to #[derive(JSTraceable)]David Winslow2015-07-011-3/+2
* Upgrade to SM 39Michael Wu2015-06-191-2/+1
* Remove some unnecessary allocations in text input handling.Avi Weinstock2015-06-111-10/+6
* Remove `get_` prefix on gettersCorey Farwell2015-06-021-1/+1
* Change the dispatch in TextInput::handle_keydown_aux match on enum values ins...Avi Weinstock2015-05-061-19/+36
* Made the clipboard-related functionality in TextInput more testable. Added te...Avi Weinstock2015-05-061-38/+32
* Upgrade to rustc 551a74dddd84cf01440ee84148ebd18bc68bd7c8.Simon Sapin2015-05-051-2/+1
* Implement Clone for Copy types.Ms2ger2015-04-281-2/+2
* Remove as_slice() calls from script.Ms2ger2015-04-261-2/+2
* Make the channel argument to TextInput::new be optional, to support the signa...Avi Weinstock2015-04-211-5/+10
* Moved clipboard integration from textinput to constellation, to facilitate sa...Avi Weinstock2015-04-211-9/+9
* Implement X11 clipboard integration (Issue #5376).Avi Weinstock2015-04-211-1/+22
* Move script crate unit tests into the unit_tests crate.Simon Sapin2015-04-081-172/+16
* Stop using int/uint in script.Ms2ger2015-04-031-3/+3
* Remove some unnecessary uses of `as_slice`Corey Farwell2015-03-291-18/+18
* Use platform-sized integers for textinput.rsJosh Matthews2015-02-201-12/+12
* Fix some warnings in script.Ms2ger2015-02-121-2/+2
* Import the util crate as util rather than servo_util.Ms2ger2015-01-291-1/+1
* Update rustc to 00b112c45a604fa6f4b59af2a40c9deeadfdb7c6/rustc-1.0.0-dev.Josh Matthews2015-01-281-4/+4
* Use chars().count() rather than char_len().Ms2ger2015-01-221-4/+4
* Move to to_owned rather than into_string.Ms2ger2015-01-201-21/+22
* Fix TextInput's edit point after set_contentPeter Reid2015-01-171-9/+2
* added unit tests for TextInput - fixes #4352donaldpipowitch2015-01-161-3/+165
* Fixes #4573 Replaces the boolean argument of TextInput::adjust[horizontal|ver...Matt McCoy2015-01-081-11/+24
* Update rustc to revision 2cfb5acb5a2751c759627377e602bac4f88f2d19.Ms2ger2015-01-081-0/+1
* script: to_string() -> into_string()Manish Goregaokar2014-12-271-5/+5
* Allow selection of all text in a text control using the ctrl-a/cmd-a shortcut.James Moughan2014-12-241-0/+28
* On left/right keydown place edit_point correctly when there is a selection in...Emanuel Rylke2014-12-211-5/+15
* Update rustc to revision 3dcd2157403163789aaf21a9ab3c4d30a7c6494d.Ms2ger2014-12-171-20/+25
* Fix crash in textinputMatthew Rasmus2014-12-161-1/+7
* some fixes for multiple-mode textinputRohan Prinja2014-12-111-23/+29