Files
browser/src
Karl Seguin 3657a49a2c Improve correctness of NodeIterator and Treewalker
In their current implementation, both the NodeIterator and TreeWalker would
skip over ignored nodes. However, while the node itself should have been ignored
its children should still be iterated.

For example, when going over:

```
<div id="container">
  <!-- comment1 -->
  <span>
    <!-- comment2 -->
  </span>
</div>
```

With `SHOW_COMMENT`, the previous version would completely skip over `container`
and its children. Now the code still won't emit the `container` div itself,
it will still iterate through its children (and thus emit the two comments).

This change relates to ongoing react compatibility.
2025-10-15 09:23:54 +08:00
..
2025-07-03 13:56:01 +08:00
2025-10-01 16:41:20 +08:00
2025-08-30 13:45:12 +08:00
2025-08-29 10:42:06 +08:00
2025-10-03 17:29:01 +08:00
2025-09-30 22:13:25 -07:00