tor-browser

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

font-face-tests-data.js (614B)


      1 const kExpectedRequests = [
      2    {   fileNameAndSuffix: "dummy.font",
      3        internalPriority: SpecialPowers.Ci.nsISupportsPriority.PRIORITY_HIGH
      4    },
      5 ];
      6 
      7 export const kTestFolderName = "font-face-tests";
      8 
      9 export const kTestData = [
     10    {   testFileName: "load-font-face-from-head.h2.html",
     11        expectedRequests: kExpectedRequests
     12    },
     13    {   testFileName: "load-font-face-from-worker.h2.html",
     14        expectedRequests: kExpectedRequests
     15    },
     16    {   testFileName: "load-font-face-from-script.h2.html",
     17        expectedRequests: kExpectedRequests
     18    },
     19 ];
     20 
     21 export const kTestDataDisabled = kTestData;