(a, b)
| 4516 | } |
| 4517 | |
| 4518 | function sameVnode (a, b) { |
| 4519 | return ( |
| 4520 | a.key === b.key && |
| 4521 | a.tag === b.tag && |
| 4522 | a.isComment === b.isComment && |
| 4523 | isDef(a.data) === isDef(b.data) && |
| 4524 | sameInputType(a, b) |
| 4525 | ) |
| 4526 | } |
| 4527 | |
| 4528 | // Some browsers do not support dynamically changing type for <input> |
| 4529 | // so they need to be treated as different nodes |
no test coverage detected