We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
http://www.w3.org/TR/domcore/#dom-document-createtreewalker Opera 12.00.1213 and FF 10.0 needs 3rd and 4th argument:
//In Opera and FF filter and entityExpandBol can't be undefined document.createTreeWalker(root, nodesToShow, filter, entityExpandBol);
DOM4 spec says what filter is an optional "argument" and "entityExpandBol" argument not in DOM4 spec anymore
//this is valid document.createTreeWalker(document.body, NodeFilter.ALL)
The text was updated successfully, but these errors were encountered:
I have havn't implemented anything to do with TreeWalker, it's on the todo list though.
TreeWalker
It should be noted that tree walkers are slow as hell and should be avoided for performance reasons.
Sorry, something went wrong.
I add issue only for "not forgotten" reason. I am now working on TreeWalker.
Is TreeWalker slow in all browsers (especially in Chrome) or only in browsers which have old implementation of TreeWalker ?
Do you mind of adding issue only for "not forgotten" reason? I find new bug in Opera with element.dataset http://jsfiddle.net/RPkJu/5/
element.dataset
@termi1uc1 http://stackoverflow.com/questions/7941288/when-to-use-nodeiterator
As for adding issues for "not forgotten" reason is fine.
I appreciate a back log of bugs on the "to fix" list.
No branches or pull requests
http://www.w3.org/TR/domcore/#dom-document-createtreewalker
Opera 12.00.1213 and FF 10.0 needs 3rd and 4th argument:
DOM4 spec says what filter is an optional "argument" and "entityExpandBol" argument not in DOM4 spec anymore
The text was updated successfully, but these errors were encountered: