chrome-devtools-frontend 1.0.1675430 → 1.0.1676824
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/WATCHLISTS +0 -4
- package/front_end/core/common/Settings.ts +0 -66
- package/front_end/core/root/Runtime.ts +0 -5
- package/front_end/core/sdk/CSSMetadata.ts +5 -9
- package/front_end/core/sdk/CSSPropertyParserMatchers.ts +8 -28
- package/front_end/core/sdk/DebuggerModel.ts +50 -30
- package/front_end/core/sdk/ResourceTreeModel.ts +20 -1
- package/front_end/core/sdk/Script.ts +9 -53
- package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +213 -23
- package/front_end/entrypoints/main/MainImpl.ts +31 -0
- package/front_end/generated/InspectorBackendCommands.ts +3 -1
- package/front_end/generated/SupportedCSSProperties.ts +21 -4
- package/front_end/generated/protocol-mapping.d.ts +14 -0
- package/front_end/generated/protocol-proxy-api.d.ts +10 -0
- package/front_end/generated/protocol.ts +35 -0
- package/front_end/models/ai_assistance/AiAgent2.ts +11 -0
- package/front_end/models/ai_assistance/AiConversation.ts +22 -5
- package/front_end/models/ai_assistance/README.md +52 -26
- package/front_end/models/ai_assistance/agents/AiAgent.ts +54 -8
- package/front_end/models/ai_assistance/agents/ContextSelectionAgent.ts +1 -1
- package/front_end/models/ai_assistance/agents/PerformanceAgent.ts +7 -194
- package/front_end/models/ai_assistance/agents/StorageAgent.ts +8 -87
- package/front_end/models/ai_assistance/agents/StylingAgent.snapshot.txt +2 -1
- package/front_end/models/ai_assistance/ai_assistance.ts +16 -0
- package/front_end/models/ai_assistance/contexts/PerformanceTraceContext.ts +124 -0
- package/front_end/models/ai_assistance/contexts/StorageContext.ts +111 -0
- package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.ts +69 -1
- package/front_end/models/ai_assistance/skills/README.md +63 -1
- package/front_end/models/ai_assistance/skills/Skill.ts +1 -1
- package/front_end/models/ai_assistance/skills/SkillRegistry.ts +4 -0
- package/front_end/models/ai_assistance/skills/performance.md +8 -0
- package/front_end/models/ai_assistance/skills/sources.md +16 -0
- package/front_end/models/ai_assistance/skills/storage.md +31 -0
- package/front_end/models/ai_assistance/tools/GetSourceContent.ts +101 -0
- package/front_end/models/ai_assistance/tools/GetTraceEventByKey.ts +83 -0
- package/front_end/models/ai_assistance/tools/GetTraceMainThreadSummary.ts +106 -0
- package/front_end/models/ai_assistance/tools/GetTraceNetworkSummary.ts +104 -0
- package/front_end/models/ai_assistance/tools/ListPageOrigins.ts +81 -0
- package/front_end/models/ai_assistance/tools/ListSources.ts +116 -0
- package/front_end/models/ai_assistance/tools/SelectTraceEventByKey.ts +90 -0
- package/front_end/models/ai_assistance/tools/Tool.ts +22 -1
- package/front_end/models/ai_assistance/tools/ToolRegistry.ts +14 -0
- package/front_end/models/bindings/CSSWorkspaceBinding.ts +4 -0
- package/front_end/models/bindings/CompilerScriptMapping.ts +4 -0
- package/front_end/models/bindings/DebuggerWorkspaceBinding.ts +8 -0
- package/front_end/models/bindings/ResourceScriptMapping.ts +3 -201
- package/front_end/models/bindings/SASSSourceMapping.ts +6 -0
- package/front_end/models/breakpoints/BreakpointManager.ts +2 -49
- package/front_end/models/heap_snapshot/HeapSnapshotModel.ts +27 -0
- package/front_end/models/heap_snapshot/HeapSnapshotProxy.ts +10 -2
- package/front_end/models/issues_manager/descriptions/connectionAllowlistEmbeddingRequirementNotSatisfied.md +26 -0
- package/front_end/models/issues_manager/descriptions/connectionAllowlistIFrameAttributeLoosensEmbeddingRequirement.md +19 -0
- package/front_end/models/issues_manager/descriptions/connectionAllowlistInvalidAllowConnectionAllowlistFrom.md +21 -0
- package/front_end/models/javascript_metadata/NativeFunctions.js +1 -1
- package/front_end/models/persistence/IsolatedFileSystem.ts +7 -8
- package/front_end/models/persistence/IsolatedFileSystemManager.ts +2 -2
- package/front_end/models/persistence/PlatformFileSystem.ts +1 -1
- package/front_end/models/persistence/persistence-meta.ts +9 -9
- package/front_end/models/trace/types/TraceEvents.ts +36 -0
- package/front_end/panels/accessibility/ARIAAttributesView.ts +3 -3
- package/front_end/panels/accessibility/AccessibilityNodeView.ts +36 -36
- package/front_end/panels/accessibility/AccessibilityStrings.ts +168 -168
- package/front_end/panels/accessibility/SourceOrderView.ts +7 -7
- package/front_end/panels/accessibility/accessibility-meta.ts +2 -2
- package/front_end/panels/ai_assistance/AiAssistancePanel.ts +5 -5
- package/front_end/panels/ai_assistance/components/AIv2MarkdownRenderer.ts +2 -3
- package/front_end/panels/ai_assistance/components/ChatInput.ts +2 -2
- package/front_end/panels/ai_assistance/components/ChatMessage.ts +27 -2
- package/front_end/panels/application/IndexedDBViews.ts +65 -63
- package/front_end/panels/application/WebMCPView.ts +16 -7
- package/front_end/panels/common/AiCodeCompletionSummaryToolbar.ts +5 -5
- package/front_end/panels/common/BadgeNotification.ts +8 -8
- package/front_end/panels/common/ExtensionServer.ts +21 -1
- package/front_end/panels/common/GdpSignUpDialog.ts +16 -16
- package/front_end/panels/common/GeminiRebrandPromoDialog.ts +5 -6
- package/front_end/panels/common/PersistenceUtils.ts +2 -2
- package/front_end/panels/common/common.ts +0 -97
- package/front_end/panels/console/ConsoleInsightTeaser.ts +2 -2
- package/front_end/panels/console/ConsolePinPane.ts +2 -2
- package/front_end/panels/console/ConsoleView.ts +20 -19
- package/front_end/panels/elements/LayoutPane.ts +2 -8
- package/front_end/panels/event_listeners/EventListenersView.ts +8 -4
- package/front_end/panels/issues/AffectedTrackingSitesView.ts +25 -14
- package/front_end/panels/media/PlayerMessagesView.ts +149 -68
- package/front_end/panels/network/NetworkPanel.ts +1 -1
- package/front_end/panels/network/RequestPayloadView.ts +1 -0
- package/front_end/panels/profiler/HeapSnapshotView.ts +0 -2
- package/front_end/panels/profiler/heapProfiler.css +0 -9
- package/front_end/panels/recorder/RecorderPanel.ts +2 -3
- package/front_end/panels/screencast/ScreencastView.ts +148 -138
- package/front_end/panels/sources/AiCodeCompletionPlugin.ts +2 -2
- package/front_end/panels/sources/DebuggerPlugin.ts +9 -58
- package/front_end/panels/sources/ScopeChainSidebarPane.ts +1 -1
- package/front_end/panels/sources/UISourceCodeFrame.ts +3 -8
- package/front_end/panels/sources/WatchExpressionsSidebarPane.ts +4 -2
- package/front_end/panels/timeline/TimelineController.ts +36 -64
- package/front_end/panels/timeline/TimelinePanel.ts +11 -8
- package/front_end/panels/timeline/TimelineUIUtils.ts +5 -2
- package/front_end/panels/timeline/overlays/components/EntryLabelOverlay.ts +2 -2
- package/front_end/panels/timeline/timelinePanel.css +0 -10
- package/front_end/panels/utils/utils.ts +7 -7
- package/front_end/services/tracing/PerformanceTracing.ts +5 -17
- package/front_end/third_party/chromium/README.chromium +1 -1
- package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/codemirror.js.map +1 -1
- package/front_end/third_party/codemirror.next/package.json +2 -2
- package/front_end/third_party/codemirror.next/rebuild.sh +4 -1
- package/front_end/ui/comments/CommentAnchorResolver.ts +436 -10
- package/front_end/ui/comments/CommentManager.ts +640 -0
- package/front_end/ui/comments/CommentsOverlayWidget.ts +121 -0
- package/front_end/ui/comments/comments.ts +4 -0
- package/front_end/ui/comments/commentsOverlay.css +49 -0
- package/front_end/{panels/common → ui/components/dialogs}/FreDialog.ts +6 -6
- package/front_end/ui/components/dialogs/TypeToAllowDialog.ts +96 -0
- package/front_end/ui/components/dialogs/dialogs.ts +4 -0
- package/front_end/ui/components/settings/SettingCheckbox.ts +3 -3
- package/front_end/{panels/common → ui/components/text_editor}/AiCodeCompletionDisclaimer.ts +13 -13
- package/front_end/ui/components/text_editor/AiCodeCompletionProvider.ts +7 -6
- package/front_end/{panels/common → ui/components/text_editor}/AiCodeCompletionTeaser.ts +43 -46
- package/front_end/ui/components/text_editor/AiCodeGenerationProvider.ts +22 -26
- package/front_end/{panels/common → ui/components/text_editor}/AiCodeGenerationTeaser.ts +10 -10
- package/front_end/{panels/common → ui/components/text_editor}/AiCodeGenerationUpgradeDialog.ts +5 -5
- package/front_end/ui/components/text_editor/text_editor.ts +4 -0
- package/front_end/ui/legacy/Toolbar.ts +1 -1
- package/front_end/ui/legacy/components/object_ui/CustomPreviewComponent.ts +11 -3
- package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +270 -162
- package/front_end/ui/legacy/components/object_ui/objectPropertiesSection.css +5 -0
- package/front_end/ui/legacy/components/quick_open/CommandMenu.ts +11 -16
- package/front_end/ui/legacy/components/settings_ui/SettingsUI.ts +5 -12
- package/front_end/ui/legacy/components/source_frame/JSONView.ts +8 -1
- package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +2 -2
- package/front_end/ui/settings/SettingUIRegistration.ts +55 -6
- package/front_end/ui/visual_logging/KnownContextValues.ts +1 -0
- package/mcp/mcp.ts +6 -1
- package/package.json +1 -1
- package/front_end/Images/toolbarResizerVertical.png +0 -0
- package/front_end/emulated_devices/MotoG4-landscape.svg +0 -155
- package/front_end/emulated_devices/MotoG4-portrait.svg +0 -155
- package/front_end/emulated_devices/Nexus5X-landscape.svg +0 -19
- package/front_end/emulated_devices/Nexus5X-portrait.svg +0 -19
- package/front_end/emulated_devices/Nexus6P-landscape.svg +0 -50
- package/front_end/emulated_devices/Nexus6P-portrait.svg +0 -54
- package/front_end/emulated_devices/google-nest-hub-horizontal.png +0 -0
- package/front_end/emulated_devices/google-nest-hub-max-horizontal.png +0 -0
- package/front_end/emulated_devices/google-nexus-5-horizontal-default-1x.png +0 -0
- package/front_end/emulated_devices/google-nexus-5-horizontal-default-2x.png +0 -0
- package/front_end/emulated_devices/google-nexus-5-horizontal-keyboard-1x.png +0 -0
- package/front_end/emulated_devices/google-nexus-5-horizontal-keyboard-2x.png +0 -0
- package/front_end/emulated_devices/google-nexus-5-horizontal-navigation-1x.png +0 -0
- package/front_end/emulated_devices/google-nexus-5-horizontal-navigation-2x.png +0 -0
- package/front_end/emulated_devices/google-nexus-5-vertical-default-1x.png +0 -0
- package/front_end/emulated_devices/google-nexus-5-vertical-default-2x.png +0 -0
- package/front_end/emulated_devices/google-nexus-5-vertical-keyboard-1x.png +0 -0
- package/front_end/emulated_devices/google-nexus-5-vertical-keyboard-2x.png +0 -0
- package/front_end/emulated_devices/google-nexus-5-vertical-navigation-1x.png +0 -0
- package/front_end/emulated_devices/google-nexus-5-vertical-navigation-2x.png +0 -0
- package/front_end/emulated_devices/google-nexus-5x-horizontal-default-1x.png +0 -0
- package/front_end/emulated_devices/google-nexus-5x-horizontal-default-2x.png +0 -0
- package/front_end/emulated_devices/google-nexus-5x-horizontal-keyboard-1x.png +0 -0
- package/front_end/emulated_devices/google-nexus-5x-horizontal-keyboard-2x.png +0 -0
- package/front_end/emulated_devices/google-nexus-5x-horizontal-navigation-1x.png +0 -0
- package/front_end/emulated_devices/google-nexus-5x-horizontal-navigation-2x.png +0 -0
- package/front_end/emulated_devices/google-nexus-5x-vertical-default-1x.png +0 -0
- package/front_end/emulated_devices/google-nexus-5x-vertical-default-2x.png +0 -0
- package/front_end/emulated_devices/google-nexus-5x-vertical-keyboard-1x.png +0 -0
- package/front_end/emulated_devices/google-nexus-5x-vertical-keyboard-2x.png +0 -0
- package/front_end/emulated_devices/google-nexus-5x-vertical-navigation-1x.png +0 -0
- package/front_end/emulated_devices/google-nexus-5x-vertical-navigation-2x.png +0 -0
- package/front_end/emulated_devices/iPad-landscape.svg +0 -73
- package/front_end/emulated_devices/iPad-portrait.svg +0 -76
- package/front_end/emulated_devices/iPhone5-landscape.svg +0 -99
- package/front_end/emulated_devices/iPhone5-portrait.svg +0 -83
- package/front_end/emulated_devices/iPhone6-landscape.svg +0 -111
- package/front_end/emulated_devices/iPhone6-portrait.svg +0 -116
- package/front_end/emulated_devices/iPhone6Plus-landscape.svg +0 -118
- package/front_end/emulated_devices/iPhone6Plus-portrait.svg +0 -116
- package/front_end/emulated_devices/optimized/MotoG4-landscape.avif +0 -0
- package/front_end/emulated_devices/optimized/MotoG4-portrait.avif +0 -0
- package/front_end/emulated_devices/optimized/Nexus5X-landscape.avif +0 -0
- package/front_end/emulated_devices/optimized/Nexus5X-portrait.avif +0 -0
- package/front_end/emulated_devices/optimized/Nexus6P-landscape.avif +0 -0
- package/front_end/emulated_devices/optimized/Nexus6P-portrait.avif +0 -0
- package/front_end/emulated_devices/optimized/README.md +0 -9
- package/front_end/emulated_devices/optimized/google-nest-hub-horizontal.avif +0 -0
- package/front_end/emulated_devices/optimized/google-nest-hub-max-horizontal.avif +0 -0
- package/front_end/emulated_devices/optimized/google-nexus-5-horizontal-default-1x.avif +0 -0
- package/front_end/emulated_devices/optimized/google-nexus-5-horizontal-default-2x.avif +0 -0
- package/front_end/emulated_devices/optimized/google-nexus-5-horizontal-keyboard-1x.avif +0 -0
- package/front_end/emulated_devices/optimized/google-nexus-5-horizontal-keyboard-2x.avif +0 -0
- package/front_end/emulated_devices/optimized/google-nexus-5-horizontal-navigation-1x.avif +0 -0
- package/front_end/emulated_devices/optimized/google-nexus-5-horizontal-navigation-2x.avif +0 -0
- package/front_end/emulated_devices/optimized/google-nexus-5-vertical-default-1x.avif +0 -0
- package/front_end/emulated_devices/optimized/google-nexus-5-vertical-default-2x.avif +0 -0
- package/front_end/emulated_devices/optimized/google-nexus-5-vertical-keyboard-1x.avif +0 -0
- package/front_end/emulated_devices/optimized/google-nexus-5-vertical-keyboard-2x.avif +0 -0
- package/front_end/emulated_devices/optimized/google-nexus-5-vertical-navigation-1x.avif +0 -0
- package/front_end/emulated_devices/optimized/google-nexus-5-vertical-navigation-2x.avif +0 -0
- package/front_end/emulated_devices/optimized/google-nexus-5x-horizontal-default-1x.avif +0 -0
- package/front_end/emulated_devices/optimized/google-nexus-5x-horizontal-default-2x.avif +0 -0
- package/front_end/emulated_devices/optimized/google-nexus-5x-horizontal-keyboard-1x.avif +0 -0
- package/front_end/emulated_devices/optimized/google-nexus-5x-horizontal-keyboard-2x.avif +0 -0
- package/front_end/emulated_devices/optimized/google-nexus-5x-horizontal-navigation-1x.avif +0 -0
- package/front_end/emulated_devices/optimized/google-nexus-5x-horizontal-navigation-2x.avif +0 -0
- package/front_end/emulated_devices/optimized/google-nexus-5x-vertical-default-1x.avif +0 -0
- package/front_end/emulated_devices/optimized/google-nexus-5x-vertical-default-2x.avif +0 -0
- package/front_end/emulated_devices/optimized/google-nexus-5x-vertical-keyboard-1x.avif +0 -0
- package/front_end/emulated_devices/optimized/google-nexus-5x-vertical-keyboard-2x.avif +0 -0
- package/front_end/emulated_devices/optimized/google-nexus-5x-vertical-navigation-1x.avif +0 -0
- package/front_end/emulated_devices/optimized/google-nexus-5x-vertical-navigation-2x.avif +0 -0
- package/front_end/emulated_devices/optimized/iPad-landscape.avif +0 -0
- package/front_end/emulated_devices/optimized/iPad-portrait.avif +0 -0
- package/front_end/emulated_devices/optimized/iPhone5-landscape.avif +0 -0
- package/front_end/emulated_devices/optimized/iPhone5-portrait.avif +0 -0
- package/front_end/emulated_devices/optimized/iPhone6-landscape.avif +0 -0
- package/front_end/emulated_devices/optimized/iPhone6-portrait.avif +0 -0
- package/front_end/emulated_devices/optimized/iPhone6Plus-landscape.avif +0 -0
- package/front_end/emulated_devices/optimized/iPhone6Plus-portrait.avif +0 -0
- package/front_end/emulated_devices/optimized/optimized_images.gni +0 -53
- package/front_end/models/ai_assistance/agents/README.md +0 -136
- /package/front_end/{panels/common → ui/components/dialogs}/freDialog.css +0 -0
- /package/front_end/{panels/common/common.css → ui/components/dialogs/typeToAllowDialog.css} +0 -0
- /package/front_end/{panels/common → ui/components/text_editor}/aiCodeCompletionDisclaimer.css +0 -0
- /package/front_end/{panels/common → ui/components/text_editor}/aiCodeCompletionTeaser.css +0 -0
- /package/front_end/{panels/common → ui/components/text_editor}/aiCodeGenerationTeaser.css +0 -0
- /package/front_end/{panels/common → ui/components/text_editor}/aiCodeGenerationUpgradeDialog.css +0 -0
|
@@ -5,415 +5,415 @@
|
|
|
5
5
|
import * as i18n from '../../core/i18n/i18n.js';
|
|
6
6
|
const UIStrings = {
|
|
7
7
|
/**
|
|
8
|
-
* @description Text to indicate something is not enabled
|
|
8
|
+
* @description Text to indicate something is not enabled.
|
|
9
9
|
*/
|
|
10
10
|
disabled: 'Disabled',
|
|
11
11
|
/**
|
|
12
|
-
* @description Tooltip text that appears when hovering over the 'Disabled' attribute name under the
|
|
12
|
+
* @description Tooltip text that appears when hovering over the 'Disabled' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
13
13
|
*/
|
|
14
|
-
ifTrueThisElementCurrentlyCannot: 'If true
|
|
14
|
+
ifTrueThisElementCurrentlyCannot: 'If `true`, this element currently can’t be interacted with',
|
|
15
15
|
/**
|
|
16
|
-
* @description Accessibility attribute name that appears under the
|
|
16
|
+
* @description Accessibility attribute name that appears under the computed properties section in the Accessibility tab of the Elements panel.
|
|
17
17
|
*/
|
|
18
18
|
invalidUserEntry: 'Invalid user entry',
|
|
19
19
|
/**
|
|
20
|
-
* @description Tooltip text that appears when hovering over the 'Invalid user entry' attribute name under the
|
|
20
|
+
* @description Tooltip text that appears when hovering over the 'Invalid user entry' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
21
21
|
*/
|
|
22
22
|
ifTrueThisElementsUserentered:
|
|
23
|
-
'If true
|
|
23
|
+
'If `true`, this element’s user-entered value doesn’t conform to validation requirement',
|
|
24
24
|
/**
|
|
25
|
-
* @description Accessibility attribute name that appears under the
|
|
25
|
+
* @description Accessibility attribute name that appears under the computed properties section in the Accessibility tab of the Elements panel.
|
|
26
26
|
*/
|
|
27
27
|
editable: 'Editable',
|
|
28
28
|
/**
|
|
29
|
-
* @description Tooltip text that appears when hovering over the 'Editable' attribute name under the
|
|
29
|
+
* @description Tooltip text that appears when hovering over the 'Editable' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
30
30
|
*/
|
|
31
|
-
ifAndHowThisElementCanBeEdited: 'If and how this element can be edited
|
|
31
|
+
ifAndHowThisElementCanBeEdited: 'If and how this element can be edited',
|
|
32
32
|
/**
|
|
33
33
|
* @description Adjective. Describes whether the currently selected HTML element of the page can receive focus at all (e.g. can the selected element receive user keyboard input).
|
|
34
|
-
* Accessibility attribute name that appears under the
|
|
34
|
+
* Accessibility attribute name that appears under the computed properties section in the Accessibility tab of the Elements panel.
|
|
35
35
|
*/
|
|
36
36
|
focusable: 'Focusable',
|
|
37
37
|
/**
|
|
38
|
-
* @description Tooltip text that appears when hovering over the 'Focusable' attribute name under the
|
|
38
|
+
* @description Tooltip text that appears when hovering over the 'Focusable' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
39
39
|
*/
|
|
40
|
-
ifTrueThisElementCanReceiveFocus: 'If true
|
|
40
|
+
ifTrueThisElementCanReceiveFocus: 'If `true`, this element can receive focus',
|
|
41
41
|
/**
|
|
42
42
|
* @description Adjective. Describes whether the currently selected HTML element of the page is focused (e.g. the selected element receives user keyboard input).
|
|
43
|
-
* Accessibility attribute name that appears under the
|
|
43
|
+
* Accessibility attribute name that appears under the computed properties section in the Accessibility tab of the Elements panel.
|
|
44
44
|
*/
|
|
45
45
|
focused: 'Focused',
|
|
46
46
|
/**
|
|
47
|
-
* @description Tooltip text that appears when hovering over the 'Focused' attribute name under the
|
|
47
|
+
* @description Tooltip text that appears when hovering over the 'Focused' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
48
48
|
*/
|
|
49
|
-
ifTrueThisElementCurrentlyHas: 'If `true`, this element currently has focus
|
|
49
|
+
ifTrueThisElementCurrentlyHas: 'If `true`, this element currently has focus',
|
|
50
50
|
/**
|
|
51
|
-
* @description Accessibility attribute name that appears under the
|
|
51
|
+
* @description Accessibility attribute name that appears under the computed properties section in the Accessibility tab of the Elements panel.
|
|
52
52
|
*/
|
|
53
53
|
canSetValue: 'Can set value',
|
|
54
54
|
/**
|
|
55
|
-
* @description Tooltip text that appears when hovering over the 'Can set value' attribute name under the
|
|
55
|
+
* @description Tooltip text that appears when hovering over the 'Can set value' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
56
56
|
*/
|
|
57
|
-
whetherTheValueOfThisElementCan: 'Whether the value of this element can be set
|
|
57
|
+
whetherTheValueOfThisElementCan: 'Whether the value of this element can be set',
|
|
58
58
|
/**
|
|
59
|
-
* @description Accessibility attribute name that appears under the
|
|
60
|
-
* the Accessibility
|
|
59
|
+
* @description Accessibility attribute name that appears under the computed properties section in
|
|
60
|
+
* the Accessibility tab of the Elements panel. A live region is an area of the webpage which is
|
|
61
61
|
* dynamic and changes frequently.
|
|
62
62
|
*/
|
|
63
63
|
liveRegion: 'Live region',
|
|
64
64
|
/**
|
|
65
|
-
* @description Tooltip text that appears when hovering over the 'Live region' attribute name under the
|
|
65
|
+
* @description Tooltip text that appears when hovering over the 'Live region' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
66
66
|
*/
|
|
67
|
-
whetherAndWhatPriorityOfLive: 'Whether and what priority of live updates may be expected for this element
|
|
67
|
+
whetherAndWhatPriorityOfLive: 'Whether and what priority of live updates may be expected for this element',
|
|
68
68
|
/**
|
|
69
|
-
* @description Accessibility attribute name that appears under the
|
|
70
|
-
* the Accessibility
|
|
69
|
+
* @description Accessibility attribute name that appears under the computed properties section in
|
|
70
|
+
* the Accessibility tab of the Elements panel when inspecting an element with aria-relevant set.
|
|
71
71
|
*/
|
|
72
72
|
atomicLiveRegions: 'Atomic (live regions)',
|
|
73
73
|
/**
|
|
74
74
|
* @description Tooltip text that appears when hovering over the 'Atomic (live regions)' attribute
|
|
75
|
-
* name under the
|
|
75
|
+
* name under the computed properties section in the Accessibility tab of the Elements panel. When
|
|
76
76
|
* a node within a live region changes, the entire live region can be presented to the user, or
|
|
77
77
|
* just the nodes within the region that actually changed.
|
|
78
78
|
*/
|
|
79
79
|
ifThisElementMayReceiveLive:
|
|
80
|
-
'If this element may receive live updates, whether the entire live region should be presented to the user on changes, or only changed nodes
|
|
80
|
+
'If this element may receive live updates, whether the entire live region should be presented to the user on changes, or only changed nodes',
|
|
81
81
|
/**
|
|
82
|
-
* @description Accessibility attribute name that appears under the
|
|
83
|
-
* the Accessibility
|
|
82
|
+
* @description Accessibility attribute name that appears under the computed properties section in
|
|
83
|
+
* the Accessibility tab of the Elements panel when inspecting an element with aria-relevant set.
|
|
84
84
|
*/
|
|
85
85
|
relevantLiveRegions: 'Relevant (live regions)',
|
|
86
86
|
/**
|
|
87
|
-
* @description Tooltip text that appears when hovering over the 'Relevant (live regions)' attribute name under the
|
|
87
|
+
* @description Tooltip text that appears when hovering over the 'Relevant (live regions)' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
88
88
|
*/
|
|
89
89
|
ifThisElementMayReceiveLiveUpdates:
|
|
90
|
-
'If this element may receive live updates, what type of updates should trigger a notification
|
|
90
|
+
'If this element may receive live updates, what type of updates should trigger a notification',
|
|
91
91
|
/**
|
|
92
|
-
* @description Accessibility attribute name that appears under the
|
|
93
|
-
* the Accessibility
|
|
92
|
+
* @description Accessibility attribute name that appears under the computed properties section in
|
|
93
|
+
* the Accessibility tab of the Elements panel. Indicates that the aria-busy attribute is set for
|
|
94
94
|
* the element, which means the element is being modified and assistive technologies like screen
|
|
95
95
|
* readers may want to wait until the area is no longer live/busy before exposing it to the user.
|
|
96
96
|
*/
|
|
97
97
|
busyLiveRegions: '`Busy` (live regions)',
|
|
98
98
|
/**
|
|
99
|
-
* @description Tooltip text that appears when hovering over the 'Busy (live regions)' attribute name under the
|
|
99
|
+
* @description Tooltip text that appears when hovering over the 'Busy (live regions)' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
100
100
|
*/
|
|
101
101
|
whetherThisElementOrItsSubtree:
|
|
102
|
-
'Whether this element or its subtree are currently being updated (and thus may be in an inconsistent state)
|
|
102
|
+
'Whether this element or its subtree are currently being updated (and thus may be in an inconsistent state)',
|
|
103
103
|
/**
|
|
104
|
-
* @description Accessibility attribute name that appears under the
|
|
105
|
-
* the Accessibility
|
|
104
|
+
* @description Accessibility attribute name that appears under the computed properties section in
|
|
105
|
+
* the Accessibility tab of the Elements panel. A live region is a section of the DOM graph which
|
|
106
106
|
* is dynamic in nature and will change regularly. The live region root is the node in the graph
|
|
107
107
|
* which is a parent of all nodes in the live region.
|
|
108
108
|
* https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/ARIA_Live_Regions
|
|
109
109
|
*/
|
|
110
110
|
liveRegionRoot: 'Live region root',
|
|
111
111
|
/**
|
|
112
|
-
* @description Tooltip text that appears when hovering over the 'Live region root' attribute name under the
|
|
112
|
+
* @description Tooltip text that appears when hovering over the 'Live region root' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
113
113
|
*/
|
|
114
114
|
ifThisElementMayReceiveLiveUpdatesThe:
|
|
115
|
-
'If this element may receive live updates, the root element of the containing live region
|
|
115
|
+
'If this element may receive live updates, the root element of the containing live region',
|
|
116
116
|
/**
|
|
117
|
-
* @description Accessibility attribute name that appears under the
|
|
117
|
+
* @description Accessibility attribute name that appears under the computed properties section in the Accessibility tab of the Elements panel.
|
|
118
118
|
*/
|
|
119
119
|
hasAutocomplete: 'Has autocomplete',
|
|
120
120
|
/**
|
|
121
|
-
* @description Tooltip text that appears when hovering over the 'Has autocomplete' attribute name under the
|
|
121
|
+
* @description Tooltip text that appears when hovering over the 'Has autocomplete' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
122
122
|
*/
|
|
123
123
|
whetherAndWhatTypeOfAutocomplete:
|
|
124
|
-
'Whether and what type of autocomplete suggestions are currently provided by this element
|
|
124
|
+
'Whether and what type of autocomplete suggestions are currently provided by this element',
|
|
125
125
|
/**
|
|
126
|
-
* @description Accessibility attribute name that appears under the
|
|
126
|
+
* @description Accessibility attribute name that appears under the computed properties section in the Accessibility tab of the Elements panel.
|
|
127
127
|
*/
|
|
128
128
|
hasPopup: 'Has popup',
|
|
129
129
|
/**
|
|
130
|
-
* @description Tooltip text that appears when hovering over the 'Has popup' attribute name under the
|
|
130
|
+
* @description Tooltip text that appears when hovering over the 'Has popup' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
131
131
|
*/
|
|
132
|
-
whetherThisElementHasCausedSome: 'Whether this element has caused some kind of pop-up (such as a menu) to appear
|
|
132
|
+
whetherThisElementHasCausedSome: 'Whether this element has caused some kind of pop-up (such as a menu) to appear',
|
|
133
133
|
/**
|
|
134
|
-
* @description Accessibility attribute name that appears under the
|
|
134
|
+
* @description Accessibility attribute name that appears under the computed properties section in the Accessibility tab of the Elements panel.
|
|
135
135
|
*/
|
|
136
136
|
level: 'Level',
|
|
137
137
|
/**
|
|
138
|
-
* @description Tooltip text that appears when hovering over the 'Level' attribute name under the
|
|
138
|
+
* @description Tooltip text that appears when hovering over the 'Level' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
139
139
|
*/
|
|
140
|
-
theHierarchicalLevelOfThis: 'The hierarchical level of this element
|
|
140
|
+
theHierarchicalLevelOfThis: 'The hierarchical level of this element',
|
|
141
141
|
/**
|
|
142
|
-
* @description Accessibility attribute name that appears under the
|
|
142
|
+
* @description Accessibility attribute name that appears under the computed properties section in the Accessibility tab of the Elements panel.
|
|
143
143
|
*/
|
|
144
144
|
multiselectable: 'Multi-selectable',
|
|
145
145
|
/**
|
|
146
|
-
* @description Tooltip text that appears when hovering over the 'Multi-selectable' attribute name under the
|
|
146
|
+
* @description Tooltip text that appears when hovering over the 'Multi-selectable' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
147
147
|
*/
|
|
148
|
-
whetherAUserMaySelectMoreThanOne: 'Whether a user may select more than one option from this widget
|
|
148
|
+
whetherAUserMaySelectMoreThanOne: 'Whether a user may select more than one option from this widget',
|
|
149
149
|
/**
|
|
150
|
-
* @description Text for the orientation of something
|
|
150
|
+
* @description Text for the orientation of something.
|
|
151
151
|
*/
|
|
152
152
|
orientation: 'Orientation',
|
|
153
153
|
/**
|
|
154
|
-
* @description Tooltip text that appears when hovering over the 'Orientation' attribute name under the
|
|
154
|
+
* @description Tooltip text that appears when hovering over the 'Orientation' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
155
155
|
*/
|
|
156
|
-
whetherThisLinearElements: 'Whether this linear element’s orientation is horizontal or vertical
|
|
156
|
+
whetherThisLinearElements: 'Whether this linear element’s orientation is horizontal or vertical',
|
|
157
157
|
/**
|
|
158
|
-
* @description Accessibility attribute name that appears under the
|
|
158
|
+
* @description Accessibility attribute name that appears under the computed properties section in the Accessibility tab of the Elements panel.
|
|
159
159
|
*/
|
|
160
160
|
multiline: 'Multi-line',
|
|
161
161
|
/**
|
|
162
|
-
* @description Tooltip text that appears when hovering over the 'Multi-line' attribute name under the
|
|
162
|
+
* @description Tooltip text that appears when hovering over the 'Multi-line' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
163
163
|
*/
|
|
164
|
-
whetherThisTextBoxMayHaveMore: 'Whether this text box may have more than one line
|
|
164
|
+
whetherThisTextBoxMayHaveMore: 'Whether this text box may have more than one line',
|
|
165
165
|
/**
|
|
166
|
-
* @description Accessibility attribute name that appears under the
|
|
166
|
+
* @description Accessibility attribute name that appears under the computed properties section in the Accessibility tab of the Elements panel.
|
|
167
167
|
*/
|
|
168
168
|
readonlyString: 'Read-only',
|
|
169
169
|
/**
|
|
170
|
-
* @description Tooltip text that appears when hovering over the 'Read-only' attribute name under the
|
|
170
|
+
* @description Tooltip text that appears when hovering over the 'Read-only' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
171
171
|
*/
|
|
172
|
-
ifTrueThisElementMayBeInteracted: 'If true
|
|
172
|
+
ifTrueThisElementMayBeInteracted: 'If `true`, this element may be interacted with, but its value can’t be changed',
|
|
173
173
|
/**
|
|
174
|
-
* @description Accessibility attribute name that appears under the
|
|
174
|
+
* @description Accessibility attribute name that appears under the computed properties section in the Accessibility tab of the Elements panel.
|
|
175
175
|
*/
|
|
176
176
|
requiredString: 'Required',
|
|
177
177
|
/**
|
|
178
|
-
* @description Tooltip text that appears when hovering over the 'Required' attribute name under the
|
|
178
|
+
* @description Tooltip text that appears when hovering over the 'Required' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
179
179
|
*/
|
|
180
|
-
whetherThisElementIsARequired: 'Whether this element is a required field in a form
|
|
180
|
+
whetherThisElementIsARequired: 'Whether this element is a required field in a form',
|
|
181
181
|
/**
|
|
182
|
-
* @description Accessibility attribute name that appears under the
|
|
182
|
+
* @description Accessibility attribute name that appears under the computed properties section in the Accessibility tab of the Elements panel.
|
|
183
183
|
*/
|
|
184
184
|
minimumValue: 'Minimum value',
|
|
185
185
|
/**
|
|
186
|
-
* @description Tooltip text that appears when hovering over the 'Minimum value' attribute name under the
|
|
186
|
+
* @description Tooltip text that appears when hovering over the 'Minimum value' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
187
187
|
*/
|
|
188
|
-
forARangeWidgetTheMinimumAllowed: 'For a range widget, the minimum allowed value
|
|
188
|
+
forARangeWidgetTheMinimumAllowed: 'For a range widget, the minimum allowed value',
|
|
189
189
|
/**
|
|
190
|
-
* @description Accessibility attribute name that appears under the
|
|
190
|
+
* @description Accessibility attribute name that appears under the computed properties section in the Accessibility tab of the Elements panel.
|
|
191
191
|
*/
|
|
192
192
|
maximumValue: 'Maximum value',
|
|
193
193
|
/**
|
|
194
|
-
* @description Tooltip text that appears when hovering over the 'Maximum value' attribute name under the
|
|
194
|
+
* @description Tooltip text that appears when hovering over the 'Maximum value' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
195
195
|
*/
|
|
196
|
-
forARangeWidgetTheMaximumAllowed: 'For a range widget, the maximum allowed value
|
|
196
|
+
forARangeWidgetTheMaximumAllowed: 'For a range widget, the maximum allowed value',
|
|
197
197
|
/**
|
|
198
|
-
* @description Accessibility attribute name that appears under the
|
|
198
|
+
* @description Accessibility attribute name that appears under the computed properties section in the Accessibility tab of the Elements panel.
|
|
199
199
|
*/
|
|
200
200
|
valueDescription: 'Value description',
|
|
201
201
|
/**
|
|
202
|
-
* @description Tooltip text that appears when hovering over the 'Value description' attribute name under the
|
|
202
|
+
* @description Tooltip text that appears when hovering over the 'Value description' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
203
203
|
*/
|
|
204
|
-
aHumanreadableVersionOfTheValue: 'A human-readable version of the value of a range widget (where necessary)
|
|
204
|
+
aHumanreadableVersionOfTheValue: 'A human-readable version of the value of a range widget (where necessary)',
|
|
205
205
|
/**
|
|
206
|
-
* @description Accessibility attribute name that appears under the
|
|
206
|
+
* @description Accessibility attribute name that appears under the computed properties section in the Accessibility tab of the Elements panel.
|
|
207
207
|
*/
|
|
208
208
|
checked: 'Checked',
|
|
209
209
|
/**
|
|
210
|
-
* @description Tooltip text that appears when hovering over the 'Checked' attribute name under the
|
|
210
|
+
* @description Tooltip text that appears when hovering over the 'Checked' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
211
211
|
*/
|
|
212
212
|
whetherThisCheckboxRadioButtonOr:
|
|
213
|
-
'Whether this checkbox, radio button or tree item is checked, unchecked, or mixed (
|
|
213
|
+
'Whether this checkbox, radio button or tree item is checked, unchecked, or mixed (for example, has both checked and unchecked children)',
|
|
214
214
|
/**
|
|
215
|
-
* @description Accessibility attribute name that appears under the
|
|
215
|
+
* @description Accessibility attribute name that appears under the computed properties section in the Accessibility tab of the Elements panel.
|
|
216
216
|
*/
|
|
217
217
|
expanded: 'Expanded',
|
|
218
218
|
/**
|
|
219
|
-
* @description Tooltip text that appears when hovering over the 'Expanded' attribute name under the
|
|
219
|
+
* @description Tooltip text that appears when hovering over the 'Expanded' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
220
220
|
*/
|
|
221
|
-
whetherThisElementOrAnother: 'Whether this element, or another grouping element it controls, is expanded
|
|
221
|
+
whetherThisElementOrAnother: 'Whether this element, or another grouping element it controls, is expanded',
|
|
222
222
|
/**
|
|
223
|
-
* @description Accessibility attribute name that appears under the
|
|
223
|
+
* @description Accessibility attribute name that appears under the computed properties section in the Accessibility tab of the Elements panel.
|
|
224
224
|
*/
|
|
225
225
|
pressed: 'Pressed',
|
|
226
226
|
/**
|
|
227
|
-
* @description Tooltip text that appears when hovering over the 'Pressed' attribute name under the
|
|
227
|
+
* @description Tooltip text that appears when hovering over the 'Pressed' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
228
228
|
*/
|
|
229
|
-
whetherThisToggleButtonIs: 'Whether this toggle button is currently in a pressed state
|
|
229
|
+
whetherThisToggleButtonIs: 'Whether this toggle button is currently in a pressed state',
|
|
230
230
|
/**
|
|
231
|
-
* @description Accessibility attribute name that appears under the
|
|
231
|
+
* @description Accessibility attribute name that appears under the computed properties section in the Accessibility tab of the Elements panel.
|
|
232
232
|
*/
|
|
233
233
|
selectedString: 'Selected',
|
|
234
234
|
/**
|
|
235
|
-
* @description Tooltip text that appears when hovering over the 'Selected' attribute name under the
|
|
235
|
+
* @description Tooltip text that appears when hovering over the 'Selected' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
236
236
|
*/
|
|
237
|
-
whetherTheOptionRepresentedBy: 'Whether the option represented by this element is currently selected
|
|
237
|
+
whetherTheOptionRepresentedBy: 'Whether the option represented by this element is currently selected',
|
|
238
238
|
/**
|
|
239
|
-
* @description Accessibility attribute name that appears under the
|
|
239
|
+
* @description Accessibility attribute name that appears under the computed properties section in the Accessibility tab of the Elements panel.
|
|
240
240
|
*/
|
|
241
241
|
activeDescendant: 'Active descendant',
|
|
242
242
|
/**
|
|
243
|
-
* @description Tooltip text that appears when hovering over the 'Active descendant' attribute name under the
|
|
243
|
+
* @description Tooltip text that appears when hovering over the 'Active descendant' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
244
244
|
*/
|
|
245
245
|
theDescendantOfThisElementWhich:
|
|
246
|
-
'The descendant of this element
|
|
246
|
+
'The descendant of this element that is active; that is, the element to which focus should be delegated',
|
|
247
247
|
/**
|
|
248
|
-
* @description Tooltip text that appears when hovering over the 'Flows to' attribute name under the
|
|
248
|
+
* @description Tooltip text that appears when hovering over the 'Flows to' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
249
249
|
*/
|
|
250
250
|
elementToWhichTheUserMayChooseTo:
|
|
251
|
-
'Element to which the user may choose to navigate after this one, instead of the next element in the DOM order
|
|
251
|
+
'Element to which the user may choose to navigate after this one, instead of the next element in the DOM order',
|
|
252
252
|
/**
|
|
253
|
-
* @description Accessibility attribute name that appears under the
|
|
253
|
+
* @description Accessibility attribute name that appears under the computed properties section in the Accessibility tab of the Elements panel.
|
|
254
254
|
*/
|
|
255
255
|
controls: 'Controls',
|
|
256
256
|
/**
|
|
257
|
-
* @description Tooltip text that appears when hovering over the 'Controls' attribute name under the
|
|
257
|
+
* @description Tooltip text that appears when hovering over the 'Controls' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
258
258
|
*/
|
|
259
|
-
elementOrElementsWhoseContentOr: 'Element or elements whose content or presence is
|
|
259
|
+
elementOrElementsWhoseContentOr: 'Element or elements whose content or presence is controlled by this widget',
|
|
260
260
|
/**
|
|
261
|
-
* @description Accessibility attribute name that appears under the
|
|
261
|
+
* @description Accessibility attribute name that appears under the computed properties section in the Accessibility tab of the Elements panel.
|
|
262
262
|
*/
|
|
263
263
|
describedBy: 'Described by',
|
|
264
264
|
/**
|
|
265
|
-
* @description Tooltip text that appears when hovering over the 'Described by' attribute name under the
|
|
265
|
+
* @description Tooltip text that appears when hovering over the 'Described by' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
266
266
|
*/
|
|
267
|
-
elementOrElementsWhichFormThe: 'Element or elements
|
|
267
|
+
elementOrElementsWhichFormThe: 'Element or elements that form the description of this element',
|
|
268
268
|
/**
|
|
269
|
-
* @description Accessibility attribute name that appears under the
|
|
269
|
+
* @description Accessibility attribute name that appears under the computed properties section in the Accessibility tab of the Elements panel.
|
|
270
270
|
*/
|
|
271
271
|
labeledBy: 'Labeled by',
|
|
272
272
|
/**
|
|
273
|
-
* @description Tooltip text that appears when hovering over the 'Labeled by' attribute name under the
|
|
273
|
+
* @description Tooltip text that appears when hovering over the 'Labeled by' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
274
274
|
*/
|
|
275
|
-
elementOrElementsWhichMayFormThe: 'Element or elements
|
|
275
|
+
elementOrElementsWhichMayFormThe: 'Element or elements that may form the name of this element',
|
|
276
276
|
/**
|
|
277
|
-
* @description Tooltip text that appears when hovering over the 'Owns' attribute name under the
|
|
277
|
+
* @description Tooltip text that appears when hovering over the 'Owns' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
278
278
|
*/
|
|
279
279
|
elementOrElementsWhichShouldBe:
|
|
280
|
-
'Element or elements
|
|
280
|
+
'Element or elements that should be considered descendants of this element, despite not being descendants in the DOM',
|
|
281
281
|
/**
|
|
282
|
-
* @description Tooltip text that appears when hovering over the 'Name' attribute name under the
|
|
282
|
+
* @description Tooltip text that appears when hovering over the 'Name' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
283
283
|
*/
|
|
284
|
-
theComputedNameOfThisElement: 'The computed name of this element
|
|
284
|
+
theComputedNameOfThisElement: 'The computed name of this element',
|
|
285
285
|
/**
|
|
286
|
-
* @description Accessibility attribute name that appears under the
|
|
286
|
+
* @description Accessibility attribute name that appears under the computed properties section in the Accessibility tab of the Elements panel.
|
|
287
287
|
*/
|
|
288
288
|
role: 'Role',
|
|
289
289
|
/**
|
|
290
|
-
* @description Tooltip text that appears when hovering over the 'Role' attribute name under the
|
|
290
|
+
* @description Tooltip text that appears when hovering over the 'Role' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
291
291
|
*/
|
|
292
292
|
indicatesThePurposeOfThisElement:
|
|
293
|
-
'Indicates the purpose of this element, such as a user interface idiom for a widget, or structural role within a document
|
|
293
|
+
'Indicates the purpose of this element, such as a user interface idiom for a widget, or structural role within a document',
|
|
294
294
|
/**
|
|
295
|
-
* @description Text for the value of something
|
|
295
|
+
* @description Text for the value of something.
|
|
296
296
|
*/
|
|
297
297
|
value: 'Value',
|
|
298
298
|
/**
|
|
299
|
-
* @description Tooltip text that appears when hovering over the 'Value' attribute name under the
|
|
299
|
+
* @description Tooltip text that appears when hovering over the 'Value' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
300
300
|
*/
|
|
301
301
|
theValueOfThisElementThisMayBe:
|
|
302
|
-
'The value of this element; this may be user-provided or developer-provided, depending on the element
|
|
302
|
+
'The value of this element; this may be user-provided or developer-provided, depending on the element',
|
|
303
303
|
/**
|
|
304
|
-
* @description Text for
|
|
304
|
+
* @description Text for viewing the help options.
|
|
305
305
|
*/
|
|
306
306
|
help: 'Help',
|
|
307
307
|
/**
|
|
308
|
-
* @description Tooltip text that appears when hovering over the 'Help' attribute name under the
|
|
308
|
+
* @description Tooltip text that appears when hovering over the 'Help' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
309
309
|
*/
|
|
310
|
-
theComputedHelpTextForThis: 'The computed help text for this element
|
|
310
|
+
theComputedHelpTextForThis: 'The computed help text for this element',
|
|
311
311
|
/**
|
|
312
|
-
* @description Text for the description of something
|
|
312
|
+
* @description Text for the description of something.
|
|
313
313
|
*/
|
|
314
314
|
description: 'Description',
|
|
315
315
|
/**
|
|
316
|
-
* @description Tooltip text that appears when hovering over the 'Description' attribute name under the
|
|
316
|
+
* @description Tooltip text that appears when hovering over the 'Description' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
317
317
|
*/
|
|
318
|
-
theAccessibleDescriptionForThis: 'The accessible description for this element
|
|
318
|
+
theAccessibleDescriptionForThis: 'The accessible description for this element',
|
|
319
319
|
/**
|
|
320
|
-
* @description Accessibility attribute name that appears under the
|
|
320
|
+
* @description Accessibility attribute name that appears under the computed properties section in the Accessibility tab of the Elements panel.
|
|
321
321
|
*/
|
|
322
322
|
fromAttribute: 'From attribute',
|
|
323
323
|
/**
|
|
324
|
-
* @description Tooltip text that appears when hovering over the 'From attribute' attribute name under the
|
|
324
|
+
* @description Tooltip text that appears when hovering over the 'From attribute' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
325
325
|
*/
|
|
326
|
-
valueFromAttribute: 'Value from attribute
|
|
326
|
+
valueFromAttribute: 'Value from attribute',
|
|
327
327
|
/**
|
|
328
|
-
* @description The source of an accessibility attribute that appears under the
|
|
329
|
-
* section in the Accessibility
|
|
328
|
+
* @description The source of an accessibility attribute that appears under the computed properties
|
|
329
|
+
* section in the Accessibility tab of the Elements panel. If the source is implicit, that means
|
|
330
330
|
* it was never specified by the user but instead is present because it is the default value.
|
|
331
331
|
*/
|
|
332
332
|
implicit: 'Implicit',
|
|
333
333
|
/**
|
|
334
|
-
* @description Tooltip text that appears when hovering over the 'Implicit' attribute name under the
|
|
334
|
+
* @description Tooltip text that appears when hovering over the 'Implicit' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
335
335
|
*/
|
|
336
|
-
implicitValue: 'Implicit value
|
|
336
|
+
implicitValue: 'Implicit value',
|
|
337
337
|
/**
|
|
338
|
-
* @description Accessibility attribute name that appears under the
|
|
338
|
+
* @description Accessibility attribute name that appears under the computed properties section in the Accessibility tab of the Elements panel.
|
|
339
339
|
*/
|
|
340
340
|
fromStyle: 'From style',
|
|
341
341
|
/**
|
|
342
|
-
* @description Tooltip text that appears when hovering over the 'From style' attribute name under the
|
|
342
|
+
* @description Tooltip text that appears when hovering over the 'From style' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
343
343
|
*/
|
|
344
|
-
valueFromStyle: 'Value from style
|
|
344
|
+
valueFromStyle: 'Value from style',
|
|
345
345
|
/**
|
|
346
|
-
* @description Accessibility attribute name that appears under the
|
|
346
|
+
* @description Accessibility attribute name that appears under the computed properties section in the Accessibility tab of the Elements panel.
|
|
347
347
|
*/
|
|
348
348
|
contents: 'Contents',
|
|
349
349
|
/**
|
|
350
|
-
* @description Tooltip text that appears when hovering over the 'Contents' attribute name under the
|
|
350
|
+
* @description Tooltip text that appears when hovering over the 'Contents' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
351
351
|
*/
|
|
352
|
-
valueFromElementContents: 'Value from element contents
|
|
352
|
+
valueFromElementContents: 'Value from element contents',
|
|
353
353
|
/**
|
|
354
|
-
* @description Accessibility attribute name that appears under the
|
|
354
|
+
* @description Accessibility attribute name that appears under the computed properties section in the Accessibility tab of the Elements panel.
|
|
355
355
|
*/
|
|
356
356
|
fromPlaceholderAttribute: 'From placeholder attribute',
|
|
357
357
|
/**
|
|
358
|
-
* @description Tooltip text that appears when hovering over the 'From placeholder attribute' attribute name under the
|
|
358
|
+
* @description Tooltip text that appears when hovering over the 'From placeholder attribute' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
359
359
|
*/
|
|
360
|
-
valueFromPlaceholderAttribute: 'Value from placeholder attribute
|
|
360
|
+
valueFromPlaceholderAttribute: 'Value from placeholder attribute',
|
|
361
361
|
/**
|
|
362
|
-
* @description Accessibility attribute name that appears under the
|
|
362
|
+
* @description Accessibility attribute name that appears under the computed properties section in the Accessibility tab of the Elements panel.
|
|
363
363
|
*/
|
|
364
364
|
relatedElement: 'Related element',
|
|
365
365
|
/**
|
|
366
|
-
* @description Tooltip text that appears when hovering over the 'Related element' attribute name under the
|
|
366
|
+
* @description Tooltip text that appears when hovering over the 'Related element' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
367
367
|
*/
|
|
368
|
-
valueFromRelatedElement: 'Value from related element
|
|
368
|
+
valueFromRelatedElement: 'Value from related element',
|
|
369
369
|
/**
|
|
370
|
-
* @description Accessibility attribute name that appears under the
|
|
371
|
-
* the Accessibility
|
|
370
|
+
* @description Accessibility attribute name that appears under the computed properties section in
|
|
371
|
+
* the Accessibility tab of the Elements panel. Indicates that this element got assigned this
|
|
372
372
|
* attribute because there is a related caption, hence it received it from the caption. 'caption'
|
|
373
373
|
* is part of the ARIA API and should not be translated.
|
|
374
374
|
*/
|
|
375
375
|
fromCaption: 'From `caption`',
|
|
376
376
|
/**
|
|
377
|
-
* @description Tooltip text that appears when hovering over the 'From caption' attribute name under the
|
|
377
|
+
* @description Tooltip text that appears when hovering over the 'From caption' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
378
378
|
*/
|
|
379
|
-
valueFromFigcaptionElement: 'Value from `figcaption` element
|
|
379
|
+
valueFromFigcaptionElement: 'Value from `figcaption` element',
|
|
380
380
|
/**
|
|
381
|
-
* @description Accessibility attribute name that appears under the
|
|
382
|
-
* the Accessibility
|
|
381
|
+
* @description Accessibility attribute name that appears under the computed properties section in
|
|
382
|
+
* the Accessibility tab of the Elements panel. Indicates that this element got assigned this
|
|
383
383
|
* attribute because there is a related description, hence it received it from the description.
|
|
384
384
|
* 'description' is part of the ARIA API and should not be translated.
|
|
385
385
|
*/
|
|
386
386
|
fromDescription: 'From `description`',
|
|
387
387
|
/**
|
|
388
|
-
* @description Tooltip text that appears when hovering over the 'From description' attribute name under the
|
|
388
|
+
* @description Tooltip text that appears when hovering over the 'From description' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
389
389
|
*/
|
|
390
|
-
valueFromDescriptionElement: 'Value from `description` element
|
|
390
|
+
valueFromDescriptionElement: 'Value from `description` element',
|
|
391
391
|
/**
|
|
392
|
-
* @description Accessibility attribute name that appears under the
|
|
393
|
-
* the Accessibility
|
|
392
|
+
* @description Accessibility attribute name that appears under the computed properties section in
|
|
393
|
+
* the Accessibility tab of the Elements panel. Indicates that this element got assigned this
|
|
394
394
|
* attribute because there is a related label, hence it received it from the label. 'label'
|
|
395
395
|
* is part of the ARIA API and should not be translated.
|
|
396
396
|
*/
|
|
397
397
|
fromLabel: 'From `label`',
|
|
398
398
|
/**
|
|
399
|
-
* @description Tooltip text that appears when hovering over the 'From label' attribute name under the
|
|
399
|
+
* @description Tooltip text that appears when hovering over the 'From label' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
400
400
|
*/
|
|
401
|
-
valueFromLabelElement: 'Value from `label` element
|
|
401
|
+
valueFromLabelElement: 'Value from `label` element',
|
|
402
402
|
/**
|
|
403
|
-
* @description Accessibility attribute name that appears under the
|
|
404
|
-
* the Accessibility
|
|
403
|
+
* @description Accessibility attribute name that appears under the computed properties section in
|
|
404
|
+
* the Accessibility tab of the Elements panel. Indicates that this element got assigned this
|
|
405
405
|
* attribute because there is a related label, hence it received it from the label. 'label (for)'
|
|
406
406
|
* is part of the ARIA API and should not be translated. label (for) is just a different type of
|
|
407
407
|
* label.
|
|
408
408
|
*/
|
|
409
409
|
fromLabelFor: 'From `label` (`for=` attribute)',
|
|
410
410
|
/**
|
|
411
|
-
* @description Tooltip text that appears when hovering over the 'From label (for)' attribute name under the
|
|
411
|
+
* @description Tooltip text that appears when hovering over the 'From label (for)' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
412
412
|
*/
|
|
413
|
-
valueFromLabelElementWithFor: 'Value from `label` element with `for=` attribute
|
|
413
|
+
valueFromLabelElementWithFor: 'Value from `label` element with `for=` attribute',
|
|
414
414
|
/**
|
|
415
|
-
* @description Accessibility attribute name that appears under the
|
|
416
|
-
* the Accessibility
|
|
415
|
+
* @description Accessibility attribute name that appears under the computed properties section in
|
|
416
|
+
* the Accessibility tab of the Elements panel. Indicates that this element got assigned this
|
|
417
417
|
* attribute because there is a related label which wraps (encompasses, surrounds) this element,
|
|
418
418
|
* hence it received it from the label. 'wrapped' is not part of the ARIA API, and should be
|
|
419
419
|
* translated.
|
|
@@ -421,50 +421,50 @@ const UIStrings = {
|
|
|
421
421
|
fromLabelWrapped: 'From `label` (wrapped)',
|
|
422
422
|
/**
|
|
423
423
|
* @description Tooltip text that appears when hovering over the 'From label (wrapped)' attribute
|
|
424
|
-
* name under the
|
|
424
|
+
* name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
425
425
|
* Indicates that there is a label element wrapping (surrounding) this element.
|
|
426
426
|
*/
|
|
427
|
-
valueFromLabelElementWrapped: 'Value from a wrapping `label` element
|
|
427
|
+
valueFromLabelElementWrapped: 'Value from a wrapping `label` element',
|
|
428
428
|
/**
|
|
429
|
-
* @description Accessibility attribute name that appears under the
|
|
430
|
-
* the Accessibility
|
|
429
|
+
* @description Accessibility attribute name that appears under the computed properties section in
|
|
430
|
+
* the Accessibility tab of the Elements panel. Indicates that this element got assigned this
|
|
431
431
|
* attribute because there is a related legend, hence it received it from the legend. 'legend' is
|
|
432
432
|
* part of the ARIA API and should not be translated.
|
|
433
433
|
*/
|
|
434
434
|
fromLegend: 'From `legend`',
|
|
435
435
|
/**
|
|
436
|
-
* @description Tooltip text that appears when hovering over the 'From legend' attribute name under the
|
|
436
|
+
* @description Tooltip text that appears when hovering over the 'From legend' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
437
437
|
*/
|
|
438
|
-
valueFromLegendElement: 'Value from `legend` element
|
|
438
|
+
valueFromLegendElement: 'Value from `legend` element',
|
|
439
439
|
/**
|
|
440
|
-
* @description Accessibility attribute name that appears under the
|
|
440
|
+
* @description Accessibility attribute name that appears under the computed properties section in the Accessibility tab of the Elements panel.
|
|
441
441
|
*/
|
|
442
442
|
fromRubyAnnotation: 'From ruby annotation',
|
|
443
443
|
/**
|
|
444
|
-
* @description Tooltip text that appears when hovering over the 'From ruby annotation' attribute name under the
|
|
444
|
+
* @description Tooltip text that appears when hovering over the 'From ruby annotation' attribute name under the computed properties section in the Accessibility tab of the Elements panel. Indicates that the value was taken from a plain HTML ruby tag (https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ruby).
|
|
445
445
|
*/
|
|
446
|
-
valueFromNativeHtmlRuby: 'Value from plain HTML ruby annotation
|
|
446
|
+
valueFromNativeHtmlRuby: 'Value from plain HTML ruby annotation',
|
|
447
447
|
/**
|
|
448
|
-
* @description Tooltip text that appears when hovering over the 'From caption' attribute name under the
|
|
448
|
+
* @description Tooltip text that appears when hovering over the 'From caption' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
449
449
|
*/
|
|
450
|
-
valueFromTableCaption: 'Value from `table` `caption
|
|
450
|
+
valueFromTableCaption: 'Value from `table` `caption`',
|
|
451
451
|
/**
|
|
452
|
-
* @description Accessibility attribute name that appears under the
|
|
453
|
-
* the Accessibility
|
|
452
|
+
* @description Accessibility attribute name that appears under the computed properties section in
|
|
453
|
+
* the Accessibility tab of the Elements panel.
|
|
454
454
|
*/
|
|
455
455
|
fromTitle: 'From title',
|
|
456
456
|
/**
|
|
457
|
-
* @description Tooltip text that appears when hovering over the 'From title' attribute name under the
|
|
457
|
+
* @description Tooltip text that appears when hovering over the 'From title' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
458
458
|
*/
|
|
459
|
-
valueFromTitleAttribute: 'Value from title attribute
|
|
459
|
+
valueFromTitleAttribute: 'Value from title attribute',
|
|
460
460
|
/**
|
|
461
|
-
* @description Accessibility attribute name that appears under the
|
|
461
|
+
* @description Accessibility attribute name that appears under the computed properties section in the Accessibility tab of the Elements panel.
|
|
462
462
|
*/
|
|
463
463
|
fromNativeHtml: 'From native HTML',
|
|
464
464
|
/**
|
|
465
|
-
* @description Tooltip text that appears when hovering over the 'From native HTML' attribute name under the
|
|
465
|
+
* @description Tooltip text that appears when hovering over the 'From native HTML' attribute name under the computed properties section in the Accessibility tab of the Elements panel.
|
|
466
466
|
*/
|
|
467
|
-
valueFromNativeHtmlUnknownSource: 'Value from native HTML (unknown source)
|
|
467
|
+
valueFromNativeHtmlUnknownSource: 'Value from native HTML (unknown source)',
|
|
468
468
|
} as const;
|
|
469
469
|
const str_ = i18n.i18n.registerUIStrings('panels/accessibility/AccessibilityStrings.ts', UIStrings);
|
|
470
470
|
const i18nLazyString = i18n.i18n.getLazilyComputedLocalizedString.bind(undefined, str_);
|