Bug 171954

Summary: Web Inspector: RTL: "Elements > Styles - Rules" rule and media query headers should be left aligned
Product: WebKit Reporter: Nikita Vasilyev <nvasilyev>
Component: Web InspectorAssignee: Nikita Vasilyev <nvasilyev>
Status: RESOLVED FIXED    
Severity: Normal CC: bburg, commit-queue, inspector-bugzilla-changes, mattbaker, webkit-bug-importer
Priority: P2 Keywords: InRadar
Version: WebKit Nightly Build   
Hardware: All   
OS: All   
Attachments:
Description Flags
[Image] Bug
none
Patch
mattbaker: review+
[Image] With patch applied
none
[Animated GIF] Focusing on selector without dir=ltr
none
Patch none

Nikita Vasilyev
Reported 2017-05-10 16:32:12 PDT
Created attachment 309658 [details] [Image] Bug rdar://problem/31961976 Since the CSS source is strongly LTR, it doesn't make sense to flip CSS selectors.
Attachments
[Image] Bug (337.10 KB, image/png)
2017-05-10 16:32 PDT, Nikita Vasilyev
no flags
Patch (6.44 KB, patch)
2017-05-10 17:54 PDT, Nikita Vasilyev
mattbaker: review+
[Image] With patch applied (405.68 KB, image/png)
2017-05-10 17:56 PDT, Nikita Vasilyev
no flags
[Animated GIF] Focusing on selector without dir=ltr (44.68 KB, image/gif)
2017-05-10 18:54 PDT, Nikita Vasilyev
no flags
Patch (6.59 KB, patch)
2017-05-11 11:23 PDT, Nikita Vasilyev
no flags
Blaze Burg
Comment 1 2017-05-10 16:58:51 PDT
Nikita Vasilyev
Comment 2 2017-05-10 17:54:53 PDT
Nikita Vasilyev
Comment 3 2017-05-10 17:56:10 PDT
Created attachment 309666 [details] [Image] With patch applied
Matt Baker
Comment 4 2017-05-10 18:49:31 PDT
Comment on attachment 309665 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=309665&action=review r=me, with comment > Source/WebInspectorUI/UserInterface/Views/StyleDetailsPanel.js:38 > + this.element.dir = "ltr"; I don't understand why this is needed. Commenting it out doesn't break anything, as far as I can tell.
Nikita Vasilyev
Comment 5 2017-05-10 18:54:06 PDT
Created attachment 309674 [details] [Animated GIF] Focusing on selector without dir=ltr (In reply to Matt Baker from comment #4) > Comment on attachment 309665 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=309665&action=review > > r=me, with comment > > > Source/WebInspectorUI/UserInterface/Views/StyleDetailsPanel.js:38 > > + this.element.dir = "ltr"; > > I don't understand why this is needed. Commenting it out doesn't break > anything, as far as I can tell. Try editing a selector. I left a comment in the changelog.
Matt Baker
Comment 6 2017-05-10 21:31:29 PDT
Comment on attachment 309665 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=309665&action=review >>> Source/WebInspectorUI/UserInterface/Views/StyleDetailsPanel.js:38 >>> + this.element.dir = "ltr"; >> >> I don't understand why this is needed. Commenting it out doesn't break anything, as far as I can tell. > > Try editing a selector. I left a comment in the changelog. Ah, okay. I forgot selectors could be edited! I think the direction only needs to be set for the selector input (since WebInspector.CodeMirrorEditor already forces dir="ltr"). Maybe it should move to CSSStyleDeclarationSection.js:66, where the <textarea> is created: if (this.selectorEditable) { this._selectorInput = this._headerElement.createChild("textarea"); this._selectorInput.setAttribute("dir", "ltr"); this._selectorInput.spellcheck = false; ... }
Nikita Vasilyev
Comment 7 2017-05-11 11:23:51 PDT
Created attachment 309729 [details] Patch (In reply to Matt Baker from comment #6) > Comment on attachment 309665 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=309665&action=review > > >>> Source/WebInspectorUI/UserInterface/Views/StyleDetailsPanel.js:38 > >>> + this.element.dir = "ltr"; > >> > >> I don't understand why this is needed. Commenting it out doesn't break anything, as far as I can tell. > > > > Try editing a selector. I left a comment in the changelog. > > Ah, okay. I forgot selectors could be edited! > > I think the direction only needs to be set for the selector input (since > WebInspector.CodeMirrorEditor already forces dir="ltr"). Maybe it should > move to CSSStyleDeclarationSection.js:66, where the <textarea> is created: > > if (this.selectorEditable) { > this._selectorInput = this._headerElement.createChild("textarea"); > this._selectorInput.setAttribute("dir", "ltr"); > this._selectorInput.spellcheck = false; > ... > } I guess it's unlikely that we will add any inputs or textareas to StyleDetailsPanel any time soon, so it's fine with me.
Nikita Vasilyev
Comment 8 2017-05-11 11:25:49 PDT
Comment on attachment 309729 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=309729&action=review > Source/WebInspectorUI/UserInterface/Views/CSSStyleDeclarationSection.js:68 > this._selectorInput.spellcheck = false; > + this._selectorInput.dir = "ltr"; > this._selectorInput.tabIndex = -1; I used `dir = "ltr"` instead of setAttribute because it's shorter. Also, we already use the setter syntax for spellcheck and tabIndex attributes.
Matt Baker
Comment 9 2017-05-11 11:51:37 PDT
Looks good!
WebKit Commit Bot
Comment 10 2017-05-11 13:52:22 PDT
Comment on attachment 309729 [details] Patch Clearing flags on attachment: 309729 Committed r216692: <http://trac.webkit.org/changeset/216692>
WebKit Commit Bot
Comment 11 2017-05-11 13:52:24 PDT
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.