Changeset 113724 in webkit


Ignore:
Timestamp:
Apr 10, 2012 9:22:23 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[EFL][DRT] Catch the "title,changed" signal
https://bugs.webkit.org/show_bug.cgi?id=82174

Patch by Christophe Dumez <Christophe Dumez> on 2012-04-10
Reviewed by Gustavo Noronha Silva.

Tools:

EFL's DumpRenderTree now catches the "title,changed" signal, and
prints out the needed information.

  • DumpRenderTree/efl/DumpRenderTreeChrome.cpp:

(DumpRenderTreeChrome::onTitleChanged):

LayoutTests:

Unskip tests which requires EFL's DumpRenderTree to catch the
"title,changed" signal and print out information, now that it
is implemented.

  • platform/efl/Skipped:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r113723 r113724  
     12012-04-10  Christophe Dumez  <christophe.dumez@intel.com>
     2
     3        [EFL][DRT] Catch the "title,changed" signal
     4        https://bugs.webkit.org/show_bug.cgi?id=82174
     5
     6        Reviewed by Gustavo Noronha Silva.
     7
     8        Unskip tests which requires EFL's DumpRenderTree to catch the
     9        "title,changed" signal and print out information, now that it
     10        is implemented.
     11
     12        * platform/efl/Skipped:
     13
    1142012-04-10  Yi Shen  <yi.4.shen@nokia.com>
    215
  • trunk/LayoutTests/platform/efl/Skipped

    r113722 r113724  
    780780fast/forms/mailto/post-text-plain-with-accept-charset.html
    781781fast/forms/mailto/post-text-plain.html
    782 
    783 # EFL's DRT (DumpRenderTreeChrome) needs to catch the "title,changed" signal
    784 fast/dom/title-text-property.html
    785 fast/dom/title-text-property-2.html
    786782
    787783# Need to call Settings::setValidationMessageTimerMagnification(-1) in DRT.
  • trunk/Tools/ChangeLog

    r113722 r113724  
     12012-04-10  Christophe Dumez  <christophe.dumez@intel.com>
     2
     3        [EFL][DRT] Catch the "title,changed" signal
     4        https://bugs.webkit.org/show_bug.cgi?id=82174
     5
     6        Reviewed by Gustavo Noronha Silva.
     7
     8        EFL's DumpRenderTree now catches the "title,changed" signal, and
     9        prints out the needed information.
     10
     11        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
     12        (DumpRenderTreeChrome::onTitleChanged):
     13
    1142012-04-10  Christophe Dumez  <christophe.dumez@intel.com>
    215
  • trunk/Tools/DumpRenderTree/efl/DumpRenderTreeChrome.cpp

    r113722 r113724  
    271271}
    272272
    273 void DumpRenderTreeChrome::onTitleChanged(void*, Evas_Object*, void*)
    274 {
    275     notImplemented();
     273void DumpRenderTreeChrome::onTitleChanged(void*, Evas_Object*, void* eventInfo)
     274{
     275    if (!gLayoutTestController->dumpTitleChanges())
     276        return;
     277
     278    const char* titleText = static_cast<const char*>(eventInfo);
     279    printf("TITLE CHANGED: %s\n", titleText);
    276280}
    277281
Note: See TracChangeset for help on using the changeset viewer.