| 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 Runtime.experiments.register("fileSystemInspection", "FileSystem inspect
ion"); | 122 Runtime.experiments.register("fileSystemInspection", "FileSystem inspect
ion"); |
| 123 Runtime.experiments.register("filmStripInNetworkAndTimeline", "Filmstrip
in Network and Timeline Panel", true); | 123 Runtime.experiments.register("filmStripInNetworkAndTimeline", "Filmstrip
in Network and Timeline Panel", true); |
| 124 Runtime.experiments.register("gpuTimeline", "GPU data on timeline", true
); | 124 Runtime.experiments.register("gpuTimeline", "GPU data on timeline", true
); |
| 125 Runtime.experiments.register("inputEventsOnTimelineOverview", "Input eve
nts on Timeline overview", true) | 125 Runtime.experiments.register("inputEventsOnTimelineOverview", "Input eve
nts on Timeline overview", true) |
| 126 Runtime.experiments.register("layersPanel", "Layers panel"); | 126 Runtime.experiments.register("layersPanel", "Layers panel"); |
| 127 Runtime.experiments.register("materialDesign", "Material design"); | 127 Runtime.experiments.register("materialDesign", "Material design"); |
| 128 Runtime.experiments.register("networkRequestHeadersFilterInDetailsView",
"Network request headers filter in details view", true); | 128 Runtime.experiments.register("networkRequestHeadersFilterInDetailsView",
"Network request headers filter in details view", true); |
| 129 Runtime.experiments.register("networkRequestsOnTimeline", "Network reque
sts on Timeline"); | 129 Runtime.experiments.register("networkRequestsOnTimeline", "Network reque
sts on Timeline"); |
| 130 Runtime.experiments.register("privateScriptInspection", "Private script
inspection"); | 130 Runtime.experiments.register("privateScriptInspection", "Private script
inspection"); |
| 131 Runtime.experiments.register("promiseTracker", "Promise inspector"); | 131 Runtime.experiments.register("promiseTracker", "Promise inspector"); |
| 132 Runtime.experiments.register("securityPanel", "Security panel", true); |
| 132 Runtime.experiments.register("serviceWorkersInPageFrontend", "Service wo
rkers in DevTools for page"); | 133 Runtime.experiments.register("serviceWorkersInPageFrontend", "Service wo
rkers in DevTools for page"); |
| 133 Runtime.experiments.register("serviceWorkersInResources", "Service worke
rs in Resources panel", true); | 134 Runtime.experiments.register("serviceWorkersInResources", "Service worke
rs in Resources panel", true); |
| 134 Runtime.experiments.register("showPrimaryLoadWaterfallInNetworkTimeline"
, "Show primary load waterfall in Network timeline", true); | 135 Runtime.experiments.register("showPrimaryLoadWaterfallInNetworkTimeline"
, "Show primary load waterfall in Network timeline", true); |
| 135 Runtime.experiments.register("stepIntoAsync", "Step into async"); | 136 Runtime.experiments.register("stepIntoAsync", "Step into async"); |
| 136 Runtime.experiments.register("timelineInvalidationTracking", "Timeline i
nvalidation tracking", true); | 137 Runtime.experiments.register("timelineInvalidationTracking", "Timeline i
nvalidation tracking", true); |
| 137 Runtime.experiments.register("timelineTracingJSProfile", "Timeline traci
ng based JS profiler", true); | 138 Runtime.experiments.register("timelineTracingJSProfile", "Timeline traci
ng based JS profiler", true); |
| 138 Runtime.experiments.register("timelineFlowEvents", "Timeline flow events
", true); | 139 Runtime.experiments.register("timelineFlowEvents", "Timeline flow events
", true); |
| 139 Runtime.experiments.register("inlineVariableValues", "Display variable v
alues inline while debugging"); | 140 Runtime.experiments.register("inlineVariableValues", "Display variable v
alues inline while debugging"); |
| 140 | 141 |
| 141 Runtime.experiments.cleanUpStaleExperiments(); | 142 Runtime.experiments.cleanUpStaleExperiments(); |
| (...skipping 697 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 839 p.classList.add("help-section"); | 840 p.classList.add("help-section"); |
| 840 p.textContent = WebInspector.UIString("Inspected worker has terminated. Once
it restarts we will attach to it automatically."); | 841 p.textContent = WebInspector.UIString("Inspected worker has terminated. Once
it restarts we will attach to it automatically."); |
| 841 } | 842 } |
| 842 | 843 |
| 843 WebInspector.WorkerTerminatedScreen.prototype = { | 844 WebInspector.WorkerTerminatedScreen.prototype = { |
| 844 | 845 |
| 845 __proto__: WebInspector.HelpScreen.prototype | 846 __proto__: WebInspector.HelpScreen.prototype |
| 846 } | 847 } |
| 847 | 848 |
| 848 new WebInspector.Main(); | 849 new WebInspector.Main(); |
| OLD | NEW |