[Webkit-unassigned] [Bug 76035] Add state attribute to history's dom interface.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Jan 11 14:33:52 PST 2012


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


Ian 'Hixie' Hickson <ian at hixie.ch> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ian at hixie.ch




--- Comment #11 from Ian 'Hixie' Hickson <ian at hixie.ch>  2012-01-11 14:33:51 PST ---
In the callback:

    ASSERT(history.state == stateObject);

No, because history.state is a new clone, and stateObject an old clone.

    ASSERT(event.state == stateObject);

No, same reason (same two clones as the previous assert).

See "traverse the history", step 10, and notice how that variable is used in steps 11 and 14.

The others look right.

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