[whatwg] Removing hit regions without calling clearRect() or addHitRegion()

Hi,

Currently, there are only two ways to invoke the "clear regions that
cover the pixels" algorithm: by calling either addHitRegion() or
clearRect(). Authors should be able to explicitly remove a hit region as
well, with a removeHitRegion(id) method.

Consider a region of a canvas which the author would like to toggle
between clickable and non-clickable states without drawing. Maybe
they're indicating clickability by drawing a different outline around
the region without actually redrawing the region itself, or perhaps
there is no visible indication that the region's clickability is
changing. Such an author should be able to straightforwardly achieve
this without redrawing the region (as clearRect would require) and
without installing a dummy hit region (as addHitRegion would require).


Thanks,
Ted

Received on Thursday, 5 July 2012 16:41:14 UTC