Changeset 59660 in webkit


Ignore:
Timestamp:
May 18, 2010 1:42:28 AM (14 years ago)
Author:
Simon Hausmann
Message:

Fix QWebHistory serialization.

Patch by Jedrzej Nowacki <jedrzej.nowacki@nokia.com> on 2010-05-18
Reviewed by Simon Hausmann.

Regression was caused by bug 33224. The streaming function
should generate a documentSequenceNumber for all loaded values.

[Qt] tst_QWebHistory::serialize_2() fails
https://bugs.webkit.org/show_bug.cgi?id=37322

  • Api/qwebhistory.cpp:

(operator>>):

Location:
trunk/WebKit/qt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/qt/Api/qwebhistory.cpp

    r50269 r59660  
    541541            }
    542542            d->lst->removeItem(nullItem);
     543            // Update the HistoryController.
     544            history.d->lst->page()->mainFrame()->loader()->history()->setCurrentItem(history.d->lst->entries()[currentIndex].get());
    543545            history.goToItem(history.itemAt(currentIndex));
    544546        }
  • trunk/WebKit/qt/ChangeLog

    r59614 r59660  
     12010-05-18  Jedrzej Nowacki  <jedrzej.nowacki@nokia.com>
     2
     3        Reviewed by Simon Hausmann.
     4
     5        Fix QWebHistory serialization.
     6
     7        Regression was caused by bug 33224. The streaming function
     8        should generate a documentSequenceNumber for all loaded values.
     9
     10        [Qt] tst_QWebHistory::serialize_2() fails
     11        https://bugs.webkit.org/show_bug.cgi?id=37322
     12
     13        * Api/qwebhistory.cpp:
     14        (operator>>):
     15
    1162010-05-17  Tasuku Suzuki  <tasuku.suzuki@nokia.com>
    217
Note: See TracChangeset for help on using the changeset viewer.