True when the tab has no overrides of any kind.
(&self)
| 144 | impl TabEmulation { |
| 145 | /// True when the tab has no overrides of any kind. |
| 146 | fn is_empty(&self) -> bool { |
| 147 | self.blocklist.is_empty() && self.viewport.is_none() && self.geolocation.is_none() |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | /// Stash an outgoing tab's emulation state under its target id so it can be |
no outgoing calls
no test coverage detected