Fixes #2443 - Fix IE9 which trowed an error when setting an input type to "email"
[mootools.git] / Specs / 1.5client / Element / Element.js
blob332bf043a2f53737651be4df685138ffe9f7fadf
2 describe('creating new Elements', function(){
4         it('should create an element with type="email"', function(){
5                 var el = new Element('input', {type: 'email'});
6                 expect(el.get('type')).toMatch(/email|text/);
7         });
9 });