mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
11 lines
298 B
JavaScript
11 lines
298 B
JavaScript
|
|
describe('js/utils/dom', function() {
|
|
|
|
describe('getPositionInParent', function() {
|
|
it('should return el.{offsetLeft,offsetTop}', function() {
|
|
var el = { offsetLeft: 3, offsetTop: 4 };
|
|
expect(ionic.DomUtil.getPositionInParent(el)).toEqual({ left: 3, top: 4 });
|
|
});
|
|
});
|
|
});
|