@chrome-devtools/integration-test-runner 1.20260405.0 → 1.20260412.0
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/Images.js +2 -1
- package/Images.prebundle.js +2 -1
- package/{chunk-ec0p13tm.js → chunk-3vrmtm90.js} +4985 -4708
- package/flowsheet.svg +1 -0
- package/integration_test_runner.html +1 -1
- package/locales/en-US.json +1 -1
- package/locales/generated/collected-ui-strings.d +1 -1
- package/locales/generated/en-US.json +75 -9
- package/package.json +1 -1
- package/src/flowsheet.svg +1 -0
package/Images.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright
|
|
1
|
+
// Copyright 1969 The Chromium Authors
|
|
2
2
|
// Use of this source code is governed by a BSD-style license that can be
|
|
3
3
|
// found in the LICENSE file.
|
|
4
4
|
const sheet = new CSSStyleSheet();
|
|
@@ -164,6 +164,7 @@ style.setProperty('--image-file-flex-direction', 'url(\"' + new URL(new URL('fle
|
|
|
164
164
|
style.setProperty('--image-file-flex-no-wrap', 'url(\"' + new URL(new URL('flex-no-wrap.svg', import.meta.url).href).toString() + '\")');
|
|
165
165
|
style.setProperty('--image-file-flex-wrap', 'url(\"' + new URL(new URL('flex-wrap.svg', import.meta.url).href).toString() + '\")');
|
|
166
166
|
style.setProperty('--image-file-flow', 'url(\"' + new URL(new URL('flow.svg', import.meta.url).href).toString() + '\")');
|
|
167
|
+
style.setProperty('--image-file-flowsheet', 'url(\"' + new URL(new URL('flowsheet.svg', import.meta.url).href).toString() + '\")');
|
|
167
168
|
style.setProperty('--image-file-fold-more', 'url(\"' + new URL(new URL('fold-more.svg', import.meta.url).href).toString() + '\")');
|
|
168
169
|
style.setProperty('--image-file-folder-asterisk', 'url(\"' + new URL(new URL('folder-asterisk.svg', import.meta.url).href).toString() + '\")');
|
|
169
170
|
style.setProperty('--image-file-folder-off', 'url(\"' + new URL(new URL('folder-off.svg', import.meta.url).href).toString() + '\")');
|
package/Images.prebundle.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
// Copyright
|
|
2
|
+
// Copyright 1969 The Chromium Authors
|
|
3
3
|
// Use of this source code is governed by a BSD-style license that can be
|
|
4
4
|
// found in the LICENSE file.
|
|
5
5
|
const sheet = new CSSStyleSheet();
|
|
@@ -165,6 +165,7 @@ style.setProperty('--image-file-flex-direction', 'url(\"' + new URL('./src/flex-
|
|
|
165
165
|
style.setProperty('--image-file-flex-no-wrap', 'url(\"' + new URL('./src/flex-no-wrap.svg', import.meta.url).toString() + '\")');
|
|
166
166
|
style.setProperty('--image-file-flex-wrap', 'url(\"' + new URL('./src/flex-wrap.svg', import.meta.url).toString() + '\")');
|
|
167
167
|
style.setProperty('--image-file-flow', 'url(\"' + new URL('./src/flow.svg', import.meta.url).toString() + '\")');
|
|
168
|
+
style.setProperty('--image-file-flowsheet', 'url(\"' + new URL('./src/flowsheet.svg', import.meta.url).toString() + '\")');
|
|
168
169
|
style.setProperty('--image-file-fold-more', 'url(\"' + new URL('./src/fold-more.svg', import.meta.url).toString() + '\")');
|
|
169
170
|
style.setProperty('--image-file-folder-asterisk', 'url(\"' + new URL('./src/folder-asterisk.svg', import.meta.url).toString() + '\")');
|
|
170
171
|
style.setProperty('--image-file-folder-off', 'url(\"' + new URL('./src/folder-off.svg', import.meta.url).toString() + '\")');
|