2018-07-30 08:14:50 -07:00
|
|
|
use wasm_bindgen::prelude::*;
|
2018-09-26 08:26:00 -07:00
|
|
|
use wasm_bindgen_test::*;
|
2018-07-30 08:14:50 -07:00
|
|
|
use web_sys::{History, ScrollRestoration};
|
|
|
|
|
|
|
|
#[wasm_bindgen]
|
2018-09-26 08:26:00 -07:00
|
|
|
extern "C" {
|
2018-07-30 08:14:50 -07:00
|
|
|
#[wasm_bindgen(js_name = history, js_namespace = window)]
|
|
|
|
static HISTORY: History;
|
|
|
|
}
|
|
|
|
|
|
|
|
#[wasm_bindgen_test]
|
|
|
|
fn history() {
|
2018-09-26 08:26:00 -07:00
|
|
|
HISTORY
|
|
|
|
.set_scroll_restoration(ScrollRestoration::Manual)
|
|
|
|
.expect("failure to set scroll restoration");
|
|
|
|
assert_eq!(
|
|
|
|
HISTORY.scroll_restoration().unwrap(),
|
|
|
|
ScrollRestoration::Manual
|
|
|
|
);
|
2018-07-30 08:14:50 -07:00
|
|
|
|
2018-09-26 08:26:00 -07:00
|
|
|
HISTORY
|
|
|
|
.set_scroll_restoration(ScrollRestoration::Auto)
|
|
|
|
.expect("failure to set scroll restoration");
|
|
|
|
assert_eq!(
|
|
|
|
HISTORY.scroll_restoration().unwrap(),
|
|
|
|
ScrollRestoration::Auto
|
|
|
|
);
|
2018-07-30 08:14:50 -07:00
|
|
|
}
|