mirror of
https://github.com/servo/servo.git
synced 2025-08-04 21:20:23 +01:00
Handler::handle_add_cookie did not configure the attributes "Expires" and "SameSite". This patch adds them. Testing: Passing WPT tests that were expected to fail. Fixes: https://github.com/servo/servo/pull/37715#issuecomment-3069734014 Signed-off-by: Kingsley Yung <kingsley@kkoyung.dev>
35 lines
942 B
TOML
35 lines
942 B
TOML
[package]
|
|
name = "webdriver_server"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
name = "webdriver_server"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
base = { workspace = true }
|
|
base64 = { workspace = true }
|
|
cookie = { workspace = true }
|
|
crossbeam-channel = { workspace = true }
|
|
embedder_traits = { workspace = true }
|
|
euclid = { workspace = true }
|
|
http = { version = "0.2" }
|
|
image = { workspace = true }
|
|
ipc-channel = { workspace = true }
|
|
keyboard-types = { workspace = true }
|
|
log = { workspace = true }
|
|
pixels = { path = "../pixels" }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
servo_config = { path = "../config" }
|
|
servo_geometry = { path = "../geometry" }
|
|
servo_url = { path = "../url" }
|
|
stylo_traits = { workspace = true }
|
|
time = { workspace = true }
|
|
uuid = { workspace = true }
|
|
webdriver = { workspace = true }
|