[Webkit-unassigned] [Bug 55455] [EFL] HTML saving feature

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Jun 16 00:14:46 PDT 2011


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





--- Comment #28 from Grzegorz <g.czajkowski at samsung.com>  2011-06-16 00:14:45 PST ---
(From update of attachment 94577)
View in context: https://bugs.webkit.org/attachment.cgi?id=94577&action=review

>> Source/WebKit/efl/ewk/ewk_frame.cpp:2014
>> + * It's part of html saving feature. Currently only HTML documents are supported.
> 
> html x HTML

Fixed.

>> Source/WebKit/efl/ewk/ewk_frame.cpp:2036
>> +        WRN("Only html documents are supported");
> 
> HTML

Fixed.

>> Source/WebKit/efl/ewk/ewk_frame.cpp:2041
>> +    WebCore::Node* de = sd->frame->document()->documentElement();
> 
> de -> documentElement

Fixed.

>> Source/WebKit/efl/ewk/ewk_frame.cpp:2043
>> +        for (WebCore::Node* e = de->firstChild(); e; e = e->parentElement()) {
> 
> e -> node or currentNode or whatever more descriptive.

Fixed (node).

> Source/WebKit/efl/ewk/ewk_frame.cpp:2077
> + * It's part of html saving feature. Currently only locations of images are supported.

Fixed html -> HTML.

> Source/WebKit/efl/ewk/ewk_frame.cpp:2094
> +    Eina_List* img_location_list = 0;

Changeg to listOfImagesLocation.

>> Source/WebKit/efl/ewk/ewk_frame.cpp:2099
>> +        WebCore::HTMLImageElement* img_element = static_cast<WebCore::HTMLImageElement*>(images->item(index));
> 
> camel case -> imageElement?

Fixed (imageElement).

>> Source/WebKit/efl/ewk/ewk_frame.cpp:2103
>> +        WTF::String img_location = img_element->src().prettyURL();
> 
> Ditto.

Fixed imageLocation.

>> Source/WebKit/efl/ewk/ewk_frame.cpp:2105
>> +        Eina_List* l = 0;
> 
> l -> listOfXXX

This is only temp iterator of list.
Changeg to listIterator.

>> Source/WebKit/efl/ewk/ewk_frame.cpp:2115
>> +        if (!duplicate)
> 
> duplicate -> imageLocationCopy?

Fixed (imageLocationCopy).

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