summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/user-timing/mark-errors.any.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
commit36d22d82aa202bb199967e9512281e9a53db42c9 (patch)
tree105e8c98ddea1c1e4784a60a5a6410fa416be2de /testing/web-platform/tests/user-timing/mark-errors.any.js
parentInitial commit. (diff)
downloadfirefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz
firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/user-timing/mark-errors.any.js')
-rw-r--r--testing/web-platform/tests/user-timing/mark-errors.any.js50
1 files changed, 50 insertions, 0 deletions
diff --git a/testing/web-platform/tests/user-timing/mark-errors.any.js b/testing/web-platform/tests/user-timing/mark-errors.any.js
new file mode 100644
index 0000000000..39bafc045c
--- /dev/null
+++ b/testing/web-platform/tests/user-timing/mark-errors.any.js
@@ -0,0 +1,50 @@
+// If you're testing an API that constructs a PerformanceMark, add your test here.
+// See the for loop below for details.
+const markConstructionTests = [
+ {
+ testName: "Number should be rejected as the mark-options.",
+ testFunction: function(newMarkFunction) {
+ assert_throws_js(TypeError, function() { newMarkFunction("mark1", 123); }, "Number passed as a dict argument should cause type-error.");
+ },
+ },
+
+ {
+ testName: "NaN should be rejected as the mark-options.",
+ testFunction: function(newMarkFunction) {
+ assert_throws_js(TypeError, function() { newMarkFunction("mark1", NaN); }, "NaN passed as a dict argument should cause type-error.");
+ },
+ },
+
+ {
+ testName: "Infinity should be rejected as the mark-options.",
+ testFunction: function(newMarkFunction) {
+ assert_throws_js(TypeError, function() { newMarkFunction("mark1", Infinity); }, "Infinity passed as a dict argument should cause type-error.");
+ },
+ },
+
+ {
+ testName: "String should be rejected as the mark-options.",
+ testFunction: function(newMarkFunction) {
+ assert_throws_js(TypeError, function() { newMarkFunction("mark1", "string"); }, "String passed as a dict argument should cause type-error.")
+ },
+ },
+
+ {
+ testName: "Negative startTime in mark-options should be rejected",
+ testFunction: function(newMarkFunction) {
+ assert_throws_js(TypeError, function() { newMarkFunction("mark1", {startTime: -1}); }, "Negative startTime should cause type-error.")
+ },
+ },
+];
+
+// There are multiple function calls that can construct a mark using the same arguments so we run
+// each test on each construction method here, avoiding duplication.
+for (let testInfo of markConstructionTests) {
+ test(function() {
+ testInfo.testFunction(self.performance.mark);
+ }, `[performance.mark]: ${testInfo.testName}`);
+
+ test(function() {
+ testInfo.testFunction((markName, obj) => new PerformanceMark(markName, obj));
+ }, `[new PerformanceMark]: ${testInfo.testName}`);
+}