| 1336 | } |
| 1337 | |
| 1338 | void DisplayServerWeb::window_set_title(const String &p_title, WindowID p_window) { |
| 1339 | godot_js_display_window_title_set(p_title.utf8().get_data()); |
| 1340 | } |
| 1341 | |
| 1342 | int DisplayServerWeb::window_get_current_screen(WindowID p_window) const { |
| 1343 | ERR_FAIL_COND_V(p_window != MAIN_WINDOW_ID, INVALID_SCREEN); |
no test coverage detected