diff options
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index ed3283868d5..8ac3669ad88 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -173,11 +173,11 @@ pub fn init_service_workers(sw_senders: SWManagerSenders) { pub fn init() { unsafe { proxyhandler::init(); - } - // Create the global vtables used by the (generated) DOM - // bindings to implement JS proxies. - RegisterBindings::RegisterProxyHandlers(); + // Create the global vtables used by the (generated) DOM + // bindings to implement JS proxies. + RegisterBindings::RegisterProxyHandlers(); + } perform_platform_specific_initialization(); } |