mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 08:48:39 +09:00
Bug 1168376: Show transferred size in request summary instead of decompressed size
https://github.com/MoonchildProductions/moebius/pull/93 - without: DOMContentLoaded and load
This commit is contained in:
parent
8d210f18c8
commit
173d356acd
11 changed files with 177 additions and 70 deletions
|
|
@ -20,6 +20,10 @@ add_task(function* () {
|
|||
totals: {
|
||||
label1: value => "Hello " + L10N.numberWithDecimals(value, 2),
|
||||
label2: value => "World " + L10N.numberWithDecimals(value, 2)
|
||||
},
|
||||
header: {
|
||||
label1: "",
|
||||
label2: ""
|
||||
}
|
||||
});
|
||||
|
||||
|
|
@ -29,17 +33,17 @@ add_task(function* () {
|
|||
let rows = grid.querySelectorAll(".table-chart-row");
|
||||
let sums = node.querySelectorAll(".table-chart-summary-label");
|
||||
|
||||
is(rows.length, 1, "There should be 1 table chart row created.");
|
||||
is(rows.length, 2, "There should be 1 table chart row and 1 header created.");
|
||||
|
||||
ok(rows[0].querySelector(".table-chart-row-box.chart-colored-blob"),
|
||||
ok(rows[1].querySelector(".table-chart-row-box.chart-colored-blob"),
|
||||
"A colored blob exists for the firt row.");
|
||||
is(rows[0].querySelectorAll("label")[0].getAttribute("name"), "size",
|
||||
is(rows[1].querySelectorAll("label")[0].getAttribute("name"), "size",
|
||||
"The first column of the first row exists.");
|
||||
is(rows[0].querySelectorAll("label")[1].getAttribute("name"), "label",
|
||||
is(rows[1].querySelectorAll("label")[1].getAttribute("name"), "label",
|
||||
"The second column of the first row exists.");
|
||||
is(rows[0].querySelectorAll("label")[0].getAttribute("value"), "",
|
||||
is(rows[1].querySelectorAll("label")[0].getAttribute("value"), "",
|
||||
"The first column of the first row displays the correct text.");
|
||||
is(rows[0].querySelectorAll("label")[1].getAttribute("value"),
|
||||
is(rows[1].querySelectorAll("label")[1].getAttribute("value"),
|
||||
L10N.getStr("tableChart.unavailable"),
|
||||
"The second column of the first row displays the correct text.");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue