| OLD | NEW |
| 1 <body> | 1 <body> |
| 2 <script src="../resources/js-test.js"></script> | 2 <script src="../../resources/js-test.js"></script> |
| 3 <script> | 3 <script> |
| 4 description("TSan shouldn't complain about threading races of AudioContext::lock
()."); | 4 description("TSan shouldn't complain about threading races of AudioContext::lock
()."); |
| 5 var jsTestAsync = true; | 5 var jsTestAsync = true; |
| 6 var ac = new window.AudioContext(); | 6 var ac = new window.AudioContext(); |
| 7 ac.createMediaStreamDestination(); | 7 ac.createMediaStreamDestination(); |
| 8 setTimeout(function() { | 8 setTimeout(function() { |
| 9 gc(); | 9 gc(); |
| 10 finishJSTest(); | 10 finishJSTest(); |
| 11 }, 200); | 11 }, 200); |
| 12 </script> | 12 </script> |
| 13 </body> | 13 </body> |
| OLD | NEW |