2018-07-30 18:14:50 +03:00
|
|
|
#![feature(use_extern_macros)]
|
|
|
|
#![cfg(target_arch = "wasm32")]
|
|
|
|
|
2018-08-01 23:52:24 +03:00
|
|
|
extern crate futures;
|
2018-07-30 18:14:50 +03:00
|
|
|
extern crate js_sys;
|
|
|
|
extern crate wasm_bindgen;
|
2018-08-01 23:52:24 +03:00
|
|
|
extern crate wasm_bindgen_futures;
|
2018-07-30 18:14:50 +03:00
|
|
|
extern crate wasm_bindgen_test;
|
|
|
|
extern crate web_sys;
|
|
|
|
|
|
|
|
wasm_bindgen_test::wasm_bindgen_test_configure!(run_in_browser);
|
|
|
|
|
|
|
|
pub mod anchor_element;
|
|
|
|
pub mod body_element;
|
|
|
|
pub mod br_element;
|
|
|
|
pub mod button_element;
|
|
|
|
pub mod div_element;
|
|
|
|
pub mod element;
|
2018-08-01 23:52:24 +03:00
|
|
|
pub mod event;
|
2018-07-30 18:14:50 +03:00
|
|
|
pub mod head_element;
|
2018-07-31 18:57:16 +03:00
|
|
|
pub mod heading_element;
|
2018-07-30 18:14:50 +03:00
|
|
|
pub mod headers;
|
|
|
|
pub mod history;
|
2018-07-31 04:25:48 +03:00
|
|
|
pub mod hr_element;
|
2018-07-30 18:14:50 +03:00
|
|
|
pub mod html_element;
|
|
|
|
pub mod html_html_element;
|
2018-07-31 18:57:16 +03:00
|
|
|
pub mod input_element;
|
2018-07-30 18:14:50 +03:00
|
|
|
pub mod response;
|
2018-08-01 08:01:03 +03:00
|
|
|
pub mod select_element;
|
2018-07-30 18:14:50 +03:00
|
|
|
pub mod script_element;
|
|
|
|
pub mod span_element;
|
|
|
|
pub mod style_element;
|
2018-07-31 18:57:16 +03:00
|
|
|
pub mod title_element;
|
2018-07-30 18:14:50 +03:00
|
|
|
pub mod xpath_result;
|