Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Call the generated rather than the hand-written traits (fixes #2936). | Ms2ger | 2014-07-27 | 116 | -765/+126 |
| | |||||
* | Generate traits for the generated bindings code to call. | Ms2ger | 2014-07-27 | 1 | -1/+106 |
| | |||||
* | Remove the unused lifetime variable from XMLHttpRequestMethods. | Ms2ger | 2014-07-27 | 1 | -2/+2 |
| | | | | | The lifetime applies to the JSRef type the trait is implemented on, not to the trait itself. | ||||
* | Remove OverrideMimeType from XMLHttpRequestMethods. | Ms2ger | 2014-07-27 | 1 | -4/+0 |
| | | | | It is not present in the IDL, and is not actually implemented. | ||||
* | Comment out the stringifier in URLSearchParams.webidl. | Ms2ger | 2014-07-27 | 1 | -2/+2 |
| | | | | We don't currently support stringifiers. | ||||
* | Add methods that return floating-point types to TestBinding.webidl. | Ms2ger | 2014-07-27 | 1 | -0/+4 |
| | | | | | They were already implemented in testbinding.rs, but were forgotten in the IDL file. | ||||
* | Comment out references to floating-point arguments with default values. | Ms2ger | 2014-07-27 | 1 | -2/+2 |
| | | | | | Our parser does not support floating-point constants, so we can't use default values for floating-point types. | ||||
* | Remove references to nullable any from testbinding. | Ms2ger | 2014-07-27 | 1 | -2/+0 |
| | | | | 'any' is inherently nullable, so nullable any doesn't exist. | ||||
* | Introduce a PerformanceTimingHelpers trait for the NavigationStartPrecise ↵ | Ms2ger | 2014-07-27 | 2 | -2/+7 |
| | | | | method. | ||||
* | Remove an unused argument to needCx and use it in CGCallGenerator. | Ms2ger | 2014-07-27 | 1 | -5/+3 |
| | |||||
* | Pass a non-nullable string to NamedGetter. | Ms2ger | 2014-07-27 | 2 | -18/+10 |
| | | | | | | | | | There is no actual reason to use a nullable string here; all callers have a string they want to pass. The issue dates back to the time that DOMString was inherently nullable (before #1215); this API was not converted back to the non-nullable DOMString type after that landed. | ||||
* | Merge pull request #2933 from Ms2ger/initialize_global | Josh Matthews | 2014-07-27 | 1 | -0/+2 |
|\ | | | | | Assert that we're handed a DOM global in initialize_global. | ||||
| * | Assert that we're handed a DOM global in initialize_global. | Ms2ger | 2014-07-26 | 1 | -0/+2 |
| | | |||||
* | | Implement Location.hash. | Ms2ger | 2014-07-27 | 2 | -0/+9 |
| | | |||||
* | | Merge pull request #2930 from bjwbell/track-rerender-msgs | Cameron Zwarich | 2014-07-26 | 5 | -6/+55 |
|\ \ | | | | | | | Track rerender msgs | ||||
| * | | Track rerender msgs | Bryan Bell | 2014-07-26 | 5 | -6/+55 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | If the compositor outputs to a file: * Track rerender msgs sent from the compositor to the render tasks. * Before outputting, wait until all rerender msgs are processed by the render tasks. Fixes issue https://github.com/servo/servo/issues/2871. | ||||
* | | | Merge pull request #2932 from Ms2ger/fixme-347 | Manish Goregaokar | 2014-07-26 | 2 | -1/+2 |
|\ \ \ | |_|/ |/| | | Add pointers to the relevant issue for some bugs; r=jdm | ||||
| * | | Add pointers to the relevant issue for some bugs. | Ms2ger | 2014-07-26 | 2 | -1/+2 |
| |/ | |||||
* / | Add documentation for the DOM. | Ms2ger | 2014-07-26 | 10 | -14/+215 |
|/ | |||||
* | Merge pull request #2928 from zwarich/set-clipping-cleanup | Cameron Zwarich | 2014-07-25 | 2 | -52/+15 |
|\ | | | | | Simplify set_clipping_rect and inline it into its only caller | ||||
| * | Simplify set_clipping_rect and inline it into its only caller | Cameron Zwarich | 2014-07-25 | 2 | -52/+15 |
| | | |||||
* | | Merge pull request #2919 from mbrubeck/layout-comments | Patrick Walton | 2014-07-25 | 1 | -2/+2 |
|\ \ | | | | | | | Update comments about Node::layout_data | ||||
| * | | Update comments about Node::layout_data | Matt Brubeck | 2014-07-24 | 1 | -2/+2 |
| |/ | |||||
* | | Fix an unnecessary_parens warning. | Simon Sapin | 2014-07-25 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #2922 from servo/rustdoc | Simon Sapin | 2014-07-25 | 1 | -0/+0 |
|\ \ | | | | | | | Build rustdoc docs on Travis and upload them to GitHub Pages. | ||||
| * | | Add doc and doc-$(crate) targets to the Makefile using rustdoc. | Simon Sapin | 2014-07-25 | 1 | -0/+0 |
| | | | |||||
* | | | Escape HTML in the cors.rs documentation. | Ms2ger | 2014-07-25 | 1 | -2/+2 |
| | | | | | | | | | | | | Rustdoc passes the code straight through, leading to poor generated HTML. | ||||
* | | | Merge pull request #2918 from mbrubeck/size_t | Lars Bergstrom | 2014-07-25 | 3 | -3/+3 |
|\ \ \ | | | | | | | | | Fix build errors for Android (and other 32-bit targets) | ||||
| * | | | Update to latest string-cache. | Matt Brubeck | 2014-07-24 | 1 | -0/+0 |
| | | | | | | | | | | | | | | | | Includes fix for servo/string-cache#4. | ||||
| * | | | Fix compile error and warning on Android | Matt Brubeck | 2014-07-24 | 1 | -2/+2 |
| | | | | |||||
| * | | | Add explicit cast from size_t to u64. | Matt Brubeck | 2014-07-24 | 2 | -1/+1 |
| | |/ | |/| | | | | | | | Fixes compile error on non-64-bit targets. | ||||
* | | | Merge pull request #2920 from Ms2ger/canvas | Josh Matthews | 2014-07-25 | 8 | -8/+411 |
|\ \ \ | |_|/ |/| | | Implement very basic canvas rendering context logic. No visual display present. | ||||
| * | | Implement very basic canvas rendering context logic. No visual display present. | Aalhad | 2014-07-25 | 8 | -8/+411 |
| |/ | |||||
* | | Merge pull request #2794 from Manishearth/cors | Manish Goregaokar | 2014-07-25 | 5 | -11/+509 |
|\ \ | | | | | | | Basic implementation of CORS; r=jdm | ||||
| * | | Basic implementation of CORS | Manish Goregaokar | 2014-07-25 | 5 | -11/+509 |
| | | | |||||
* | | | Merge pull request #2911 from glennw/atom-attr-name | Ms2ger | 2014-07-25 | 2 | -16/+21 |
|\ \ \ | |_|/ |/| | | Port attribute name to use atom; r=Ms2ger | ||||
| * | | Convert to atom earlier in SetAttributeNS | Glenn Watson | 2014-07-25 | 1 | -3/+6 |
| | | | |||||
| * | | Port attribute name to use atom. | Glenn Watson | 2014-07-24 | 2 | -14/+16 |
| | | | |||||
* | | | Merge pull request #2904 from glennw/linux-ref-test | Lars Bergstrom | 2014-07-24 | 1 | -0/+114 |
|\ \ \ | |_|/ |/| | | Modify Linux travis config to run content and cpu ref tests. | ||||
| * | | Modify Linux travis config to run content and cpu ref tests. | Glenn Watson | 2014-07-24 | 1 | -0/+114 |
| | | | |||||
* | | | Merge pull request #2912 from mrobinson/debug-borders | Lars Bergstrom | 2014-07-24 | 4 | -1/+10 |
|\ \ \ | | | | | | | | | Add support for showing debug borders | ||||
| * | | | Add support for showing debug borders | Martin Robinson | 2014-07-23 | 4 | -1/+10 |
| | |/ | |/| | | | | | | | | | | This can help debug issues with the compositor and show when a page is creating layers. | ||||
* | | | Merge pull request #2914 from Ms2ger/screen | Ms2ger | 2014-07-24 | 8 | -7/+111 |
|\ \ \ | | | | | | | | | Implement Window.screen; r=jdm | ||||
| * | | | Remove some unnecessary uses of the serialize module. | Ms2ger | 2014-07-24 | 4 | -8/+1 |
| | | | | |||||
| * | | | Implement Window.screen. | Ms2ger | 2014-07-24 | 6 | -1/+112 |
| | | | | |||||
* | | | | Avoid an unnecessary clone of the base URL in parse_html(). | Ms2ger | 2014-07-24 | 1 | -3/+3 |
|/ / / | |||||
* | | | Merge pull request #2910 from kmcallister/charset | Patrick Walton | 2014-07-23 | 2 | -0/+2 |
|\ \ \ | |/ / |/| | | Add charset declarations to non-ASCII tests | ||||
| * | | Add charset declarations to non-ASCII tests | Keegan McAllister | 2014-07-23 | 2 | -0/+2 |
| | | | |||||
* | | | Merge pull request #2884 from glennw/linux-kerning | glennw | 2014-07-24 | 6 | -6/+54 |
|\ \ \ | |/ / |/| | | Implement kerning support for linux/android. | ||||
| * | | Implement kerning support for linux/android. Improves some wikipedia issues ↵ | Glenn Watson | 2014-07-24 | 6 | -6/+54 |
| | | | | | | | | | | | | (#2554). |