[Webkit-unassigned] [Bug 275027] New: `value` attribute on HTMLTextAreaElement should treat `null` as emptyString

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Jun 2 07:01:47 PDT 2024


https://bugs.webkit.org/show_bug.cgi?id=275027

            Bug ID: 275027
           Summary: `value` attribute on HTMLTextAreaElement should treat
                    `null` as emptyString
           Product: WebKit
           Version: WebKit Nightly Build
          Hardware: Unspecified
                OS: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: Forms
          Assignee: webkit-unassigned at lists.webkit.org
          Reporter: ahmad.saleem792 at gmail.com
                CC: akeerthi at apple.com, annevk at annevk.nl,
                    cdumez at apple.com, wenson_hsieh at apple.com

Hi Team,

While going through Blink's patches, I came across another potential merge:

Blink Commit: https://chromium-review.googlesource.com/c/chromium/src/+/1230173

WebKit Source: https://searchfox.org/wubkat/rev/4eb5890b06fef636c92e25930b303010b12184f6/Source/WebCore/html/HTMLTextAreaElement.cpp#365

 auto normalizedValue = newValue.isNull() ? emptyString() : makeStringBySimplifyingNewLines(newValue);

Changed to:

 auto normalizedValue = makeStringBySimplifyingNewLines(newValue);

Just wanted to raise to get input.

Thanks!

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20240602/b85d7159/attachment.htm>


More information about the webkit-unassigned mailing list