Bug 1345253 - Use element.firstChild.remove() instead of element.removeChild(element.firstChild), r=jaws.
This commit is contained in:
@@ -1554,7 +1554,7 @@ Cell.prototype = {
|
||||
this.label.removeAttribute("value");
|
||||
|
||||
while (this.label.firstChild) {
|
||||
this.label.removeChild(this.label.firstChild);
|
||||
this.label.firstChild.remove();
|
||||
}
|
||||
|
||||
this.label.appendChild(value);
|
||||
|
||||
Reference in New Issue
Block a user