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
Currently nodeValue is a def but it should be var to allow setting a new nodeValue.
nodeValue
def
var
From https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeValue
The Node.nodeValue property returns or sets the value of the current node.
For Text node a work-around is to use the data property.
Text
data
The text was updated successfully, but these errors were encountered:
It seems that nodeValue supposed to raise Exception on setting in DOM Level 2. In DOM Level 4, it won't.
Sorry, something went wrong.
Fix #280: Allow nodeValue to set value. (#364)
7039430
Successfully merging a pull request may close this issue.
Currently
nodeValue
is adef
but it should bevar
to allow setting a newnodeValue
.From https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeValue
For
Text
node a work-around is to use thedata
property.The text was updated successfully, but these errors were encountered: