mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
Generate correct bindings for callback interfaces: only create an interface object when the interface declares constants, and set up the prototype correctly. This also lets us tidy up some IDL for these callback interfaces.
6 lines
171 B
Plaintext
6 lines
171 B
Plaintext
// https://dom.spec.whatwg.org/#callbackdef-xpathnsresolver
|
|
[Exposed=Window]
|
|
callback interface XPathNSResolver {
|
|
DOMString? lookupNamespaceURI(DOMString? prefix);
|
|
};
|