[Bug 17157] <track> Need to await a stable state before assigning /URL/ in the first run

https://www.w3.org/Bugs/Public/show_bug.cgi?id=17157

--- Comment #2 from Simon Pieters <simonp@opera.com> 2012-05-23 17:38:48 UTC ---
(In reply to comment #1)
> Consider
> 
> var track = document.createElement('track');
> track.src = 'foo';

Make that:

var track = document.createElement('track');
track.mode = 'showing';
track.src = 'foo';

-- 
Configure bugmail: https://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.

Received on Wednesday, 23 May 2012 17:38:52 UTC