Implemention of HTMLMainElement

This commit is contained in:
Marcos Caceres 2013-10-18 22:03:58 +01:00
parent 284ad5ee8e
commit faf53fd05c
9 changed files with 40 additions and 0 deletions

View file

@ -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 HTMLMainElement {
htmlelement: HTMLElement
}