Bug 1345253 - Use element.firstChild.remove() instead of element.removeChild(element.firstChild), r=jaws.
This commit is contained in:
@@ -156,7 +156,7 @@ exports.items = [
|
||||
onback: () => {
|
||||
// The back button clears and hides .csscoverage-report
|
||||
while (host.hasChildNodes()) {
|
||||
host.removeChild(host.firstChild);
|
||||
host.firstChild.remove();
|
||||
}
|
||||
host.hidden = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user