From 9835e2ae736235810b4ea1c162ca5e65c547e770 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 18 May 2024 04:49:50 +0200 Subject: Merging upstream version 1.71.1+dfsg1. Signed-off-by: Daniel Baumann --- vendor/web-sys/tests/wasm/location.rs | 60 +++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 vendor/web-sys/tests/wasm/location.rs (limited to 'vendor/web-sys/tests/wasm/location.rs') diff --git a/vendor/web-sys/tests/wasm/location.rs b/vendor/web-sys/tests/wasm/location.rs new file mode 100644 index 000000000..aa41d0d5a --- /dev/null +++ b/vendor/web-sys/tests/wasm/location.rs @@ -0,0 +1,60 @@ +use wasm_bindgen_test::*; +use web_sys::{self, Location}; + +fn location() -> Location { + web_sys::window().unwrap().location() +} + +#[wasm_bindgen_test] +fn href() { + let loc = location(); + loc.href().unwrap(); +} + +#[wasm_bindgen_test] +fn origin() { + let loc = location(); + loc.origin().unwrap(); +} + +#[wasm_bindgen_test] +fn protocol() { + let loc = location(); + loc.protocol().unwrap(); +} + +#[wasm_bindgen_test] +fn host() { + let loc = location(); + loc.host().unwrap(); +} + +#[wasm_bindgen_test] +fn hostname() { + let loc = location(); + loc.hostname().unwrap(); +} + +#[wasm_bindgen_test] +fn port() { + let loc = location(); + loc.port().unwrap(); +} + +#[wasm_bindgen_test] +fn pathname() { + let loc = location(); + loc.pathname().unwrap(); +} + +#[wasm_bindgen_test] +fn search() { + let loc = location(); + loc.search().unwrap(); +} + +#[wasm_bindgen_test] +fn hash() { + let loc = location(); + loc.hash().unwrap(); +} -- cgit v1.2.3