diff --git a/index.html b/index.html index 2347c59..74e89ed 100644 --- a/index.html +++ b/index.html @@ -28,7 +28,7 @@
[Exposed=Window]
interface BaseInterface {
- void doTheFoo();
+ undefined doTheFoo();
};
interface mixin MyMixin {
- void doTheFoo(DOMString foo);
+ undefined doTheFoo(DOMString foo);
};
BaseInterface includes MyMixin;
@@ -49,19 +49,21 @@
- [Exposed=Window, Constructor] // cause merge conflict 7
+ [Exposed=Window] // cause merge conflict 7
interface IHaveConstructor {
+ constructor();
attribute DOMString bar;
- void doTheFoo();
+ undefined doTheFoo();
};
+ [Exposed=Window]
interface ImplicitlyExposed {
attribute DOMString bar;
- void doTheFoo();
+ undefined doTheFoo();
};