This commit is contained in:
Robert Jelic
2025-02-16 18:04:24 +01:00
parent 41e6149828
commit 31787b0e9b
2670 changed files with 1037781 additions and 0 deletions

25
node_modules/mark.js/test/specs/ranges/iframes.js generated vendored Normal file
View File

@@ -0,0 +1,25 @@
'use strict';
describe('mark with range in iframes', function() {
var $ctx;
beforeEach(function(done) {
loadFixtures('ranges/iframes.html');
$ctx = $('.ranges-iframes');
new Mark($ctx[0]).markRanges([
// "lorem" in iframes.html
{ start: 14, length: 5 },
// "lorem" in inc.html iframe
{ start: 70, length: 5 },
// "testing" in inc.html iframe
{ start: 82, length: 7 }
], {
'iframes': true,
'done': done
});
});
it('should mark correct range including iframes', function() {
expect($ctx.find('mark')).toHaveLength(1);
expect($ctx.find('iframe').contents().find('mark')).toHaveLength(2);
});
});