[Webkit-unassigned] [Bug 47766] New: Enrich /fast/dom/nodesFromRect-basic.html test

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sat Oct 16 05:49:33 PDT 2010


https://bugs.webkit.org/show_bug.cgi?id=47766

           Summary: Enrich /fast/dom/nodesFromRect-basic.html test
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: PC
        OS/Version: Mac OS X 10.5
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: Tools / Tests
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: tonikitoo at webkit.org


In the test we are doing stuff like:

check(53, 71, 0, 0, 0, 0, [e.body]);
check(53, 71, 0, 10, 0, 10, [e.p3, e.body]);
check(53, 71, 10, 0, 10, 0, [e.d1, e.h1, e.body]);
check(53, 71, 10, 10, 10, 10, [e.p3, e.d1, e.h1, e.body]);

Now that we support specifying the four direction to expansion separately, we can enrich these tests. It would turn to:

check(53, 71, 0, 0, 0, 0, [e.body]);
check(53, 71, 10, 0, 0, 0, [result]);
check(53, 71, 0, 10, 0, 0, [result]);
check(53, 71, 0, 0, 10, 0, [result]);
check(53, 71, 0, 0, 0, 10, [result]);
check(53, 71, 10, 10, 0, 0, [result]);
check(53, 71, 10, 10, 0, 10, [result]);
etc...

Combinations are up to us.

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



More information about the webkit-unassigned mailing list