Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Merge pull request #3057 from Ms2ger/3041-method-trait | Ms2ger | 2014-08-08 | 1 | -1/+1 | |
|\ \ | | | | | | | Correct the fallibility of proxy operations in the *Methods trait (fixes #3041); r=jdm | |||||
| * | | Correct the fallibility of proxy operations in the *Methods trait (fixes #3041). | Ms2ger | 2014-08-08 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | A typo caused us to use the fallibility of the last normal method in the interface. | |||||
* | | | Merge pull request #3051 from metajack/fix-nodeflags-for-layout | Patrick Walton | 2014-08-08 | 1 | -3/+7 | |
|\ \ \ | |/ / |/| | | Fix the NodeFlags methods that are called by layout. | |||||
| * | | Fix the NodeFlags methods that are called by layout. | Jack Moffitt | 2014-08-07 | 1 | -3/+7 | |
| | | | | | | | | | | | | They should never borrow. | |||||
* | | | Merge pull request #3053 from brunoabinader/use-is-element-helpers | Josh Matthews | 2014-08-07 | 2 | -10/+15 | |
|\ \ \ | |_|/ |/| | | Prefer *Derived helper functions (is_*element) than string comparison | |||||
| * | | Prefer *Derived helper functions (is_*element) than string comparison | Bruno de Oliveira Abinader | 2014-08-07 | 2 | -10/+15 | |
| | | | ||||||
* | | | Add DOM NodeIterator blob (include DOM NodeFilter interface). | Tetsuharu OHZEKI | 2014-08-08 | 3 | -0/+100 | |
| | | | ||||||
* | | | Add DOM Range blob. | Tetsuharu OHZEKI | 2014-08-08 | 2 | -0/+125 | |
| | | | ||||||
* | | | Add TreeWalker blob. | Tetsuharu OHZEKI | 2014-08-08 | 2 | -0/+58 | |
| |/ |/| | ||||||
* | | Merge pull request #3031 from Ms2ger/attr-cell | Ms2ger | 2014-08-07 | 1 | -5/+5 | |
|\ \ | | | | | | | Make Attr::owner immutable; r=jdm | |||||
| * | | Make Attr::owner immutable. | Ms2ger | 2014-08-06 | 1 | -5/+5 | |
| | | | | | | | | | | | | | | | Nobody needs to change the element it's associated with, so there's no reason to use a Cell here. | |||||
* | | | Merge pull request #3035 from brunoabinader/fix-node-ctor | Ms2ger | 2014-08-06 | 1 | -17/+11 | |
|\ \ \ | |_|/ |/| | | Using NodeFlags ctor to set InEnabledState when needed; r=Ms2ger | |||||
| * | | Using NodeFlags ctor to set InEnabledState when needed | Bruno de Oliveira Abinader | 2014-08-06 | 1 | -17/+11 | |
| |/ | ||||||
* | | Merge pull request #3034 from saneyuki/canvas | Josh Matthews | 2014-08-06 | 3 | -6/+13 | |
|\ \ | | | | | | | Implement CanvasRenderingContext2D.canvas. | |||||
| * | | Implement CanvasRenderingContext2D.canvas. | Tetsuharu OHZEKI | 2014-08-06 | 3 | -6/+13 | |
| |/ | ||||||
* / | Document.getElementById() should return null if the passed argument is empty. | Tetsuharu OHZEKI | 2014-08-06 | 2 | -4/+11 | |
|/ | ||||||
* | Implement support for 'enabled' property in HTMLLinkElement | Bruno de Oliveira Abinader | 2014-08-05 | 2 | -1/+43 | |
| | ||||||
* | Implement support for 'enabled' property in HTMLAreaElement | Bruno de Oliveira Abinader | 2014-08-05 | 2 | -1/+43 | |
| | ||||||
* | Implement support for 'enabled' property in HTMLAnchorElement | Bruno de Oliveira Abinader | 2014-08-05 | 1 | -0/+26 | |
| | ||||||
* | Implement support for 'disabled' property in HTMLTextAreaElement | Bruno de Oliveira Abinader | 2014-08-05 | 3 | -4/+92 | |
| | ||||||
* | Implement support for 'disabled' property in HTMLSelectElement | Bruno de Oliveira Abinader | 2014-08-05 | 3 | -4/+89 | |
| | ||||||
* | Implement support for 'disabled' property in HTMLOptionElement | Bruno de Oliveira Abinader | 2014-08-05 | 3 | -3/+91 | |
| | ||||||
* | Implement support for 'disabled' property in HTMLOptGroupElement | Bruno de Oliveira Abinader | 2014-08-05 | 3 | -4/+74 | |
| | ||||||
* | Implement support for 'disabled' property in HTMLInputElement | Bruno de Oliveira Abinader | 2014-08-05 | 3 | -4/+92 | |
| | ||||||
* | Implement support for 'disabled' property in HTMLFieldSetElement | Bruno de Oliveira Abinader | 2014-08-05 | 3 | -3/+96 | |
| | ||||||
* | Implement support for 'disabled' property in HTMLButtonElement | Bruno de Oliveira Abinader | 2014-08-05 | 3 | -8/+97 | |
| | ||||||
* | Implement support for :enabled CSS selector | Bruno de Oliveira Abinader | 2014-08-05 | 2 | -3/+50 | |
| | ||||||
* | Implement support for :disabled CSS selector | Bruno de Oliveira Abinader | 2014-08-05 | 2 | -3/+95 | |
| | ||||||
* | Merge pull request #2994 from mechaxl/master | Ms2ger | 2014-08-05 | 1 | -4/+3 | |
|\ | | | | | Only strip HTML whitespace in the document.title getter (fixes #2969); r=Ms2ger | |||||
| * | Removing unnecessary string trimming | MechaXL | 2014-08-04 | 1 | -2/+1 | |
| | | ||||||
| * | Fixes #2969 by only stripping HTML whitespace | MechaXL | 2014-08-03 | 1 | -2/+2 | |
| | | ||||||
* | | Throw a TypeError when unwrapping a this object fails. | Ms2ger | 2014-08-05 | 1 | -1/+4 | |
| | | ||||||
* | | Throw a TypeError when unwrapping an interface argument fails. | Ms2ger | 2014-08-05 | 1 | -1/+9 | |
| | | ||||||
* | | Remove FailureFatalCastableObjectUnwrapper. | Ms2ger | 2014-08-05 | 1 | -22/+8 | |
| | | | | | | | | | | The inheritance pattern used here was not particularly enlightening, and only one caller uses FailureFatalCastableObjectUnwrapper. | |||||
* | | Fix the double indentation in CastableObjectUnwrapper. | Ms2ger | 2014-08-05 | 1 | -7/+9 | |
| | | | | | | | | The current code indents the first line of codeOnFailure four spaces too far. | |||||
* | | Merge pull request #2993 from hazz/document-set-title | Ms2ger | 2014-08-05 | 1 | -6/+8 | |
|\ \ | | | | | | | Correctly handle empty string on setting document.title; r=Manishearth+Ms2ger | |||||
| * | | Check for the empty string before creating a new text node when setting ↵ | Harry Maclean | 2014-08-05 | 1 | -6/+8 | |
| |/ | | | | | | | document.title | |||||
* | | Merge pull request #2998 from Ms2ger/taskbuilder | Ms2ger | 2014-08-04 | 1 | -7/+6 | |
|\ \ | | | | | | | Use TaskBuilder where possible; r=metajack | |||||
| * | | Use TaskBuilder to spawn worker threads. | Ms2ger | 2014-08-04 | 1 | -7/+6 | |
| |/ | ||||||
* / | Return 'BackCompat' for document.compatMode only if in quirksmode | Harry Maclean | 2014-08-04 | 1 | -2/+2 | |
|/ | ||||||
* | Merge pull request #2934 from saneyuki/canvas | Josh Matthews | 2014-08-03 | 1 | -71/+1 | |
|\ | | | | | Move CanvasRenderTask to gfx crate. | |||||
| * | Move CanvasRenderTask to gfx crate. | Tetsuharu OHZEKI | 2014-07-27 | 1 | -71/+1 | |
| | | ||||||
* | | Upgrade Rust. | Jack Moffitt | 2014-08-02 | 25 | -258/+234 | |
| | | ||||||
* | | Merge pull request #2948 from jgraham/window_parent | Ms2ger | 2014-07-31 | 2 | -0/+6 | |
|\ \ | | | | | | | Support window.parent in the one-window case; r=Ms2ger | |||||
| * | | Support window.parent in the one-window case. | James Graham | 2014-07-29 | 2 | -0/+6 | |
| | | | ||||||
* | | | Throw a TypeError when a non-object is passed where one is expected. | Ms2ger | 2014-07-30 | 1 | -1/+1 | |
| | | | ||||||
* | | | Implement src setter for HTMLIFrameElement #2529 | Guro Bokum | 2014-07-30 | 1 | -26/+40 | |
| | | | ||||||
* | | | Merge pull request #2927 from saneyuki/id_atom | Josh Matthews | 2014-07-29 | 2 | -2/+52 | |
|\ \ \ | | | | | | | | | Port `id` attribute to use atom. | |||||
| * | | | Use atom to match id selector. | Tetsuharu OHZEKI | 2014-07-30 | 2 | -1/+35 | |
| | | | | ||||||
| * | | | Port `id` attribute to use atom. | Tetsuharu OHZEKI | 2014-07-29 | 2 | -1/+17 | |
| |/ / |