mirror of
https://github.com/servo/servo.git
synced 2025-07-23 07:13:52 +01:00
Implement ParentNode attributes
This commit is contained in:
parent
e57630711f
commit
33f2cd29fd
15 changed files with 48 additions and 233 deletions
|
@ -1378,6 +1378,21 @@ impl<'a> DocumentMethods for JSRef<'a, Document> {
|
||||||
HTMLCollection::children(window.r(), NodeCast::from_ref(self))
|
HTMLCollection::children(window.r(), NodeCast::from_ref(self))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// https://dom.spec.whatwg.org/#dom-parentnode-firstelementchild
|
||||||
|
fn GetFirstElementChild(self) -> Option<Temporary<Element>> {
|
||||||
|
NodeCast::from_ref(self).child_elements().next()
|
||||||
|
}
|
||||||
|
|
||||||
|
// https://dom.spec.whatwg.org/#dom-parentnode-lastelementchild
|
||||||
|
fn GetLastElementChild(self) -> Option<Temporary<Element>> {
|
||||||
|
NodeCast::from_ref(self).rev_children().filter_map(ElementCast::to_temporary).next()
|
||||||
|
}
|
||||||
|
|
||||||
|
// https://dom.spec.whatwg.org/#dom-parentnode-childelementcount
|
||||||
|
fn ChildElementCount(self) -> u32 {
|
||||||
|
NodeCast::from_ref(self).child_elements().count() as u32
|
||||||
|
}
|
||||||
|
|
||||||
// http://dom.spec.whatwg.org/#dom-parentnode-queryselector
|
// http://dom.spec.whatwg.org/#dom-parentnode-queryselector
|
||||||
fn QuerySelector(self, selectors: DOMString) -> Fallible<Option<Temporary<Element>>> {
|
fn QuerySelector(self, selectors: DOMString) -> Fallible<Option<Temporary<Element>>> {
|
||||||
let root: JSRef<Node> = NodeCast::from_ref(self);
|
let root: JSRef<Node> = NodeCast::from_ref(self);
|
||||||
|
|
|
@ -5,7 +5,8 @@
|
||||||
use dom::bindings::codegen::Bindings::DocumentFragmentBinding;
|
use dom::bindings::codegen::Bindings::DocumentFragmentBinding;
|
||||||
use dom::bindings::codegen::Bindings::DocumentFragmentBinding::DocumentFragmentMethods;
|
use dom::bindings::codegen::Bindings::DocumentFragmentBinding::DocumentFragmentMethods;
|
||||||
use dom::bindings::codegen::Bindings::WindowBinding::WindowMethods;
|
use dom::bindings::codegen::Bindings::WindowBinding::WindowMethods;
|
||||||
use dom::bindings::codegen::InheritTypes::{DocumentFragmentDerived, NodeCast};
|
use dom::bindings::codegen::InheritTypes::DocumentFragmentDerived;
|
||||||
|
use dom::bindings::codegen::InheritTypes::{ElementCast, NodeCast};
|
||||||
use dom::bindings::js::{JSRef, Temporary};
|
use dom::bindings::js::{JSRef, Temporary};
|
||||||
use dom::bindings::error::Fallible;
|
use dom::bindings::error::Fallible;
|
||||||
use dom::bindings::global::GlobalRef;
|
use dom::bindings::global::GlobalRef;
|
||||||
|
@ -56,6 +57,21 @@ impl<'a> DocumentFragmentMethods for JSRef<'a, DocumentFragment> {
|
||||||
HTMLCollection::children(window.r(), NodeCast::from_ref(self))
|
HTMLCollection::children(window.r(), NodeCast::from_ref(self))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// https://dom.spec.whatwg.org/#dom-parentnode-firstelementchild
|
||||||
|
fn GetFirstElementChild(self) -> Option<Temporary<Element>> {
|
||||||
|
NodeCast::from_ref(self).child_elements().next()
|
||||||
|
}
|
||||||
|
|
||||||
|
// https://dom.spec.whatwg.org/#dom-parentnode-lastelementchild
|
||||||
|
fn GetLastElementChild(self) -> Option<Temporary<Element>> {
|
||||||
|
NodeCast::from_ref(self).rev_children().filter_map(ElementCast::to_temporary).next()
|
||||||
|
}
|
||||||
|
|
||||||
|
// https://dom.spec.whatwg.org/#dom-parentnode-childelementcount
|
||||||
|
fn ChildElementCount(self) -> u32 {
|
||||||
|
NodeCast::from_ref(self).child_elements().count() as u32
|
||||||
|
}
|
||||||
|
|
||||||
// http://dom.spec.whatwg.org/#dom-parentnode-queryselector
|
// http://dom.spec.whatwg.org/#dom-parentnode-queryselector
|
||||||
fn QuerySelector(self, selectors: DOMString) -> Fallible<Option<Temporary<Element>>> {
|
fn QuerySelector(self, selectors: DOMString) -> Fallible<Option<Temporary<Element>>> {
|
||||||
let root: JSRef<Node> = NodeCast::from_ref(self);
|
let root: JSRef<Node> = NodeCast::from_ref(self);
|
||||||
|
|
|
@ -1223,6 +1223,21 @@ impl<'a> ElementMethods for JSRef<'a, Element> {
|
||||||
HTMLCollection::children(window.r(), NodeCast::from_ref(self))
|
HTMLCollection::children(window.r(), NodeCast::from_ref(self))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// https://dom.spec.whatwg.org/#dom-parentnode-firstelementchild
|
||||||
|
fn GetFirstElementChild(self) -> Option<Temporary<Element>> {
|
||||||
|
NodeCast::from_ref(self).child_elements().next()
|
||||||
|
}
|
||||||
|
|
||||||
|
// https://dom.spec.whatwg.org/#dom-parentnode-lastelementchild
|
||||||
|
fn GetLastElementChild(self) -> Option<Temporary<Element>> {
|
||||||
|
NodeCast::from_ref(self).rev_children().filter_map(ElementCast::to_temporary).next()
|
||||||
|
}
|
||||||
|
|
||||||
|
// https://dom.spec.whatwg.org/#dom-parentnode-childelementcount
|
||||||
|
fn ChildElementCount(self) -> u32 {
|
||||||
|
NodeCast::from_ref(self).child_elements().count() as u32
|
||||||
|
}
|
||||||
|
|
||||||
// http://dom.spec.whatwg.org/#dom-parentnode-queryselector
|
// http://dom.spec.whatwg.org/#dom-parentnode-queryselector
|
||||||
fn QuerySelector(self, selectors: DOMString) -> Fallible<Option<Temporary<Element>>> {
|
fn QuerySelector(self, selectors: DOMString) -> Fallible<Option<Temporary<Element>>> {
|
||||||
let root: JSRef<Node> = NodeCast::from_ref(self);
|
let root: JSRef<Node> = NodeCast::from_ref(self);
|
||||||
|
|
|
@ -11,14 +11,13 @@
|
||||||
interface ParentNode {
|
interface ParentNode {
|
||||||
[Constant]
|
[Constant]
|
||||||
readonly attribute HTMLCollection children;
|
readonly attribute HTMLCollection children;
|
||||||
/*
|
|
||||||
[Pure]
|
[Pure]
|
||||||
readonly attribute Element? firstElementChild;
|
readonly attribute Element? firstElementChild;
|
||||||
[Pure]
|
[Pure]
|
||||||
readonly attribute Element? lastElementChild;
|
readonly attribute Element? lastElementChild;
|
||||||
[Pure]
|
[Pure]
|
||||||
readonly attribute unsigned long childElementCount;
|
readonly attribute unsigned long childElementCount;
|
||||||
*/
|
|
||||||
// Not implemented yet
|
// Not implemented yet
|
||||||
// void prepend((Node or DOMString)... nodes);
|
// void prepend((Node or DOMString)... nodes);
|
||||||
// void append((Node or DOMString)... nodes);
|
// void append((Node or DOMString)... nodes);
|
||||||
|
|
|
@ -99,15 +99,6 @@
|
||||||
[Document interface: operation createTreeWalker(Node,unsigned long,NodeFilter)]
|
[Document interface: operation createTreeWalker(Node,unsigned long,NodeFilter)]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[Document interface: attribute firstElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Document interface: attribute lastElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Document interface: attribute childElementCount]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Document interface: operation prepend([object Object\],[object Object\])]
|
[Document interface: operation prepend([object Object\],[object Object\])]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -171,15 +162,6 @@
|
||||||
[DocumentFragment interface: operation getElementById(DOMString)]
|
[DocumentFragment interface: operation getElementById(DOMString)]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[DocumentFragment interface: attribute firstElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[DocumentFragment interface: attribute lastElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[DocumentFragment interface: attribute childElementCount]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[DocumentFragment interface: operation prepend([object Object\],[object Object\])]
|
[DocumentFragment interface: operation prepend([object Object\],[object Object\])]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -198,15 +180,6 @@
|
||||||
[DocumentFragment interface: calling getElementById(DOMString) on document.createDocumentFragment() with too few arguments must throw TypeError]
|
[DocumentFragment interface: calling getElementById(DOMString) on document.createDocumentFragment() with too few arguments must throw TypeError]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[DocumentFragment interface: document.createDocumentFragment() must inherit property "firstElementChild" with the proper type (2)]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[DocumentFragment interface: document.createDocumentFragment() must inherit property "lastElementChild" with the proper type (3)]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[DocumentFragment interface: document.createDocumentFragment() must inherit property "childElementCount" with the proper type (4)]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[DocumentFragment interface: document.createDocumentFragment() must inherit property "prepend" with the proper type (5)]
|
[DocumentFragment interface: document.createDocumentFragment() must inherit property "prepend" with the proper type (5)]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -267,15 +240,6 @@
|
||||||
[Element interface: operation removeAttributeNode(Attr)]
|
[Element interface: operation removeAttributeNode(Attr)]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[Element interface: attribute firstElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Element interface: attribute lastElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Element interface: attribute childElementCount]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Element interface: operation prepend([object Object\],[object Object\])]
|
[Element interface: operation prepend([object Object\],[object Object\])]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -333,15 +297,6 @@
|
||||||
[Element interface: calling removeAttributeNode(Attr) on element with too few arguments must throw TypeError]
|
[Element interface: calling removeAttributeNode(Attr) on element with too few arguments must throw TypeError]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[Element interface: element must inherit property "firstElementChild" with the proper type (28)]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Element interface: element must inherit property "lastElementChild" with the proper type (29)]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Element interface: element must inherit property "childElementCount" with the proper type (30)]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Element interface: element must inherit property "prepend" with the proper type (31)]
|
[Element interface: element must inherit property "prepend" with the proper type (31)]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -1026,15 +981,6 @@
|
||||||
[Document interface: xmlDoc must inherit property "createNodeIterator" with the proper type (25)]
|
[Document interface: xmlDoc must inherit property "createNodeIterator" with the proper type (25)]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[Document interface: xmlDoc must inherit property "firstElementChild" with the proper type (29)]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Document interface: xmlDoc must inherit property "lastElementChild" with the proper type (30)]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Document interface: xmlDoc must inherit property "childElementCount" with the proper type (31)]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Document interface: xmlDoc must inherit property "prepend" with the proper type (32)]
|
[Document interface: xmlDoc must inherit property "prepend" with the proper type (32)]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
[Element-childElement-null.html]
|
|
||||||
type: testharness
|
|
||||||
[Null test]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
[Element-childElementCount-dynamic-add.html]
|
|
||||||
type: testharness
|
|
||||||
[Dynamic Adding of Elements]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
[Element-childElementCount-dynamic-remove.html]
|
|
||||||
type: testharness
|
|
||||||
[Dynamic Removal of Elements]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
[Element-childElementCount-nochild.html]
|
|
||||||
type: testharness
|
|
||||||
[childElementCount without Child Element Nodes]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
[Element-childElementCount.html]
|
|
||||||
type: testharness
|
|
||||||
[childElementCount]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
[Element-firstElementChild-namespace.html]
|
|
||||||
type: testharness
|
|
||||||
[firstElementChild with namespaces]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
[Element-firstElementChild.html]
|
|
||||||
type: testharness
|
|
||||||
[firstElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
[Element-lastElementChild.html]
|
|
||||||
type: testharness
|
|
||||||
[lastElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
|
@ -3,120 +3,48 @@
|
||||||
[testDiv.previousElementSibling]
|
[testDiv.previousElementSibling]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[testDiv.childElementCount]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[testDiv.firstElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[testDiv.lastElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[detachedDiv.previousElementSibling]
|
[detachedDiv.previousElementSibling]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[detachedDiv.nextElementSibling]
|
[detachedDiv.nextElementSibling]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[detachedDiv.childElementCount]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[detachedDiv.firstElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[detachedDiv.lastElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[detachedPara1.previousElementSibling]
|
[detachedPara1.previousElementSibling]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[detachedPara1.nextElementSibling]
|
[detachedPara1.nextElementSibling]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[detachedPara1.childElementCount]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[detachedPara1.lastElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[detachedPara1.firstElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[detachedPara2.previousElementSibling]
|
[detachedPara2.previousElementSibling]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[detachedPara2.nextElementSibling]
|
[detachedPara2.nextElementSibling]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[detachedPara2.childElementCount]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[detachedPara2.lastElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[detachedPara2.firstElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[foreignPara1.previousElementSibling]
|
[foreignPara1.previousElementSibling]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[foreignPara1.nextElementSibling]
|
[foreignPara1.nextElementSibling]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[foreignPara1.childElementCount]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[foreignPara1.lastElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[foreignPara1.firstElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[foreignPara2.previousElementSibling]
|
[foreignPara2.previousElementSibling]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[foreignPara2.nextElementSibling]
|
[foreignPara2.nextElementSibling]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[foreignPara2.childElementCount]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[foreignPara2.lastElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[foreignPara2.firstElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[xmlElement.previousElementSibling]
|
[xmlElement.previousElementSibling]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[xmlElement.nextElementSibling]
|
[xmlElement.nextElementSibling]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[xmlElement.childElementCount]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[xmlElement.lastElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[xmlElement.firstElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[detachedXmlElement.previousElementSibling]
|
[detachedXmlElement.previousElementSibling]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[detachedXmlElement.nextElementSibling]
|
[detachedXmlElement.nextElementSibling]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[detachedXmlElement.childElementCount]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[detachedXmlElement.lastElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[detachedXmlElement.firstElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[detachedTextNode.wholeText]
|
[detachedTextNode.wholeText]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -138,72 +66,26 @@
|
||||||
[paras[0\].nextElementSibling]
|
[paras[0\].nextElementSibling]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[paras[0\].childElementCount]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[paras[0\].lastElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[paras[0\].firstElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[paras[1\].previousElementSibling]
|
[paras[1\].previousElementSibling]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[paras[1\].nextElementSibling]
|
[paras[1\].nextElementSibling]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[paras[1\].childElementCount]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[paras[1\].lastElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[paras[1\].firstElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[paras[2\].previousElementSibling]
|
[paras[2\].previousElementSibling]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[paras[2\].nextElementSibling]
|
[paras[2\].nextElementSibling]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[paras[2\].childElementCount]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[paras[2\].lastElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[paras[2\].firstElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[paras[3\].previousElementSibling]
|
[paras[3\].previousElementSibling]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[paras[3\].nextElementSibling]
|
[paras[3\].nextElementSibling]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[paras[3\].childElementCount]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[paras[3\].lastElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[paras[3\].firstElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[paras[4\].previousElementSibling]
|
[paras[4\].previousElementSibling]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[paras[4\].nextElementSibling]
|
[paras[4\].nextElementSibling]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[paras[4\].childElementCount]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[paras[4\].lastElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[paras[4\].firstElementChild]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
|
|
|
@ -1191,15 +1191,6 @@
|
||||||
[Document interface: document.implementation.createDocument(null, "", null) must inherit property "all" with the proper type (81)]
|
[Document interface: document.implementation.createDocument(null, "", null) must inherit property "all" with the proper type (81)]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[Document interface: document.implementation.createDocument(null, "", null) must inherit property "firstElementChild" with the proper type (84)]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Document interface: document.implementation.createDocument(null, "", null) must inherit property "lastElementChild" with the proper type (85)]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Document interface: document.implementation.createDocument(null, "", null) must inherit property "childElementCount" with the proper type (86)]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Document interface: document.implementation.createDocument(null, "", null) must inherit property "prepend" with the proper type (87)]
|
[Document interface: document.implementation.createDocument(null, "", null) must inherit property "prepend" with the proper type (87)]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -2205,15 +2196,6 @@
|
||||||
[Element interface: calling removeAttributeNode(Attr) on document.createElement("noscript") with too few arguments must throw TypeError]
|
[Element interface: calling removeAttributeNode(Attr) on document.createElement("noscript") with too few arguments must throw TypeError]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[Element interface: document.createElement("noscript") must inherit property "firstElementChild" with the proper type (28)]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Element interface: document.createElement("noscript") must inherit property "lastElementChild" with the proper type (29)]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Element interface: document.createElement("noscript") must inherit property "childElementCount" with the proper type (30)]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Element interface: document.createElement("noscript") must inherit property "prepend" with the proper type (31)]
|
[Element interface: document.createElement("noscript") must inherit property "prepend" with the proper type (31)]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue