[Webkit-unassigned] [Bug 79299] New: Type tags in NodeFlags could be compressed

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Feb 22 16:30:38 PST 2012


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

           Summary: Type tags in NodeFlags could be compressed
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: HTML DOM
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: morrita at google.com
                CC: kling at webkit.org


We have type tags like:

        IsTextFlag = 1,
        IsCommentFlag = 1 << 1,
        IsContainerFlag = 1 << 2,
        IsElementFlag = 1 << 3,
        IsStyledElementFlag = 1 << 4,
        IsHTMLFlag = 1 << 5,
        IsSVGFlag = 1 << 6,
        InDocumentFlag = 1 << 9,
        IsShadowRootOrSVGShadowRootFlag = 1 << 16,

And these are apparently redundant. We could compress these.

-- 
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