tor-browser

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

open-features-non-integer-height.html.ini (1656B)


      1 [open-features-non-integer-height.html]
      2  expected:
      3    if (os == "android") and not debug: [OK, ERROR]
      4  [features "height=405.5" should set "height=405"]
      5    expected:
      6      if os == "android": FAIL
      7      [PASS, FAIL]
      8 
      9  [features "height=405.32" should set "height=405"]
     10    expected:
     11      if os == "android": FAIL
     12      [PASS, FAIL]
     13 
     14  [features "height=405LLl" should set "height=405"]
     15    expected:
     16      if os == "android": FAIL
     17      [PASS, FAIL]
     18 
     19  [features "height=405^4" should set "height=405"]
     20    expected:
     21      if os == "android": FAIL
     22      [PASS, FAIL]
     23 
     24  [features "height=405*3" should set "height=405"]
     25    expected:
     26      if os == "android": FAIL
     27      [PASS, FAIL]
     28 
     29  [features "height=405/5" should set "height=405"]
     30    expected:
     31      if os == "android": FAIL
     32      [PASS, FAIL]
     33 
     34  [features "height=405  " should set "height=405"]
     35    expected:
     36      if os == "android": FAIL
     37      [PASS, FAIL]
     38 
     39  [features "height=405e1" should set "height=405"]
     40    expected:
     41      if os == "android": FAIL
     42      [PASS, FAIL]
     43 
     44  [features "height=405e-1" should set "height=405"]
     45    expected:
     46      if os == "android": FAIL
     47      [PASS, FAIL]
     48 
     49  [features "height=/404" should NOT set "height=404"]
     50    expected:
     51      if (os == "linux") and asan and not fission: [PASS, FAIL]
     52      if (os == "linux") and not asan: [PASS, FAIL]
     53 
     54  [top=0,left=0: absence of feature "height" should be treated same as "height=0"]
     55    expected:
     56      if (os == "linux") and not debug and fission and asan: [PASS, FAIL]
     57      if (os == "linux") and not debug and fission and not asan: [PASS, FAIL]
     58      if (os == "linux") and debug and fission: [PASS, FAIL]