RESOLVED FIXED 136880
Add unprefixed flexbox display values and property names/values
https://bugs.webkit.org/show_bug.cgi?id=136880
Summary Add unprefixed flexbox display values and property names/values
Dean Jackson
Reported 2014-09-16 19:23:22 PDT
Add unprefixed flexbox display values and property names/values
Attachments
Patch (3.68 KB, patch)
2014-09-16 19:34 PDT, Dean Jackson
benjamin: review+
dino: commit-queue-
Radar WebKit Bug Importer
Comment 1 2014-09-16 19:23:54 PDT
Dean Jackson
Comment 2 2014-09-16 19:34:09 PDT
Joseph Pecoraro
Comment 3 2014-09-17 11:49:27 PDT
Comment on attachment 238234 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=238234&action=review > Source/WebInspectorUI/UserInterface/Models/CSSKeywordCompletions.js:365 > + "flex", "-webkit-flex", "inline-flex", "-webkit-inline-flex", "-webkit-grid", "-webkit-inline-grid" You can remove the prefixed versions. > Source/WebInspectorUI/UserInterface/Models/CSSKeywordCompletions.js:675 > + "align-content": [ > + "flex-start", "flex-end", "center", "space-between", "space-around", "stretch" > + ], > "-webkit-align-content": [ > "flex-start", "flex-end", "center", "space-between", "space-around", "stretch" > ], All of these are identical! So the duplication is unnecessary. You should just remove the "-webkit-" prefix versions. Things will just work for prefixed and unprefixed autocompletion (see WebInspector.CSSKeywordCompletions.forProperty).
Dean Jackson
Comment 4 2014-09-17 15:07:02 PDT
Note You need to log in before you can comment on or make changes to this bug.