WebKit Bugzilla
Attachment 341979 Details for
Bug 186311
: Web Inspector: Text in "Add New Class" is auto-capitalized
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
patch.txt (text/plain), 1.71 KB, created by
Nikita Vasilyev
on 2018-06-05 11:16:37 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Nikita Vasilyev
Created:
2018-06-05 11:16:37 PDT
Size:
1.71 KB
patch
obsolete
>diff --git a/Source/WebInspectorUI/ChangeLog b/Source/WebInspectorUI/ChangeLog >index 5bcb793c95a..ba5b2c5471e 100644 >--- a/Source/WebInspectorUI/ChangeLog >+++ b/Source/WebInspectorUI/ChangeLog >@@ -1,3 +1,15 @@ >+2018-06-05 Nikita Vasilyev <nvasilyev@apple.com> >+ >+ Web Inspector: Text in "Add New Class" in auto-capitalizes >+ https://bugs.webkit.org/show_bug.cgi?id=186311 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ Disable spellcheck to prevent auto-capitalization. >+ >+ * UserInterface/Views/GeneralStyleDetailsSidebarPanel.js: >+ (WI.GeneralStyleDetailsSidebarPanel.prototype.initialLayout): >+ > 2018-06-04 Matt Baker <mattbaker@apple.com> > > Web Inspector: Cannot copy a link address in Elements tab >diff --git a/Source/WebInspectorUI/UserInterface/Views/GeneralStyleDetailsSidebarPanel.js b/Source/WebInspectorUI/UserInterface/Views/GeneralStyleDetailsSidebarPanel.js >index c8b44da36f5..40987bb8777 100644 >--- a/Source/WebInspectorUI/UserInterface/Views/GeneralStyleDetailsSidebarPanel.js >+++ b/Source/WebInspectorUI/UserInterface/Views/GeneralStyleDetailsSidebarPanel.js >@@ -194,6 +194,7 @@ WI.GeneralStyleDetailsSidebarPanel = class GeneralStyleDetailsSidebarPanel exten > this._addClassContainer.addEventListener("click", this._addClassContainerClicked.bind(this)); > > this._addClassInput = this._addClassContainer.createChild("input", "class-name-input"); >+ this._addClassInput.spellcheck = false; > this._addClassInput.setAttribute("placeholder", WI.UIString("Add New Class")); > this._addClassInput.addEventListener("keypress", this._addClassInputKeyPressed.bind(this)); > this._addClassInput.addEventListener("blur", this._addClassInputBlur.bind(this));
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 186311
: 341979