Add crashed tab recovery

This commit is contained in:
2026-05-08 10:14:00 -04:00
parent f23e5d4105
commit 1ec3bfcc3d
11 changed files with 394 additions and 1 deletions
+4
View File
@@ -161,6 +161,10 @@ impl BrowserTab {
self.state = TabState::Ready;
}
pub fn mark_crashed(&mut self) {
self.state = TabState::Crashed;
}
#[must_use]
pub fn flags(&self) -> &TabFlags {
&self.flags