[Webkit-unassigned] [Bug 115969] Value of FrameLoadTypeSame is suspicious

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun May 12 21:35:39 PDT 2013


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


Alexey Proskuryakov <ap at webkit.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ap at webkit.org




--- Comment #2 from Alexey Proskuryakov <ap at webkit.org>  2013-05-12 21:34:04 PST ---
Per this definition, FrameLoadTypeReplace is FrameLoadTypeReload + 4.

In other words,

    enum FrameLoadType {
        FrameLoadTypeStandard, // 0
        FrameLoadTypeBack, // 1
        FrameLoadTypeForward, // 2
        FrameLoadTypeIndexedBackForward, // 3
        FrameLoadTypeReload, // 4
        // Skipped value: 'FrameLoadTypeReloadAllowingStaleData', which used to be 5
        FrameLoadTypeSame = FrameLoadTypeReload + 2, // 6
        FrameLoadTypeRedirectWithLockedBackForwardList, // 7
        FrameLoadTypeReplace, // 8
        FrameLoadTypeReloadFromOrigin, //9
    };

Can you clarify what seems wrong? AFAICT, it's exactly what the comment says - we removed FrameLoadTypeReloadAllowingStaleData without changing values of other values.

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