diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2014-12-01 14:02:17 +0530 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2014-12-09 11:26:58 +0530 |
commit | 16ffd543dd4817bd54d009669ae246cfef15f321 (patch) | |
tree | ebc2e939e75543414f32da835b300b63bf8ebcb9 /components/script/lib.rs | |
parent | 2741fd2e139b9cb8e9f14857877f567ecae3bced (diff) | |
download | servo-16ffd543dd4817bd54d009669ae246cfef15f321.tar.gz servo-16ffd543dd4817bd54d009669ae246cfef15f321.zip |
Add unit test to freeze sizes of DOM structs
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index de1ddbe5987..3f1cac6bf25 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -226,3 +226,6 @@ pub mod script_task; mod timers; pub mod textinput; mod devtools; + +#[cfg(test)] +mod tests; |