summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/url/url-setters-a-area.window.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/url/url-setters-a-area.window.js
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/url/url-setters-a-area.window.js')
-rw-r--r--testing/web-platform/tests/url/url-setters-a-area.window.js43
1 files changed, 43 insertions, 0 deletions
diff --git a/testing/web-platform/tests/url/url-setters-a-area.window.js b/testing/web-platform/tests/url/url-setters-a-area.window.js
new file mode 100644
index 0000000000..6a5e762cd4
--- /dev/null
+++ b/testing/web-platform/tests/url/url-setters-a-area.window.js
@@ -0,0 +1,43 @@
+// META: script=/common/subset-tests-by-key.js
+// META: variant=?include=file
+// META: variant=?include=javascript
+// META: variant=?include=mailto
+// META: variant=?exclude=(file|javascript|mailto)
+
+// Keep this file in sync with url-setters.any.js.
+
+promise_test(() => fetch("resources/setters_tests.json").then(res => res.json()).then(runURLSettersTests), "Loading data…");
+
+function runURLSettersTests(all_test_cases) {
+ for (var attribute_to_be_set in all_test_cases) {
+ if (attribute_to_be_set == "comment") {
+ continue;
+ }
+ var test_cases = all_test_cases[attribute_to_be_set];
+ for(var i = 0, l = test_cases.length; i < l; i++) {
+ var test_case = test_cases[i];
+ var name = "Setting <" + test_case.href + ">." + attribute_to_be_set +
+ " = '" + test_case.new_value + "'";
+ if ("comment" in test_case) {
+ name += " " + test_case.comment;
+ }
+ const key = test_case.href.split(":")[0];
+ subsetTestByKey(key, test, function() {
+ var url = document.createElement("a");
+ url.href = test_case.href;
+ url[attribute_to_be_set] = test_case.new_value;
+ for (var attribute in test_case.expected) {
+ assert_equals(url[attribute], test_case.expected[attribute])
+ }
+ }, "<a>: " + name)
+ subsetTestByKey(key, test, function() {
+ var url = document.createElement("area");
+ url.href = test_case.href;
+ url[attribute_to_be_set] = test_case.new_value;
+ for (var attribute in test_case.expected) {
+ assert_equals(url[attribute], test_case.expected[attribute])
+ }
+ }, "<area>: " + name)
+ }
+ }
+}