Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(764)

Side by Side Diff: third_party/WebKit/LayoutTests/webaudio/AudioContext/audiocontext-lock-threading-race.html

Issue 2815493002: Move layout tests that use 'js-test.js' to |internals| directory (Closed)
Patch Set: Path fixed Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <body>
2 <script src="../../resources/js-test.js"></script>
3 <script>
4 description("TSan shouldn't complain about threading races of AudioContext::lock ().");
5 var jsTestAsync = true;
6 var ac = new window.AudioContext();
7 ac.createMediaStreamDestination();
8 setTimeout(function() {
9 gc();
10 finishJSTest();
11 }, 200);
12 </script>
13 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698