aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom
Commit message (Collapse)AuthorAgeFilesLines
* Document the main steps involved in adding a new DOM interface.Ms2ger2015-02-091-0/+14
|
* Use the try macro for the result of accept_node.Ms2ger2015-02-081-29/+23
|
* Remove incorrect SetterThrows annotation.Ms2ger2015-02-082-5/+3
| | | | This was copied from Gecko, which has an outdated throwing condition.
* Implement window.frameElement, change window.parent to make use of it.Glenn Watson2015-02-073-16/+28
|
* Implement an Unrooted smart pointer to replace JS when it is not traced.Ms2ger2015-02-0611-63/+137
|
* Implemented Location.assignKeith Yeung2015-02-062-1/+7
|
* auto merge of #4854 : jdm/servo/workererr, r=jdmbors-servo2015-02-052-3/+36
|\ | | | | | | | | | | ...rker object. Rebased from #4537.
| * Support firing error events from a dedicated worker at the containing worker ↵Shreya Bastikar2015-02-052-3/+36
| | | | | | | | object.
* | Add console message support to devtools. Does not actually cause logging to ↵Sagar Muchhal2015-02-051-5/+24
|/ | | | occur in the remote console.
* auto merge of #4845 : KiChjang/servo/location-in-doc, r=jdmbors-servo2015-02-052-5/+10
|\ | | | | | | Fixes #4840
| * Moved Location object from Window to DocumentKeith Yeung2015-02-062-5/+10
| |
* | auto merge of #4850 : Ms2ger/servo/root-deref, r=jdmbors-servo2015-02-057-60/+66
|\ \
| * | Remove the Root.jsref member.Ms2ger2015-02-051-7/+4
| | | | | | | | | | | | It is simpler to just construct it when the methods are called.
| * | Replace Root::deref by a custom get_unsound_ref_forever method.Ms2ger2015-02-057-54/+63
| |/ | | | | | | | | This will hopefully make it clearer that this is not the correct function to call.
* | Document the DOM.Ms2ger2015-02-053-0/+207
| | | | | | | | This is by no means complete, but it is a good place to start.
* | Fix a typo in the refcounted documentation.Ms2ger2015-02-051-1/+1
|/
* auto merge of #4838 : psdh/servo/local, r=jdmbors-servo2015-02-041-0/+9
|\ | | | | | | #4601
| * Parsing sandbox attribute on iframe elementsPrabhjyot Singh Sodhi2015-02-051-0/+9
| |
* | Implement window.parent for iframes.Glenn Watson2015-02-052-6/+14
| |
* | Add a spec link.Josh Matthews2015-02-041-0/+1
| |
* | Make XMLHttpRequest user-set headers be preserved across redirects.Josh Matthews2015-02-041-33/+29
| |
* | Reorganize document creation so it occurs after we have a final URL.Josh Matthews2015-02-041-2/+1
| |
* | Implement document.cookies.Josh Matthews2015-02-042-1/+37
| |
* | Make Document::url return the page's URL to avoid stale URLs after redirects.Josh Matthews2015-02-044-7/+8
| |
* | Set the Content-Type header when submitting a urlencoded form.Josh Matthews2015-02-041-2/+9
| |
* | Initialize trusted-ness of DOM events properlyGilles Leblanc2015-02-0310-31/+31
|/ | | | Fixes #3740
* auto merge of #4815 : Swatinem/servo/lowercasegetters, r=Manishearthbors-servo2015-02-031-7/+7
|\ | | | | | | | | | | The implementation was copied directly from https://github.com/rust-lang/rust/pull/16636 and updated for rust changes, so the credit goes to @Manishearth
| * Lowercase DOM getters at compile time, fixes #4728Arpad Borsos2015-02-031-7/+7
| | | | | | | | | | | | The implementation was copied directly from https://github.com/rust-lang/rust/pull/16636 and updated for rust changes, so the credit goes to @Manishearth
* | auto merge of #4820 : servo/servo/send-recv, r=Ms2gerbors-servo2015-02-039-19/+19
|\ \
| * | add `unwrap` to `send/recv` callsAlexandru Cojocaru2015-02-039-19/+19
| |/
* | auto merge of #4729 : ↵bors-servo2015-02-035-53/+179
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | yodalee/servo/issue4534-form-submission-for-button-elements, r=jdm Sorry for the late PR for the issue #4534. This issue is more complicated than I thought, I have to un-comment the Form-related attribute in Button element. In the beginning, I modify the files in `bindings` directory, and it's ... generated files. Hope I don't make something wrong.
| * | remove type match in is_instance_activatableyodalee2015-02-031-7/+3
| | |
| * | coding style in htmlinputelement, TODO in buttonyodalee2015-02-032-0/+4
| | | | | | | | | | | | | | | add comment, empty line in inputelement add button type TODO in buttonelement
| * | activation behavior for Button type Submityodalee2015-02-032-3/+34
| | |
| * | add Form related attribute to HTMLButtonElementyodalee2015-02-032-4/+21
| | | | | | | | | | | | add formAction, formEnctype, formMethod, formTarget
| * | implment activation of buttonelementyodalee2015-02-031-4/+61
| | | | | | | | | | | | ignore button type first
| * | implement formcontrol for htmlbuttonelementyodalee2015-02-031-0/+7
| | |
| * | formcontrol trait to element traityodalee2015-02-033-41/+42
| | | | | | | | | | | | | | | | | | mutable function and reset function in formcontrol move into trait of single element currently only TextArea element and Input element
| * | add button type into HTMLButtonElementyodalee2015-02-031-2/+15
| |/
* | auto merge of #4818 : Ms2ger/servo/tna-parser, r=jdmbors-servo2015-02-032-16/+6
|\ \
| * | Remove JS::from_trusted_node_address.Ms2ger2015-02-031-11/+0
| | |
| * | Use JS<Node> rather than TrustedNodeAddress in the HTML parser.Ms2ger2015-02-031-5/+6
| |/
* / Remove the to_js methods.Ms2ger2015-02-031-11/+0
|/ | | | They are unused.
* auto merge of #4793 : KiChjang/servo/xhr-cred-check, r=Manishearthbors-servo2015-02-022-2/+16
|\ | | | | | | Fixes #4665
| * Added error checking on XMLHttpRequest::setWithCredentialsKeith Yeung2015-02-022-2/+16
| |
* | Mark HTMLAreaElement and KeyboardEvent as DOM structs.Ms2ger2015-02-022-19/+4
| |
* | Create mod.rs files for the dom and dom::bindings modules.Ms2ger2015-02-012-0/+183
| | | | | | | | | | This gives us a better place to put DOM documentation, which I'd like to start adding.
* | auto merge of #4613 : saneyuki/servo/layoutjs, r=jdmbors-servo2015-01-3111-49/+125
|\ \ | | | | | | | | | #4571
| * | Add LayoutJS<T: Reflectable>.get_jsobject().Tetsuharu OHZEKI2015-02-011-9/+7
| | |
| * | Remove JS<From>.transmute<To>().Tetsuharu OHZEKI2015-02-011-6/+0
| | |