auto merge of #2192 : evilpie/servo/children, r=Ms2ger

Fixes #2186
This commit is contained in:
bors-servo 2014-04-22 16:52:17 -04:00
commit b35d830999
9 changed files with 67 additions and 5 deletions

View file

@ -32,6 +32,7 @@ DOMInterfaces = {
'anchors',
'applets',
'body',
'children',
'createComment',
'createDocumentFragment',
'createElement',
@ -58,6 +59,7 @@ DOMInterfaces = {
'Element': {
'needsAbstract': [
'attributes',
'children',
'className',
'getAttribute',
'getAttributeNS',
@ -137,7 +139,7 @@ def addHTMLElement(element, concrete=None, needsAbstract=[]):
}
addHTMLElement('Comment')
addHTMLElement('DocumentFragment', concrete='DocumentFragment')
addHTMLElement('DocumentFragment', concrete='DocumentFragment', needsAbstract=['children'])
addHTMLElement('DocumentType')
addHTMLElement('Text')
addHTMLElement('ProcessingInstruction')