[Webkit-unassigned] [Bug 44495] New: [EFL]Url of HistoryItem was broken for special character like korean

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Aug 24 00:12:03 PDT 2010


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

           Summary: [EFL]Url of HistoryItem was broken for special
                    character like korean
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: PC
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: WebKit EFL
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: ryuan.choi at samsung.com


visiting any site after entered below site, url of history item was broken.

http://ko.wikipedia.org/wiki/%EC%9C%84%ED%82%A4%EB%B0%B1%EA%B3%BC:%EB%8C%80%EB%AC%B8 (http://ko.wikipedia.org/wiki/위키백과:대문)

It's because of simple implementation of ewk_fram_view_state_save.
but I think that we can remove setTitle and setURLString in ewk_frame_view_state_save.

I checked like below. and I found that before and after was same.

void ewk_frame_view_state_save(Evas_Object *o, WebCore::HistoryItem* item)
{
    const char *title = ewk_frame_title_get(o);
    const char *uri = ewk_frame_uri_get(o);

    printf("%s\n", item->title().utf8().data());
    printf("=>%s\n", title);
    printf("%s\n", item->urlString().utf8().data());
    printf("=>%s\n", uri);
    item->setTitle(WTF::String::fromUTF8(title));
    item->setURLString(WTF::String::fromUTF8(uri));

    evas_object_smart_callback_call(o, "state,save", 0);
}

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