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-08-04 00:27:41 +03:00
|
|
|
//TODO: Both menu-related tests completely break in Chrome, but run fine in Firefox.
|
|
|
|
//pub mod menu_element;
|
|
|
|
//pub mod menu_item_element;
|
|
|
|
pub mod meta_element;
|
|
|
|
pub mod meter_element;
|
2018-08-03 02:40:32 +03:00
|
|
|
pub mod mod_elements;
|
|
|
|
pub mod olist_element;
|
|
|
|
pub mod optgroup_element;
|
|
|
|
pub mod option_element;
|
2018-08-02 02:11:29 +03:00
|
|
|
pub mod options_collection;
|
|
|
|
pub mod output_element;
|
|
|
|
pub mod paragraph_element;
|
|
|
|
pub mod param_element;
|
|
|
|
pub mod pre_element;
|
|
|
|
pub mod progress_element;
|
|
|
|
pub mod quote_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;
|
2018-08-02 02:11:29 +03:00
|
|
|
pub mod slot_element;
|
2018-07-30 18:14:50 +03:00
|
|
|
pub mod span_element;
|
|
|
|
pub mod style_element;
|
2018-08-03 17:02:31 +03:00
|
|
|
pub mod table_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;
|