2018-08-02 18:40:32 -05:00
|
|
|
use wasm_bindgen::prelude::*;
|
2018-09-26 08:26:00 -07:00
|
|
|
use wasm_bindgen_test::*;
|
2018-08-02 18:40:32 -05:00
|
|
|
use web_sys::HtmlOptGroupElement;
|
|
|
|
|
2019-02-26 08:33:14 -08:00
|
|
|
#[wasm_bindgen(module = "/tests/wasm/element.js")]
|
2018-09-26 08:26:00 -07:00
|
|
|
extern "C" {
|
2018-08-02 18:40:32 -05:00
|
|
|
fn new_optgroup() -> HtmlOptGroupElement;
|
|
|
|
}
|
|
|
|
|
|
|
|
#[wasm_bindgen_test]
|
|
|
|
fn test_optgroup_element() {
|
|
|
|
let optgroup = new_optgroup();
|
|
|
|
|
|
|
|
optgroup.set_disabled(true);
|
2018-09-26 08:26:00 -07:00
|
|
|
assert_eq!(
|
|
|
|
optgroup.disabled(),
|
|
|
|
true,
|
|
|
|
"Optgroup should be disabled after we set it to be disabled."
|
|
|
|
);
|
2018-08-02 18:40:32 -05:00
|
|
|
|
|
|
|
optgroup.set_disabled(false);
|
2018-09-26 08:26:00 -07:00
|
|
|
assert_eq!(
|
|
|
|
optgroup.disabled(),
|
|
|
|
false,
|
|
|
|
"Optgroup should not be disabled after we set it to be not-disabled."
|
|
|
|
);
|
2018-08-02 18:40:32 -05:00
|
|
|
|
|
|
|
optgroup.set_label("Group of options below");
|
2018-09-26 08:26:00 -07:00
|
|
|
assert_eq!(
|
|
|
|
optgroup.label(),
|
|
|
|
"Group of options below",
|
|
|
|
"Optgroup should have the label we gave it."
|
|
|
|
);
|
|
|
|
}
|