aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/virtualmethods.rs
Commit message (Collapse)AuthorAgeFilesLines
* Cargoify servoJack Moffitt2014-09-081-219/+0
|
* Pass an Atom to before_remove_attr and after_set_attr.Ms2ger2014-08-161-2/+4
|
* Implement support for 'enabled' property in HTMLLinkElementBruno de Oliveira Abinader2014-08-051-0/+7
|
* Implement support for 'enabled' property in HTMLAreaElementBruno de Oliveira Abinader2014-08-051-0/+7
|
* Implement support for 'disabled' property in HTMLTextAreaElementBruno de Oliveira Abinader2014-08-051-0/+7
|
* Implement support for 'disabled' property in HTMLSelectElementBruno de Oliveira Abinader2014-08-051-0/+7
|
* Implement support for 'disabled' property in HTMLOptionElementBruno de Oliveira Abinader2014-08-051-0/+7
|
* Implement support for 'disabled' property in HTMLOptGroupElementBruno de Oliveira Abinader2014-08-051-0/+7
|
* Implement support for 'disabled' property in HTMLInputElementBruno de Oliveira Abinader2014-08-051-0/+7
|
* Implement support for 'disabled' property in HTMLFieldSetElementBruno de Oliveira Abinader2014-08-051-0/+7
|
* Implement support for 'disabled' property in HTMLButtonElementBruno de Oliveira Abinader2014-08-051-4/+15
|
* Upgrade Rust.Jack Moffitt2014-08-021-12/+12
|
* Implement very basic canvas rendering context logic. No visual display present.Aalhad2014-07-251-2/+10
|
* Added 'parent is/was in tree' param to bind_to_tree/unbind_from_treeBruno de Oliveira Abinader2014-07-161-6/+8
| | | | | | | According to a talk with Ms2ger, both bind_to_tree / unbind_from_tree should be called regardless if the tree is part of a Document. This information is now passed as a parameter to their respective virtual methods.
* Upgrade to latest Rust.Manish Goregaokar2014-06-271-11/+11
|
* Implement support for parsed attributes.Ms2ger2014-06-131-0/+10
| | | | This commit is heavily based on earlier work by Bruno Abinader in #2073.
* Remove needless '&self mut' from VirtualMethods trait.Tetsuharu OHZEKI2014-06-071-30/+30
|
* Compile JS strings when setting inline event handlers via element attributes.Josh Matthews2014-05-271-1/+7
|
* Initial spec-incompliant implementation of default click action for anchor ↵Tetsuharu OHZEKI2014-05-231-1/+18
| | | | | | | | | | | | | elements. This is cherry-picked from https://github.com/mozilla/servo/pull/1688: * Initial spec-incompliant implementation of default click action for anchor elements. * Add documentation; gut the new document URL loading method and move it all into the new Window method. * Add test for default event prevention. Original developer: Josh Matthews <josh@joshmatthews.net>
* Address review comments.Josh Matthews2014-05-031-3/+3
|
* Fix up the virtual method unsoundness.Josh Matthews2014-05-031-14/+14
|
* Implement safe rooting strategy via Unrooted, Root, JSRef, and JS.Josh Matthews2014-05-031-15/+15
|
* Move child_inserted into VirtualMethods.Matt Brubeck2014-04-141-1/+15
| | | | Follow-up from #1984.
* Add overridable tree binding/unbinding behaviour.Josh Matthews2014-04-101-0/+16
|
* Add support for trait-based virtual methods on Nodes, and use it for ↵Josh Matthews2014-04-101-0/+77
before_remove_attr and after_set_attr.