aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/clipboard_provider.rs
Commit message (Collapse)AuthorAgeFilesLines
* Remove not needed DummyClipboardContextMichal Mieczkowski2019-06-131-22/+0
|
* Forward to embedder message for setting/getting clipboard contents from ↵Michal Mieczkowski2019-06-131-2/+9
| | | | | | clipboard provider. Create clipboard context in browser.rs and handle new messages.
* Update MPL license to https (part 3)Jan Andre Ikenmeyer2018-11-191-1/+1
|
* Reorder importsPyfisch2018-11-061-1/+1
|
* `cargo fix --edition`Simon Sapin2018-11-061-1/+1
|
* make use of ScriptToConstellationChanPaul Rouget2017-08-151-6/+6
|
* Remove ConstellationChan.Ms2ger2016-05-191-5/+4
| | | | | | It's a pointless abstraction that propagates the obsolete chan terminology, swaps the order in which the sender and receiver are returned, and hides a source of panics.
* Remove unused imports in scriptKishor Bhat2016-01-171-1/+0
|
* Move ScriptMsg from msg crate into script_traitsTomas Cernaj2015-12-091-1/+1
|
* Auto merge of #8530 - KiChjang:split-constellation-msg, r=jdmbors-servo2015-11-191-2/+2
|\ | | | | | | | | | | | | | | | | | | Split ConstellationMsg into ScriptMsg and CompositorMsg Fixes #8356. <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/8530) <!-- Reviewable:end -->
| * Split ConstellationMsg into ScriptMsg and CompositorMsgKeith Yeung2015-11-161-2/+2
| |
* | Rustfmt some of script.Ms2ger2015-11-181-2/+2
|/
* Fix reported test-tidy errors for unmerged import blocksBrandon Fairchild2015-09-191-2/+1
| | | | This merges import blocks that were reported by tidy as unmerged.
* Add set_clipboard_context function and relevant plumbing. Use Option more ↵Avi Weinstock2015-07-291-5/+5
| | | | consistantly (less unwraps) in textinput's selection handling.
* compositing: Make the constellation messages serializable.Patrick Walton2015-07-181-1/+2
|
* Audit and reduce unstable usage in scriptManish Goregaokar2015-06-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Reasons behind existing unstable features: alloc: - `Rc.make_unique()` - `into_raw` / `from_raw` (naming). All over the bindings code. collections: - `Vec.push_all()` - `from_str` - can be replaced by `.to_owned()` - `from_raw_buf` - could be done directly core: - `nonzero` - `UnsafeCell` (`as_unsafe_cell`) - `Zeroable` - `Peekable.is_empty` std_misc: - Handle stuff
* Remove `get_` prefix on gettersCorey Farwell2015-06-021-3/+3
| | | | | | Part of #6224 I certainly didn't remove all of them; I avoided `unsafe` areas and also `components/script`
* Made the clipboard-related functionality in TextInput more testable. Added ↵Avi Weinstock2015-05-061-0/+48
test_clipboard_paste to the "test-unit" suite.