Implement a HTML Tree Visitor

The tree visitor walks the DOM in tree order and calls the provided
node visitor upon entring and leaving a node.
This commit is contained in:
iska
2019-07-31 21:58:07 +02:00
parent ad2790b653
commit 12276e91b3
10 changed files with 383 additions and 5 deletions
+1
View File
@@ -18,6 +18,7 @@
#import "HTMLRange.h"
#import "HTMLDOMTokenList.h"
#import "HTMLNodeIterator.h"
#import "HTMLTreeVisitor.h"
#import "HTMLTreeWalker.h"
#import "HTMLNodeFilter.h"