Bug 117093

Summary: HTMLCanvasElement supportsContext function does not account for optional attributes parameters
Product: WebKit Reporter: Ruth Fong <ruthiecftg>
Component: CanvasAssignee: Nobody <webkit-unassigned>
Status: UNCONFIRMED ---    
Severity: Normal CC: dino, ruthiecftg, webkit-bug-importer
Priority: P2 Keywords: InRadar
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   

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>