Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

This site will have limited functionality while we undergo maintenance to improve your experience. If an article doesn't solve your issue and you want to ask a question, we have our support community waiting to help you at @FirefoxSupport on Twitter and/r/firefox on Reddit.

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Lolu chungechunge lwabekwa kunqolobane. Uyacelwa ubuze umbuzo omusha uma udinga usizo.

Firefox spews AbortError when scrubbing video (example code)

  • 1 baphendule
  • 1 inale nkinga
  • 2 views
  • Igcine ukuphendulwa ngu oije2333

more options

Recent versions of Firefox continuously spew the following message in the console while scrubbing video:

    AbortError: The operation was aborted.

This occurs while dragging the progress bar handle along the progress bar in a video element.

Example code follows. After video loads, move the progress bar handle and observe the errors in the console.

<title>Video.js example</title> <meta charset="UTF-8"> <link href="http://vjs.zencdn.net/7.1.0/video-js.min.css" rel="stylesheet"> <script src="http://vjs.zencdn.net/7.1.0/video.min.js"></script>

Recent versions of Firefox continuously spew the following message in the console while scrubbing video: AbortError: The operation was aborted. This occurs while dragging the progress bar handle along the progress bar in a video element. Example code follows. After video loads, move the progress bar handle and observe the errors in the console. <!DOCTYPE html> <html> <head> <title>Video.js example</title> <meta charset='UTF-8'> <link href="http://vjs.zencdn.net/7.1.0/video-js.min.css" rel="stylesheet"> <script src="http://vjs.zencdn.net/7.1.0/video.min.js"></script> </head> <body> <video id="videojs_example" class="video-js vjs-default-skin" controls preload="auto" width=640 height=360 data-setup='{ "example_option": true, "controlBar": { "volumePanel": { "inline": false }} }'> <source src="http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4" type="video/mp4"> </video> </body> </html>

All Replies (1)

more options

The code:

     <!DOCTYPE html>
     <html>
     <head>
       <title>Video.js example</title>
       <meta charset='UTF-8'>
       <link href="http://vjs.zencdn.net/7.1.0/video-js.min.css" rel="stylesheet">
       <script src="http://vjs.zencdn.net/7.1.0/video.min.js"></script>
     </head>
     <body>
       <video id="videojs_example" class="video-js vjs-default-skin"
        controls preload="auto" width=640 height=360
        data-setup='{ "example_option": true, "controlBar": { "volumePanel": { "inline": false }} }'>
        <source src="http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4"
          type="video/mp4">
     </video>
     </body>
     </html>