Auto merge of #11394 - mbrubeck:stacking-context-id, r=pcwalton

Reduce the size of StackingContextId

r? @pcwalton

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/11394)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-05-26 07:25:58 -05:00
commit 2acb257a82
2 changed files with 8 additions and 7 deletions

View file

@ -8,7 +8,7 @@ use std::mem::size_of;
#[test]
fn test_size_of_fragment() {
let expected = 168;
let expected = 160;
let actual = size_of::<Fragment>();
if actual < expected {