!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/queuepro/node_modules/svg.js/spec/spec/   drwxrwxr-x
Free 13.16 GB of 57.97 GB (22.7%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     selector.js (2.11 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
describe('Selector', function() {

  describe('get()', function() {
    it('gets an element\'s instance by id', function() {
      var rect = draw.rect(111, 333)
      
      expect(SVG.get(rect.attr('id'))).toBe(rect)
    })
    it('makes all the element\'s methods available', function() {
      var element = draw.group()
        , got = SVG.get(element.attr('id'))
      
      expect(got.attr()).toEqual(element.attr())
    })
    it('gets a referenced element by attribute value', function() {
      var rect = draw.defs().rect(100, 100)
        , use  = draw.use(rect)
        , mark = draw.marker(10, 10)
        , path = draw.path(svgPath).marker('end', mark)

      expect(SVG.get(use.attr('href'))).toBe(rect)
      expect(SVG.get(path.attr('marker-end'))).toBe(mark)
    })
  })

  describe('select()', function() {
    var e1, e2, e3, e4 ,e5

    beforeEach(function() {
      e1 = draw.rect(100, 100).addClass('selectable-element')
      e2 = draw.rect(100, 100).addClass('unselectable-element')
      e3 = draw.rect(100, 100).addClass('selectable-element')
      e4 = draw.rect(100, 100).addClass('unselectable-element')
      e5 = draw.rect(100, 100).addClass('selectable-element')
    })
    it('gets all elements with a given class name', function() {
      expect(SVG.select('rect.selectable-element').valueOf()).toEqual([e1, e3, e5])
    })
    it('returns an instance of SVG.Set', function() {
      expect(SVG.select('rect.selectable-element') instanceof SVG.Set).toBe(true)
    })
  })

  describe('Parent#select()', function() {
    it('gets all elements with a given class name inside a given element', function() {
      var group = draw.group()
        , e1 = draw.rect(100, 100).addClass('selectable-element')
        , e2 = draw.rect(100, 100).addClass('unselectable-element')
        , e3 = group.rect(100, 100).addClass('selectable-element')
        , e4 = draw.rect(100, 100).addClass('unselectable-element')
        , e5 = group.rect(100, 100).addClass('selectable-element')

      expect(group.select('rect.selectable-element').valueOf()).toEqual([e3, e5])
    })
  })
  
})

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

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