Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

fix(jqLite): use .children to fetch child elements but fallback to .childNodes for SVGs in IE #8075

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/jqLite.js
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ function jqLiteClone(element) {
function jqLiteDealoc(element){
jqLiteRemoveData(element);
var childElement;
for ( var i = 0, children = element.children, l = (children && children.length) || 0; i < l; i++) {
for ( var i = 0, children = element.children || element.childNodes, ii = (children && children.length) || 0; i < ii; i++) {
childElement = children[i];
jqLiteDealoc(childElement);
}
Expand Down Expand Up @@ -432,8 +432,8 @@ function jqLiteInheritedData(element, name, value) {
}

function jqLiteEmpty(element) {
for (var i = 0, childNodes = element.childNodes; i < childNodes.length; i++) {
jqLiteDealoc(childNodes[i]);
for (var i = 0, children = element.children || element.childNodes, ii = children.length; i < ii; i++) {
jqLiteDealoc(children[i]);
}
while (element.firstChild) {
element.removeChild(element.firstChild);
Expand Down Expand Up @@ -632,8 +632,8 @@ forEach({
if (isUndefined(value)) {
return element.innerHTML;
}
for (var i = 0, childNodes = element.childNodes; i < childNodes.length; i++) {
jqLiteDealoc(childNodes[i]);
for (var i = 0, children = element.children || element.childNodes, ii = children.length; i < ii; i++) {
jqLiteDealoc(children[i]);
}
element.innerHTML = value;
},
Expand Down Expand Up @@ -853,7 +853,7 @@ forEach({

children: function(element) {
var children = [];
forEach(element.childNodes, function(element){
forEach(element.children || element.childNodes, function(element) {
if (element.nodeType === 1)
children.push(element);
});
Expand Down
19 changes: 19 additions & 0 deletions test/jqLiteSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,25 @@ describe('jqLite', function() {
selected.removeData('prop2');
});

it('should add and remove data on SVGs', function() {
var calcCacheSize = function() {
var count = 0;
for (var k in jqLite.cache) { ++count; }
return count;
};

var svg = jqLite('<svg><rect></rect></svg>');

svg.data('svg-level', 1);
expect(svg.data('svg-level')).toBe(1);

svg.children().data('rect-level', 2);
expect(svg.children().data('rect-level')).toBe(2);

svg.remove();
expect(calcCacheSize()).toEqual(0);
});


it('should not add to the cache if the node is a comment or text node', function() {
var calcCacheSize = function() {
Expand Down