tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

methods-worker.js (354B)


      1 /*
      2 Copyright (c) 2019 The Khronos Group Inc.
      3 Use of this source code is governed by an MIT-style license that can be
      4 found in the LICENSE.txt file.
      5 */
      6 
      7 importScripts("../../js/tests/canvas-tests-utils.js");
      8 self.onmessage = function(e) {
      9    if (testAPIs('webgl'))
     10      self.postMessage("Test passed");
     11    else
     12      self.postMessage("Test failed");
     13 }