[Webkit-unassigned] [Bug 16705] New: CSS3: head fails to match :not(:root)) (Acid3 bug)

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jan 1 22:19:17 PST 2008


http://bugs.webkit.org/show_bug.cgi?id=16705

           Summary: CSS3: head fails to match :not(:root)) (Acid3 bug)
           Product: WebKit
           Version: 525+ (Nightly build)
          Platform: Macintosh
        OS/Version: Mac OS X 10.4
            Status: NEW
          Keywords: NeedsReduction
          Severity: Normal
          Priority: P2
         Component: CSS
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: eric at webkit.org


CSS3: head fails to match :not(:root)) (Acid3 bug)

    function () {
      // test 40: :root, :not()
      selectorTest(function (doc, add, expect) {
        var match = add(":not(:root)");
        var p = doc.createElement('p');
        doc.body.appendChild(p);
        expect(doc.documentElement, 0, "root was :not(:root)");
        expect(doc.documentElement.childNodes[0], 0, "head was not
:not(:root)");
        expect(doc.documentElement.childNodes[1], 0, "body was not
:not(:root)");
        expect(doc.documentElement.childNodes[0].firstChild, 0, "title was not
:not(:root)");
        expect(p, 0, "p was not :not(:root)");
      });
      return 3;
    },

We'll need to make a nice stand-alone test case.


-- 
Configure bugmail: http://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list