diff options
author | jsharda <jsharda@ncsu.edu> | 2015-10-30 16:50:15 -0400 |
---|---|---|
committer | jsharda <jsharda@ncsu.edu> | 2015-11-04 19:18:20 -0500 |
commit | dca4e3730b537746b74adbd6e46327868d533a13 (patch) | |
tree | da5b95c303fc9c8547cdbf837976a3b0d773c73c /components/script/dom/servoxmlparser.rs | |
parent | 50e0c36eeb8cd52b90dba24b5b3692abc25d8d4d (diff) | |
download | servo-dca4e3730b537746b74adbd6e46327868d533a13.tar.gz servo-dca4e3730b537746b74adbd6e46327868d533a13.zip |
M1503 - Integrate XML parse -Initial Steps
Diffstat (limited to 'components/script/dom/servoxmlparser.rs')
-rw-r--r-- | components/script/dom/servoxmlparser.rs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/components/script/dom/servoxmlparser.rs b/components/script/dom/servoxmlparser.rs new file mode 100644 index 00000000000..9de29cb392d --- /dev/null +++ b/components/script/dom/servoxmlparser.rs @@ -0,0 +1,16 @@ +/* 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::bindings::reflector::Reflector; + +#[must_root] +#[dom_struct] +pub struct ServoXMLParser { + reflector_: Reflector, +} + +impl ServoXMLParser { + pub fn new() { + } +} |