Skip to content

Commit

Permalink
Updated WebKit to 669858f9bbd4913fd16c642090375c81acbfdb04
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Hausmann committed Jul 23, 2010
1 parent 28c23cd commit a7bf97f
Show file tree
Hide file tree
Showing 7 changed files with 55 additions and 2 deletions.
1 change: 1 addition & 0 deletions mkspecs/modules/qt_webkit_version.pri
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ QT_WEBKIT_VERSION = 4.7.0
QT_WEBKIT_MAJOR_VERSION = 4
QT_WEBKIT_MINOR_VERSION = 7
QT_WEBKIT_PATCH_VERSION = 0
QT_CONFIG *= webkit
2 changes: 1 addition & 1 deletion src/3rdparty/webkit/.tag
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ad96ca2f9b57271da4ea7432022ac686ee0981c2
669858f9bbd4913fd16c642090375c81acbfdb04
2 changes: 1 addition & 1 deletion src/3rdparty/webkit/VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ This is a snapshot of the Qt port of WebKit from

and has the sha1 checksum

ad96ca2f9b57271da4ea7432022ac686ee0981c2
669858f9bbd4913fd16c642090375c81acbfdb04
16 changes: 16 additions & 0 deletions src/3rdparty/webkit/WebCore/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
2010-07-21 Kristian Amlie <kristian.amlie@nokia.com>

Reviewed by Kenneth Rohde Christiansen.

Added automatic sqlite extraction for Symbian to QtWebKit.

Also added sqlite detection in case sqlite is not present in the SDK.
This is possible if WebKit is compiled standalone.

The inclusion part is a consequence of commit c578c6c1d6d in the Qt
repository. It will not work on Qt versions < 4.7.1, but that is ok,
since the only build system it will affect is marked as experimental
in the whole 4.7 series.

* WebCore.pro:

2010-05-14 Abhishek Arya <inferno@chromium.org>

Reviewed by David Hyatt.
Expand Down
32 changes: 32 additions & 0 deletions src/3rdparty/webkit/WebKit/qt/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,35 @@
2010-07-23 David Boddie <dboddie@trolltech.com>

Reviewed by Simon Hausmann.

Doc: Fixed incorrect QML property type.

* declarative/qdeclarativewebview.cpp:

2010-07-23 Simon Hausmann <simon.hausmann@nokia.com>

[Qt] Build fix for Qt apps

Add webkit to QT_CONFIG. qconfig.pri will read qt_webkit_version.pri and
that's how it will pick up webkit in QT_CONFIG.

* qt_webkit_version.pri:

2010-07-09 Kent Hansen <kent.hansen@nokia.com>

Reviewed by Kenneth Rohde Christiansen.

[Qt] Skip test that never terminates on maemo5

Due to https://bugs.webkit.org/show_bug.cgi?id=38538
the tst_QWebPage::infiniteLoopJS() autotest never terminates.
Skip the test so that the test case may run to completion.

Patch by Dominik Holland <dominik.holland@nokia.com>

* tests/qwebpage/tst_qwebpage.cpp:
(tst_QWebPage::infiniteLoopJS):

2010-07-09 Simon Hausmann <simon.hausmann@nokia.com>

Unreviewed trivial Symbian build fix.
Expand Down
1 change: 1 addition & 0 deletions src/3rdparty/webkit/WebKit/qt/qt_webkit_version.pri
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ QT_WEBKIT_VERSION = 4.7.0
QT_WEBKIT_MAJOR_VERSION = 4
QT_WEBKIT_MINOR_VERSION = 7
QT_WEBKIT_PATCH_VERSION = 0
QT_CONFIG *= webkit
3 changes: 3 additions & 0 deletions src/3rdparty/webkit/WebKit/qt/tests/qwebpage/tst_qwebpage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,9 @@ public slots:

void tst_QWebPage::infiniteLoopJS()
{
#ifdef Q_WS_MAEMO_5
QSKIP("Test never terminates on Maemo 5 : https://bugs.webkit.org/show_bug.cgi?id=38538", SkipAll);
#endif
JSTestPage* newPage = new JSTestPage(m_view);
m_view->setPage(newPage);
m_view->setHtml(QString("<html><bodytest</body></html>"), QUrl());
Expand Down

0 comments on commit a7bf97f

Please sign in to comment.