Hi there,
I am debugging an issue with the IMA HTML5 SDK and Javascript VPAID creatives.
Steps to recreate the issue:
3. Start playing the video
4. Check console:

As you can see, the currentTime value never changes from 0, despite the whole video playing.
Relevant portion of JS:
this.videoSlot.addEventListener('timeupdate', function() {
return console.log('timeupdate', arguments);
});
this.videoSlot.addEventListener('play', function() {
return console.log('play', arguments);
});
this.videoSlot.addEventListener('pause', function() {
return console.log('pause', arguments);
});
setInterval(((function(_this) {
return function() {
return console.log('currentTime', _this.videoSlot.currentTime);
};
})(this)), 1000);
Any insight into why the proxyelement isn't notifying the advert about playback?
Thanks,
Michael Adams.