diff options
author | David Raifaizen <d-raif@hotmail.com> | 2016-01-06 19:41:52 -0500 |
---|---|---|
committer | David Raifaizen <d-raif@hotmail.com> | 2016-01-06 19:41:52 -0500 |
commit | 76f689cd0626540d8db5d12b4d827d89748a9ab7 (patch) | |
tree | 456bc2ddb415071ba7fe37e53005200703475ff9 /tests/unit/script/lib.rs | |
parent | 238a8786de66344d2dd6855dca25a4d4be6fa949 (diff) | |
download | servo-76f689cd0626540d8db5d12b4d827d89748a9ab7.tar.gz servo-76f689cd0626540d8db5d12b4d827d89748a9ab7.zip |
Changed blob to use DataSlice with Arc in order to limit wasteful copying of byte vector
Diffstat (limited to 'tests/unit/script/lib.rs')
-rw-r--r-- | tests/unit/script/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/unit/script/lib.rs b/tests/unit/script/lib.rs index 81c54e201f1..7996dae56cb 100644 --- a/tests/unit/script/lib.rs +++ b/tests/unit/script/lib.rs @@ -8,3 +8,6 @@ extern crate util; #[cfg(all(test, target_pointer_width = "64"))] mod size_of; #[cfg(test)] mod textinput; +#[cfg(test)] mod dom { + mod blob; +} |