Warp/node_modules/mark.js/test/specs/iframes/nested-unmark.js

41 lines
913 B
JavaScript
Raw Normal View History

2024-01-05 12:14:38 +00:00
'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();
});
}
);
});