Bug 117093 - HTMLCanvasElement supportsContext function does not account for optional attributes parameters
Summary: HTMLCanvasElement supportsContext function does not account for optional attr...
Status: UNCONFIRMED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Canvas (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Nobody
URL:
Keywords: InRadar
Depends on:
Blocks:
 
Reported: 2013-05-31 14:29 PDT by Ruth Fong
Modified: 2013-05-31 14:31 PDT (History)
3 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Ruth Fong 2013-05-31 14:29:50 PDT
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.
Comment 1 Radar WebKit Bug Importer 2013-05-31 14:30:05 PDT
<rdar://problem/14037811>