Open
Bug 1159833
Opened 10 years ago
Updated 3 years ago
Inherited method name conflicts with consequential maplike/setlike interfaces should fail
Categories
(Core :: DOM: Bindings (WebIDL), defect, P5)
Core
DOM: Bindings (WebIDL)
Tracking
()
NEW
People
(Reporter: qdot, Unassigned)
References
Details
In relation to WebIDL spec bug https://www.w3.org/Bugs/Public/show_bug.cgi?id=28583, the following interface should most likely fail, but currently doesn't:
interface Foo1 {
maplike<long, long>;
};
interface Foo2 {
void entries();
};
interface Foo3 : Foo2 {
};
Foo3 implements Foo1;
Once the spec is updated, make sure this fails in our tests too.
Comment 1•7 years ago
|
||
https://bugzilla.mozilla.org/show_bug.cgi?id=1472046
Move all DOM bugs that haven’t been updated in more than 3 years and has no one currently assigned to P5.
If you have questions, please contact :mdaly.
Priority: -- → P5
| Assignee | ||
Updated•7 years ago
|
Component: DOM → DOM: Core & HTML
Updated•5 years ago
|
Component: DOM: Core & HTML → DOM: Bindings (WebIDL)
Updated•3 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•