Given an attribute on an event that will be browser prefixed, I'd like to create a polyfill that makes it appear unprefixed.
E.g. the interface FooEvent has an attribute webkitBar that I'd like to make appear as just bar so that handlers could be written as onFoo = function(e) { console.log(e.bar); }
My clumsy initial guess is to inject something into the prototype FooEvent.prototype.getBar = function() { return this.webkitBar; }. But, I'm not certain how.