RESOLVED FIXED Bug 33828
Crash in Page::backForwardList when using History object from a detached window
https://bugs.webkit.org/show_bug.cgi?id=33828
Summary Crash in Page::backForwardList when using History object from a detached window
Alexey Proskuryakov
Reported 2010-01-18 23:29:03 PST
Created attachment 46890 [details] test case (will crash) Thread 0 Crashed: Dispatch queue: com.apple.main-thread 0 com.apple.WebCore 0x0000000100e43564 WebCore::Page::backForwardList() + 4 1 com.apple.WebCore 0x0000000100a64cb8 WebCore::HistoryController::replaceState(WTF::PassRefPtr<WebCore::SerializedScriptValue>, WebCore::String const&, WebCore::String const&) + 56 2 com.apple.WebCore 0x0000000100a64978 WebCore::History::stateObjectAdded(WTF::PassRefPtr<WebCore::SerializedScriptValue>, WebCore::String const&, WebCore::String const&, WebCore::History::StateObjectType, int&) + 440 3 com.apple.WebCore 0x0000000100c0f32a WebCore::JSHistory::replaceState(JSC::ExecState*, JSC::ArgList const&) + 650 4 com.apple.WebCore 0x0000000100c0e489 WebCore::jsHistoryPrototypeFunctionReplaceState(JSC::ExecState*, JSC::JSObject*, JSC::JSValue, JSC::ArgList const&) + 137
Attachments
test case (will crash) (245 bytes, text/html)
2010-01-18 23:29 PST, Alexey Proskuryakov
no flags
Patch (3.29 KB, patch)
2010-01-19 10:06 PST, Brady Eidson
ap: review+
Brady Eidson
Comment 1 2010-01-19 09:44:39 PST
The real question here is... what's the expected behavior? Should you be able to pushState() or replaceState() on a detached frame? Clearly we could just do an early return, but what if someone does the state-API on the detached frame then reattaches it?
Brady Eidson
Comment 2 2010-01-19 09:48:51 PST
The question of "does a detached frame even have a back/forward list to manipulate?" already has an answer elsewhere in our code - calling history.length() on a detached frame will return 0 (not even 1!!) I'm pretty sure an early return is the right way to go here. If we later uncover an incompatibility with the spec or the real web, then we can do what's needed to fix that.
Brady Eidson
Comment 3 2010-01-19 09:49:25 PST
Brady Eidson
Comment 4 2010-01-19 10:06:00 PST
Alexey Proskuryakov
Comment 5 2010-01-19 10:10:12 PST
Comment on attachment 46922 [details] Patch "The spec really cover expected behavior"? The test should not just have empty output - a link to the bug and a phrase like "Passed in didn't crash" would suffice. Please add try/catch around each subtest - we want to test pushState even if replaceState raises an exception. r=me if you fix the above nitpicks.
Brady Eidson
Comment 6 2010-01-19 10:14:49 PST
Thanks!
Brady Eidson
Comment 7 2010-01-19 10:19:14 PST
Note You need to log in before you can comment on or make changes to this bug.