Bug 225203

Summary: Web Inspector: should be able to type new line in Text node
Product: WebKit Reporter: Sam Sneddon [:gsnedders] <gsnedders>
Component: Web InspectorAssignee: Nobody <webkit-unassigned>
Status: NEW    
Severity: Normal CC: inspector-bugzilla-changes, joepeck, pangle, webkit-bug-importer
Priority: P2 Keywords: InRadar
Version: WebKit Nightly Build   
Hardware: All   
OS: All   

Sam Sneddon [:gsnedders]
Reported 2021-04-29 12:31:33 PDT
When editing a Text node in the DOM, under the Elements tab, it should be possible to add a new line character to the Text node. I would expect Shift+Enter would do this.
Attachments
Radar WebKit Bug Importer
Comment 1 2021-04-29 12:31:41 PDT
Joseph Pecoraro
Comment 2 2021-04-29 12:53:59 PDT
Looks like: ``` _startEditingTextNode(textNode) { if (WI.isBeingEdited(textNode)) return true; var config = new WI.EditingConfig(this._textNodeEditingCommitted.bind(this), this._editingCancelled.bind(this)); config.spellcheck = true; this._editing = WI.startEditing(textNode, config); window.getSelection().setBaseAndExtent(textNode, 0, textNode, 1); return true; } ``` Maybe this just needs `config.multiline = true`.
Note You need to log in before you can comment on or make changes to this bug.