Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Document the main steps involved in adding a new DOM interface. | Ms2ger | 2015-02-09 | 1 | -0/+14 |
| | |||||
* | Use the try macro for the result of accept_node. | Ms2ger | 2015-02-08 | 1 | -29/+23 |
| | |||||
* | Remove incorrect SetterThrows annotation. | Ms2ger | 2015-02-08 | 2 | -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 Watson | 2015-02-07 | 3 | -16/+28 |
| | |||||
* | Implement an Unrooted smart pointer to replace JS when it is not traced. | Ms2ger | 2015-02-06 | 11 | -63/+137 |
| | |||||
* | Implemented Location.assign | Keith Yeung | 2015-02-06 | 2 | -1/+7 |
| | |||||
* | auto merge of #4854 : jdm/servo/workererr, r=jdm | bors-servo | 2015-02-05 | 2 | -3/+36 |
|\ | | | | | | | | | | | ...rker object. Rebased from #4537. | ||||
| * | Support firing error events from a dedicated worker at the containing worker ↵ | Shreya Bastikar | 2015-02-05 | 2 | -3/+36 |
| | | | | | | | | object. | ||||
* | | Add console message support to devtools. Does not actually cause logging to ↵ | Sagar Muchhal | 2015-02-05 | 1 | -5/+24 |
|/ | | | | occur in the remote console. | ||||
* | auto merge of #4845 : KiChjang/servo/location-in-doc, r=jdm | bors-servo | 2015-02-05 | 2 | -5/+10 |
|\ | | | | | | | Fixes #4840 | ||||
| * | Moved Location object from Window to Document | Keith Yeung | 2015-02-06 | 2 | -5/+10 |
| | | |||||
* | | auto merge of #4850 : Ms2ger/servo/root-deref, r=jdm | bors-servo | 2015-02-05 | 7 | -60/+66 |
|\ \ | |||||
| * | | Remove the Root.jsref member. | Ms2ger | 2015-02-05 | 1 | -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. | Ms2ger | 2015-02-05 | 7 | -54/+63 |
| |/ | | | | | | | | | This will hopefully make it clearer that this is not the correct function to call. | ||||
* | | Document the DOM. | Ms2ger | 2015-02-05 | 3 | -0/+207 |
| | | | | | | | | This is by no means complete, but it is a good place to start. | ||||
* | | Fix a typo in the refcounted documentation. | Ms2ger | 2015-02-05 | 1 | -1/+1 |
|/ | |||||
* | auto merge of #4838 : psdh/servo/local, r=jdm | bors-servo | 2015-02-04 | 1 | -0/+9 |
|\ | | | | | | | #4601 | ||||
| * | Parsing sandbox attribute on iframe elements | Prabhjyot Singh Sodhi | 2015-02-05 | 1 | -0/+9 |
| | | |||||
* | | Implement window.parent for iframes. | Glenn Watson | 2015-02-05 | 2 | -6/+14 |
| | | |||||
* | | Add a spec link. | Josh Matthews | 2015-02-04 | 1 | -0/+1 |
| | | |||||
* | | Make XMLHttpRequest user-set headers be preserved across redirects. | Josh Matthews | 2015-02-04 | 1 | -33/+29 |
| | | |||||
* | | Reorganize document creation so it occurs after we have a final URL. | Josh Matthews | 2015-02-04 | 1 | -2/+1 |
| | | |||||
* | | Implement document.cookies. | Josh Matthews | 2015-02-04 | 2 | -1/+37 |
| | | |||||
* | | Make Document::url return the page's URL to avoid stale URLs after redirects. | Josh Matthews | 2015-02-04 | 4 | -7/+8 |
| | | |||||
* | | Set the Content-Type header when submitting a urlencoded form. | Josh Matthews | 2015-02-04 | 1 | -2/+9 |
| | | |||||
* | | Initialize trusted-ness of DOM events properly | Gilles Leblanc | 2015-02-03 | 10 | -31/+31 |
|/ | | | | Fixes #3740 | ||||
* | auto merge of #4815 : Swatinem/servo/lowercasegetters, r=Manishearth | bors-servo | 2015-02-03 | 1 | -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 #4728 | Arpad Borsos | 2015-02-03 | 1 | -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=Ms2ger | bors-servo | 2015-02-03 | 9 | -19/+19 |
|\ \ | |||||
| * | | add `unwrap` to `send/recv` calls | Alexandru Cojocaru | 2015-02-03 | 9 | -19/+19 |
| |/ | |||||
* | | auto merge of #4729 : ↵ | bors-servo | 2015-02-03 | 5 | -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_activatable | yodalee | 2015-02-03 | 1 | -7/+3 |
| | | | |||||
| * | | coding style in htmlinputelement, TODO in button | yodalee | 2015-02-03 | 2 | -0/+4 |
| | | | | | | | | | | | | | | | add comment, empty line in inputelement add button type TODO in buttonelement | ||||
| * | | activation behavior for Button type Submit | yodalee | 2015-02-03 | 2 | -3/+34 |
| | | | |||||
| * | | add Form related attribute to HTMLButtonElement | yodalee | 2015-02-03 | 2 | -4/+21 |
| | | | | | | | | | | | | add formAction, formEnctype, formMethod, formTarget | ||||
| * | | implment activation of buttonelement | yodalee | 2015-02-03 | 1 | -4/+61 |
| | | | | | | | | | | | | ignore button type first | ||||
| * | | implement formcontrol for htmlbuttonelement | yodalee | 2015-02-03 | 1 | -0/+7 |
| | | | |||||
| * | | formcontrol trait to element trait | yodalee | 2015-02-03 | 3 | -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 HTMLButtonElement | yodalee | 2015-02-03 | 1 | -2/+15 |
| |/ | |||||
* | | auto merge of #4818 : Ms2ger/servo/tna-parser, r=jdm | bors-servo | 2015-02-03 | 2 | -16/+6 |
|\ \ | |||||
| * | | Remove JS::from_trusted_node_address. | Ms2ger | 2015-02-03 | 1 | -11/+0 |
| | | | |||||
| * | | Use JS<Node> rather than TrustedNodeAddress in the HTML parser. | Ms2ger | 2015-02-03 | 1 | -5/+6 |
| |/ | |||||
* / | Remove the to_js methods. | Ms2ger | 2015-02-03 | 1 | -11/+0 |
|/ | | | | They are unused. | ||||
* | auto merge of #4793 : KiChjang/servo/xhr-cred-check, r=Manishearth | bors-servo | 2015-02-02 | 2 | -2/+16 |
|\ | | | | | | | Fixes #4665 | ||||
| * | Added error checking on XMLHttpRequest::setWithCredentials | Keith Yeung | 2015-02-02 | 2 | -2/+16 |
| | | |||||
* | | Mark HTMLAreaElement and KeyboardEvent as DOM structs. | Ms2ger | 2015-02-02 | 2 | -19/+4 |
| | | |||||
* | | Create mod.rs files for the dom and dom::bindings modules. | Ms2ger | 2015-02-01 | 2 | -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=jdm | bors-servo | 2015-01-31 | 11 | -49/+125 |
|\ \ | | | | | | | | | | #4571 | ||||
| * | | Add LayoutJS<T: Reflectable>.get_jsobject(). | Tetsuharu OHZEKI | 2015-02-01 | 1 | -9/+7 |
| | | | |||||
| * | | Remove JS<From>.transmute<To>(). | Tetsuharu OHZEKI | 2015-02-01 | 1 | -6/+0 |
| | | |