Skip to content

Commit

Permalink
bidi: remove tlsEnd from network.FetchTimingInfo (#40223)
Browse files Browse the repository at this point in the history
tlsEnd never made it to the spec:
https://w3c.github.io/webdriver-bidi/#type-network-FetchTimingInfo

c.f. w3c/webdriver-bidi#204:

> tlsEnd: float this should be the same as connectEnd

As it is a redundant param anyway, remove it from WPT.
  • Loading branch information
Thiago Perrotta authored May 25, 2023
1 parent 414a38c commit 1d68446
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion webdriver/tests/bidi/network/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ def assert_timing_info(timing_info):
"connectStart": any_int,
"connectEnd": any_int,
"tlsStart": any_int,
"tlsEnd": any_int,
"requestStart": any_int,
"responseStart": any_int,
"responseEnd": any_int,
Expand Down

0 comments on commit 1d68446

Please sign in to comment.