summaryrefslogtreecommitdiff
path: root/Source/WebCore/Modules/protocolhandler/NavigatorRegisterProtocolHandler.idl
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/Modules/protocolhandler/NavigatorRegisterProtocolHandler.idl')
-rw-r--r--Source/WebCore/Modules/protocolhandler/NavigatorRegisterProtocolHandler.idl4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebCore/Modules/protocolhandler/NavigatorRegisterProtocolHandler.idl b/Source/WebCore/Modules/protocolhandler/NavigatorRegisterProtocolHandler.idl
index 1bd57f2fe..274bb5992 100644
--- a/Source/WebCore/Modules/protocolhandler/NavigatorRegisterProtocolHandler.idl
+++ b/Source/WebCore/Modules/protocolhandler/NavigatorRegisterProtocolHandler.idl
@@ -25,9 +25,9 @@ module window {
] NavigatorRegisterProtocolHandler {
[Conditional=REGISTER_PROTOCOL_HANDLER] void registerProtocolHandler(in DOMString scheme, in DOMString url, in DOMString title)
raises(DOMException);
- [Conditional=CUSTOM_SCHEME_HANDLER] DOMString isProtocolHandlerRegistered(in DOMString scheme, in DOMString url)
+ [Conditional=REGISTER_PROTOCOL_HANDLER&CUSTOM_SCHEME_HANDLER] DOMString isProtocolHandlerRegistered(in DOMString scheme, in DOMString url)
raises(DOMException);
- [Conditional=CUSTOM_SCHEME_HANDLER] void unregisterProtocolHandler(in DOMString scheme, in DOMString url)
+ [Conditional=REGISTER_PROTOCOL_HANDLER&CUSTOM_SCHEME_HANDLER] void unregisterProtocolHandler(in DOMString scheme, in DOMString url)
raises(DOMException);
};