[Webkit-unassigned] [Bug 60568] REGRESSION (WebKit2): Flash plugin doesn't appear on a hanes.com page
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Wed May 11 05:10:45 PDT 2011
https://bugs.webkit.org/show_bug.cgi?id=60568
--- Comment #18 from Adam Roben (:aroben) <aroben at apple.com> 2011-05-11 05:10:45 PST ---
Here's a summary of the behaviors of the various plugin implementations, from reading the code. (I've omitted the cases where no notification was requested.):
WebKit1 Mac:
* If the target is null
* If the result is non-empty
* Send the result via a stream
* NPP_URLNotify(NPRES_DONE)
* Else
* Do nothing
* Else
* NPP_URLNotify(NPRES_DONE)
WebKit1 Windows (and Qt, GTK+, etc.):
* If the target is null
* Send the result via a stream
* If the result is null
* NPP_URLNotify(NPRES_NETWORK_ERR)
* Else
* NPP_URLNotify(NPRES_DONE)
* Else
Do nothing
WebKit2:
* If the target is null
* Send the result via a stream
* If the result is null
* NPP_URLNotify(NPRES_NETWORK_ERR)
* Else
* NPP_URLNotify(NPRES_DONE)
* Else
* If the result is null
* NPP_URLNotify(NPRES_NETWORK_ERR)
* Else
* NPP_URLNotify(NPRES_DONE)
--
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