We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e47342 commit 60ccc40Copy full SHA for 60ccc40
ie11CustomProperties.js
@@ -544,7 +544,7 @@
544
if (inheritingKeywords[value] || !register[property] || register[property].inherits) {
545
//let el = this.pseudoElt ? this.computedFor : this.computedFor.parentNode;
546
let el = this.computedFor.parentNode;
547
- while (el && el.nodeType === 1) {
+ while (el.nodeType === 1) {
548
// without, it affects performance: 1000 els inside 100 parents: 1000ms (instead of 600ms) is it acceptable?
549
// would also remove complexity, because i can remove the ieCP_setters property
550
//if (el.ieCP_setters && el.ieCP_setters[property]) {
0 commit comments