|
1 | 1 | /* @flow */
|
2 | 2 |
|
3 |
| -import { isIE9, isEdge } from 'core/util/env' |
| 3 | +import { isIE, isIE9, isEdge } from 'core/util/env' |
4 | 4 |
|
5 | 5 | import {
|
6 | 6 | extend,
|
@@ -44,7 +44,7 @@ function updateAttrs (oldVnode: VNodeWithData, vnode: VNodeWithData) {
|
44 | 44 | // #4391: in IE9, setting type can reset value for input[type=radio]
|
45 | 45 | // #6666: IE/Edge forces progress value down to 1 before setting a max
|
46 | 46 | /* istanbul ignore if */
|
47 |
| - if ((isIE9 || isEdge) && attrs.value !== oldAttrs.value) { |
| 47 | + if ((isIE || isEdge) && attrs.value !== oldAttrs.value) { |
48 | 48 | setAttr(elm, 'value', attrs.value)
|
49 | 49 | }
|
50 | 50 | for (key in oldAttrs) {
|
@@ -84,6 +84,22 @@ function setAttr (el: Element, key: string, value: any) {
|
84 | 84 | if (isFalsyAttrValue(value)) {
|
85 | 85 | el.removeAttribute(key)
|
86 | 86 | } else {
|
| 87 | + // #7138: IE10 & 11 fires input event when setting placeholder on |
| 88 | + // <textarea>... block the first input event and remove the blocker |
| 89 | + // immediately. |
| 90 | + /* istanbul ignore if */ |
| 91 | + if ( |
| 92 | + isIE && !isIE9 && |
| 93 | + el.tagName === 'TEXTAREA' && |
| 94 | + key === 'placeholder' && !el.__ieph |
| 95 | + ) { |
| 96 | + const blocker = e => { |
| 97 | + e.stopImmediatePropagation() |
| 98 | + el.removeEventListener('input', blocker) |
| 99 | + } |
| 100 | + el.addEventListener('input', blocker) |
| 101 | + el.__ieph = true /* IE placeholder patched */ |
| 102 | + } |
87 | 103 | el.setAttribute(key, value)
|
88 | 104 | }
|
89 | 105 | }
|
|
0 commit comments