diff options
author | Josh Matthews <josh@joshmatthews.net> | 2013-08-28 19:51:07 -0400 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2013-08-28 19:51:07 -0400 |
commit | 1eb5eeb630f46b4474678d3634c70db8c99adf77 (patch) | |
tree | 740d9d8ad2c75a0a9511a22094cd3b8628e1a010 /src/components/script/dom/htmlunknownelement.rs | |
parent | 65c993e7e6c7e744a08fcedd63a64d0b43505c1d (diff) | |
download | servo-1eb5eeb630f46b4474678d3634c70db8c99adf77.tar.gz servo-1eb5eeb630f46b4474678d3634c70db8c99adf77.zip |
Generate bindings for HTMLUnknownElement.
Diffstat (limited to 'src/components/script/dom/htmlunknownelement.rs')
-rw-r--r-- | src/components/script/dom/htmlunknownelement.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/components/script/dom/htmlunknownelement.rs b/src/components/script/dom/htmlunknownelement.rs new file mode 100644 index 00000000000..a0ef96a08ee --- /dev/null +++ b/src/components/script/dom/htmlunknownelement.rs @@ -0,0 +1,9 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +use dom::htmlelement::HTMLElement; + +pub struct HTMLUnknownElement { + parent: HTMLElement +} |