From f46e5c54075bc8952dc7991ed40dee6645963a43 Mon Sep 17 00:00:00 2001 From: jdecroock Date: Mon, 29 Apr 2024 17:24:14 +0200 Subject: [PATCH] remove fix for select in ie11 --- src/diff/index.js | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/src/diff/index.js b/src/diff/index.js index 3766beb7d1..a4776f6744 100644 --- a/src/diff/index.js +++ b/src/diff/index.js @@ -519,16 +519,12 @@ function diffElementNodes( i = 'value'; if ( inputValue !== undefined && - // #2756 For the -element the initial value is 0, - // despite the attribute not being present. When the attribute - // is missing the progress bar is treated as indeterminate. - // To fix that we'll always update it when it is 0 for progress elements (inputValue !== dom[i] || - (nodeType === 'progress' && !inputValue) || - // This is only for IE 11 to fix