chrome-devtools-frontend 1.0.935784 → 1.0.936819
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/all_devtools_files.gni +0 -22
- package/config/gni/devtools_grd_files.gni +8 -10
- package/front_end/.eslintrc.js +1 -0
- package/front_end/core/host/UserMetrics.ts +2 -1
- package/front_end/core/i18n/locales/en-US.json +3 -3
- package/front_end/core/i18n/locales/en-XL.json +3 -3
- package/front_end/core/sdk/ConsoleModel.ts +0 -20
- package/front_end/entrypoints/devtools_app/devtools_app.json +0 -6
- package/front_end/entrypoints/inspector_main/module.json +1 -2
- package/front_end/entrypoints/main/MainImpl.ts +10 -3
- package/front_end/entrypoints/node_app/node_app.json +0 -1
- package/front_end/entrypoints/node_main/node_main-meta.ts +0 -3
- package/front_end/entrypoints/shell/shell.json +0 -6
- package/front_end/entrypoints/worker_app/worker_app.json +0 -4
- package/front_end/panels/application/BackForwardCacheView.ts +54 -6
- package/front_end/panels/application/module.json +0 -3
- package/front_end/panels/console/ConsoleFilter.ts +1 -1
- package/front_end/panels/console/ConsolePinPane.ts +1 -0
- package/front_end/panels/console/ConsoleViewMessage.ts +2 -19
- package/front_end/panels/console_counters/console_counters-meta.ts +0 -3
- package/front_end/panels/coverage/CoverageListView.ts +13 -4
- package/front_end/panels/css_overview/components/CSSOverviewStartView.ts +1 -0
- package/front_end/panels/elements/ElementsTreeElement.ts +1 -0
- package/front_end/panels/elements/StylesSidebarPane.ts +1 -1
- package/front_end/panels/elements/components/ElementsBreadcrumbs.ts +1 -0
- package/front_end/panels/elements/components/QueryContainer.ts +1 -0
- package/front_end/panels/elements/module.json +0 -3
- package/front_end/panels/emulation/components/DeviceSizeInputElement.ts +18 -2
- package/front_end/panels/emulation/module.json +1 -2
- package/front_end/panels/help/help-meta.ts +0 -3
- package/front_end/panels/input/input-meta.ts +0 -2
- package/front_end/panels/mobile_throttling/mobile_throttling-meta.ts +0 -3
- package/front_end/panels/network/module.json +0 -2
- package/front_end/panels/performance_monitor/performance_monitor-meta.ts +0 -3
- package/front_end/panels/settings/settings-meta.ts +0 -2
- package/front_end/panels/sources/BreakpointEditDialog.ts +1 -0
- package/front_end/panels/sources/module.json +0 -3
- package/front_end/panels/timeline/module.json +1 -2
- package/front_end/panels/web_audio/web_audio-meta.ts +0 -3
- package/front_end/panels/webauthn/webauthn-meta.ts +0 -2
- package/front_end/ui/components/buttons/button.css +1 -0
- package/front_end/ui/components/docs/create_breadcrumbs.ts +1 -0
- package/front_end/ui/components/helpers/get-stylesheet.ts +0 -1
- package/front_end/ui/components/linkifier/LinkifierImpl.ts +1 -0
- package/front_end/ui/components/text_editor/config.ts +3 -1
- package/front_end/ui/legacy/UIUtils.ts +1 -1
- package/front_end/ui/legacy/components/color_picker/Spectrum.ts +2 -1
- package/front_end/ui/legacy/components/cookie_table/CookiesTable.ts +6 -1
- package/front_end/ui/legacy/components/inline_editor/BezierEditor.ts +2 -1
- package/front_end/ui/legacy/components/inline_editor/CSSShadowEditor.ts +2 -1
- package/front_end/ui/legacy/components/inline_editor/FontEditor.ts +5 -1
- package/front_end/ui/legacy/components/inline_editor/SwatchPopoverHelper.ts +2 -1
- package/front_end/ui/legacy/components/inline_editor/Swatches.ts +4 -2
- package/front_end/ui/legacy/inspectorCommon.css +2 -12
- package/front_end/ui/legacy/softDropDownButton.css +0 -11
- package/front_end/ui/legacy/themeColors.css +2 -2
- package/package.json +1 -1
- package/scripts/build/rollup.config.js +3 -0
- package/scripts/eslint_rules/lib/ban_a_tags_in_lit_html.js +47 -0
- package/scripts/eslint_rules/tests/ban_a_tags_in_lit_html_test.js +60 -0
- package/front_end/entrypoints/node_main/module.json +0 -8
- package/front_end/panels/console_counters/module.json +0 -5
- package/front_end/panels/event_listeners/module.json +0 -5
- package/front_end/panels/help/module.json +0 -5
- package/front_end/panels/input/module.json +0 -5
- package/front_end/panels/mobile_throttling/module.json +0 -5
- package/front_end/panels/performance_monitor/module.json +0 -5
- package/front_end/panels/settings/module.json +0 -5
- package/front_end/panels/web_audio/module.json +0 -5
- package/front_end/panels/webauthn/module.json +0 -5
- package/front_end/ui/legacy/components/color_picker/module.json +0 -8
- package/front_end/ui/legacy/components/cookie_table/module.json +0 -8
- package/front_end/ui/legacy/components/inline_editor/module.json +0 -14
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
// Copyright 2021 The Chromium Authors. All rights reserved.
|
|
2
|
+
// Use of this source code is governed by a BSD-style license that can be
|
|
3
|
+
// found in the LICENSE file.
|
|
4
|
+
'use strict';
|
|
5
|
+
|
|
6
|
+
const rule = require('../lib/ban_a_tags_in_lit_html.js');
|
|
7
|
+
const ruleTester = new (require('eslint').RuleTester)({
|
|
8
|
+
parserOptions: {ecmaVersion: 9, sourceType: 'module'},
|
|
9
|
+
parser: require.resolve('@typescript-eslint/parser'),
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
const EXPECTED_ERROR_MESSAGE = 'Adding links to a component should be done using `front_end/ui/legacy/XLink.ts`';
|
|
13
|
+
|
|
14
|
+
ruleTester.run('ban_a_tags_in_lit_html', rule, {
|
|
15
|
+
valid: [
|
|
16
|
+
{
|
|
17
|
+
code: 'LitHtml.html`<p></p>`',
|
|
18
|
+
filename: 'front_end/components/test.ts',
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
code: 'LitHtml.html`<input />`',
|
|
22
|
+
filename: 'front_end/components/test.ts',
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
code: 'LitHtml.html`<${DataGrid.litTagName}></${DataGrid.litTagName}>`',
|
|
26
|
+
filename: 'front_end/components/test.ts',
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
code: 'LitHtml.html`<p><${DataGrid.litTagName}></${DataGrid.litTagName}></p>`',
|
|
30
|
+
filename: 'front_end/components/test.ts',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
code:
|
|
34
|
+
'LitHtml.html`<${DataGrid1.litTagName}><${DataGrid2.litTagName}></${DataGrid2.litTagName}></${DataGrid1.litTagName}>`',
|
|
35
|
+
filename: 'front_end/components/test.ts',
|
|
36
|
+
}
|
|
37
|
+
],
|
|
38
|
+
invalid: [
|
|
39
|
+
{
|
|
40
|
+
code: 'LitHtml.html`<a />`',
|
|
41
|
+
filename: 'front_end/components/test.ts',
|
|
42
|
+
errors: [{message: EXPECTED_ERROR_MESSAGE}]
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
code: 'LitHtml.html`<a></a>`',
|
|
46
|
+
filename: 'front_end/components/test.ts',
|
|
47
|
+
errors: [{message: EXPECTED_ERROR_MESSAGE}]
|
|
48
|
+
},
|
|
49
|
+
{code: 'LitHtml.html`</a>`', filename: 'front_end/components/test.ts', errors: [{message: EXPECTED_ERROR_MESSAGE}]},
|
|
50
|
+
{code: 'LitHtml.html`<a >`', filename: 'front_end/components/test.ts', errors: [{message: EXPECTED_ERROR_MESSAGE}]},
|
|
51
|
+
{
|
|
52
|
+
code: 'LitHtml.html`<p><${DataGrid.litTagName}></${DataGrid.litTagName}><a></a></p>`',
|
|
53
|
+
errors: [{message: EXPECTED_ERROR_MESSAGE}]
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
code: 'LitHtml.html`<${DataGrid.litTagName}><a /></${DataGrid.litTagName}>`',
|
|
57
|
+
errors: [{message: EXPECTED_ERROR_MESSAGE}]
|
|
58
|
+
},
|
|
59
|
+
]
|
|
60
|
+
});
|