chrome-devtools-frontend 1.0.1002543 → 1.0.1002867
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/config/gni/devtools_grd_files.gni +1 -0
- package/front_end/core/host/UserMetrics.ts +2 -1
- package/front_end/core/i18n/locales/en-US.json +11 -32
- package/front_end/core/i18n/locales/en-XL.json +11 -32
- package/front_end/entrypoints/main/MainImpl.ts +1 -0
- package/front_end/generated/InspectorBackendCommands.js +4 -2
- package/front_end/generated/SupportedCSSProperties.js +3 -5
- package/front_end/generated/protocol.ts +18 -4
- package/front_end/models/issues_manager/AttributionReportingIssue.ts +4 -1
- package/front_end/models/issues_manager/DeprecationIssue.ts +84 -103
- package/front_end/models/issues_manager/descriptions/arInvalidHeader.md +3 -0
- package/front_end/panels/elements/stylesSidebarPane.css +3 -0
- package/front_end/panels/issues/AttributionReportingIssueDetailsView.ts +14 -0
- package/front_end/panels/lighthouse/LighthouseController.ts +2 -1
- package/front_end/third_party/lighthouse/lighthouse-dt-bundle.js +409 -409
- package/front_end/third_party/lighthouse/locales/en-US.json +3 -0
- package/front_end/third_party/lighthouse/locales/en-XL.json +3 -0
- package/front_end/third_party/lighthouse/report/bundle.d.ts +2 -22
- package/front_end/third_party/lighthouse/report/bundle.js +5 -354
- package/front_end/third_party/lighthouse/report-assets/report-generator.mjs +1 -1
- package/front_end/ui/components/text_editor/javascript.ts +2 -2
- package/package.json +1 -1
- package/scripts/whitespaces.txt +1 -0
@@ -216,8 +216,8 @@ export async function javascriptCompletionSource(cx: CodeMirror.CompletionContex
|
|
216
216
|
};
|
217
217
|
}
|
218
218
|
|
219
|
-
const SPAN_IDENT = /^#?[\
|
220
|
-
SPAN_DOUBLE_QUOTE = /^"(\\.|[^\\"\n])*"?$/;
|
219
|
+
const SPAN_IDENT = /^#?(?:[$_\p{ID_Start}])(?:[$_\u200C\u200D\p{ID_Continue}])*$/u,
|
220
|
+
SPAN_SINGLE_QUOTE = /^\'(\\.|[^\\'\n])*'?$/, SPAN_DOUBLE_QUOTE = /^"(\\.|[^\\"\n])*"?$/;
|
221
221
|
|
222
222
|
function getExecutionContext(): SDK.RuntimeModel.ExecutionContext|null {
|
223
223
|
return UI.Context.Context.instance().flavor(SDK.RuntimeModel.ExecutionContext);
|
package/package.json
CHANGED
package/scripts/whitespaces.txt
CHANGED