tor-browser

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

argument-string-critical-unknown-annotation.js (1149B)


      1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally
      2 // Copyright (C) 2022 Igalia, S.L. All rights reserved.
      3 // This code is governed by the BSD license found in the LICENSE file.
      4 
      5 /*---
      6 esid: sec-temporal.plaintime.compare
      7 description: Unknown annotations with critical flag are rejected
      8 features: [Temporal]
      9 ---*/
     10 
     11 const invalidStrings = [
     12  "00:00[!foo=bar]",
     13  "T00:00[!foo=bar]",
     14  "1970-01-01T00:00[!foo=bar]",
     15  "1970-01-01T00:00[UTC][!foo=bar]",
     16  "1970-01-01T00:00[u-ca=iso8601][!foo=bar]",
     17  "1970-01-01T00:00[UTC][!foo=bar][u-ca=iso8601]",
     18  "1970-01-01T00:00[foo=bar][!_foo-bar0=Dont-Ignore-This-99999999999]",
     19 ];
     20 
     21 invalidStrings.forEach((arg) => {
     22  assert.throws(
     23    RangeError,
     24    () => Temporal.PlainTime.compare(arg, new Temporal.PlainTime(12, 34, 56, 987, 654, 321)),
     25    `reject unknown annotation with critical flag: ${arg} (first argument)`
     26  );
     27  assert.throws(
     28    RangeError,
     29    () => Temporal.PlainTime.compare(new Temporal.PlainTime(12, 34, 56, 987, 654, 321), arg),
     30    `reject unknown annotation with critical flag: ${arg} (second argument)`
     31  );
     32 });
     33 
     34 reportCompare(0, 0);