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 7b64e64 commit 9204a0fCopy full SHA for 9204a0f
tests/form.html
@@ -199,6 +199,28 @@ <h1>Form element test for diffDOM</h1>
199
console.log(theDiff);
200
}
201
202
+ reportDiv();
203
+
204
+ second.innerText = 'Some text';
205
+ third.innerText = 'Some other text';
206
207
+ reportDivDescription(first, second);
208
209
+ theDiff = dd.diff(first, second);
210
211
+ dd.apply(first, theDiff);
212
213
+ theDiff = dd.diff(first, third);
214
215
216
217
+ if (first.value === third.value) {
218
+ success(theDiff);
219
+ } else {
220
+ testFailure();
221
+ console.log(theDiff);
222
+ }
223
224
// Input type = text
225
226
setSection('Input type = text');
0 commit comments