| 853 | } |
| 854 | |
| 855 | fn init_default_prefs(mathml: &str, nav_mode_default: &str) { |
| 856 | set_rules_dir(super::super::abs_rules_dir_path()).unwrap(); |
| 857 | set_preference("NavMode".to_string(), nav_mode_default.to_string()).unwrap(); |
| 858 | set_preference("NavVerbosity".to_string(), "Verbose".to_string()).unwrap(); |
| 859 | set_preference("AutoZoomOut".to_string(), "True".to_string()).unwrap(); |
| 860 | set_preference("Language".to_string(), "en".to_string()).unwrap(); |
| 861 | set_preference("SpeechStyle".to_string(), "SimpleSpeak".to_string()).unwrap(); |
| 862 | set_preference("Verbosity".to_string(), "Medium".to_string()).unwrap(); |
| 863 | set_mathml(mathml.to_string()).unwrap(); |
| 864 | } |
| 865 | |
| 866 | #[test] |
| 867 | fn zoom_in() -> Result<()> { |