aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/webidls
Commit message (Collapse)AuthorAgeFilesLines
...
* Merge pull request #2842 from Ms2ger/workersMs2ger2014-07-173-0/+63
|\ | | | | Basic Web Workers; r=Manishearth,larsbergstrom
| * Implement WorkerGlobalScope.self.Ms2ger2014-07-161-1/+1
| |
| * Implement global.console in workers.Ms2ger2014-07-151-0/+6
| |
| * Implement stub classes for WorkerGlobalScope and DedicatedWorkerGlobalScope.Ms2ger2014-07-152-0/+37
| | | | | | | | Part of #2811.
| * Implement a stub Worker interface.Ms2ger2014-07-151-0/+20
| | | | | | | | Part of #2811.
* | Implement MessageEvent.Ms2ger2014-07-161-0/+23
|/
* Remove empty objects from Bindings.conf.Ms2ger2014-07-132-2/+3
| | | | | This also comments out an unused mixin interface, and adds NoInterfaceObject to one that missed it.
* Merge pull request #2815 from Ms2ger/test_interfacesJosh Matthews2014-07-131-2/+2
|\ | | | | Add test_interfaces.html.
| * Stop exposing XMLHttpRequestEventTarget on the window object.Ms2ger2014-07-121-2/+2
| |
* | Remove references to WindowProxy as an interface.Ms2ger2014-07-121-9/+0
|/
* Allow URLSearchParams to be passed to XHR Send()Manish Goregaokar2014-07-121-1/+4
|
* Revert "Implement Element.matches()."Patrick Walton2014-07-091-3/+0
| | | | This reverts commit b6edd5318f3fe5c751d1c011e87adbfe0cac4fcc.
* Implement Element.matches().Tetsuharu OHZEKI2014-07-051-0/+3
|
* Merge pull request #2735 from Manishearth/urlsearchparamsJosh Matthews2014-07-021-0/+19
|\ | | | | Add URLSearchParams interface with serialization support
| * Add URLSearchParams interface with serialization supportManish Goregaokar2014-07-021-0/+19
| |
* | Implement Location.search.Ms2ger2014-06-281-0/+1
|/
* Partial implementation of FormData and FileManish Goregaokar2014-06-252-0/+23
|
* Implement static attributes (fixes #1989).Ms2ger2014-06-221-0/+1
|
* Implement static methods (fixes #1989).Ms2ger2014-06-221-0/+2
|
* Make AttrList NoInterfaceObject (fixes #1223).Ms2ger2014-06-201-1/+2
|
* Request termination for XHRManish Goregaokar2014-06-191-1/+2
|
* auto merge of #2616 : Ms2ger/servo/attrvalue, r=jdmbors-servo2014-06-132-2/+17
|\ | | | | | | Obsoletes #2073.
| * Implement Element.classList (partially fixes #1717).Ms2ger2014-06-132-2/+17
| |
* | auto merge of #2632 : brunoabinader/servo/document-queryselectorall, r=Ms2gerbors-servo2014-06-111-2/+5
|\ \ | | | | | | | | | | | | | | | | | | Spec: http://dom.spec.whatwg.org/#dom-parentnode-queryselectorall Closes #851.
| * | Implement support for ParentNode's querySelectorAllBruno de Oliveira Abinader2014-06-101-2/+5
| | |
* | | auto merge of #2627 : Ms2ger/servo/iframe-src, r=jdmbors-servo2014-06-101-1/+1
|\ \ \ | |/ / |/| |
| * | Implement HTMLIFrameElement.src.Ms2ger2014-06-091-1/+1
| | |
* | | Support union variadic arguments and add tests.Ms2ger2014-06-101-0/+20
| | |
* | | auto merge of #2618 : Ms2ger/servo/console-assert, r=jdmbors-servo2014-06-091-0/+1
|\ \ \
| * | | Implement Console.assert.Ms2ger2014-06-081-0/+1
| | |/ | |/|
* | | auto merge of #2611 : Ms2ger/servo/webidl-parser-sync, r=jdmbors-servo2014-06-099-22/+18
|\ \ \ | |_|/ |/| |
| * | Remove unsupported extended attributes from IDL.Ms2ger2014-06-079-22/+18
| | | | | | | | | | | | These were silently ignored so far.
* | | auto merge of #2619 : Ms2ger/servo/onclick, r=jdmbors-servo2014-06-081-2/+3
|\ \ \
| * | | Support GlobalEventHandlers.onclick.Ms2ger2014-06-081-2/+3
| | |/ | |/|
* | | auto merge of #2613 : Manishearth/servo/xhr-wpt-methods, r=Ms2gerbors-servo2014-06-081-1/+1
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | | | | | | | For [XMLHttpRequest/open-method-case-sensitive.htm](https://github.com/w3c/web-platform-tests/blob/master/XMLHttpRequest/open-method-case-sensitive.htm), [XMLHttpRequest/XMLHttpRequest/open-method-insecure.htm](https://github.com/w3c/web-platform-tests/blob/master/XMLHttpRequest/open-method-insecure.htm), [XMLHttpRequest/XMLHttpRequest/open-method-responsetype-set-sync.htm ](https://github.com/w3c/web-platform-tests/blob/master/XMLHttpRequest/open-method-responsetype-set-sync.htm) in particular. `getResponseHeader()` is used by a lot of other tests (the harness echoes most of the metadata in the response headers, which is tested on this side) The sync changes fixes half of the timeouts to give meaningful results. Blocks #2525
| * | Support for extension methods, getResponseHeader(), and an extra errorManish Goregaokar2014-06-081-1/+1
| |/
* / Allow union types to be used as return valuesManish Goregaokar2014-06-071-4/+8
|/
* auto merge of #2591 : brunoabinader/servo/document-queryselector-v3, r=jdmbors-servo2014-06-061-0/+6
|\ | | | | | | | | | | | | This is a subtask for #2254 & #2576. Spec: http://dom.spec.whatwg.org/#dom-parentnode-queryselector
| * Added ParentNode.querySelector skeletonBruno de Oliveira Abinader2014-06-051-0/+6
| |
* | JSON response support and some default headersManish Goregaokar2014-06-061-0/+1
|/
* Add responseText and status code support to XHRManish Goregaokar2014-06-041-0/+1
|
* Move WebIDL unions into their own module.Ms2ger2014-06-031-0/+1
| | | | This will allow multiple unions to contain the same type.
* Support dictionary members without default values.Ms2ger2014-06-021-17/+17
|
* auto merge of #2547 : Ms2ger/servo/dictionary-tests, r=jdmbors-servo2014-06-021-11/+11
|\
| * Support enumerations in dictionaries.Ms2ger2014-06-021-1/+1
| |
| * Enable some more dictionary codegen tests.Ms2ger2014-06-021-10/+10
| |
* | Remove not-yet-implemented APIs, and update MouseEvent to specification.Ms2ger2014-06-028-311/+174
|/
* Remove HTMLMainElement.Tetsuharu OHZEKI2014-06-021-7/+0
| | | | https://github.com/mozilla/servo/issues/2541
* Restore HTMLSelectElement.add to avoid neutering test_union.html.Ms2ger2014-06-011-1/+2
|
* Remove not-yet-implemented members from IDL and Rust code.Ms2ger2014-06-0170-1549/+872
| | | | | | | | These stub implementations bring no value, and significantly increased maintenance costs. This commit also synchronizes the IDL with the HTML specification and makes the URLs consistent.