ServiceWorkerGlobalScope: backgroundfetchfail event
  
  
   
   The backgroundfetchfail event of the ServiceWorkerGlobalScope interface is fired when a background fetch operation has failed: that is, when at least one network request in the fetch has failed to complete successfully.
   This event is not cancelable and does not bubble.
   
  Syntax
  
   Use the event name in methods like addEventListener(), or set an event handler property.
   
    
    addEventListener("backgroundfetchfail", (event) => {});
onbackgroundfetchfail = (event) => {};
    
   
  Event type
  
  Event properties
  
   Inherits properties from its parent, BackgroundFetchEvent.
   
    - 
     
BackgroundFetchUpdateUIEvent.updateUI()
     
    - 
     
Updates the UI of the element that the browser displays to show the progress of the fetch operation.
     
   
   
  Description
  
   When a background fetch operation fails (meaning that at least one of the individual network requests has not completed successfully), the browser starts the service worker, if necessary, and fires the backgroundfetchfail event in the service worker's global scope.
   In the background fetch API, the browser shows a UI element to the user to indicate the progress of the operation. In the backgroundfetchfail handler, the service worker can update that UI to show that the operation has failed. To do this, the handler calls the event's updateUI() method, passing in a new title and/or icons.
   In the handler for this backgroundfetchfail, the service worker can also clean up any related data for the operation. It can also retrieve and store any successful responses (for example, using the Cache API). To access the response data, the service worker uses the event's registration property.
   
  Examples
  Updating UI
  
   This event handler updates the UI to let the user know that the operation failed.
   
    
    addEventListener("backgroundfetchfail", (event) => {
  event.updateUI({ title: "Could not complete download" });
});
    
   
  Specifications
  
  Browser compatibility
  
   
    
     
      
        | 
       Desktop | 
       Mobile | 
      
      
        | 
       Chrome | 
       Edge | 
       Firefox | 
       Internet Explorer | 
       Opera | 
       Safari | 
       WebView Android | 
       Chrome Android | 
       Firefox for Android | 
       Opera Android | 
       Safari on IOS | 
       Samsung Internet | 
      
     
     
      
       backgroundfetchfail_event | 
       74 | 
       79 | 
       No | 
       No | 
       62 | 
       No | 
       No | 
       74 | 
       No | 
       53 | 
       No | 
       11.0 | 
      
     
    
    
   
  See also