Bug 117093
| Summary: | HTMLCanvasElement supportsContext function does not account for optional attributes parameters | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | Ruth Fong <ruthiecftg> |
| Component: | Canvas | Assignee: | Nobody <webkit-unassigned> |
| Status: | RESOLVED INVALID | ||
| Severity: | Normal | CC: | annevk, dino, ruthiecftg, webkit-bug-importer |
| Priority: | P2 | Keywords: | InRadar |
| Version: | 528+ (Nightly build) | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
Ruth Fong
Once landed, the patch for bug 70117 (https://bugs.webkit.org/show_bug.cgi?id=70117) implements the supportsContext function for HTMLCanvasElement as spec'ed in HTML standards (http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html#dom-canvas-supportscontext).
HTML standards states that "The supportsContext(contextId, arguments...) method of the canvas element, when invoked, must return false if calling getContext() on the same object and with the same arguments would definitely return null at this time, and true otherwise."
The patch for bug 70117 will not account for the optional arguments, i.e. it's return value is only based on the contextId parameter.
supportsContext function (implemented in Source/WebCore/html/HTMLCanvasElement.cpp after the patch for bug 70117 lands) should be updated to account for the optional parameters.
| Attachments | ||
|---|---|---|
| Add attachment proposed patch, testcase, etc. |
Radar WebKit Bug Importer
<rdar://problem/14037811>
Anne van Kesteren
This was removed from the specification and WebKit at some point.