aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/TestBindingProxy.webidl
Commit message (Collapse)AuthorAgeFilesLines
* Convert Web IDL void to undefinedKagami Sascha Rosylight2022-01-051-3/+3
| | | | Fixes #27660
* Update MPL license to https (part 2)Jan Andre Ikenmeyer2018-11-191-1/+1
|
* Explicitly expose everything everywhere.Ms2ger2016-07-121-1/+1
|
* Disable nonstandard interfaces via prefs.Josh Matthews2016-05-021-0/+1
|
* Remove modelines everywhere but tests/wptedunham2016-04-201-1/+0
|
* Remove deprecated 'creator' WebIDL attributeCorey Farwell2015-09-211-2/+2
| | | | According to @Ms2ger, the 'creator' attribute was merged into 'setter'
* Fixes #2240 - NamedGetter and NamedSetter do not assume that the argument is ↵David Rajchenbach-Teller2015-08-261-2/+2
| | | | named `name`
* Initial implementation of ownPropertyKeys proxy handlerCorey Farwell2015-08-201-0/+1
| | | | | | | | | | | Generates `SupportedPropertyNames` on DOM structs that should implement it. Most of them are unimplemented now (which can be implemented in later PRs), with the exception of `HTMLCollection`. Also added a couple relevant WPT tests. Closes #6390 Closes #2215
* Add/format license headers for WebIDLsCorey Farwell2015-07-261-3/+3
|
* Tidy finds WebIDLs with no spec.Michael Howell2015-07-211-0/+3
| | | | Closes #6689
* Prefer HTTPS when linking to GitHub PagesCorey Farwell2015-06-281-1/+1
| | | | | | | | | | | | This commit was generated using the following commands: ``` find . -iname "*.webidl" -type f -print0 | xargs -0 sed -i '' 's/http:\(.*\)github.io/https:\1github.io/g' ``` ``` find . -iname "*.rs" -type f -print0 | xargs -0 sed -i '' 's/http:\(.*\)github.io/https:\1github.io/g' ```
* added TestBindingProxy.webidl and testbindingproxy.rs filesFrancesc Bautista2015-06-091-0/+25
added testbindingproxy to dom/mod.rs and fixed unused variable warning of testingbindingproxy.rs removed useless GlobalField, removed brackets use statements with only 1 element and changed the description of TestBindingProxy.webidl renamed reflector to reflector_ and removed unused import in testbinding.rs