(&self)
| 838 | } |
| 839 | |
| 840 | pub fn has_value(&self) -> bool { |
| 841 | self.data().value().is_some() || (self.supports_text_ranges() && !self.is_multiline()) |
| 842 | } |
| 843 | |
| 844 | pub fn is_read_only_supported(&self) -> bool { |
| 845 | self.is_text_input() |
no test coverage detected