aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script
Commit message (Collapse)AuthorAgeFilesLines
...
| * Move CanvasRenderTask to gfx crate.Tetsuharu OHZEKI2014-07-272-72/+2
| |
* | Upgrade Rust.Jack Moffitt2014-08-0229-274/+245
| |
* | Merge pull request #2948 from jgraham/window_parentMs2ger2014-07-312-0/+6
|\ \ | | | | | | Support window.parent in the one-window case; r=Ms2ger
| * | Support window.parent in the one-window case.James Graham2014-07-292-0/+6
| | |
* | | Throw a TypeError when a non-object is passed where one is expected.Ms2ger2014-07-301-1/+1
| | |
* | | Implement src setter for HTMLIFrameElement #2529Guro Bokum2014-07-301-26/+40
| | |
* | | Merge pull request #2927 from saneyuki/id_atomJosh Matthews2014-07-292-2/+52
|\ \ \ | | | | | | | | Port `id` attribute to use atom.
| * | | Use atom to match id selector.Tetsuharu OHZEKI2014-07-302-1/+35
| | | |
| * | | Port `id` attribute to use atom.Tetsuharu OHZEKI2014-07-292-1/+17
| | | |
* | | | Implement the delete proxy trap (fixes #2213).Sankha Narayan Guria2014-07-292-3/+22
| |/ / |/| |
* | | Merge pull request #2941 from bjwbell/change-255-to-1-for-rgbaPatrick Walton2014-07-281-0/+1
|\ \ \ | |/ / |/| | 255 -> 1.0 for color::rgba + remove dead code lint
| * | 255 -> 1.0 for color::rgba + remove dead code lintBryan Bell2014-07-281-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In build_display_list_abs (block.rs) and handle_reflow (layout_task.rs) 255 is incorrectly used instead of 1.0 for color::rgba (255 is correct with color::rgb but *not* color::rgba). In cors.rs remove the dead code warning for fn clear. The function shouldn't be removed since it'll be used in the future (fn clear is an implementation of http://fetch.spec.whatwg.org/#concept-cache-clear).
* | | Call the generated rather than the hand-written traits (fixes #2936).Ms2ger2014-07-27116-765/+126
| | |
* | | Generate traits for the generated bindings code to call.Ms2ger2014-07-271-1/+106
| | |
* | | Remove the unused lifetime variable from XMLHttpRequestMethods.Ms2ger2014-07-271-2/+2
| | | | | | | | | | | | | | | The lifetime applies to the JSRef type the trait is implemented on, not to the trait itself.
* | | Remove OverrideMimeType from XMLHttpRequestMethods.Ms2ger2014-07-271-4/+0
| | | | | | | | | | | | It is not present in the IDL, and is not actually implemented.
* | | Comment out the stringifier in URLSearchParams.webidl.Ms2ger2014-07-271-2/+2
| | | | | | | | | | | | We don't currently support stringifiers.
* | | Add methods that return floating-point types to TestBinding.webidl.Ms2ger2014-07-271-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.Ms2ger2014-07-271-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.Ms2ger2014-07-271-2/+0
| | | | | | | | | | | | 'any' is inherently nullable, so nullable any doesn't exist.
* | | Introduce a PerformanceTimingHelpers trait for the NavigationStartPrecise ↵Ms2ger2014-07-272-2/+7
| | | | | | | | | | | | method.
* | | Remove an unused argument to needCx and use it in CGCallGenerator.Ms2ger2014-07-271-5/+3
| | |
* | | Pass a non-nullable string to NamedGetter.Ms2ger2014-07-272-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_globalJosh Matthews2014-07-271-0/+2
|\ \ | | | | | | Assert that we're handed a DOM global in initialize_global.
| * | Assert that we're handed a DOM global in initialize_global.Ms2ger2014-07-261-0/+2
| |/
* | Implement Location.hash.Ms2ger2014-07-272-0/+9
| |
* | Merge pull request #2932 from Ms2ger/fixme-347Manish Goregaokar2014-07-262-1/+2
|\ \ | |/ |/| Add pointers to the relevant issue for some bugs; r=jdm
| * Add pointers to the relevant issue for some bugs.Ms2ger2014-07-262-1/+2
| |
* | Add documentation for the DOM.Ms2ger2014-07-2610-14/+215
|/
* Merge pull request #2919 from mbrubeck/layout-commentsPatrick Walton2014-07-251-2/+2
|\ | | | | Update comments about Node::layout_data
| * Update comments about Node::layout_dataMatt Brubeck2014-07-241-2/+2
| |
* | Fix an unnecessary_parens warning.Simon Sapin2014-07-251-1/+1
| |
* | Escape HTML in the cors.rs documentation.Ms2ger2014-07-251-2/+2
| | | | | | | | Rustdoc passes the code straight through, leading to poor generated HTML.
* | Merge pull request #2920 from Ms2ger/canvasJosh Matthews2014-07-256-8/+392
|\ \ | | | | | | Implement very basic canvas rendering context logic. No visual display present.
| * | Implement very basic canvas rendering context logic. No visual display present.Aalhad2014-07-256-8/+392
| |/
* | Merge pull request #2794 from Manishearth/corsManish Goregaokar2014-07-253-9/+483
|\ \ | | | | | | Basic implementation of CORS; r=jdm
| * | Basic implementation of CORSManish Goregaokar2014-07-253-9/+483
| |/
* | Merge pull request #2911 from glennw/atom-attr-nameMs2ger2014-07-252-16/+21
|\ \ | |/ |/| Port attribute name to use atom; r=Ms2ger
| * Convert to atom earlier in SetAttributeNSGlenn Watson2014-07-251-3/+6
| |
| * Port attribute name to use atom.Glenn Watson2014-07-242-14/+16
| |
* | Merge pull request #2914 from Ms2ger/screenMs2ger2014-07-247-7/+110
|\ \ | | | | | | Implement Window.screen; r=jdm
| * | Remove some unnecessary uses of the serialize module.Ms2ger2014-07-244-8/+1
| | |
| * | Implement Window.screen.Ms2ger2014-07-245-1/+111
| |/
* / Avoid an unnecessary clone of the base URL in parse_html().Ms2ger2014-07-241-3/+3
|/
* Merge pull request #2906 from brunoabinader/node-typeid-fixJosh Matthews2014-07-231-6/+6
|\ | | | | Prefer direct member access than type_id() in Node self.type_id calls
| * Prefer direct member access than type_id()Bruno de Oliveira Abinader2014-07-231-6/+6
| |
* | Element::removeAttribute* does not need to throwBruno de Oliveira Abinader2014-07-232-11/+6
|/
* Move Parser creation to its own function (issue #849).Adenilson Cavalcanti2014-07-221-5/+9
| | | | | | This is the first step to implement innerHTML, as we need a way create and initialize a parser object while setting the received DOMString (which may be either text/html/whatever).
* Merge pull request #2892 from glennw/element-atomSimon Sapin2014-07-221-4/+4
|\ | | | | Port element traits to use atoms instead of strings.
| * Port element traits to use atoms instead of strings.Glenn Watson2014-07-221-4/+4
| |