Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Web Inspector: Audit: remove experimental setting
https://bugs.webkit.org/show_bug.cgi?id=193743 <rdar://problem/28234022> Reviewed by Joseph Pecoraro. * UserInterface/Base/Setting.js: (WI.Setting): (WI.Setting.localStorageKey): Added. (WI.Setting.migrateValue): Drive-by: add the localStorage key prefix to the key passed into `WI.Setting.migrateValue`. * UserInterface/Base/Main.js: (WI.loaded): * UserInterface/Views/AuditTabContentView.js: (WI.AuditTabContentView.isTabAllowed): * UserInterface/Views/SettingsTabContentView.js: (WI.SettingsTabContentView.prototype._createExperimentalSettingsView): * Localizations/en.lproj/localizedStrings.js: Canonical link: https://commits.webkit.org/208339@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@240502 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
Showing
with
27 additions
and 9 deletions.
- +25 −0 Source/WebInspectorUI/ChangeLog
- +0 −2 Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js
- +1 −0 Source/WebInspectorUI/UserInterface/Base/Main.js
- +1 −1 Source/WebInspectorUI/UserInterface/Views/AuditTabContentView.js
- +0 −6 Source/WebInspectorUI/UserInterface/Views/SettingsTabContentView.js
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -49,7 +49,7 @@ WI.AuditTabContentView = class AuditTabContentView extends WI.ContentBrowserTabC | ||
|
||
static isTabAllowed() | ||
{ | ||
return WI.sharedApp.debuggableType === WI.DebuggableType.Web; | ||
} | ||
|
||
// Public | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters