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.
Files changed (73) hide show
  1. package/config/gni/all_devtools_files.gni +0 -22
  2. package/config/gni/devtools_grd_files.gni +8 -10
  3. package/front_end/.eslintrc.js +1 -0
  4. package/front_end/core/host/UserMetrics.ts +2 -1
  5. package/front_end/core/i18n/locales/en-US.json +3 -3
  6. package/front_end/core/i18n/locales/en-XL.json +3 -3
  7. package/front_end/core/sdk/ConsoleModel.ts +0 -20
  8. package/front_end/entrypoints/devtools_app/devtools_app.json +0 -6
  9. package/front_end/entrypoints/inspector_main/module.json +1 -2
  10. package/front_end/entrypoints/main/MainImpl.ts +10 -3
  11. package/front_end/entrypoints/node_app/node_app.json +0 -1
  12. package/front_end/entrypoints/node_main/node_main-meta.ts +0 -3
  13. package/front_end/entrypoints/shell/shell.json +0 -6
  14. package/front_end/entrypoints/worker_app/worker_app.json +0 -4
  15. package/front_end/panels/application/BackForwardCacheView.ts +54 -6
  16. package/front_end/panels/application/module.json +0 -3
  17. package/front_end/panels/console/ConsoleFilter.ts +1 -1
  18. package/front_end/panels/console/ConsolePinPane.ts +1 -0
  19. package/front_end/panels/console/ConsoleViewMessage.ts +2 -19
  20. package/front_end/panels/console_counters/console_counters-meta.ts +0 -3
  21. package/front_end/panels/coverage/CoverageListView.ts +13 -4
  22. package/front_end/panels/css_overview/components/CSSOverviewStartView.ts +1 -0
  23. package/front_end/panels/elements/ElementsTreeElement.ts +1 -0
  24. package/front_end/panels/elements/StylesSidebarPane.ts +1 -1
  25. package/front_end/panels/elements/components/ElementsBreadcrumbs.ts +1 -0
  26. package/front_end/panels/elements/components/QueryContainer.ts +1 -0
  27. package/front_end/panels/elements/module.json +0 -3
  28. package/front_end/panels/emulation/components/DeviceSizeInputElement.ts +18 -2
  29. package/front_end/panels/emulation/module.json +1 -2
  30. package/front_end/panels/help/help-meta.ts +0 -3
  31. package/front_end/panels/input/input-meta.ts +0 -2
  32. package/front_end/panels/mobile_throttling/mobile_throttling-meta.ts +0 -3
  33. package/front_end/panels/network/module.json +0 -2
  34. package/front_end/panels/performance_monitor/performance_monitor-meta.ts +0 -3
  35. package/front_end/panels/settings/settings-meta.ts +0 -2
  36. package/front_end/panels/sources/BreakpointEditDialog.ts +1 -0
  37. package/front_end/panels/sources/module.json +0 -3
  38. package/front_end/panels/timeline/module.json +1 -2
  39. package/front_end/panels/web_audio/web_audio-meta.ts +0 -3
  40. package/front_end/panels/webauthn/webauthn-meta.ts +0 -2
  41. package/front_end/ui/components/buttons/button.css +1 -0
  42. package/front_end/ui/components/docs/create_breadcrumbs.ts +1 -0
  43. package/front_end/ui/components/helpers/get-stylesheet.ts +0 -1
  44. package/front_end/ui/components/linkifier/LinkifierImpl.ts +1 -0
  45. package/front_end/ui/components/text_editor/config.ts +3 -1
  46. package/front_end/ui/legacy/UIUtils.ts +1 -1
  47. package/front_end/ui/legacy/components/color_picker/Spectrum.ts +2 -1
  48. package/front_end/ui/legacy/components/cookie_table/CookiesTable.ts +6 -1
  49. package/front_end/ui/legacy/components/inline_editor/BezierEditor.ts +2 -1
  50. package/front_end/ui/legacy/components/inline_editor/CSSShadowEditor.ts +2 -1
  51. package/front_end/ui/legacy/components/inline_editor/FontEditor.ts +5 -1
  52. package/front_end/ui/legacy/components/inline_editor/SwatchPopoverHelper.ts +2 -1
  53. package/front_end/ui/legacy/components/inline_editor/Swatches.ts +4 -2
  54. package/front_end/ui/legacy/inspectorCommon.css +2 -12
  55. package/front_end/ui/legacy/softDropDownButton.css +0 -11
  56. package/front_end/ui/legacy/themeColors.css +2 -2
  57. package/package.json +1 -1
  58. package/scripts/build/rollup.config.js +3 -0
  59. package/scripts/eslint_rules/lib/ban_a_tags_in_lit_html.js +47 -0
  60. package/scripts/eslint_rules/tests/ban_a_tags_in_lit_html_test.js +60 -0
  61. package/front_end/entrypoints/node_main/module.json +0 -8
  62. package/front_end/panels/console_counters/module.json +0 -5
  63. package/front_end/panels/event_listeners/module.json +0 -5
  64. package/front_end/panels/help/module.json +0 -5
  65. package/front_end/panels/input/module.json +0 -5
  66. package/front_end/panels/mobile_throttling/module.json +0 -5
  67. package/front_end/panels/performance_monitor/module.json +0 -5
  68. package/front_end/panels/settings/module.json +0 -5
  69. package/front_end/panels/web_audio/module.json +0 -5
  70. package/front_end/panels/webauthn/module.json +0 -5
  71. package/front_end/ui/legacy/components/color_picker/module.json +0 -8
  72. package/front_end/ui/legacy/components/cookie_table/module.json +0 -8
  73. 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
+ });
@@ -1,8 +0,0 @@
1
- {
2
- "dependencies": [
3
- "ui/legacy"
4
- ],
5
- "resources": [
6
- "nodeConnectionsPanel.css"
7
- ]
8
- }
@@ -1,5 +0,0 @@
1
- {
2
- "dependencies": [
3
- "ui/legacy"
4
- ]
5
- }
@@ -1,5 +0,0 @@
1
- {
2
- "dependencies": [
3
- "ui/legacy"
4
- ]
5
- }
@@ -1,5 +0,0 @@
1
- {
2
- "dependencies": [
3
- "ui/legacy"
4
- ]
5
- }
@@ -1,5 +0,0 @@
1
- {
2
- "dependencies": [
3
- "ui/legacy"
4
- ]
5
- }
@@ -1,5 +0,0 @@
1
- {
2
- "dependencies": [
3
- "ui/legacy"
4
- ]
5
- }
@@ -1,5 +0,0 @@
1
- {
2
- "dependencies": [
3
- "ui/legacy"
4
- ]
5
- }
@@ -1,5 +0,0 @@
1
- {
2
- "dependencies": [
3
- "ui/legacy"
4
- ]
5
- }
@@ -1,5 +0,0 @@
1
- {
2
- "dependencies": [
3
- "ui/legacy"
4
- ]
5
- }
@@ -1,5 +0,0 @@
1
- {
2
- "dependencies": [
3
- "ui/legacy"
4
- ]
5
- }
@@ -1,8 +0,0 @@
1
- {
2
- "dependencies": [
3
- "ui/legacy"
4
- ],
5
- "resources": [
6
- "spectrum.css"
7
- ]
8
- }
@@ -1,8 +0,0 @@
1
- {
2
- "dependencies": [
3
- "ui/legacy"
4
- ],
5
- "resources": [
6
- "cookiesTable.css"
7
- ]
8
- }
@@ -1,14 +0,0 @@
1
- {
2
- "dependencies": [
3
- "ui/legacy"
4
- ],
5
- "resources": [
6
- "bezierEditor.css",
7
- "colorSwatch.css",
8
- "bezierSwatch.css",
9
- "cssShadowSwatch.css",
10
- "cssShadowEditor.css",
11
- "fontEditor.css",
12
- "swatchPopover.css"
13
- ]
14
- }