[Webkit-unassigned] [Bug 76102] Add support for loadstart, progress, and loadend ProgressEvents to the IMG tag.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Feb 13 12:59:52 PST 2012


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





--- Comment #5 from Ian 'Hixie' Hickson <ian at hixie.ch>  2012-02-13 12:59:51 PST ---
"loadend" is basically uninteresting. It's just a shortcut to calling the same function from both the 'load' and 'error' handlers. It literally saves only a few characters:

   img.onloadend = function () { };

...vs:

   img.onload = img.onerror = function () { };

-- 
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