chromium/third_party/blink/web_tests/webaudio/internals/audiocontext-lock-threading-race.html

<!DOCTYPE html>
<html>
  <head>
    <title>
      audiocontext-lock-threading-race.html
    </title>
    <script src="../../resources/js-test.js"></script>
  </head>
  <body>
    <script id="layout-test-code">
      description(
          'TSan shouldn\'t complain about threading races of AudioContext::lock().');
      let jsTestAsync = true;
      let ac = new window.AudioContext();
      ac.createMediaStreamDestination();
      ac.close();
      setTimeout(async () => {
        await asyncGC();
        finishJSTest();
      }, 200);
    </script>
  </body>
</html>