| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2007 Matt Lilek (pewtermoose@gmail.com). | 3 * Copyright (C) 2007 Matt Lilek (pewtermoose@gmail.com). |
| 4 * Copyright (C) 2009 Joseph Pecoraro | 4 * Copyright (C) 2009 Joseph Pecoraro |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * | 9 * |
| 10 * 1. Redistributions of source code must retain the above copyright | 10 * 1. Redistributions of source code must retain the above copyright |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 Runtime.experiments.register('blackboxJSFramesOnTimeline', 'Blackbox JavaScr
ipt frames on Timeline', true); | 97 Runtime.experiments.register('blackboxJSFramesOnTimeline', 'Blackbox JavaScr
ipt frames on Timeline', true); |
| 98 Runtime.experiments.register('colorContrastRatio', 'Contrast ratio line in c
olor picker', true); | 98 Runtime.experiments.register('colorContrastRatio', 'Contrast ratio line in c
olor picker', true); |
| 99 Runtime.experiments.register('continueToFirstInvocation', 'Continue to first
invocation', true); | 99 Runtime.experiments.register('continueToFirstInvocation', 'Continue to first
invocation', true); |
| 100 Runtime.experiments.register('emptySourceMapAutoStepping', 'Empty sourcemap
auto-stepping'); | 100 Runtime.experiments.register('emptySourceMapAutoStepping', 'Empty sourcemap
auto-stepping'); |
| 101 Runtime.experiments.register('inputEventsOnTimelineOverview', 'Input events
on Timeline overview', true); | 101 Runtime.experiments.register('inputEventsOnTimelineOverview', 'Input events
on Timeline overview', true); |
| 102 Runtime.experiments.register('layersPanel', 'Layers panel'); | 102 Runtime.experiments.register('layersPanel', 'Layers panel'); |
| 103 Runtime.experiments.register('layoutEditor', 'Layout editor', true); | 103 Runtime.experiments.register('layoutEditor', 'Layout editor', true); |
| 104 Runtime.experiments.register('inspectTooltip', 'Dark inspect element tooltip
'); | 104 Runtime.experiments.register('inspectTooltip', 'Dark inspect element tooltip
'); |
| 105 Runtime.experiments.register('liveSASS', 'Live SASS'); | 105 Runtime.experiments.register('liveSASS', 'Live SASS'); |
| 106 Runtime.experiments.register('nodeDebugging', 'Node debugging', true); | 106 Runtime.experiments.register('nodeDebugging', 'Node debugging', true); |
| 107 Runtime.experiments.register('persistence2', 'Persistence 2.0', true); | 107 Runtime.experiments.register('persistence2', 'Persistence 2.0'); |
| 108 Runtime.experiments.register('privateScriptInspection', 'Private script insp
ection'); | 108 Runtime.experiments.register('privateScriptInspection', 'Private script insp
ection'); |
| 109 Runtime.experiments.register('requestBlocking', 'Request blocking', true); | 109 Runtime.experiments.register('requestBlocking', 'Request blocking', true); |
| 110 Runtime.experiments.register('resolveVariableNames', 'Resolve variable names
'); | 110 Runtime.experiments.register('resolveVariableNames', 'Resolve variable names
'); |
| 111 Runtime.experiments.register('timelineShowAllEvents', 'Show all events on Ti
meline', true); | 111 Runtime.experiments.register('timelineShowAllEvents', 'Show all events on Ti
meline', true); |
| 112 Runtime.experiments.register('timelineShowAllProcesses', 'Show all processes
on Timeline', true); | 112 Runtime.experiments.register('timelineShowAllProcesses', 'Show all processes
on Timeline', true); |
| 113 Runtime.experiments.register('securityPanel', 'Security panel'); | 113 Runtime.experiments.register('securityPanel', 'Security panel'); |
| 114 Runtime.experiments.register('sourceDiff', 'Source diff'); | 114 Runtime.experiments.register('sourceDiff', 'Source diff'); |
| 115 Runtime.experiments.register('terminalInDrawer', 'Terminal in drawer', true)
; | 115 Runtime.experiments.register('terminalInDrawer', 'Terminal in drawer', true)
; |
| 116 Runtime.experiments.register('timelineFlowEvents', 'Timeline flow events', t
rue); | 116 Runtime.experiments.register('timelineFlowEvents', 'Timeline flow events', t
rue); |
| 117 Runtime.experiments.register('timelineInvalidationTracking', 'Timeline inval
idation tracking', true); | 117 Runtime.experiments.register('timelineInvalidationTracking', 'Timeline inval
idation tracking', true); |
| (...skipping 929 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1047 * @override | 1047 * @override |
| 1048 * @return {?Element} | 1048 * @return {?Element} |
| 1049 */ | 1049 */ |
| 1050 settingElement() { | 1050 settingElement() { |
| 1051 return WebInspector.SettingsUI.createSettingCheckbox( | 1051 return WebInspector.SettingsUI.createSettingCheckbox( |
| 1052 WebInspector.UIString('Show rulers'), WebInspector.moduleSetting('showMe
tricsRulers')); | 1052 WebInspector.UIString('Show rulers'), WebInspector.moduleSetting('showMe
tricsRulers')); |
| 1053 } | 1053 } |
| 1054 }; | 1054 }; |
| 1055 | 1055 |
| 1056 new WebInspector.Main(); | 1056 new WebInspector.Main(); |
| OLD | NEW |