From e6f63a6e69ea785bbb554c4b9dd107ae2ea7e524 Mon Sep 17 00:00:00 2001 From: Geoffrey Sneddon Date: Fri, 24 Nov 2017 15:28:26 +0000 Subject: [PATCH] Update Acid3 for :first-child spec change See http://www.w3.org/mid/995a0241-135f-3bfb-b6da-80edcd6d307e@gmail.com --- acid/acid3/test.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acid/acid3/test.html b/acid/acid3/test.html index d2f08405af53a7..25af9aab5e8f52 100644 --- a/acid/acid3/test.html +++ b/acid/acid3/test.html @@ -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");