mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Auto merge of #7387 - Yoric:2240-2, r=Ms2ger
Fixes #2240 - NamedGetter and NamedSetter do not assume that the arg is named `name` I'm not totally sure about how to test this. <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/7387) <!-- Reviewable:end -->
This commit is contained in:
commit
a897795dab
2 changed files with 31 additions and 24 deletions
|
@ -15,9 +15,9 @@
|
|||
interface TestBindingProxy : TestBinding {
|
||||
readonly attribute unsigned long length;
|
||||
|
||||
getter DOMString getNamedItem(DOMString name);
|
||||
getter DOMString getNamedItem(DOMString item_name);
|
||||
|
||||
setter creator void setNamedItem(DOMString name, DOMString value);
|
||||
setter creator void setNamedItem(DOMString item_name, DOMString value);
|
||||
|
||||
getter DOMString getItem(unsigned long index);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue