Changeset 84160 in webkit
- Timestamp:
- Apr 18, 2011, 10:41:00 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r84157 r84160 1 2011-04-18 Chang Shu <cshu@webkit.org> 2 3 Reviewed by Eric Seidel. 4 5 WebKitTestRunner needs layoutTestController.pathToLocalResource 6 https://bugs.webkit.org/show_bug.cgi?id=42541 7 8 Unskip passed tests. 9 10 * platform/mac-wk2/Skipped: 11 * platform/qt-wk2/Skipped: 12 1 13 2011-04-18 Hao Zheng <zhenghao@chromium.org> 2 14 -
trunk/LayoutTests/platform/mac-wk2/Skipped
r84070 r84160 1165 1165 storage/quota-tracking.html 1166 1166 1167 # WebKitTestRunner needs layoutTestController.pathToLocalResource1168 # <https://bugs.webkit.org/show_bug.cgi?id=42541>1169 fast/dom/frame-loading-via-document-write.html1170 fast/history/history-traversal-is-asynchronous.html1171 fast/loader/local-CSS-from-local.html1172 fast/loader/local-iFrame-source-from-local.html1173 fast/loader/local-image-from-local.html1174 fast/loader/local-JavaScript-from-local.html1175 http/tests/plugins/post-url-file.html1176 http/tests/security/frame-loading-via-document-write.html1177 http/tests/security/local-CSS-from-remote.html1178 http/tests/security/local-iFrame-from-remote.html1179 http/tests/security/local-image-from-remote.html1180 http/tests/security/local-JavaScript-from-remote.html1181 http/tests/security/local-video-poster-from-remote.html1182 http/tests/security/local-video-source-from-remote.html1183 http/tests/security/local-video-src-from-remote.html1184 1185 1167 # WebKitTestRunner needs layoutTestController.dumpResourceResponseMIMETypes 1186 1168 # <https://bugs.webkit.org/show_bug.cgi?id=42543> -
trunk/LayoutTests/platform/qt-wk2/Skipped
r84097 r84160 1616 1616 fast/frames/flattening/iframe-flattening-simple.html 1617 1617 1618 # WebKitTestRunner needs layoutTestController.pathToLocalResource1619 # <https://bugs.webkit.org/show_bug.cgi?id=42541>1620 fast/dom/frame-loading-via-document-write.html1621 fast/history/history-traversal-is-asynchronous.html1622 fast/loader/local-CSS-from-local.html1623 fast/loader/local-iFrame-source-from-local.html1624 fast/loader/local-image-from-local.html1625 fast/loader/local-JavaScript-from-local.html1626 http/tests/plugins/post-url-file.html1627 http/tests/security/frame-loading-via-document-write.html1628 http/tests/security/local-CSS-from-remote.html1629 http/tests/security/local-iFrame-from-remote.html1630 http/tests/security/local-image-from-remote.html1631 http/tests/security/local-JavaScript-from-remote.html1632 http/tests/security/local-video-poster-from-remote.html1633 http/tests/security/local-video-source-from-remote.html1634 http/tests/security/local-video-src-from-remote.html1635 1636 1618 # WebKitTestRunner needs layoutTestController.dumpResourceResponseMIMETypes 1637 1619 # <https://bugs.webkit.org/show_bug.cgi?id=42543> … … 2126 2108 fast/dom/beforeload/remove-frame-in-beforeload-listener.html 2127 2109 fast/dom/css-cached-import-rule.html 2110 fast/dom/frame-loading-via-document-write.html 2128 2111 fast/dom/Document/open-with-pending-load.html 2129 2112 fast/dom/Window/window-appendages-cleared.html … … 2167 2150 http/tests/navigation/fallback-anchor-reload.html 2168 2151 http/tests/navigation/history-back-across-form-submission-to-fragment.html 2152 http/tests/plugins/post-url-file.html 2169 2153 http/tests/security/originHeader/origin-header-for-https.html 2170 2154 http/tests/ssl/referer-301.html -
trunk/Tools/ChangeLog
r84158 r84160 1 2011-04-18 Chang Shu <cshu@webkit.org> 2 3 Reviewed by Eric Seidel. 4 5 WebKitTestRunner needs layoutTestController.pathToLocalResource 6 https://bugs.webkit.org/show_bug.cgi?id=42541 7 8 * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl: 9 * WebKitTestRunner/InjectedBundle/LayoutTestController.h: 10 * WebKitTestRunner/InjectedBundle/mac/LayoutTestControllerMac.mm: 11 (WTR::LayoutTestController::pathToLocalResource): 12 * WebKitTestRunner/InjectedBundle/qt/LayoutTestControllerQt.cpp: 13 (WTR::LayoutTestController::pathToLocalResource): 14 * WebKitTestRunner/InjectedBundle/win/LayoutTestControllerWin.cpp: 15 (WTR::LayoutTestController::pathToLocalResource): 16 1 17 2011-04-18 Timothy Hatcher <timothy@apple.com> 2 18 -
trunk/Tools/WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl
r83195 r84160 84 84 void clearAllDatabases(); 85 85 void setDatabaseQuota(in unsigned long long quota); 86 DOMString pathToLocalResource(in DOMString url); 86 87 87 88 // Compositing testing. -
trunk/Tools/WebKitTestRunner/InjectedBundle/LayoutTestController.h
r83195 r84160 112 112 void clearAllDatabases(); 113 113 void setDatabaseQuota(uint64_t); 114 JSRetainPtr<JSStringRef> pathToLocalResource(JSStringRef); 114 115 115 116 // Printing -
trunk/Tools/WebKitTestRunner/InjectedBundle/mac/LayoutTestControllerMac.mm
r67861 r84160 57 57 } 58 58 59 JSRetainPtr<JSStringRef> LayoutTestController::pathToLocalResource(JSStringRef url) 60 { 61 return JSStringRetain(url); // Do nothing on mac. 62 } 63 59 64 } // namespace WTR -
trunk/Tools/WebKitTestRunner/InjectedBundle/qt/LayoutTestControllerQt.cpp
r81135 r84160 29 29 30 30 #include "InjectedBundle.h" 31 #include <QDir> 31 32 #include <QObject> 32 33 … … 71 72 } 72 73 74 JSRetainPtr<JSStringRef> LayoutTestController::pathToLocalResource(JSStringRef url) 75 { 76 QString path = QDir::toNativeSeparators(QString(reinterpret_cast<const QChar*>(JSStringGetCharactersPtr(url)), JSStringGetLength(url))); 77 return JSStringCreateWithCharacters(reinterpret_cast<const JSChar*>(path.constData()), path.length()); 78 } 79 73 80 } // namespace WTR 74 81 -
trunk/Tools/WebKitTestRunner/InjectedBundle/win/LayoutTestControllerWin.cpp
r81135 r84160 60 60 } 61 61 62 JSRetainPtr<JSStringRef> LayoutTestController::pathToLocalResource(JSStringRef url) 63 { 64 return JSStringRetain(url); // TODO. 65 } 66 62 67 } // namespace WTR
Note:
See TracChangeset
for help on using the changeset viewer.