[Webkit-unassigned] [Bug 72698] [GTK] media/audio-garbage-collect.html is flaky

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Mar 6 06:52:19 PST 2012


https://bugs.webkit.org/show_bug.cgi?id=72698





--- Comment #5 from Philippe Normand <pnormand at igalia.com>  2012-03-06 06:52:19 PST ---
I dedicated some hours to this issue today... Here are my findings:

- test executed standalone: works
- test executed after a video test: works
- test executed after an audio test: times out

If I replace:

var a = new Audio(audioFile);

with:

setSrcByTagName("audio", findMediaFile("audio", "content/silence"));
var a = document.getElementById('audio');

(and a <audio id="audio"/> element in the body).

And:

a = null;

with:

a.parentNode.removeChild(a);

The test passes in all cases. Could this be a JSC-related issue?

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list