Changeset 53956 in webkit
- Timestamp:
- Jan 27, 2010, 3:32:34 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r53950 r53956 1 2010-01-27 Diego Gonzalez <diego.gonzalez@openbossa.org> 2 3 Reviewed by Kenneth Rohde Christiansen. 4 5 [Qt] DRT Provide worker thread ability to track counters 6 https://bugs.webkit.org/show_bug.cgi?id=34221 7 8 Implement workerThreadCount() in LayoutTestController of Qt DRT 9 10 Tests: 11 fast/workers/dedicated-worker-lifecycle.html 12 fast/workers/shared-worker-frame-lifecycle.html 13 fast/workers/shared-worker-lifecycle.html 14 fast/workers/worker-lifecycle.html 15 16 * platform/qt/Skipped: 17 1 18 2010-01-26 Darin Fisher <darin@chromium.org> 2 19 -
trunk/LayoutTests/platform/qt/Skipped
r53947 r53956 4822 4822 fast/dom/Geolocation 4823 4823 4824 # Missing DRT ability to track worker thread counts4825 fast/workers/dedicated-worker-lifecycle.html4826 fast/workers/shared-worker-frame-lifecycle.html4827 fast/workers/shared-worker-lifecycle.html4828 fast/workers/worker-lifecycle.html4829 4830 4824 # Missing DRT ability to set accept cookie policy 4831 4825 http/tests/xmlhttprequest/cross-origin-cookie-storage.html -
trunk/WebKit/qt/Api/qwebpage.cpp
r53802 r53956 82 82 #include "PageGroup.h" 83 83 #include "QWebPageClient.h" 84 #include "WorkerThread.h" 84 85 85 86 #include <QApplication> … … 128 129 db->setPluginDirectories(paths); 129 130 db->refresh(); 131 } 132 133 int QWEBKIT_EXPORT qt_drt_workerThreadCount() 134 { 135 #if ENABLE(WORKERS) 136 return WebCore::WorkerThread::workerThreadCount(); 137 #else 138 return 0; 139 #endif 130 140 } 131 141 -
trunk/WebKit/qt/ChangeLog
r53936 r53956 1 2010-01-27 Diego Gonzalez <diego.gonzalez@openbossa.org> 2 3 Reviewed by Kenneth Rohde Christiansen. 4 5 [Qt] DRT Provide worker thread ability to track counters 6 https://bugs.webkit.org/show_bug.cgi?id=34221 7 8 Implement workerThreadCount() in LayoutTestController of Qt DRT 9 10 Tests: 11 fast/workers/dedicated-worker-lifecycle.html 12 fast/workers/shared-worker-frame-lifecycle.html 13 fast/workers/shared-worker-lifecycle.html 14 fast/workers/worker-lifecycle.html 15 16 * Api/qwebpage.cpp: 17 (qt_drt_workerThreadCount): 18 1 19 2010-01-27 Simon Hausmann <simon.hausmann@nokia.com> 2 20 -
trunk/WebKitTools/ChangeLog
r53952 r53956 1 2010-01-27 Diego Gonzalez <diego.gonzalez@openbossa.org> 2 3 Reviewed by Kenneth Rohde Christiansen. 4 5 [Qt] DRT Provide worker thread ability to track counters 6 https://bugs.webkit.org/show_bug.cgi?id=34221 7 8 Implement workerThreadCount() in LayoutTestController of Qt DRT 9 10 Tests: 11 fast/workers/dedicated-worker-lifecycle.html 12 fast/workers/shared-worker-frame-lifecycle.html 13 fast/workers/shared-worker-lifecycle.html 14 fast/workers/worker-lifecycle.html 15 16 * DumpRenderTree/qt/LayoutTestControllerQt.cpp: 17 (LayoutTestController::workerThreadCount): 18 * DumpRenderTree/qt/LayoutTestControllerQt.h: 19 1 20 2010-01-27 Kenneth Rohde Christiansen <kenneth@webkit.org> 2 21 -
trunk/WebKitTools/DumpRenderTree/qt/LayoutTestControllerQt.cpp
r53895 r53956 48 48 extern void qt_drt_whiteListAccessFromOrigin(const QString& sourceOrigin, const QString& destinationProtocol, const QString& destinationHost, bool allowDestinationSubdomains); 49 49 extern QString qt_drt_counterValueForElementById(QWebFrame* qFrame, const QString& id); 50 extern int qt_drt_workerThreadCount(); 50 51 51 52 LayoutTestController::LayoutTestController(WebCore::DumpRenderTree* drt) … … 433 434 qt_drt_setDomainRelaxationForbiddenForURLScheme(forbidden, scheme); 434 435 } 436 437 int LayoutTestController::workerThreadCount() 438 { 439 return qt_drt_workerThreadCount(); 440 } -
trunk/WebKitTools/DumpRenderTree/qt/LayoutTestControllerQt.h
r53895 r53956 53 53 Q_OBJECT 54 54 Q_PROPERTY(int webHistoryItemCount READ webHistoryItemCount) 55 Q_PROPERTY(int workerThreadCount READ workerThreadCount) 55 56 public: 56 57 LayoutTestController(WebCore::DumpRenderTree* drt); … … 139 140 void setUserStyleSheetEnabled(bool enabled); 140 141 void setDomainRelaxationForbiddenForURLScheme(bool forbidden, const QString& scheme); 142 int workerThreadCount(); 141 143 142 144 private slots:
Note:
See TracChangeset
for help on using the changeset viewer.