aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/htmltablecellelement.rs
Commit message (Collapse)AuthorAgeFilesLines
* Cargoify servoJack Moffitt2014-09-081-42/+0
|
* Call the generated rather than the hand-written traits (fixes #2936).Ms2ger2014-07-271-3/+0
|
* Remove generate_cacheable_wrapper_htmlelement!Tetsuharu OHZEKI2014-06-281-0/+7
|
* Remove not-yet-implemented members from IDL and Rust code.Ms2ger2014-06-011-153/+0
| | | | | | | | These stub implementations bring no value, and significantly increased maintenance costs. This commit also synchronizes the IDL with the HTML specification and makes the URLs consistent.
* Replace all ~"" with "".to_owned().Ms2ger2014-05-031-11/+11
|
* Address review comments.Josh Matthews2014-05-031-2/+0
|
* Address review comments.Josh Matthews2014-05-031-2/+2
|
* Move WebIDL methods to traits implemented by JSRef types.Josh Matthews2014-05-031-32/+66
|
* This batch of changes upgrades Servo to work with the Rust upgrade as ofLars Bergstrom2014-04-271-1/+1
| | | | | | 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.
* 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-1/+1
|
* Stop passing DOMStrings via borrowed pointer. (#1201)Tetsuharu OHZEKI2013-11-141-11/+11
|
* Don't pass nullable strings to native DOM methods that want non-nullable ↵Ms2ger2013-11-121-33/+33
| | | | strings. Fixes #1207.
* Make DOMString represent a non-nullable string.Ms2ger2013-11-121-22/+22
|
* Rename HTMLElement::new to HTMLElement::new_inherited.Ms2ger2013-11-021-1/+1
|
* Introduce HTMLTable{Data,Header}CellElement::new.Ms2ger2013-10-311-1/+1
|
* Rename the element field of the DOM Node hierarchy.Tetsuharu OHZEKI2013-10-161-0/+1
| | | | See #924
* Implement HTMLTableDataCellElement & HTMLTableHeaderCellElement.Tetsuharu OHZEKI2013-10-151-0/+10
|
* Rename the element field of the DOM Node hierarchyLuis de Bethencourt2013-09-191-1/+1
| | | | | | Renamed htmlelement, and element Fixes #924
* bindings: Return errors in Result rather than setting an out parameterKeegan McAllister2013-09-181-15/+30
| | | | Fixes #909.
* Make DOMString an alias for Option<~str>Keegan McAllister2013-09-181-12/+12
| | | | Fixes #898.
* Generate bindings for HTMLTableCellElement.Tetsuharu OHZEKI2013-08-241-0/+117