aboutsummaryrefslogtreecommitdiffstats
path: root/extlib/leaflet/spec/suites/dom/DomUtilSpec.js
blob: 60de22fef72fffea0c6c8e11ff81fe35c7d91f0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
describe('DomUtil', function() {
	var el;
	
	beforeEach(function() {
		el = document.createElement('div');
		el.style.position = 'absolute';
		el.style.top = el.style.left = '-10000px';
		document.body.appendChild(el);
	});
	
	afterEach(function() {
		document.body.removeChild(el);
	});
	
	describe('#get', function() {
		it('should get element by id if the given argument is string', function() {
			el.id = 'testId';
			expect(L.DomUtil.get(el.id)).toBe(el);
		});
		
		it('should return the element if it is given as an argument', function() {
			expect(L.DomUtil.get(el)).toBe(el);
		});
	});
	
	describe('#setPosition', noSpecs);
	
	describe('#getStyle', noSpecs);
});