aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/webidls
Commit message (Collapse)AuthorAgeFilesLines
* Cargoify servoJack Moffitt2014-09-08126-3381/+0
|
* Implement document.lastModified (fixes #2972, #3127).MechaXL2014-09-041-0/+1
|
* Merge pull request #3186 from wenderen/Window.framesMs2ger2014-08-301-0/+1
|\ | | | | implement window.frames; r=Manishearth
| * implement window.framesRohan Prinja2014-08-301-0/+1
| |
* | Rename AttrList to NamedNodeMapAaron Hill2014-08-292-3/+2
|/ | | | This fixes issue #3135
* Merge pull request #3145 from wenderen/NamespaceURI.NoneManish Goregaokar2014-08-271-1/+1
|\ | | | | return null from GetNamespaceURI, not the empty string; r=Manishearth, Ms2ger
| * return null from GetNamespaceURI, not the empty stringRohan Prinja2014-08-271-1/+1
| | | | | | | | correctly mark tests
* | Implement DOMTokenList.containsBruno de Oliveira Abinader2014-08-251-1/+4
|/
* Merge pull request #3095 from ChrisParis/HTMLScriptElement.textMs2ger2014-08-221-1/+2
|\ | | | | Implement HTMLScriptElement.text; r=Ms2ger
| * Implement HTMLScriptElement.textChris Paris2014-08-151-1/+2
| |
* | Merge pull request #3086 from ChrisParis/HTMLAnchorElement.textMs2ger2014-08-211-1/+2
|\ \ | | | | | | Implement HTMLAnchorElement.text; r=Manishearth
| * | Implement HTMLAnchorElement.textChris Paris2014-08-151-1/+2
| | |
* | | Use extended attributes to define which interfaces are globals (fixes #1053).Ms2ger2014-08-201-1/+1
| | | | | | | | | | | | This makes our approach consistent with Gecko's.
* | | Merge pull request #3103 from bfrohs/3025TitleTextMs2ger2014-08-201-1/+2
|\ \ \ | | | | | | | | Implement HTMLTitleElement.text (closes #3025); r=Ms2ger
| * | | Implement HTMLTitleElement.text (closes #3025)Brandon Frohs2014-08-171-1/+2
| | | |
* | | | Merge pull request #3082 from ChrisParis/atobManish Goregaokar2014-08-201-0/+10
|\ \ \ \ | |/ / / |/| | | Implement window.atob/btoa; r=Manishearth
| * | | Implement window.atob/btoaChris Paris2014-08-151-0/+10
| | | |
* | | | Merge pull request #3098 from wenderen/HTMLTableElement.captionManish Goregaokar2014-08-161-1/+1
|\ \ \ \ | | | | | | | | | | implement GetCaption and SetCaption for HTMLTableElement; r=Manishearth
| * | | | Implement HTMLTableElement.captionRohan Prinja2014-08-161-1/+1
| | | | |
* | | | | Implement WorkerGlobalScope.importScripts.Ms2ger2014-08-161-1/+2
| |_|_|/ |/| | |
* | | | Implement WorkerGlobalScope.location.Ms2ger2014-08-153-1/+33
|/ / /
* | / Implement DedicatedWorkerGlobalScope.navigator.Ms2ger2014-08-152-4/+13
| |/ |/|
* | Structured clone the argument to DedicatedWorkerGlobalScope.postMessage.Ms2ger2014-08-141-2/+1
| |
* | Structured clone the argument to Worker.postMessage.Ms2ger2014-08-141-2/+1
| |
* | node.textContent and node.nodeValue should not throwManish Goregaokar2014-08-141-2/+2
|/
* Implement {Worker,DedicatedWorkerGlobalScope}.onmessage.Ms2ger2014-08-132-2/+2
|
* Implement DedicatedWorkerGlobalScope.postMessage.Ms2ger2014-08-121-0/+1
|
* Implement Range.detach().Ms2ger2014-08-091-1/+1
| | | | Incidentally, this allows dom/interfaces.html to actually run.
* Implement Document.createRange().Ms2ger2014-08-091-0/+2
|
* Rename ClientRect and ClientRectList to DOMRect and DOMRectList (fixes ↵hyunjunekim2014-08-093-11/+13
| | | | | | | #2814, fixes #2840). These interfaces were renamed in the specification, in order to use them in other contexts than the getClientRects and getBoundingClientRect methods.
* Add DOM NodeIterator blob (include DOM NodeFilter interface).Tetsuharu OHZEKI2014-08-082-0/+65
|
* Add DOM Range blob.Tetsuharu OHZEKI2014-08-081-0/+85
|
* Add TreeWalker blob.Tetsuharu OHZEKI2014-08-081-0/+23
|
* Implement CanvasRenderingContext2D.canvas.Tetsuharu OHZEKI2014-08-061-1/+1
|
* Implement support for 'disabled' property in HTMLTextAreaElementBruno de Oliveira Abinader2014-08-051-1/+1
|
* Implement support for 'disabled' property in HTMLSelectElementBruno de Oliveira Abinader2014-08-051-1/+1
|
* Implement support for 'disabled' property in HTMLOptionElementBruno de Oliveira Abinader2014-08-051-1/+1
|
* Implement support for 'disabled' property in HTMLOptGroupElementBruno de Oliveira Abinader2014-08-051-1/+1
|
* Implement support for 'disabled' property in HTMLInputElementBruno de Oliveira Abinader2014-08-051-1/+1
|
* Implement support for 'disabled' property in HTMLFieldSetElementBruno de Oliveira Abinader2014-08-051-1/+1
|
* Implement support for 'disabled' property in HTMLButtonElementBruno de Oliveira Abinader2014-08-051-1/+1
|
* Support window.parent in the one-window case.James Graham2014-07-291-0/+1
|
* 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.
* Implement Location.hash.Ms2ger2014-07-271-0/+1
|
* Implement very basic canvas rendering context logic. No visual display present.Aalhad2014-07-252-2/+109
|
* Implement Window.screen.Ms2ger2014-07-242-0/+46
|
* Element::removeAttribute* does not need to throwBruno de Oliveira Abinader2014-07-231-2/+0
|
* Implement Element.matches().Tetsuharu OHZEKI2014-07-201-0/+3
|
* Implement Worker.postMessage.Ms2ger2014-07-181-0/+1
|