aboutsummaryrefslogtreecommitdiffstats
path: root/ports/geckolib/tests
diff options
context:
space:
mode:
authorBobby Holley <bobbyholley@gmail.com>2018-04-20 16:28:33 -0700
committerEmilio Cobos Álvarez <emilio@crisal.io>2018-04-29 03:28:32 +0200
commit48558e313a018aded1c3985857fefa7ffb11eb76 (patch)
tree3fc3eb3e8df1ddb1fa946e0bdb095e6186fdb7fc /ports/geckolib/tests
parentcbbefebdba37885315cbb5c5676545369607d5c2 (diff)
downloadservo-48558e313a018aded1c3985857fefa7ffb11eb76.tar.gz
servo-48558e313a018aded1c3985857fefa7ffb11eb76.zip
style: Update StyleSource to use ArcUnion.
Bug: 1455784 Reviewed-by: Manishearth MozReview-Commit-ID: AT4sud9goGV
Diffstat (limited to 'ports/geckolib/tests')
-rw-r--r--ports/geckolib/tests/size_of.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ports/geckolib/tests/size_of.rs b/ports/geckolib/tests/size_of.rs
index 9691c4cd385..8905650dc2a 100644
--- a/ports/geckolib/tests/size_of.rs
+++ b/ports/geckolib/tests/size_of.rs
@@ -35,8 +35,8 @@ size_of_test!(test_size_of_element_data, ElementData, 24);
size_of_test!(test_size_of_property_declaration, style::properties::PropertyDeclaration, 32);
-size_of_test!(test_size_of_application_declaration_block, ApplicableDeclarationBlock, 24);
-size_of_test!(test_size_of_rule_node, RuleNode, 80);
+size_of_test!(test_size_of_application_declaration_block, ApplicableDeclarationBlock, 16);
+size_of_test!(test_size_of_rule_node, RuleNode, 72);
// This is huge, but we allocate it on the stack and then never move it,
// we only pass `&mut SourcePropertyDeclaration` references around.