diff options
author | bors-servo <release+servo@mozilla.com> | 2013-07-30 13:30:24 -0700 |
---|---|---|
committer | bors-servo <release+servo@mozilla.com> | 2013-07-30 13:30:24 -0700 |
commit | 0c105b5307bb69e8d43a1c6263b09c1b8e52c355 (patch) | |
tree | f69dc2cc92dfdbd5db54c0f7c579b3f65ec43ff2 /src/components/script/script.rc | |
parent | ad8fa8b3d75b58102f75848b90ab4721a7cfcfce (diff) | |
parent | 5546f2105bea0a3155a1090f3a9a8dfb65c7b47d (diff) | |
download | servo-0c105b5307bb69e8d43a1c6263b09c1b8e52c355.tar.gz servo-0c105b5307bb69e8d43a1c6263b09c1b8e52c355.zip |
auto merge of #641 : jdm/servo/htmldoc2, r=jdm
There are several mechanical changes here that make this look more intimidating than it is. DOMStrings are now passed by reference, and Event and Event_ have swapped names. Finally, there are the various places that need to use `document.with_base |doc| { document.foo }` instead of `document.foo`.
Diffstat (limited to 'src/components/script/script.rc')
-rw-r--r-- | src/components/script/script.rc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components/script/script.rc b/src/components/script/script.rc index b6225a12429..c3bae6c10fd 100644 --- a/src/components/script/script.rc +++ b/src/components/script/script.rc @@ -42,6 +42,7 @@ pub mod dom { pub mod EventTargetBinding; pub mod FormDataBinding; pub mod HTMLCollectionBinding; + pub mod HTMLDocumentBinding; pub mod MouseEventBinding; pub mod PrototypeList; pub mod RegisterBindings; @@ -60,6 +61,7 @@ pub mod dom { pub mod eventtarget; pub mod formdata; pub mod htmlcollection; + pub mod htmldocument; pub mod mouseevent; pub mod node; pub mod uievent; |