aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/activation.rs
Commit message (Collapse)AuthorAgeFilesLines
* Initialize trusted-ness of DOM events properlyGilles Leblanc2015-02-031-3/+2
| | | | Fixes #3740
* Specific instances of activatable elements may not be activatable (fixes #4765Manish Goregaokar2015-01-311-0/+3
|
* Move to to_owned rather than into_string.Ms2ger2015-01-201-1/+2
| | | | into_string has been removed from Rust.
* Replace Root::deref() calls by Root::r() calls where possible.Ms2ger2015-01-011-7/+8
| | | | This changes those calls that were already sound.
* script: to_string() -> into_string()Manish Goregaokar2014-12-271-1/+1
|
* Add auxiliary method to EventTargetHelpers for events without targetthiagopnts2014-12-161-1/+1
| | | | fixup! Add auxiliary method to EventTargetHelpers for events without target
* Implement implicit form submissionManish Goregaokar2014-12-051-0/+3
|
* Some reorganization of activation code:Manish Goregaokar2014-12-051-2/+3
| | | | | - Make method name apply to trait implementor better (When a user agent is to run post-click activation steps on an element, it must run the activation behavior defined for that element) - Mention invariants and conditions on authentic_click_activation
* Implement basic (unhooked) framework for element activationManish Goregaokar2014-12-051-20/+54
|
* Add stub Activatable traitManish Goregaokar2014-12-051-0/+27