Skip to content

Commit

Permalink
Update Acid3 for :first-child spec change
Browse files Browse the repository at this point in the history
  • Loading branch information
gsnedders committed Nov 24, 2017
1 parent ce51140 commit e6f63a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acid/acid3/test.html
Expand Up @@ -1257,7 +1257,7 @@
var p1 = doc.createElement("p");
doc.body.appendChild(doc.createTextNode(" TEST "));
doc.body.appendChild(p1);
expect(doc.documentElement, notFirst, "root element, with no parent node, claims to be a :first-child");
//expect(doc.documentElement, notFirst, "root element, with no parent node, claims to be a :first-child");
expect(doc.documentElement.firstChild, first, "first child of root node didn't match :first-child");
expect(doc.documentElement.firstChild.firstChild, first, "failure 3");
expect(doc.body, notFirst, "failure 4");
Expand Down

0 comments on commit e6f63a6

Please sign in to comment.