diff options
author | Cameron Zwarich <zwarich@mozilla.com> | 2014-05-13 00:37:52 -0700 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2014-12-18 12:54:02 -0500 |
commit | 1c5d58180d58325676a287119123d27655a1fdf2 (patch) | |
tree | 4b0bfe8d583f98b6de470adcf9af1596bdaaee49 /components/script/lib.rs | |
parent | 7df37847d3a0a02da6917c669fe62a5e4af7efcd (diff) | |
download | servo-1c5d58180d58325676a287119123d27655a1fdf2.tar.gz servo-1c5d58180d58325676a287119123d27655a1fdf2.zip |
Add the basic CSSStyleDeclaration CSSOM interface.
This just includes the .webidl file (with some of the functionality
commented out) and the stub implementations for the bindings.
This is another step towards #1721.
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index 26f773f6006..c818df7cb00 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -88,6 +88,7 @@ pub mod dom { pub mod browsercontext; pub mod canvasrenderingcontext2d; pub mod characterdata; + pub mod cssstyledeclaration; pub mod domrect; pub mod domrectlist; pub mod domstringmap; |