Skip to content
This repository was archived by the owner on Jan 11, 2023. It is now read-only.

Commit 5f7ecfe

Browse files
committed
release 12
1 parent fdb65e3 commit 5f7ecfe

File tree

5 files changed

+45
-10
lines changed

5 files changed

+45
-10
lines changed

assets/module-manifest.json

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21062,7 +21062,11 @@
2106221062
"../../../src/node_modules/lodash/_baseDifference.js": 2242,
2106321063
"../../../src/node_modules/lodash/isArrayLikeObject.js": 2243,
2106421064
"../../babel-loader/lib/index.js?ignore=src/lib!../../../src/utils/editor/get-token-location.js": 2244,
21065-
"../../babel-loader/lib/index.js?ignore=src/lib!../../../src/utils/sources-tree/updateTree.js": 2245
21065+
"../../babel-loader/lib/index.js?ignore=src/lib!../../../src/utils/sources-tree/updateTree.js": 2245,
21066+
"../../babel-loader/lib/index.js?ignore=src/lib!../../../src/utils/dbg.js": 2246,
21067+
"../../svg-inline-loader/index.js!../../devtools-components/src/images/arrow.svg": 2247,
21068+
"../../extract-text-webpack-plugin/dist/loader.js??ref--3-0!../../css-loader/index.js??ref--3-1!../../postcss-loader/lib/index.js!../../devtools-components/src/tree.css": 2248,
21069+
"../../babel-loader/lib/index.js?ignore=src/lib!../../devtools-reps/src/shared/grip-length-bubble.js": 2249
2106621070
},
2106721071
"usedIds": {
2106821072
"0": 0,
@@ -23310,7 +23314,11 @@
2331023314
"2242": 2242,
2331123315
"2243": 2243,
2331223316
"2244": 2244,
23313-
"2245": 2245
23317+
"2245": 2245,
23318+
"2246": 2246,
23319+
"2247": 2247,
23320+
"2248": 2248,
23321+
"2249": 2249
2331423322
}
2331523323
},
2331623324
"chunks": {
@@ -27676,5 +27684,26 @@
2767627684
}
2767727685
}
2767827686
}
27687+
],
27688+
"extract-text-webpack-plugin ../../extract-text-webpack-plugin/dist ../../css-loader/index.js??ref--3-1!../../postcss-loader/lib/index.js!../../devtools-components/src/tree.css": [
27689+
{
27690+
"modules": {
27691+
"byIdentifier": {
27692+
"../../css-loader/index.js?{\"importLoaders\":1,\"url\":false}!../../postcss-loader/lib/index.js!../../devtools-components/src/tree.css": 0,
27693+
"../../css-loader/lib/css-base.js": 1
27694+
},
27695+
"usedIds": {
27696+
"0": 0,
27697+
"1": 1
27698+
}
27699+
},
27700+
"chunks": {
27701+
"byName": {},
27702+
"byBlocks": {},
27703+
"usedIds": {
27704+
"1": 1
27705+
}
27706+
}
27707+
}
2767927708
]
2768027709
}

assets/panel/debugger.properties

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,10 @@ copySourceUri2.accesskey=u
2929
setDirectoryRoot.label=Set directory root
3030
setDirectoryRoot.accesskey=r
3131

32+
# LOCALIZATION NOTE (removeDirectoryRoot): This is the text that appears in the
33+
# context menu to remove a directory as root directory
3234
removeDirectoryRoot.label=Remove directory root
35+
setDirectoryRoot.accesskey=d
3336

3437
# LOCALIZATION NOTE (copyFunction): This is the text that appears in the
3538
# context menu to copy the function the user selected

src/test/mochitest/browser_dbg-sourcemaps-reloading.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,4 @@ add_task(async function() {
6060
}),
6161
"Breakpoint has correct line"
6262
);
63-
ok(false, "fff")
6463
});

src/test/mochitest/browser_dbg-sources-named-eval.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ async function waitForSourceCount(dbg, i) {
1212
}
1313

1414
function getLabel(dbg, index) {
15-
return findElement(dbg, "sourceNode", index).textContent
16-
.trim()
17-
.replace(/^[\s\u200b]*/g, '');
15+
return findElement(dbg, "sourceNode", index)
16+
.textContent.trim()
17+
.replace(/^[\s\u200b]*/g, "");
1818
}
1919

2020
add_task(async function() {

src/test/mochitest/browser_dbg-sources.js

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ async function assertSourceCount(dbg, count) {
1717
}
1818

1919
function getLabel(dbg, index) {
20-
return findElement(dbg, "sourceNode", index).textContent
21-
.trim()
22-
.replace(/^[\s\u200b]*/g, '');
20+
return findElement(dbg, "sourceNode", index)
21+
.textContent.trim()
22+
.replace(/^[\s\u200b]*/g, "");
2323
}
2424

2525
add_task(async function() {
@@ -64,5 +64,9 @@ add_task(async function() {
6464
});
6565

6666
await waitForSourceCount(dbg, 9);
67-
is(getLabel(dbg, 7), "math.min.js", "math.min.js - The dynamic script exists");
67+
is(
68+
getLabel(dbg, 7),
69+
"math.min.js",
70+
"math.min.js - The dynamic script exists"
71+
);
6872
});

0 commit comments

Comments
 (0)