Set the title of the document
(&self, title: String)
| 67 | |
| 68 | /// Set the title of the document |
| 69 | fn set_title(&self, title: String) { |
| 70 | self.eval(format!("document.title = {title:?};")); |
| 71 | } |
| 72 | |
| 73 | /// Create a new element in the head |
| 74 | fn create_head_element( |
nothing calls this directly
no test coverage detected