1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
// Test classifyAngle.
"use strict";
var Cu = Components.utils;
var {require} = Cu.import("resource://devtools/shared/Loader.jsm", {});
const {angleUtils} = require("devtools/client/shared/css-angle");
const CLASSIFY_TESTS = [
{ input: "180deg", output: "deg" },
{ input: "-180deg", output: "deg" },
{ input: "180DEG", output: "deg" },
{ input: "200rad", output: "rad" },
{ input: "-200rad", output: "rad" },
{ input: "200RAD", output: "rad" },
{ input: "0.5grad", output: "grad" },
{ input: "-0.5grad", output: "grad" },
{ input: "0.5GRAD", output: "grad" },
{ input: "0.33turn", output: "turn" },
{ input: "0.33TURN", output: "turn" },
{ input: "-0.33turn", output: "turn" }
];
function run_test() {
for (let test of CLASSIFY_TESTS) {
let result = angleUtils.classifyAngle(test.input);
equal(result, test.output, "test classifyAngle(" + test.input + ")");
}
}
|