aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Rename squirrel_away_unboxed to squirrel_away_unique.(fixes #1938)lpy2014-03-202-5/+5
|
* auto merge of #1941 : larsbergstrom/servo/clean_rlib, r=metajackbors-servo2014-03-1924-7/+7
|\ | | | | | | | | | | | | Three things changed with the `make clean` process: - Remove the *.rlib files associated with the Servo crates - Remove the libservo-*.a file, which we will (Very Soon Now) generate now on Android instead of a .so - Update all the submodules, which have corresponding *.rlib file cleanup changes
| * Clean files associated with static linkingLars Bergstrom2014-03-1924-7/+7
| |
* | auto merge of #1915 : Ms2ger/servo/wrap-return-js, r=jdmbors-servo2014-03-196-43/+30
|\ \ | | | | | | | | | | | | | | | This lets us avoid the sketchy tricks in JS::new and Window::new, where we kept an unsafe pointer to the native object across the Wrap call that consumed the owned pointer.
| * | Return a JS<T> from *Binding::Wrap rather than a JSObject.Ms2ger2014-03-146-43/+30
| | | | | | | | | | | | | | | | | | This lets us avoid the sketchy tricks in JS::new and Window::new, where we kept an unsafe pointer to the native object across the Wrap call that consumed the owned pointer.
* | | auto merge of #1910 : Ms2ger/servo/dead-arg-CGAbstractMethod, r=jdmbors-servo2014-03-191-5/+5
|\ \ \
| * | | Remove a dead argument from CGAbstractMethod methods.Ms2ger2014-03-131-5/+5
| |/ /
* | | auto merge of #1855 : lpy/servo/issue1842, r=jdmbors-servo2014-03-193-7/+27
|\ \ \ | | | | | | | | | | | | | | | | see #1842 When I tried to use like `datalist.options[0].value`, it returned nothing. So is it implemented?
| * | | implement HTMLDataListElement.optionslpy2014-03-123-7/+27
| | | |
* | | | auto merge of #1865 : lpy/servo/issue1843, r=jdmbors-servo2014-03-193-9/+55
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | see #1843
| * | | | Implement HTMLFieldSetElement.elements.(fixes #1843)lpy2014-03-173-9/+55
| | | | |
* | | | | auto merge of #1925 : saneyuki/servo/1874, r=jdmbors-servo2014-03-192-8/+21
|\ \ \ \ \ | |_|_|_|/ |/| | | | | | | | | Fix #1874
| * | | | Don't call bind_to_tree when appending a node to another node that isn't in ↵Tetsuharu OHZEKI2014-03-152-8/+21
| | | | | | | | | | | | | | | | | | | | the tree (fixes #1874).
| * | | | Update mozjs.Ms2ger2014-03-151-0/+0
| | | | |
| * | | | Moved compareDocumentPosition content test to proper directoryBruno de Oliveira Abinader2014-03-151-0/+0
| | | | |
* | | | | auto merge of #1934 : larsbergstrom/servo/rust_20140224_squashed, r=jdmbors-servo2014-03-19148-1197/+1375
|\ \ \ \ \ | |_|/ / / |/| | | | | | | | | | | | | | | | | | | For review only - don't approve yet (need to squash and land submodule updates first). critic? @metajack
| * | | | Rust upgrade for new master rebaseLars Bergstrom2014-03-1839-154/+104
| | | | |
| * | | | Check properly for None in the headless compositor caseLars Bergstrom2014-03-181-2/+4
| | | | |
| * | | | Make tests pass once more.Josh Matthews2014-03-182-2/+5
| | | | |
| * | | | Rust upgradesLars Bergstrom2014-03-183-0/+0
| | | | |
| * | | | Rust upgrade for androidLars Bergstrom2014-03-189-12/+12
| | | | |
| * | | | Update submodules for warning police.Josh Matthews2014-03-1810-0/+0
| | | | |
| * | | | Warning police.Josh Matthews2014-03-1844-160/+146
| | | | |
| * | | | Remove all traces of Box representation from bindings. Work around file read ↵Josh Matthews2014-03-188-44/+30
| | | | | | | | | | | | | | | | | | | | runtime problem.
| * | | | Rust upgradesLars Bergstrom2014-03-18130-957/+1208
|/ / / /
* | | | auto merge of #1929 : saneyuki/servo/const, r=Ms2gerbors-servo2014-03-164-46/+54
|\ \ \ \ | | | | | | | | | | | | | | | We can use `TConstants` instead of by #1914 fixed.
| * | | | Use 'TConstants' instead of magic numbers.Tetsuharu OHZEKI2014-03-162-24/+26
| | | | |
| * | | | Use 'NodeConstants' instead of magic numbers.Tetsuharu OHZEKI2014-03-161-21/+27
| | | | |
| * | | | Expose named constants in bindings.Tetsuharu OHZEKI2014-03-161-1/+1
|/ / / /
* | | | auto merge of #1914 : evilpie/servo/constants, r=Ms2gerbors-servo2014-03-151-0/+32
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Generated code looks like this: ```rust pub mod UIEventConstants { static SCROLL_PAGE_UP: i32 = -32768; static SCROLL_PAGE_DOWN: i32 = 32768; } // mod UIEventConstants ```
| * | | | Implement named constants in bindingsTom Schuster2014-03-141-0/+32
| | |_|/ | |/| |
* | | | auto merge of #1894 : khodzha/servo/node_normalize, r=Ms2gerbors-servo2014-03-153-2/+58
|\ \ \ \ | | | | | | | | | | | | | | | To resolve issue #1823 (without DOM Range updates)
| * | | | implemented Node.normalize()Shamir Khodzha2014-03-143-2/+58
| | |_|/ | |/| |
* | | | auto merge of #1907 : brunoabinader/servo/element-classname, r=Ms2gerbors-servo2014-03-156-14/+50
|\ \ \ \ | | | | | | | | | | | | | | | Removes stub implementation from HTMLElement & implements logic in Element WebIDL.
| * | | | Implement Element.classNameBruno de Oliveira Abinader2014-03-136-14/+50
| | | | |
* | | | | auto merge of #1921 : Ms2ger/servo/inhibit, r=jdmbors-servo2014-03-141-0/+0
|\ \ \ \ \
| * | | | | Update mozjs.Ms2ger2014-03-141-0/+0
|/ / / / /
* | | | | auto merge of #1918 : brunoabinader/servo/comparedocumentposition, r=Ms2gerbors-servo2014-03-141-0/+0
|\ \ \ \ \ | |_|_|_|/ |/| | | | | | | | | TSIA.
| * | | | Moved compareDocumentPosition content test to proper directoryBruno de Oliveira Abinader2014-03-141-0/+0
| | |_|/ | |/| |
* | | | auto merge of #1905 : pcwalton/servo/acid2-fixes, r=SimonSapinbors-servo2014-03-146-7/+64
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | There were two problems here: (1) we did not process style sheets with an unexpected `rel` attribute but a correct MIME type; (2) we did not consider `none` a valid value for the `background` property. r? @SimonSapin
| * | | script: Fix background color of Acid2.Patrick Walton2014-03-136-7/+64
| |/ / | | | | | | | | | | | | | | | There were two problems here: (1) we did not process style sheets with an unexpected `rel` attribute but a correct MIME type; (2) we did not consider `none` a valid value for the `background` property.
* | | auto merge of #1852 : brunoabinader/servo/node-clonenode, r=Ms2gerbors-servo2014-03-1315-28/+354
|\ \ \ | |/ / |/| | | | | | | | | | | | | | Spec: http://dom.spec.whatwg.org/#dom-node-clonenode This is a sub-task for #1655. Closes #1240.
| * | Implement Node.cloneNodeBruno de Oliveira Abinader2014-03-134-6/+328
| | | | | | | | | | | | | | | | | | | | | Spec: http://dom.spec.whatwg.org/#dom-node-clonenode Closes #1240.
| * | Added Document's quirks mode getterBruno de Oliveira Abinader2014-03-131-0/+4
| | |
| * | s/isnot/is_not/ in harness.jsBruno de Oliveira Abinader2014-03-1310-22/+22
|/ / | | | | | | For sake of harness.js interface harmony.
* | auto merge of #1895 : Ms2ger/servo/outparams, r=jdmbors-servo2014-03-131-19/+12
|\ \
| * | Remove support for returning values through outparams.Ms2ger2014-03-121-19/+12
| | |
* | | auto merge of #1890 : Ms2ger/servo/Window-idl, r=jdmbors-servo2014-03-131-7/+7
|\ \ \
| * | | Update the WindowTimers interface to the current specification.Ms2ger2014-03-121-7/+7
| | |/ | |/|
* | | auto merge of #1889 : pcwalton/servo/fix-borrow-flags-race, r=jdmbors-servo2014-03-125-22/+54
|\ \ \ | | | | | | | | | | | | r? @jdm