diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-15 03:34:42 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-15 03:34:42 +0000 |
commit | da4c7e7ed675c3bf405668739c3012d140856109 (patch) | |
tree | cdd868dba063fecba609a1d819de271f0d51b23e /testing/web-platform/tests/fenced-frame/report-event-reserved-event.https.html | |
parent | Adding upstream version 125.0.3. (diff) | |
download | firefox-da4c7e7ed675c3bf405668739c3012d140856109.tar.xz firefox-da4c7e7ed675c3bf405668739c3012d140856109.zip |
Adding upstream version 126.0.upstream/126.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/fenced-frame/report-event-reserved-event.https.html')
-rw-r--r-- | testing/web-platform/tests/fenced-frame/report-event-reserved-event.https.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/web-platform/tests/fenced-frame/report-event-reserved-event.https.html b/testing/web-platform/tests/fenced-frame/report-event-reserved-event.https.html index 0a541bb0c5..6baa3cedea 100644 --- a/testing/web-platform/tests/fenced-frame/report-event-reserved-event.https.html +++ b/testing/web-platform/tests/fenced-frame/report-event-reserved-event.https.html @@ -11,7 +11,7 @@ promise_test(async(t) => { const fencedframe = await attachFencedFrameContext({ generator_api: "fledge", - automatic_beacon: true, + register_beacon: true, }); const new_url = new URL("resources/dummy.html", location.href); const beacon_data = "This is the beacon data!"; @@ -31,7 +31,7 @@ promise_test(async(t) => { const timeout = new Promise(resolve => t.step_timeout(resolve, 1000)); const result = await Promise.race( - [nextAutomaticBeacon(beacon_type, beacon_data), timeout]); + [nextBeacon(beacon_type, beacon_data), timeout]); assert_true(typeof result === "undefined", "A beacon should not have been sent."); |