mirror of
https://github.com/imezx/Warp.git
synced 2025-04-25 15:40:02 +00:00
36 lines
930 B
JavaScript
36 lines
930 B
JavaScript
'use strict';
|
|
describe('mark with disabled iframes', function() {
|
|
var $ctx, $elements, errCall;
|
|
beforeEach(function(done) {
|
|
loadFixtures('iframes/disabled.html');
|
|
|
|
$elements = $();
|
|
$ctx = $('.iframes-disabled');
|
|
errCall = 0;
|
|
try {
|
|
new Mark($ctx[0]).mark('lorem', {
|
|
'diacritics': false,
|
|
'separateWordSearch': false,
|
|
'iframes': false,
|
|
'each': function($m) {
|
|
$elements = $elements.add($($m));
|
|
},
|
|
'done': done
|
|
});
|
|
} catch (e) {
|
|
errCall++;
|
|
}
|
|
}, 30000); // 30 sec timeout
|
|
|
|
it('should ignore matches inside iframes if specified', function() {
|
|
expect(errCall).toBe(0);
|
|
var unequal = false;
|
|
$elements.each(function() {
|
|
if ($(this).prop('ownerDocument') !== $ctx.prop('ownerDocument')) {
|
|
unequal = true;
|
|
}
|
|
});
|
|
expect(unequal).toBe(false);
|
|
expect($elements).toHaveLength(4);
|
|
});
|
|
});
|