mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Make assertion for colum-count more accurate.
column-count should be greater than or equal to 1. Also it should be less than or equal to nsStyleColumn_kMaxColumnCount since we limit it in set_column_count().
This commit is contained in:
parent
f6b8fb177c
commit
19d498f01e
1 changed files with 3 additions and 3 deletions
|
@ -5444,10 +5444,10 @@ clip-path
|
|||
${impl_simple_copy('column_count', 'mColumnCount')}
|
||||
|
||||
pub fn clone_column_count(&self) -> longhands::column_count::computed_value::T {
|
||||
use gecko_bindings::structs::NS_STYLE_COLUMN_COUNT_AUTO;
|
||||
use gecko_bindings::structs::{NS_STYLE_COLUMN_COUNT_AUTO, nsStyleColumn_kMaxColumnCount};
|
||||
if self.gecko.mColumnCount != NS_STYLE_COLUMN_COUNT_AUTO {
|
||||
debug_assert!((self.gecko.mColumnCount as i32) >= 0 &&
|
||||
(self.gecko.mColumnCount as i32) < i32::max_value());
|
||||
debug_assert!(self.gecko.mColumnCount >= 1 &&
|
||||
self.gecko.mColumnCount <= nsStyleColumn_kMaxColumnCount);
|
||||
Either::First((self.gecko.mColumnCount as i32).into())
|
||||
} else {
|
||||
Either::Second(Auto)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue