We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c439203 commit 7b64e64Copy full SHA for 7b64e64
tests/form.html
@@ -171,7 +171,7 @@ <h1>Form element test for diffDOM</h1>
171
console.log(theDiff);
172
}
173
174
- second.value = 'Some text';
+ second.innerHTML = 'Some text';
175
176
reportDiv();
177
@@ -192,7 +192,7 @@ <h1>Form element test for diffDOM</h1>
192
193
theDiff = dd.diff(first, second);
194
195
- if (theDiff.length === 2) {
+ if (theDiff.length === 1) {
196
success(theDiff);
197
} else {
198
testFailure();
0 commit comments