NEW261075
Input element: Fix the dirty value flag after type change
https://bugs.webkit.org/show_bug.cgi?id=261075
Summary Input element: Fix the dirty value flag after type change
Ahmad Saleem
Reported 2023-09-02 18:28:58 PDT
Hi Team, While going through Blink's bugs, I came across another failing test in WebKit ToT. Test Case: https://jsfiddle.net/2pLbntf1/ ^ Safari output: Should be "value2": value1, which is different from Firefox Nightly 118 & Chrome Canary. Blink Commit: https://chromium.googlesource.com/chromium/src.git/+/2cabef4e7d4a0b298a114add1298920cc0cfb321 WebKit Source: https://searchfox.org/wubkat/source/Source/WebCore/html/HTMLInputElement.cpp#552 Just wanted to raise so we can fix it. Thanks!
Attachments
Ahmad Saleem
Comment 1 2023-09-02 18:30:10 PDT
Changing: m_valueIfDirty = sanitizeValue(attributeWithoutSynchronization(valueAttr)); to m_valueIfDirty = String(); ___ This fixes it the attached test case but haven't run whole LayoutTests suite so don't know about all failures. Still worth to raise 'draft' PR IMO.
Ahmad Saleem
Comment 2 2023-09-02 18:36:52 PDT
This might be more involved and need to take care of this bit as well: https://chromium.googlesource.com/chromium/src.git/+/676b2c3c1f5c3655e4ef2d0c6ab9d0d89c753df9
Karl Dubost
Comment 3 2023-09-04 17:59:07 PDT
Radar WebKit Bug Importer
Comment 4 2023-09-09 18:29:12 PDT
Note You need to log in before you can comment on or make changes to this bug.