Adjust size of gecko ComputedValues struct for removal of separate lazy pseudo cache.

This commit is contained in:
Bobby Holley 2018-01-11 07:47:29 -08:00
parent 9b3fc43f5a
commit fd41646699
2 changed files with 3 additions and 3 deletions

File diff suppressed because one or more lines are too long

View file

@ -32,7 +32,7 @@ fn size_of_selectors_dummy_types() {
size_of_test!(test_size_of_rule, style::stylist::Rule, 32); size_of_test!(test_size_of_rule, style::stylist::Rule, 32);
// Large pages generate tens of thousands of ComputedValues. // Large pages generate tens of thousands of ComputedValues.
size_of_test!(test_size_of_cv, ComputedValues, 256); size_of_test!(test_size_of_cv, ComputedValues, 248);
size_of_test!(test_size_of_option_arc_cv, Option<Arc<ComputedValues>>, 8); size_of_test!(test_size_of_option_arc_cv, Option<Arc<ComputedValues>>, 8);
size_of_test!(test_size_of_option_rule_node, Option<StrongRuleNode>, 8); size_of_test!(test_size_of_option_rule_node, Option<StrongRuleNode>, 8);