Skip to content

Commit 1bb43f5

Browse files
author
reffy-bot
committed
Update of TR report from new reffy run
Using reffy commit 18.4.2.
1 parent df72698 commit 1bb43f5

14 files changed

+1992
-1422
lines changed

tr/algorithms/webdriver-bidi.json

+572-453
Large diffs are not rendered by default.

tr/algorithms/webgpu.json

+28-7
Large diffs are not rendered by default.

tr/cddl/webdriver-bidi-all.cddl

+26
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Command = {
1212
CommandData = (
1313
BrowserCommand //
1414
BrowsingContextCommand //
15+
EmulationCommand //
1516
InputCommand //
1617
NetworkCommand //
1718
ScriptCommand //
@@ -759,6 +760,31 @@ browsingContext.UserPromptOpenedParameters = {
759760
? defaultValue: text
760761
}
761762

763+
EmulationCommand = (
764+
emulation.setGeolocationOverride
765+
)
766+
767+
emulation.SetGeolocationOverride = (
768+
method: "emulation.setGeolocationOverride",
769+
params: emulation.SetGeolocationOverrideParameters
770+
)
771+
772+
emulation.SetGeolocationOverrideParameters = {
773+
coordinates: emulation.GeolocationCoordinates / null,
774+
? contexts: [+browsingContext.BrowsingContext],
775+
? userContexts: [+browser.UserContext],
776+
}
777+
778+
emulation.GeolocationCoordinates = {
779+
latitude: float,
780+
longitude: float,
781+
? accuracy: float .default 1.0,
782+
? altitude: float / null .default null,
783+
? altitudeAccuracy: float / null .default null,
784+
? heading: float / null .default null,
785+
? speed: float / null .default null,
786+
}
787+
762788
NetworkCommand = (
763789
network.AddIntercept //
764790
network.ContinueRequest //

tr/cddl/webdriver-bidi-remote.cddl

+26
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Command = {
1212
CommandData = (
1313
BrowserCommand //
1414
BrowsingContextCommand //
15+
EmulationCommand //
1516
InputCommand //
1617
NetworkCommand //
1718
ScriptCommand //
@@ -478,6 +479,31 @@ browsingContext.TraverseHistoryParameters = {
478479
delta: js-int,
479480
}
480481

482+
EmulationCommand = (
483+
emulation.setGeolocationOverride
484+
)
485+
486+
emulation.SetGeolocationOverride = (
487+
method: "emulation.setGeolocationOverride",
488+
params: emulation.SetGeolocationOverrideParameters
489+
)
490+
491+
emulation.SetGeolocationOverrideParameters = {
492+
coordinates: emulation.GeolocationCoordinates / null,
493+
? contexts: [+browsingContext.BrowsingContext],
494+
? userContexts: [+browser.UserContext],
495+
}
496+
497+
emulation.GeolocationCoordinates = {
498+
latitude: float,
499+
longitude: float,
500+
? accuracy: float .default 1.0,
501+
? altitude: float / null .default null,
502+
? altitudeAccuracy: float / null .default null,
503+
? heading: float / null .default null,
504+
? speed: float / null .default null,
505+
}
506+
481507
NetworkCommand = (
482508
network.AddIntercept //
483509
network.ContinueRequest //

0 commit comments

Comments
 (0)