Changeset 70164 in webkit


Ignore:
Timestamp:
Oct 20, 2010 12:49:27 PM (14 years ago)
Author:
robert@webkit.org
Message:

2010-10-20 Robert Hogan <robert@webkit.org>

Reviewed by Antonio Gomes.

[Qt] Fix layoutTestController.getJsObjectCount

Qt Bridge doesn't know size_t so pass result as unsigned int.

Unskip fast/dom/gc-10.html

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

  • platform/qt/Skipped:

2010-10-20 Robert Hogan <robert@webkit.org>

Reviewed by Antonio Gomes.

[Qt] Fix layoutTestController.getJsObjectCount

Qt Bridge doesn't know size_t so pass result as unsigned int.

Unskip fast/dom/gc-10.html

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

  • DumpRenderTree/qt/GCControllerQt.cpp: (GCController::getJSObjectCount):
  • DumpRenderTree/qt/GCControllerQt.h:
Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r70163 r70164  
     12010-10-20  Robert Hogan  <robert@webkit.org>
     2
     3        Reviewed by Antonio Gomes.
     4
     5        [Qt] Fix layoutTestController.getJsObjectCount
     6
     7        Qt Bridge doesn't know size_t so pass result as unsigned int.
     8
     9        Unskip fast/dom/gc-10.html
     10
     11        https://bugs.webkit.org/show_bug.cgi?id=47931
     12
     13        * platform/qt/Skipped:
     14
    1152010-10-20  Dan Bernstein  <mitz@apple.com>
    216
  • trunk/LayoutTests/platform/qt/Skipped

    r70147 r70164  
    24442444fast/css/acid2.html
    24452445fast/dom/focus-contenteditable.html
    2446 fast/dom/gc-10.html
    24472446fast/dom/isindex-002.html
    24482447# seems to trigger some bugs/missing features in QTextCodec
  • trunk/WebKitTools/ChangeLog

    r70152 r70164  
     12010-10-20  Robert Hogan  <robert@webkit.org>
     2
     3        Reviewed by Antonio Gomes.
     4
     5        [Qt] Fix layoutTestController.getJsObjectCount
     6
     7        Qt Bridge doesn't know size_t so pass result as unsigned int.
     8
     9        Unskip fast/dom/gc-10.html
     10
     11        https://bugs.webkit.org/show_bug.cgi?id=47931
     12
     13        * DumpRenderTree/qt/GCControllerQt.cpp:
     14        (GCController::getJSObjectCount):
     15        * DumpRenderTree/qt/GCControllerQt.h:
     16
    1172010-10-20  Sheriff Bot  <webkit.review.bot@gmail.com>
    218
  • trunk/WebKitTools/DumpRenderTree/qt/GCControllerQt.cpp

    r57433 r70164  
    4949}
    5050
    51 size_t GCController::getJSObjectCount() const
     51unsigned int GCController::getJSObjectCount() const
    5252{
    5353    return DumpRenderTreeSupportQt::javaScriptObjectsCount();
  • trunk/WebKitTools/DumpRenderTree/qt/GCControllerQt.h

    r57433 r70164  
    4444    void collect() const;
    4545    void collectOnAlternateThread(bool waitUntilDone) const;
    46     size_t getJSObjectCount() const;
     46    unsigned int getJSObjectCount() const;
    4747
    4848};
Note: See TracChangeset for help on using the changeset viewer.