[Webkit-unassigned] [Bug 135507] New: Video does not trigger 'error' event for 403 error

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Aug 1 08:00:34 PDT 2014


https://bugs.webkit.org/show_bug.cgi?id=135507

           Summary: Video does not trigger 'error' event for 403 error
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Macintosh
        OS/Version: Mac OS X 10.9
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: HTML Events
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: meekohi at gmail.com


Correct behavior: error event should fire.
Current behavior: no event fires.

Reproduce with:

<html>
<body></body>
<script>
video = document.createElement("video");
video.addEventListener("error", function (err) {
  console.log("Could not load video");
});
video.src = "https://spins.arqspin.com/2c0rjp53jqhf8/spin.mp4"; // returns 403
video.load();
</script>
</html>

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list