!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/jiff_delivery/node_modules/webpack-rtl-plugin/node_modules/rtlcss/test/data/   drwxrwxrwx
Free 13.12 GB of 57.97 GB (22.64%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     transform-origin.js (5.26 KB)      -rwxrwxrwx
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
module.exports = [
  {
    'should': 'Should mirror (x-offset: 0 means 0%)',
    'expected': 'div { transform-origin:100%; }',
    'input': 'div { transform-origin:0; }',
    'reversable': false
  },
  {
    'should': 'Should mirror (x-offset)',
    'expected': 'div { transform-origin:90.25%; }',
    'input': 'div { transform-origin:9.75%; }',
    'reversable': true
  },
  {
    'should': 'Should mirror calc (x-offset)',
    'expected': 'div { transform-origin: -moz-calc(100% - (((25%/2) * 10px))); }',
    'input': 'div { transform-origin: -moz-calc(((25%/2) * 10px)); }',
    'reversable': false
  },
  {
    'should': 'Should not mirror (x-offset: not percent, not calc)',
    'expected': 'div { transform-origin:10.75px; }',
    'input': 'div { transform-origin:10.75px; }',
    'reversable': false
  },
  {
    'should': 'Should mirror (offset-keyword)',
    'expected': 'div { transform-origin:right; }',
    'input': 'div { transform-origin:left; }',
    'reversable': true
  },
  {
    'should': 'Should mirror (x-offset y-offset: 0 means 0%)',
    'expected': 'div { transform-origin:100% 0; }',
    'input': 'div { transform-origin:0 0; }',
    'reversable': false
  },
  {
    'should': 'Should mirror with y being calc (x-offset y-offset: 0 means 0%)',
    'expected': 'div { transform-origin:100% -webkit-calc(15% * (3/2)); }',
    'input': 'div { transform-origin:0 -webkit-calc(15% * (3/2)); }',
    'reversable': false
  },
  {
    'should': 'Should mirror percent (x-offset y-offset)',
    'expected': 'div { transform-origin:30.25% 10%; }',
    'input': 'div { transform-origin:69.75% 10%; }',
    'reversable': true
  },
  {
    'should': 'Should mirror with x being calc (x-offset y-offset)',
    'expected': 'div { transform-origin: -webkit-calc(100% - (15% * (3/2))) 30.25%; }',
    'input': 'div { transform-origin: -webkit-calc(15% * (3/2)) 30.25%; }',
    'reversable': false
  },
  {
    'should': 'Should mirror with y being calc (x-offset y-offset)',
    'expected': 'div { transform-origin:30.25% calc(15% * (3/2)); }',
    'input': 'div { transform-origin:69.75% calc(15% * (3/2)); }',
    'reversable': true
  },
  {
    'should': 'Should mirror (y-offset x-offset-keyword)',
    'expected': 'div { transform-origin:70% right; }',
    'input': 'div { transform-origin:70% left; }',
    'reversable': true
  },
  {
    'should': 'Should mirror with calc (y-offset x-offset-keyword)',
    'expected': 'div { transform-origin:-ms-calc(140%/2) right; }',
    'input': 'div { transform-origin:-ms-calc(140%/2) left; }',
    'reversable': true
  },
  {
    'should': 'Should mirror (x-offset-keyword y-offset)',
    'expected': 'div { transform-origin:right 70%; }',
    'input': 'div { transform-origin:left 70%; }',
    'reversable': true
  },
  {
    'should': 'Should mirror with calc (x-offset-keyword y-offset)',
    'expected': 'div { transform-origin:right -moz-calc(((140%/2))); }',
    'input': 'div { transform-origin:left -moz-calc(((140%/2))); }',
    'reversable': true
  },
  {
    'should': 'Should mirror (y-offset-keyword x-offset)',
    'expected': 'div { transform-origin:top 30.25%; }',
    'input': 'div { transform-origin:top 69.75%; }',
    'reversable': true
  },
  {
    'should': 'Should not mirror with x being calc (y-offset-keyword x-offset)',
    'expected': 'div { transform-origin:top calc(100% - (((140%/2)))); }',
    'input': 'div { transform-origin:top calc(((140%/2))); }',
    'reversable': false
  },
  {
    'should': 'Should mirror (x-offset-keyword y-offset-keyword)',
    'expected': 'div { transform-origin:right top; }',
    'input': 'div { transform-origin:left top; }',
    'reversable': true
  },
  {
    'should': 'Should mirror (y-offset-keyword x-offset-keyword)',
    'expected': 'div { transform-origin:top right; }',
    'input': 'div { transform-origin:top left; }',
    'reversable': true
  },
  {
    'should': 'Should mirror (x-offset y-offset z-offset)',
    'expected': 'div { transform-origin:80.25% 30% 10%; }',
    'input': 'div { transform-origin:19.75% 30% 10%; }',
    'reversable': true
  },
  {
    'should': 'Should mirror with x being calc (x-offset y-offset z-offset)',
    'expected': 'div { transform-origin: calc(100% - (25% * 3 + 20px)) 30% 10%; }',
    'input': 'div { transform-origin: calc(25% * 3 + 20px) 30% 10%; }',
    'reversable': false
  },
  {
    'should': 'Should mirror (y-offset x-offset-keyword z-offset)',
    'expected': 'div { transform-origin:20% right 10%; }',
    'input': 'div { transform-origin:20% left 10%; }',
    'reversable': true
  },
  {
    'should': 'Should mirror (x-offset-keyword y-offset z-offset)',
    'expected': 'div { transform-origin:left 20% 10%; }',
    'input': 'div { transform-origin:right 20% 10%; }',
    'reversable': true
  },
  {
    'should': 'Should mirror (x-offset-keyword y-offset-keyword z-offset)',
    'expected': 'div { transform-origin:left bottom 10%; }',
    'input': 'div { transform-origin:right bottom 10%; }',
    'reversable': true
  },
  {
    'should': 'Should mirror (y-offset-keyword x-offset-keyword z-offset)',
    'expected': 'div { transform-origin:bottom left 10%; }',
    'input': 'div { transform-origin:bottom right 10%; }',
    'reversable': true
  }
]

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0252 ]--