mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-06 07:48:38 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
45
devtools/client/shared/test/browser_graphs-16.js
Normal file
45
devtools/client/shared/test/browser_graphs-16.js
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
/* Any copyright is dedicated to the Public Domain.
|
||||
http://creativecommons.org/publicdomain/zero/1.0/ */
|
||||
|
||||
"use strict";
|
||||
|
||||
// Tests that mounta graphs work as expected.
|
||||
|
||||
const MountainGraphWidget = require("devtools/client/shared/widgets/MountainGraphWidget");
|
||||
|
||||
const TEST_DATA = [
|
||||
{ delta: 0, values: [0.1, 0.5, 0.3] },
|
||||
{ delta: 1, values: [0.25, 0, 0.5] },
|
||||
{ delta: 2, values: [0.5, 0.25, 0.1] },
|
||||
{ delta: 3, values: [0, 0.75, 0] },
|
||||
{ delta: 4, values: [0.75, 0, 0.25] }
|
||||
];
|
||||
|
||||
const SECTIONS = [
|
||||
{ color: "red" },
|
||||
{ color: "green" },
|
||||
{ color: "blue" }
|
||||
];
|
||||
|
||||
add_task(function* () {
|
||||
yield addTab("about:blank");
|
||||
yield performTest();
|
||||
gBrowser.removeCurrentTab();
|
||||
});
|
||||
|
||||
function* performTest() {
|
||||
let [host,, doc] = yield createHost();
|
||||
let graph = new MountainGraphWidget(doc.body);
|
||||
yield graph.once("ready");
|
||||
|
||||
testGraph(graph);
|
||||
|
||||
yield graph.destroy();
|
||||
host.destroy();
|
||||
}
|
||||
|
||||
function testGraph(graph) {
|
||||
graph.format = SECTIONS;
|
||||
graph.setData(TEST_DATA);
|
||||
ok(true, "The graph didn't throw any erorrs.");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue