aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/htmliframeelement.rs
Commit message (Collapse)AuthorAgeFilesLines
* Replace all ~"" with "".to_owned().Ms2ger2014-05-031-11/+11
|
* Address review comments.Josh Matthews2014-05-031-5/+5
|
* Address review comments.Josh Matthews2014-05-031-3/+3
|
* s/Unrooted/Temporary/gJosh Matthews2014-05-031-8/+8
|
* Move all methods on T to JSRef<T> or JS<T> as appropriate.Josh Matthews2014-05-031-3/+8
|
* Remove abstract_self.Josh Matthews2014-05-031-6/+6
|
* Move WebIDL methods to traits implemented by JSRef types.Josh Matthews2014-05-031-30/+62
|
* Implement safe rooting strategy via Unrooted, Root, JSRef, and JS.Josh Matthews2014-05-031-10/+10
|
* Turn on GC all the time. Fix rooting errors during parsing and storing ↵Josh Matthews2014-05-031-7/+7
| | | | timers. Fix borrow errors during tracing.
* Remove the 'pub use self::BindingDeclarations::*;' export.Tetsuharu OHZEKI2014-05-011-1/+1
|
* This batch of changes upgrades Servo to work with the Rust upgrade as ofLars Bergstrom2014-04-271-5/+5
| | | | | | 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.
* Remove all traces of WindowProxy. Implement basic browser context concept ↵Josh Matthews2014-04-221-2/+2
| | | | and outerizing of inner windows.
* Add transparent Traceable and Untraceable types to aid proper rooting ↵Josh Matthews2014-04-171-16/+5
| | | | practices, and replace ad-hoc Untraceable structs with empty Encodable implementations.
* Add support for trait-based virtual methods on Nodes, and use it for ↵Josh Matthews2014-04-101-7/+21
| | | | before_remove_attr and after_set_attr.
* Upgrade rust.Ms2ger2014-04-041-1/+1
|
* Move attributes-related functions onto JS<Element>.Ms2ger2014-03-201-33/+38
|
* Rust upgradesLars Bergstrom2014-03-181-1/+1
|
* Don't use the Untraceable fields outside the module they're defined in.Ms2ger2014-03-121-1/+5
| | | | This pattern will become illegal with the next Rust upgrade.
* auto merge of #1781 : hgentry/servo/mozilla-servo, r=metajackbors-servo2014-02-281-3/+3
|\ | | | | | | | | Simple change. I hope I'm using github correctly; I'm not too familiar with the PR system. Fixes #1777.
| * Renamed HTMLIframeElementTypeId to HTMLIFrameElementTypeIdhgentry2014-02-271-3/+3
| |
* | Move Error, Fallible, ErrorResult out of utils.rs (fixes #1749)Saurabh Anand2014-02-281-1/+1
|/
* Call after_remove_attr before removing the attribute, and rename it ↵Ms2ger2014-02-261-1/+1
| | | | before_remove_attr.
* Implement JSManaged for DOM objects.Josh Matthews2014-02-241-14/+41
|
* Move DOMString into servo_util.Ms2ger2014-02-141-1/+2
|
* Use DOMString more consistently.Ms2ger2014-02-131-2/+2
|
* Implement Element.removeAttribute()/removeAttributeNS().Tetsuharu OHZEKI2014-01-131-0/+6
|
* Upgrade to latest Rust.Jack Moffitt2014-01-121-1/+1
|
* Use string reflection methods for HTMLIFrameElement.sandbox.Ms2ger2014-01-011-5/+3
|
* script: Eliminate the phantom type in favor of just whitelisting methodsPatrick Walton2013-12-171-4/+4
| | | | | | | that layout can safely call. This is simpler. Currently, the set of methods is not safe, but I plan to lock it down more soon.
* auto merge of #1388 : hyunjunekim/servo/cssissues, r=kmcallisterbors-servo2013-12-131-1/+3
|\ | | | | | | | | | | Fixed this issue ( https://github.com/mozilla/rust/issues/10683 )
| * add FIX commentsHyunJune Kim2013-12-121-0/+1
| |
| * Fixed this issue (https://github.com/mozilla/rust/issues/10683)HyunJune Kim2013-12-121-1/+2
| |
* | layout: Stop going to the DOM for iframe sizesPatrick Walton2013-12-131-10/+2
| |
* | constellation: Stop using futures for frame sizes.Patrick Walton2013-12-131-12/+2
|/ | | | | | This will allow us to stop going to the DOM in order to handle iframe sizing. Instead we can just store the pipeline and frame IDs of iframes inside the flow tree itself.
* Stop passing DOMStrings via borrowed pointer. (#1201)Tetsuharu OHZEKI2013-11-141-16/+16
|
* Don't pass nullable strings to native DOM methods that want non-nullable ↵Ms2ger2013-11-121-43/+44
| | | | strings. Fixes #1207.
* Make DOMString represent a non-nullable string.Ms2ger2013-11-121-25/+25
|
* Rename HTMLElement::new to HTMLElement::new_inherited.Ms2ger2013-11-021-1/+1
|
* Introduce HTMLIFrameElement::new.Ms2ger2013-10-311-1/+19
|
* Update to latest Rust.Jack Moffitt2013-10-211-1/+1
|
* Rename the element field of the DOM Node hierarchyLuis de Bethencourt2013-09-191-3/+3
| | | | | | Renamed htmlelement, and element Fixes #924
* bindings: Return errors in Result rather than setting an out parameterKeegan McAllister2013-09-181-14/+25
| | | | Fixes #909.
* Make DOMString an alias for Option<~str>Keegan McAllister2013-09-181-16/+16
| | | | Fixes #898.
* Make Element.set_attr require an AbstractNode so we can always downcast.Josh Matthews2013-09-121-3/+4
|
* Make sandboxed iframes run with different script tasks.Josh Matthews2013-09-111-5/+44
|
* Implement epochs; fix integration bugseschweic2013-08-191-1/+1
|
* add iframe supportTim Kuehn2013-08-191-4/+6
|
* refactor iframe element fields to support sending size to the constellationTim Kuehn2013-08-191-3/+21
|
* Library changesKeegan McAllister2013-08-151-1/+1
|
* Generate HTMLIFrameElement bindings.Josh Matthews2013-08-081-0/+126