Skip to content

Commit c64f9ae

Browse files
committed
fix: properly render value on <progress> in IE/Edge
fix #6666
1 parent a5e5b31 commit c64f9ae

File tree

1 file changed

+3
-2
lines changed
  • src/platforms/web/runtime/modules

1 file changed

+3
-2
lines changed

src/platforms/web/runtime/modules/attrs.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* @flow */
22

3-
import { isIE9 } from 'core/util/env'
3+
import { isIE9, isEdge } from 'core/util/env'
44

55
import {
66
extend,
@@ -42,8 +42,9 @@ function updateAttrs (oldVnode: VNodeWithData, vnode: VNodeWithData) {
4242
}
4343
}
4444
// #4391: in IE9, setting type can reset value for input[type=radio]
45+
// #6666: IE/Edge forces progress value down to 1 before setting a max
4546
/* istanbul ignore if */
46-
if (isIE9 && attrs.value !== oldAttrs.value) {
47+
if ((isIE9 || isEdge) && attrs.value !== oldAttrs.value) {
4748
setAttr(elm, 'value', attrs.value)
4849
}
4950
for (key in oldAttrs) {

0 commit comments

Comments
 (0)