Changeset 286792 in webkit
- Timestamp:
- Dec 9, 2021 11:39:43 AM (7 months ago)
- Location:
- trunk/Source/WebInspectorUI
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UserInterface/Base/Setting.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebInspectorUI/ChangeLog
r286611 r286792 1 2021-12-09 Razvan Caliman <rcaliman@apple.com> 2 3 Web Inspector: Enable fuzzy matching for CSS completions 4 https://bugs.webkit.org/show_bug.cgi?id=234092 5 6 Reviewed by Patrick Angle. 7 8 Flip the flag to enable fuzzy matching when autocompleting CSS properties and values. 9 10 * UserInterface/Base/Setting.js: 11 1 12 2021-12-07 Razvan Caliman <rcaliman@apple.com> 2 13 -
trunk/Source/WebInspectorUI/UserInterface/Base/Setting.js
r286611 r286792 232 232 experimentalCollapseBlackboxedCallFrames: new WI.Setting("experimental-collapse-blackboxed-call-frames", false), 233 233 experimentalAllowInspectingInspector: new WI.Setting("experimental-allow-inspecting-inspector", false), 234 experimentalCSSCompletionFuzzyMatching: new WI.Setting("experimental-css-completion-fuzzy-matching", false),234 experimentalCSSCompletionFuzzyMatching: new WI.Setting("experimental-css-completion-fuzzy-matching", true), 235 235 236 236 // Protocol
Note: See TracChangeset
for help on using the changeset viewer.