* Trying to fix #1916 * Remove test for rendering select options. Add back after resolving issue #1978. * Add #1916 fix to change log. * Revert "Remove test for rendering select options. Add back after resolving issue #1978." This reverts commit d4c1be7c2319adf744f78ca787485f52be869208. * Comment on why failing test for #1916 is commented out.
This commit is contained in:
parent
f22d7d4ca9
commit
db2a12dec9
3 changed files with 15 additions and 1 deletions
|
|
@ -551,7 +551,7 @@ module.exports = function($window) {
|
|||
}
|
||||
}
|
||||
function isFormAttribute(vnode, attr) {
|
||||
return attr === "value" || attr === "checked" || attr === "selectedIndex" || attr === "selected" && vnode.dom === $doc.activeElement
|
||||
return attr === "value" || attr === "checked" || attr === "selectedIndex" || attr === "selected" && vnode.dom === $doc.activeElement || vnode.dom.parentNode === $doc.activeElement
|
||||
}
|
||||
function isLifecycleMethod(attr) {
|
||||
return attr === "oninit" || attr === "oncreate" || attr === "onupdate" || attr === "onremove" || attr === "onbeforeremove" || attr === "onbeforeupdate"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue