Implement HTMLMetaElement.{name,content} (fixes #5663).

This commit is contained in:
Dhananjay Nakrani 2015-04-14 09:43:22 -07:00 committed by Ms2ger
parent 07aa6306f5
commit 731411660c
9 changed files with 17 additions and 281 deletions

View file

@ -5,9 +5,9 @@
// https://www.whatwg.org/html/#htmlmetaelement
interface HTMLMetaElement : HTMLElement {
// attribute DOMString name;
attribute DOMString name;
// attribute DOMString httpEquiv;
// attribute DOMString content;
attribute DOMString content;
// also has obsolete members
};