aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/characterdata.rs
Commit message (Collapse)AuthorAgeFilesLines
* Cargoify servoJack Moffitt2014-09-081-106/+0
|
* Call the generated rather than the hand-written traits (fixes #2936).Ms2ger2014-07-271-12/+1
|
* Remove some into_owned calls.Ms2ger2014-06-281-1/+1
|
* Use Traceable for primitive types and DOMStringManish Goregaokar2014-06-161-3/+3
|
* Remove Reflectable::mut_reflector.Ms2ger2014-06-131-4/+0
|
* Use internal mutability for CharacterData::data.Ms2ger2014-06-111-22/+25
|
* Upgrade Rust.Jack Moffitt2014-06-051-6/+6
|
* Remove needless 'self' mutability from CharacterDataMethods::Remove().Tetsuharu OHZEKI2014-06-031-3/+3
|
* Update Rust.Ms2ger2014-05-221-3/+3
|
* Implement ChildNode.remove()Harry Maclean2014-05-051-2/+9
|
* Replace all ~"" with "".to_owned().Ms2ger2014-05-031-1/+1
|
* Address review comments.Josh Matthews2014-05-031-2/+2
|
* Move WebIDL methods to traits implemented by JSRef types.Josh Matthews2014-05-031-9/+22
|
* This batch of changes upgrades Servo to work with the Rust upgrade as ofLars Bergstrom2014-04-271-2/+2
| | | | | | April 10, 2014. The main changes are to privacy, to work around the issues with incorrect bounds on the libstd `Arc<Mutex<T>>`, and the various API changes strewn throughout the libraries.
* Implement CharacterData.{deleteData, insertData, replaceData}lpy2014-04-211-1/+27
|
* Remove not-yet-implemented methods from CharacterData.Ms2ger2014-04-191-12/+0
| | | | | This speeds up a web-platform-tests run by about 45 seconds (of 11-12 minutes) by avoiding three timeouts.
* Remove trailing whitespace.Ms2ger2014-04-071-1/+1
|
* Move Error, Fallible, ErrorResult out of utils.rs (fixes #1749)Saurabh Anand2014-02-281-1/+1
|
* Implement JSManaged for DOM objects.Josh Matthews2014-02-241-3/+18
|
* Move DOMString into servo_util.Ms2ger2014-02-141-1/+2
|
* Use DOMString more consistently.Ms2ger2014-02-131-2/+2
|
* script: Eliminate the phantom type in `Node`, as it is no longer neededPatrick Walton2013-12-171-2/+2
| | | | for enforcing layout memory safety.
* Rename some 'new' functions to 'new_inherited'.Ms2ger2013-12-121-2/+2
|
* Stop passing DOMStrings via borrowed pointer. (#1201)Tetsuharu OHZEKI2013-11-141-6/+6
|
* Don't pass nullable strings to native DOM methods that want non-nullable ↵Ms2ger2013-11-121-10/+10
| | | | strings. Fixes #1207.
* Make DOMString represent a non-nullable string.Ms2ger2013-11-121-6/+6
|
* Remove Reflectable::GetParentObject.Ms2ger2013-11-061-6/+0
|
* Remove Reflectable::wrap_object_shared.Ms2ger2013-11-061-5/+2
|
* Merge BindingObject and Reflectable.Ms2ger2013-10-181-0/+4
|
* Auto-generate some binding codes for HTMLElement, Element, CharacterData.Tetsuharu OHZEKI2013-10-161-7/+1
|
* Introduce mutable/immutable variants of reflector() with named lifetimes, ↵Bobby Holley2013-10-101-1/+5
| | | | and kill unsafe casts.
* Issue #888 - Node's owner document should never be None.Ms2ger2013-10-101-2/+3
|
* Rename get_wrappercache() to reflector(). v1Bobby Holley2013-10-091-2/+2
| | | | I also updated some variable names in the codegen.
* Rename WrapperCache to Reflector.Bobby Holley2013-10-091-2/+2
| | | | | I think the abstraction from the raw JSObject is still probably worthwhile for now.
* Rename CacheableWrapper to Reflectable.Bobby Holley2013-10-091-3/+3
|
* Rename the node field of the DOM node hierarchyLuis de Bethencourt2013-09-191-4/+4
| | | | | | Renamed the Node elements Fixes #924
* Rename the element field of the DOM Node hierarchyLuis de Bethencourt2013-09-191-4/+4
| | | | | | Renamed htmlelement, and element Fixes #924
* bindings: Return errors in Result rather than setting an out parameterKeegan McAllister2013-09-181-8/+10
| | | | Fixes #909.
* Make DOMString an alias for Option<~str>Keegan McAllister2013-09-181-5/+5
| | | | Fixes #898.
* Make CharacterData store a ~str rather than a DOMString, because its data ↵Ms2ger2013-09-061-15/+8
| | | | can never be null.
* Trait changes, and eliminate 'copy'Keegan McAllister2013-08-151-1/+1
|
* Generate bindings for Node, CharacterData, Text, Element, and HTMLElement. ↵Josh Matthews2013-08-051-9/+26
| | | | Hook up text nodes to use the new bindings.
* forward/back navigation with shift+backspace and backspaceTim Kuehn2013-07-021-2/+0
| | | | | | script caches last loaded url -- currently no caching policy naive caching of render layers for near-instant forward/back handling evicted pipelines is currently broken
* Update for language changesBrian Anderson2013-06-261-2/+2
|
* Separate the DOM and layout into separate crates.Patrick Walton2013-05-281-0/+64