mirror of
https://github.com/imezx/Warp.git
synced 2025-04-24 23:20:02 +00:00
40 lines
913 B
JavaScript
40 lines
913 B
JavaScript
'use strict';
|
|
describe('unmark with nested iframes', function() {
|
|
var $ctx, $elements, errCall;
|
|
beforeEach(function(done) {
|
|
loadFixtures('iframes/nested.html');
|
|
|
|
$ctx = $('.iframes-nested');
|
|
$elements = $();
|
|
errCall = 0;
|
|
try {
|
|
var instance = new Mark($ctx[0]);
|
|
instance.mark('lorem', {
|
|
'diacritics': false,
|
|
'separateWordSearch': false,
|
|
'iframes': true,
|
|
'each': function($el) {
|
|
$elements = $elements.add($($el));
|
|
},
|
|
'done': function() {
|
|
instance.unmark({
|
|
'iframes': true,
|
|
'done': done
|
|
});
|
|
}
|
|
});
|
|
} catch (e) {
|
|
errCall++;
|
|
}
|
|
});
|
|
|
|
it(
|
|
'should remove all marked elements inside iframes recursively',
|
|
function() {
|
|
expect(errCall).toBe(0);
|
|
$elements.each(function() {
|
|
expect(this).not.toBeInDOM();
|
|
});
|
|
}
|
|
);
|
|
});
|