author | Paul Adenot <paul@paul.cx> |
Mon, 11 May 2015 16:56:00 +0200 | |
changeset 243533 | 01adfca321668748854e09657bd80077e7318140 |
parent 243532 | 4071627f11d316615f9c0ad80776d33f2ea5c87a |
child 243534 | 3f13ac0125814c0338f5524f7ed885945cce35ad |
push id | 28741 |
push user | kwierso@gmail.com |
push date | Tue, 12 May 2015 23:24:40 +0000 |
treeherder | mozilla-central@d476776d920d [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
bugs | 1160153 |
milestone | 40.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/dom/media/test/crashtests/1158427.html +++ b/dom/media/test/crashtests/1158427.html @@ -1,18 +1,23 @@ <!DOCTYPE html> <html> <head> <script> function boom() { + dump("before capture\n"); document.createElement("audio").mozCaptureStreamUntilEnded(); + dump("before context\n"); new window.AudioContext(); + dump("before mozapps\n"); navigator.mozApps; + dump("before gc\n"); SpecialPowers.forceCC(); + dump("after gc\n"); } </script> </head> <body onload="boom();"></body> </html>