aboutsummaryrefslogtreecommitdiffstats
path: root/components/webdriver_server/lib.rs
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2025-01-07 03:57:14 -0500
committerGitHub <noreply@github.com>2025-01-07 08:57:14 +0000
commit17e2ca3f013e2ff8e7d7bca08d93c6c723a2b71d (patch)
treed9c750daf44bd68375e461781054f27ed1802028 /components/webdriver_server/lib.rs
parent8a68d47409559777d6b39c0bc4a5b4fe391794be (diff)
downloadservo-17e2ca3f013e2ff8e7d7bca08d93c6c723a2b71d.tar.gz
servo-17e2ca3f013e2ff8e7d7bca08d93c6c723a2b71d.zip
Various servodriver fixes (#34871)
* servodriver: Set initial URL to data:, instead of about:blank. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Ignore failed epoch update messages. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * Make servo-max-session-history.html use an iframe. Signed-off-by: Josh Matthews <josh@joshmatthews.net> --------- Signed-off-by: Josh Matthews <josh@joshmatthews.net>
Diffstat (limited to 'components/webdriver_server/lib.rs')
-rw-r--r--components/webdriver_server/lib.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/components/webdriver_server/lib.rs b/components/webdriver_server/lib.rs
index 05746ac4423..4eb20c06b96 100644
--- a/components/webdriver_server/lib.rs
+++ b/components/webdriver_server/lib.rs
@@ -426,9 +426,6 @@ impl Handler {
}
fn focus_top_level_browsing_context_id(&self) -> WebDriverResult<TopLevelBrowsingContextId> {
- // FIXME(#34550): This is a hack for unexpected behaviour in the constellation.
- thread::sleep(Duration::from_millis(1000));
-
debug!("Getting focused context.");
let interval = 20;
let iterations = 30_000 / interval;