Brave logs a misleading message on devtools. NodeList has [div] inside but length is 0 and doesn't have anything inside the array. I don't know if this is a default common behaviour or not but this is really confusing to me.

index.html with the following code on Brave: <html>
<body>
<div id="list"></div>
<script>
const list = document.getElementById("list");
const node = document.createElement("div");
list.appendChild(node);
console.log(list.childNodes);
list.removeChild(node);
</script>
</body>
</html>
Provided on Description section.
NodeList array to have div element inside and length being 1.
Easily reproduced.
Brave: 1.0.0 Chromium: 78.0.3904.97聽(Official Build)聽(64-bit)
Revision: 021b9028c246d820be17a10e5b393ee90f41375e-refs/branch-heads/3904@{#859}
OS: Windows聽10 OS Version 1903 (Build 18362.592)
@ABCbum Is this still an issue on 1.5.115? We've had quite a few chromium updates since then.
Hi @rebron , i can confirm that this is still an issue in current version (Version 1.5.115 Chromium: 80.0.3987.149 (Official Build) (64-bit)). It is fine with the initial load but if i reload then the bug still comes back.

Thanks!!
Is the issue reproducible on the latest version of Chrome? Yes.
@ABCbum assuming it's still an issue in the last Chrome as well? Sounds like you also reproduced it on Chrome originally as per the above.
@ABCbum assuming it's still an issue in the last Chrome as well?
@kjozwiak , yes i can reproduce it on Chrome (Version 81.0.4044.83 (Official Build) beta (64-bit)) the behaviour is exactly the same, fine with the initial load but reload then it's wrong. Thanks!