Changeset 221505 in webkit
- Timestamp:
- Sep 1, 2017, 3:56:15 PM (8 years ago)
- Location:
- trunk/Tools
- Files:
-
- 193 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/Tools/ChangeLog ¶
r221503 r221505 1 2017-09-01 Alex Christensen <achristensen@webkit.org> 2 3 Rename WebKit2 API tests after directory rename 4 https://bugs.webkit.org/show_bug.cgi?id=176250 5 6 Reviewed by Tim Horton. 7 8 * TestWebKitAPI/Tests/Lots of files... 9 Renamed WebKit2 to WebKit and WebKit1 to WebKitLegacy. 10 1 11 2017-09-01 Alex Christensen <achristensen@webkit.org> 2 12 -
TabularUnified trunk/Tools/Scripts/run-api-tests ¶
r214372 r221505 91 91 92 92 The following command will run a single test: 93 $programName WebKit 2.AboutBlank94 95 The following command will run all tests in suites that begin with 'WebKit 2':96 $programName WebKit 293 $programName WebKit.AboutBlank 94 95 The following command will run all tests in suites that begin with 'WebKit': 96 $programName WebKit 97 97 98 98 EOF … … 328 328 $suite = $line; # "SuiteName." 329 329 } else { 330 # Disabling WebKit2 API test on Windows since we will be disabling WebKit2 on Windows.331 next if (isAppleWinWebKit() && $suite =~ m/WebKit2*/);332 330 $line =~ s/^\s*//; # "TestName" 333 331 my $fullName = $suite . $line; # "SuiteName.TestName"; -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebCore/LineBreaking.mm ¶
r212235 r221505 106 106 107 107 // Split up the tests because they take too long otherwise and people start thinking their computer is hung. 108 TEST(WebKit 2, LineBreaking1)108 TEST(WebKit, LineBreaking1) 109 109 { 110 110 Vector<Vector<UInt16>> testStrings = { … … 118 118 } 119 119 120 TEST(WebKit 2, LineBreaking2)120 TEST(WebKit, LineBreaking2) 121 121 { 122 122 Vector<Vector<UInt16>> testStrings = { … … 130 130 } 131 131 132 TEST(WebKit 2, LineBreaking3)132 TEST(WebKit, LineBreaking3) 133 133 { 134 134 Vector<Vector<UInt16>> testStrings = { … … 142 142 } 143 143 144 TEST(WebKit 2, LineBreaking4)144 TEST(WebKit, LineBreaking4) 145 145 { 146 146 Vector<Vector<UInt16>> testStrings = { … … 154 154 } 155 155 156 TEST(WebKit 2, LineBreaking5)156 TEST(WebKit, LineBreaking5) 157 157 { 158 158 Vector<Vector<UInt16>> testStrings = { … … 166 166 } 167 167 168 TEST(WebKit 2, LineBreaking6)168 TEST(WebKit, LineBreaking6) 169 169 { 170 170 Vector<Vector<UInt16>> testStrings = { … … 178 178 } 179 179 180 TEST(WebKit 2, LineBreaking7)180 TEST(WebKit, LineBreaking7) 181 181 { 182 182 Vector<Vector<UInt16>> testStrings = { … … 190 190 } 191 191 192 TEST(WebKit 2, LineBreaking8)192 TEST(WebKit, LineBreaking8) 193 193 { 194 194 Vector<Vector<UInt16>> testStrings = { … … 202 202 } 203 203 204 TEST(WebKit 2, LineBreaking9)204 TEST(WebKit, LineBreaking9) 205 205 { 206 206 Vector<Vector<UInt16>> testStrings = { … … 214 214 } 215 215 216 TEST(WebKit 2, LineBreaking10)216 TEST(WebKit, LineBreaking10) 217 217 { 218 218 Vector<Vector<UInt16>> testStrings = { … … 226 226 } 227 227 228 TEST(WebKit 2, LineBreaking11)228 TEST(WebKit, LineBreaking11) 229 229 { 230 230 Vector<Vector<UInt16>> testStrings = { … … 238 238 } 239 239 240 TEST(WebKit 2, LineBreaking12)240 TEST(WebKit, LineBreaking12) 241 241 { 242 242 Vector<Vector<UInt16>> testStrings = { … … 250 250 } 251 251 252 TEST(WebKit 2, LineBreaking13)252 TEST(WebKit, LineBreaking13) 253 253 { 254 254 Vector<Vector<UInt16>> testStrings = { … … 262 262 } 263 263 264 TEST(WebKit 2, LineBreaking14)264 TEST(WebKit, LineBreaking14) 265 265 { 266 266 Vector<Vector<UInt16>> testStrings = { … … 274 274 } 275 275 276 TEST(WebKit 2, LineBreaking15)276 TEST(WebKit, LineBreaking15) 277 277 { 278 278 Vector<Vector<UInt16>> testStrings = { … … 286 286 } 287 287 288 TEST(WebKit 2, LineBreaking16)288 TEST(WebKit, LineBreaking16) 289 289 { 290 290 Vector<Vector<UInt16>> testStrings = { … … 298 298 } 299 299 300 TEST(WebKit 2, LineBreaking17)300 TEST(WebKit, LineBreaking17) 301 301 { 302 302 Vector<Vector<UInt16>> testStrings = { … … 310 310 } 311 311 312 TEST(WebKit 2, LineBreaking18)312 TEST(WebKit, LineBreaking18) 313 313 { 314 314 Vector<Vector<UInt16>> testStrings = { … … 322 322 } 323 323 324 TEST(WebKit 2, LineBreaking19)324 TEST(WebKit, LineBreaking19) 325 325 { 326 326 Vector<Vector<UInt16>> testStrings = { -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/AboutBlankLoad.cpp ¶
r177506 r221505 42 42 } 43 43 44 TEST(WebKit 2, AboutBlankLoad)44 TEST(WebKit, AboutBlankLoad) 45 45 { 46 46 WKRetainPtr<WKContextRef> context = adoptWK(WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/CanHandleRequest.cpp ¶
r177506 r221505 58 58 } 59 59 60 TEST(WebKit 2, CanHandleRequest)60 TEST(WebKit, CanHandleRequest) 61 61 { 62 62 WKRetainPtr<WKContextRef> context = adoptWK(Util::createContextForInjectedBundleTest("CanHandleRequestTest")); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/CloseFromWithinCreatePage.cpp ¶
r208509 r221505 62 62 } 63 63 64 TEST(WebKit 2, CloseFromWithinCreatePage)64 TEST(WebKit, CloseFromWithinCreatePage) 65 65 { 66 66 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/CloseThenTerminate.cpp ¶
r177506 r221505 43 43 // This tests that we don't crash when calling WKPageClose and WKPageTerminate. 44 44 45 TEST(WebKit 2, CloseThenTerminate)45 TEST(WebKit, CloseThenTerminate) 46 46 { 47 47 WKRetainPtr<WKContextRef> context = adoptWK(WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/CookieManager.cpp ¶
r177506 r221505 71 71 } 72 72 73 TEST(WebKit 2, CookieManager)73 TEST(WebKit, CookieManager) 74 74 { 75 75 wkContext.adopt(WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/DOMWindowExtensionBasic.cpp ¶
r177506 r221505 81 81 } 82 82 83 TEST(WebKit 2, DISABLED_DOMWindowExtensionBasic)83 TEST(WebKit, DISABLED_DOMWindowExtensionBasic) 84 84 { 85 85 WKRetainPtr<WKPageGroupRef> pageGroup(AdoptWK, WKPageGroupCreateWithIdentifier(WKStringCreateWithUTF8CString("DOMWindowExtensionBasicPageGroup"))); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/DOMWindowExtensionNoCache.cpp ¶
r177506 r221505 82 82 } 83 83 84 TEST(WebKit 2, DISABLED_DOMWindowExtensionNoCache)84 TEST(WebKit, DISABLED_DOMWindowExtensionNoCache) 85 85 { 86 86 WKRetainPtr<WKPageGroupRef> pageGroup(AdoptWK, WKPageGroupCreateWithIdentifier(WKStringCreateWithUTF8CString("DOMWindowExtensionNoCachePageGroup"))); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/DeferredViewInWindowStateChange.mm ¶
r202232 r221505 53 53 } 54 54 55 TEST(WebKit 2, DeferredViewInWindowStateChange)55 TEST(WebKit, DeferredViewInWindowStateChange) 56 56 { 57 57 WKRetainPtr<WKContextRef> context = adoptWK(Util::createContextForInjectedBundleTest("MouseMoveAfterCrashTest")); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/DidAssociateFormControls.cpp ¶
r177506 r221505 76 76 } 77 77 78 TEST(WebKit 2, DidAssociateFormControls)78 TEST(WebKit, DidAssociateFormControls) 79 79 { 80 80 WKRetainPtr<WKContextRef> context = adoptWK(Util::createContextForInjectedBundleTest("DidAssociateFormControlsTest")); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/DidNotHandleKeyDown.cpp ¶
r177506 r221505 49 49 } 50 50 51 TEST(WebKit 2, DidNotHandleKeyDown)51 TEST(WebKit, DidNotHandleKeyDown) 52 52 { 53 53 WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextWithInjectedBundle()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/DidRemoveFrameFromHiearchyInPageCache.cpp ¶
r206922 r221505 75 75 } 76 76 77 TEST(WebKit 2, DidRemoveFrameFromHiearchyInPageCache)77 TEST(WebKit, DidRemoveFrameFromHiearchyInPageCache) 78 78 { 79 79 WKRetainPtr<WKContextRef> context = adoptWK(Util::createContextForInjectedBundleTest("DidRemoveFrameFromHiearchyInPageCache")); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/DocumentStartUserScriptAlertCrash.cpp ¶
r186046 r221505 47 47 } 48 48 49 TEST(WebKit 2, DocumentStartUserScriptAlertCrashTest)49 TEST(WebKit, DocumentStartUserScriptAlertCrashTest) 50 50 { 51 51 WKRetainPtr<WKPageGroupRef> pageGroup(AdoptWK, WKPageGroupCreateWithIdentifier(WKStringCreateWithUTF8CString("DocumentStartUserScriptAlertCrashTestPageGroup"))); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/DownloadDecideDestinationCrash.cpp ¶
r177506 r221505 70 70 } 71 71 72 TEST(WebKit 2, DownloadDecideDestinationCrash)72 TEST(WebKit, DownloadDecideDestinationCrash) 73 73 { 74 74 WKRetainPtr<WKContextRef> context = adoptWK(WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/EnumerateMediaDevices.cpp ¶
r215939 r221505 48 48 } 49 49 50 TEST(WebKit 2, EnumerateDevices)50 TEST(WebKit, EnumerateDevices) 51 51 { 52 52 auto context = adoptWK(WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/EnvironmentUtilitiesTest.cpp ¶
r215521 r221505 43 43 } 44 44 45 TEST(WebKit 2, StripValuesEndingWithString)45 TEST(WebKit, StripValuesEndingWithString) 46 46 { 47 47 EXPECT_STREQ(strip(""), ""); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/EphemeralSessionPushStateNoHistoryCallback.cpp ¶
r206929 r221505 49 49 } 50 50 51 TEST(WebKit 2, EphemeralSessionPushStateNoHistoryCallback)51 TEST(WebKit, EphemeralSessionPushStateNoHistoryCallback) 52 52 { 53 53 auto configuration = adoptWK(WKPageConfigurationCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/EvaluateJavaScript.cpp ¶
r177506 r221505 50 50 } 51 51 52 TEST(WebKit 2, EvaluateJavaScriptThatThrowsAnException)52 TEST(WebKit, EvaluateJavaScriptThatThrowsAnException) 53 53 { 54 54 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/EventModifiers.cpp ¶
r215790 r221505 63 63 } 64 64 65 TEST(WebKit 2, EventModifiers)65 TEST(WebKit, EventModifiers) 66 66 { 67 67 WKRetainPtr<WKContextRef> context = adoptWK(WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/FailedLoad.cpp ¶
r177506 r221505 49 49 } 50 50 51 TEST(WebKit 2, FailedLoad)51 TEST(WebKit, FailedLoad) 52 52 { 53 53 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/Find.cpp ¶
r177506 r221505 50 50 } 51 51 52 TEST(WebKit 2, Find)52 TEST(WebKit, Find) 53 53 { 54 54 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/FindMatches.mm ¶
r178293 r221505 116 116 } 117 117 118 TEST(WebKit 2, FindMatches)118 TEST(WebKit, FindMatches) 119 119 { 120 120 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/ForceRepaint.cpp ¶
r177506 r221505 50 50 } 51 51 52 TEST(WebKit 2, ForceRepaint)52 TEST(WebKit, ForceRepaint) 53 53 { 54 54 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/FrameHandle.cpp ¶
r204909 r221505 44 44 } 45 45 46 TEST(WebKit 2, FrameHandle)46 TEST(WebKit, FrameHandle) 47 47 { 48 48 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/FrameMIMETypeHTML.cpp ¶
r177506 r221505 57 57 } 58 58 59 TEST(WebKit 2, FrameMIMETypeHTML)59 TEST(WebKit, FrameMIMETypeHTML) 60 60 { 61 61 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/FrameMIMETypePNG.cpp ¶
r177506 r221505 56 56 } 57 57 58 TEST(WebKit 2, FrameMIMETypePNG)58 TEST(WebKit, FrameMIMETypePNG) 59 59 { 60 60 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/Geolocation.cpp ¶
r192808 r221505 155 155 }; 156 156 157 TEST(WebKit 2, GeolocationBasic)157 TEST(WebKit, GeolocationBasic) 158 158 { 159 159 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); … … 196 196 }; 197 197 198 TEST(WebKit 2, GeolocationBasicWithHighAccuracy)198 TEST(WebKit, GeolocationBasicWithHighAccuracy) 199 199 { 200 200 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); … … 248 248 }; 249 249 250 TEST(WebKit 2, GeolocationTransitionToHighAccuracy)250 TEST(WebKit, GeolocationTransitionToHighAccuracy) 251 251 { 252 252 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); … … 313 313 } 314 314 315 TEST(WebKit 2, GeolocationTransitionToLowAccuracy)315 TEST(WebKit, GeolocationTransitionToLowAccuracy) 316 316 { 317 317 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/GetInjectedBundleInitializationUserDataCallback.cpp ¶
r177506 r221505 47 47 } 48 48 49 TEST(WebKit 2, GetInjectedBundleInitializationUserDataCallback)49 TEST(WebKit, GetInjectedBundleInitializationUserDataCallback) 50 50 { 51 51 WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextWithInjectedBundle()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/GetUserMediaNavigation.mm ¶
r219135 r221505 68 68 namespace TestWebKitAPI { 69 69 70 TEST(WebKit 2, NavigateDuringGetUserMediaPrompt)70 TEST(WebKit, NavigateDuringGetUserMediaPrompt) 71 71 { 72 72 auto configuration = adoptNS([[WKWebViewConfiguration alloc] init]); … … 85 85 } 86 86 87 TEST(WebKit 2, NavigateDuringDeviceEnumeration)87 TEST(WebKit, NavigateDuringDeviceEnumeration) 88 88 { 89 89 auto configuration = adoptNS([[WKWebViewConfiguration alloc] init]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/HitTestResultNodeHandle.cpp ¶
r177506 r221505 72 72 } 73 73 74 TEST(WebKit 2, HitTestResultNodeHandle)74 TEST(WebKit, HitTestResultNodeHandle) 75 75 { 76 76 WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextForInjectedBundleTest("HitTestResultNodeHandleTest")); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/InjectedBundleBasic.cpp ¶
r177506 r221505 52 52 } 53 53 54 TEST(WebKit 2, InjectedBundleBasic)54 TEST(WebKit, InjectedBundleBasic) 55 55 { 56 56 WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextForInjectedBundleTest("InjectedBundleBasicTest")); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/InjectedBundleFrameHitTest.cpp ¶
r177506 r221505 56 56 } 57 57 58 TEST(WebKit 2, InjectedBundleFrameHitTest)58 TEST(WebKit, InjectedBundleFrameHitTest) 59 59 { 60 60 WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextForInjectedBundleTest("InjectedBundleFrameHitTestTest")); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/InjectedBundleInitializationUserDataCallbackWins.cpp ¶
r177506 r221505 47 47 } 48 48 49 TEST(WebKit 2, InjectedBundleInitializationUserDataCallbackWins)49 TEST(WebKit, InjectedBundleInitializationUserDataCallbackWins) 50 50 { 51 51 WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextWithInjectedBundle()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/InjectedBundleMakeAllShadowRootsOpen.cpp ¶
r211139 r221505 84 84 } 85 85 86 TEST(WebKit 2, InjectedBundleMakeAllShadowRootOpenTest)86 TEST(WebKit, InjectedBundleMakeAllShadowRootOpenTest) 87 87 { 88 88 WKRetainPtr<WKPageGroupRef> pageGroup(AdoptWK, WKPageGroupCreateWithIdentifier(WKStringCreateWithUTF8CString("InjectedBundleMakeAllShadowRootOpenTestPageGroup"))); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/LayoutMilestonesWithAllContentInFrame.cpp ¶
r177506 r221505 46 46 } 47 47 48 TEST(WebKit 2, LayoutMilestonesWithAllContentInFrame)48 TEST(WebKit, LayoutMilestonesWithAllContentInFrame) 49 49 { 50 50 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/LimitTitleSize.cpp ¶
r215784 r221505 55 55 } 56 56 57 TEST(WebKit 2, LimitTitleSize)57 TEST(WebKit, LimitTitleSize) 58 58 { 59 59 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/LoadAlternateHTMLStringWithNonDirectoryURL.cpp ¶
r180565 r221505 65 65 } 66 66 67 TEST(WebKit 2, LoadAlternateHTMLStringWithNonDirectoryURL)67 TEST(WebKit, LoadAlternateHTMLStringWithNonDirectoryURL) 68 68 { 69 69 // Call WKPageLoadAlternateHTMLString() with fileURL which does not point to a directory. … … 72 72 } 73 73 74 TEST(WebKit 2, LoadAlternateHTMLStringWithEmptyBaseURL)74 TEST(WebKit, LoadAlternateHTMLStringWithEmptyBaseURL) 75 75 { 76 76 // Call WKPageLoadAlternateHTMLString() with empty baseURL to make sure this test works -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/LoadCanceledNoServerRedirectCallback.cpp ¶
r177506 r221505 59 59 } 60 60 61 TEST(WebKit 2, LoadCanceledNoServerRedirectCallback)61 TEST(WebKit, LoadCanceledNoServerRedirectCallback) 62 62 { 63 63 WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextForInjectedBundleTest("LoadCanceledNoServerRedirectCallbackTest")); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/LoadPageOnCrash.cpp ¶
r177506 r221505 96 96 // This test will load a blank page and next kill WebProcess, the expected 97 97 // result is that a call to page load should spawn a new WebProcess. 98 TEST(WebKit 2, LoadPageAfterCrash)98 TEST(WebKit, LoadPageAfterCrash) 99 99 { 100 100 WebKit2CrashLoader helper; -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/MediaStreamTrackDetached.mm ¶
r218399 r221505 65 65 namespace TestWebKitAPI { 66 66 67 TEST(WebKit 2, MediaStreamTrackDetached)67 TEST(WebKit, MediaStreamTrackDetached) 68 68 { 69 69 auto configuration = adoptNS([[WKWebViewConfiguration alloc] init]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/MenuTypesForMouseEvents.cpp ¶
r182589 r221505 70 70 } 71 71 72 TEST(WebKit 2, MenuAndButtonForNormalLeftClick)72 TEST(WebKit, MenuAndButtonForNormalLeftClick) 73 73 { 74 74 buildAndPerformTest(kWKEventMouseButtonLeftButton, 0, "0", "none"); 75 75 } 76 76 77 TEST(WebKit 2, MenuAndButtonForNormalRightClick)77 TEST(WebKit, MenuAndButtonForNormalRightClick) 78 78 { 79 79 buildAndPerformTest(kWKEventMouseButtonRightButton, 0, "2", "context"); 80 80 } 81 81 82 TEST(WebKit 2, MenuAndButtonForNormalMiddleClick)82 TEST(WebKit, MenuAndButtonForNormalMiddleClick) 83 83 { 84 84 buildAndPerformTest(kWKEventMouseButtonMiddleButton, 0, "1", "none"); 85 85 } 86 86 87 TEST(WebKit 2, MenuAndButtonForControlLeftClick)87 TEST(WebKit, MenuAndButtonForControlLeftClick) 88 88 { 89 89 buildAndPerformTest(kWKEventMouseButtonLeftButton, kWKEventModifiersControlKey, "0", "context"); 90 90 } 91 91 92 TEST(WebKit 2, MenuAndButtonForControlRightClick)92 TEST(WebKit, MenuAndButtonForControlRightClick) 93 93 { 94 94 buildAndPerformTest(kWKEventMouseButtonRightButton, kWKEventModifiersControlKey, "2", "context"); 95 95 } 96 96 97 TEST(WebKit 2, MenuAndButtonForControlMiddleClick)97 TEST(WebKit, MenuAndButtonForControlMiddleClick) 98 98 { 99 99 buildAndPerformTest(kWKEventMouseButtonMiddleButton, kWKEventModifiersControlKey, "1", "none"); 100 100 } 101 101 102 TEST(WebKit 2, MenuAndButtonForShiftLeftClick)102 TEST(WebKit, MenuAndButtonForShiftLeftClick) 103 103 { 104 104 buildAndPerformTest(kWKEventMouseButtonLeftButton, kWKEventModifiersShiftKey, "0", "none"); 105 105 } 106 106 107 TEST(WebKit 2, MenuAndButtonForShiftRightClick)107 TEST(WebKit, MenuAndButtonForShiftRightClick) 108 108 { 109 109 buildAndPerformTest(kWKEventMouseButtonRightButton, kWKEventModifiersShiftKey, "2", "context"); 110 110 } 111 111 112 TEST(WebKit 2, MenuAndButtonForShiftMiddleClick)112 TEST(WebKit, MenuAndButtonForShiftMiddleClick) 113 113 { 114 114 buildAndPerformTest(kWKEventMouseButtonMiddleButton, kWKEventModifiersShiftKey, "1", "none"); 115 115 } 116 116 117 TEST(WebKit 2, MenuAndButtonForCommandLeftClick)117 TEST(WebKit, MenuAndButtonForCommandLeftClick) 118 118 { 119 119 buildAndPerformTest(kWKEventMouseButtonLeftButton, kWKEventModifiersMetaKey, "0", "none"); 120 120 } 121 121 122 TEST(WebKit 2, MenuAndButtonForCommandRightClick)122 TEST(WebKit, MenuAndButtonForCommandRightClick) 123 123 { 124 124 buildAndPerformTest(kWKEventMouseButtonRightButton, kWKEventModifiersMetaKey, "2", "context"); 125 125 } 126 126 127 TEST(WebKit 2, MenuAndButtonForCommandMiddleClick)127 TEST(WebKit, MenuAndButtonForCommandMiddleClick) 128 128 { 129 129 buildAndPerformTest(kWKEventMouseButtonMiddleButton, kWKEventModifiersMetaKey, "1", "none"); 130 130 } 131 131 132 TEST(WebKit 2, MenuAndButtonForAltLeftClick)132 TEST(WebKit, MenuAndButtonForAltLeftClick) 133 133 { 134 134 buildAndPerformTest(kWKEventMouseButtonLeftButton, kWKEventModifiersAltKey, "0", "none"); 135 135 } 136 136 137 TEST(WebKit 2, MenuAndButtonForAltRightClick)137 TEST(WebKit, MenuAndButtonForAltRightClick) 138 138 { 139 139 buildAndPerformTest(kWKEventMouseButtonRightButton, kWKEventModifiersAltKey, "2", "context"); 140 140 } 141 141 142 TEST(WebKit 2, MenuAndButtonForAltMiddleClick)142 TEST(WebKit, MenuAndButtonForAltMiddleClick) 143 143 { 144 144 buildAndPerformTest(kWKEventMouseButtonMiddleButton, kWKEventModifiersAltKey, "1", "none"); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/ModalAlertsSPI.cpp ¶
r217574 r221505 121 121 } 122 122 123 TEST(WebKit 2, ModalAlertsSPI)123 TEST(WebKit, ModalAlertsSPI) 124 124 { 125 125 WKRetainPtr<WKContextRef> context = adoptWK(WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/MouseMoveAfterCrash.cpp ¶
r177506 r221505 52 52 } 53 53 54 TEST(WebKit 2, MouseMoveAfterCrash)54 TEST(WebKit, MouseMoveAfterCrash) 55 55 { 56 56 WKRetainPtr<WKContextRef> context = adoptWK(Util::createContextForInjectedBundleTest("MouseMoveAfterCrashTest")); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/NavigationClientDefaultCrypto.cpp ¶
r216157 r221505 55 55 } 56 56 57 TEST(WebKit 2, NavigationClientDefaultCrypto)57 TEST(WebKit, NavigationClientDefaultCrypto) 58 58 { 59 59 auto context = adoptWK(WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/NetworkProcessCrashWithPendingConnection.mm ¶
r219087 r221505 45 45 static bool networkProcessCrashed = false; 46 46 47 TEST(WebKit 2, NetworkProcessCrashWithPendingConnection)47 TEST(WebKit, NetworkProcessCrashWithPendingConnection) 48 48 { 49 49 RetainPtr<WKWebViewConfiguration> configuration = adoptNS([[WKWebViewConfiguration alloc] init]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/NewFirstVisuallyNonEmptyLayout.cpp ¶
r177506 r221505 74 74 // kWKDidHitRelevantRepaintedObjectsAreaThreshold achievement. We probably need to fix this by making 75 75 // this test have a long-running resource. 76 TEST(WebKit 2, DISABLED_NewFirstVisuallyNonEmptyLayout)76 TEST(WebKit, DISABLED_NewFirstVisuallyNonEmptyLayout) 77 77 { 78 78 WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextForInjectedBundleTest("NewFirstVisuallyNonEmptyLayoutTest")); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/NewFirstVisuallyNonEmptyLayoutFails.cpp ¶
r177506 r221505 70 70 } 71 71 72 TEST(WebKit 2, NewFirstVisuallyNonEmptyLayoutFails)72 TEST(WebKit, NewFirstVisuallyNonEmptyLayoutFails) 73 73 { 74 74 WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextForInjectedBundleTest("NewFirstVisuallyNonEmptyLayoutFailsTest")); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/NewFirstVisuallyNonEmptyLayoutForImages.cpp ¶
r177506 r221505 74 74 // kWKDidHitRelevantRepaintedObjectsAreaThreshold achievement. We probably need to fix this by making 75 75 // this test have a long-running resource. 76 TEST(WebKit 2, DISABLED_NewFirstVisuallyNonEmptyLayoutForImages)76 TEST(WebKit, DISABLED_NewFirstVisuallyNonEmptyLayoutForImages) 77 77 { 78 78 WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextForInjectedBundleTest("NewFirstVisuallyNonEmptyLayoutForImagesTest")); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/NewFirstVisuallyNonEmptyLayoutFrames.cpp ¶
r185496 r221505 75 75 } 76 76 77 TEST(WebKit 2, NewFirstVisuallyNonEmptyLayoutFrames)77 TEST(WebKit, NewFirstVisuallyNonEmptyLayoutFrames) 78 78 { 79 79 didHitRelevantRepaintedObjectsAreaThresholdCounter = 0; -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/PageLoadBasic.cpp ¶
r210782 r221505 112 112 } 113 113 114 TEST(WebKit 2, PageLoadBasic)114 TEST(WebKit, PageLoadBasic) 115 115 { 116 116 State state; … … 155 155 } 156 156 157 TEST(WebKit 2, PageReload)157 TEST(WebKit, PageReload) 158 158 { 159 159 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/PageLoadDidChangeLocationWithinPageForFrame.cpp ¶
r177506 r221505 59 59 } 60 60 61 TEST(WebKit 2, PageLoadDidChangeLocationWithinPageForFrame)61 TEST(WebKit, PageLoadDidChangeLocationWithinPageForFrame) 62 62 { 63 63 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/ParentFrame.cpp ¶
r177506 r221505 58 58 } 59 59 60 TEST(WebKit 2, ParentFrame)60 TEST(WebKit, ParentFrame) 61 61 { 62 62 WKRetainPtr<WKContextRef> context = adoptWK(Util::createContextForInjectedBundleTest("ParentFrameTest")); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/PasteboardNotifications.mm ¶
r177506 r221505 59 59 } 60 60 61 TEST(WebKit 2, PasteboardNotifications)61 TEST(WebKit, PasteboardNotifications) 62 62 { 63 63 [[NSPasteboard generalPasteboard] clearContents]; -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/PendingAPIRequestURL.cpp ¶
r199664 r221505 37 37 static bool done; 38 38 39 TEST(WebKit 2, PendingAPIRequestURL)39 TEST(WebKit, PendingAPIRequestURL) 40 40 { 41 41 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/PreventEmptyUserAgent.cpp ¶
r177506 r221505 59 59 } 60 60 61 TEST(WebKit 2, PreventEmptyUserAgent)61 TEST(WebKit, PreventEmptyUserAgent) 62 62 { 63 63 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/PrivateBrowsingPushStateNoHistoryCallback.cpp ¶
r177506 r221505 54 54 } 55 55 56 TEST(WebKit 2, PrivateBrowsingPushStateNoHistoryCallback)56 TEST(WebKit, PrivateBrowsingPushStateNoHistoryCallback) 57 57 { 58 58 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/ProcessDidTerminate.cpp ¶
r216249 r221505 77 77 } 78 78 79 TEST(WebKit 2, ProcessDidTerminateRequestedByClient)79 TEST(WebKit, ProcessDidTerminateRequestedByClient) 80 80 { 81 81 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); … … 101 101 } 102 102 103 TEST(WebKit 2, ProcessDidTerminateWithReasonCrash)103 TEST(WebKit, ProcessDidTerminateWithReasonCrash) 104 104 { 105 105 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/ReloadPageAfterCrash.cpp ¶
r177506 r221505 64 64 } 65 65 66 TEST(WebKit 2, ReloadPageAfterCrash)66 TEST(WebKit, ReloadPageAfterCrash) 67 67 { 68 68 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/ResizeReversePaginatedWebView.cpp ¶
r177506 r221505 60 60 } 61 61 62 TEST(WebKit 2, ResizeReversePaginatedWebView)62 TEST(WebKit, ResizeReversePaginatedWebView) 63 63 { 64 64 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/ResizeWindowAfterCrash.cpp ¶
r177506 r221505 74 74 } 75 75 76 TEST(WebKit 2, ResizeWindowAfterCrash)76 TEST(WebKit, ResizeWindowAfterCrash) 77 77 { 78 78 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/ResponsivenessTimer.cpp ¶
r218295 r221505 58 58 } 59 59 60 TEST(WebKit 2, ResponsivenessTimerShouldNotFireAfterTearDown)60 TEST(WebKit, ResponsivenessTimerShouldNotFireAfterTearDown) 61 61 { 62 62 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/ResponsivenessTimerDoesntFireEarly.cpp ¶
r177506 r221505 76 76 } 77 77 78 TEST(WebKit 2, ResponsivenessTimerDoesntFireEarly)78 TEST(WebKit, ResponsivenessTimerDoesntFireEarly) 79 79 { 80 80 WKRetainPtr<WKContextRef> context = adoptWK(Util::createContextForInjectedBundleTest("ResponsivenessTimerDoesntFireEarlyTest")); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/RestoreSessionState.cpp ¶
r218121 r221505 67 67 } 68 68 69 TEST(WebKit 2, RestoreSessionStateContainingScrollRestorationDefault)69 TEST(WebKit, RestoreSessionStateContainingScrollRestorationDefault) 70 70 { 71 71 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/RestoreSessionStateContainingFormData.cpp ¶
r177506 r221505 71 71 } 72 72 73 TEST(WebKit 2, RestoreSessionStateContainingFormData)73 TEST(WebKit, RestoreSessionStateContainingFormData) 74 74 { 75 75 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/RestoreSessionStateWithoutNavigation.cpp ¶
r202724 r221505 75 75 } 76 76 77 TEST(WebKit 2, RestoreSessionStateWithoutNavigation)77 TEST(WebKit, RestoreSessionStateWithoutNavigation) 78 78 { 79 79 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/ScrollPinningBehaviors.cpp ¶
r177506 r221505 70 70 } 71 71 72 TEST(WebKit 2, ScrollPinningBehaviors)72 TEST(WebKit, ScrollPinningBehaviors) 73 73 { 74 74 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/ShouldGoToBackForwardListItem.cpp ¶
r177506 r221505 70 70 } 71 71 72 TEST(WebKit 2, ShouldGoToBackForwardListItem)72 TEST(WebKit, ShouldGoToBackForwardListItem) 73 73 { 74 74 WKRetainPtr<WKContextRef> context = adoptWK(Util::createContextForInjectedBundleTest("ShouldGoToBackForwardListItemTest")); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/ShouldKeepCurrentBackForwardListItemInList.cpp ¶
r177506 r221505 129 129 } 130 130 131 TEST(WebKit 2, ShouldKeepCurrentBackForwardListItemInList)131 TEST(WebKit, ShouldKeepCurrentBackForwardListItemInList) 132 132 { 133 133 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/SpacebarScrolling.cpp ¶
r177506 r221505 50 50 } 51 51 52 TEST(WebKit 2, SpacebarScrolling)52 TEST(WebKit, SpacebarScrolling) 53 53 { 54 54 WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextWithInjectedBundle()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/StopLoadingDuringDidFailProvisionalLoad.cpp ¶
r192910 r221505 61 61 } 62 62 63 TEST(WebKit 2, StopLoadingDuringDidFailProvisionalLoadTest)63 TEST(WebKit, StopLoadingDuringDidFailProvisionalLoadTest) 64 64 { 65 65 WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextForInjectedBundleTest("StopLoadingDuringDidFailProvisionalLoadTest")); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/TerminateTwice.cpp ¶
r206789 r221505 40 40 } 41 41 42 TEST(WebKit 2, TerminateTwice)42 TEST(WebKit, TerminateTwice) 43 43 { 44 44 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/UserMedia.cpp ¶
r216836 r221505 67 67 } 68 68 69 TEST(WebKit 2, UserMediaBasic)69 TEST(WebKit, UserMediaBasic) 70 70 { 71 71 auto context = adoptWK(WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/ViewportSizeForViewportUnits.mm ¶
r217735 r221505 36 36 static bool viewportSizeTestDone; 37 37 38 TEST(WebKit 2, ViewportSizeForViewportUnits)38 TEST(WebKit, ViewportSizeForViewportUnits) 39 39 { 40 40 RetainPtr<WKWebView> webView = adoptNS([[WKWebView alloc] initWithFrame:NSMakeRect(0, 0, 100, 100)]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/WKBundleFileHandle.cpp ¶
r180798 r221505 52 52 } 53 53 54 TEST(WebKit 2, WKBundleFileHandle)54 TEST(WebKit, WKBundleFileHandle) 55 55 { 56 56 WKRetainPtr<WKContextRef> context = adoptWK(Util::createContextForInjectedBundleTest("WKBundleFileHandleTest")); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/WKImageCreateCGImageCrash.cpp ¶
r177506 r221505 32 32 namespace TestWebKitAPI { 33 33 34 TEST(WebKit 2, WKImageCreateCGImageCrash)34 TEST(WebKit, WKImageCreateCGImageCrash) 35 35 { 36 36 EXPECT_FALSE(WKImageCreateCGImage(nullptr)); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/WKPageConfiguration.cpp ¶
r188543 r221505 36 36 namespace TestWebKitAPI { 37 37 38 TEST(WebKit 2, WKPageConfigurationEmpty)38 TEST(WebKit, WKPageConfigurationEmpty) 39 39 { 40 40 WKRetainPtr<WKPageConfigurationRef> configuration = adoptWK(WKPageConfigurationCreate()); … … 65 65 } 66 66 67 TEST(WebKit 2, WKPageConfigurationBasic)67 TEST(WebKit, WKPageConfigurationBasic) 68 68 { 69 69 WKRetainPtr<WKPageConfigurationRef> configuration = adoptWK(WKPageConfigurationCreate()); … … 84 84 } 85 85 86 TEST(WebKit 2, WKPageConfigurationBasicWithDataStore)86 TEST(WebKit, WKPageConfigurationBasicWithDataStore) 87 87 { 88 88 WKRetainPtr<WKPageConfigurationRef> configuration = adoptWK(WKPageConfigurationCreate()); … … 106 106 } 107 107 108 TEST(WebKit 2, WKPageConfigurationBasicWithNonPersistentDataStore)108 TEST(WebKit, WKPageConfigurationBasicWithNonPersistentDataStore) 109 109 { 110 110 WKRetainPtr<WKPageConfigurationRef> configuration = adoptWK(WKPageConfigurationCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/WKPageCopySessionStateWithFiltering.cpp ¶
r183933 r221505 104 104 } 105 105 106 TEST(WebKit 2, WKPageCopySessionStateWithFiltering)106 TEST(WebKit, WKPageCopySessionStateWithFiltering) 107 107 { 108 108 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/WKPageGetScaleFactorNotZero.cpp ¶
r177506 r221505 64 64 } 65 65 66 TEST(WebKit 2, WKPageGetScaleFactorNotZero)66 TEST(WebKit, WKPageGetScaleFactorNotZero) 67 67 { 68 68 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/WKPageIsPlayingAudio.cpp ¶
r210608 r221505 96 96 } 97 97 98 TEST(WebKit 2, WKPageIsPlayingAudio)98 TEST(WebKit, WKPageIsPlayingAudio) 99 99 { 100 100 WKRetainPtr<WKContextRef> context = adoptWK(WKContextCreate()); … … 115 115 } 116 116 117 TEST(WebKit 2, MSEIsPlayingAudio)117 TEST(WebKit, MSEIsPlayingAudio) 118 118 { 119 119 WKRetainPtr<WKContextRef> context = adoptWK(WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/WKPreferences.cpp ¶
r215758 r221505 34 34 namespace TestWebKitAPI { 35 35 36 TEST(WebKit 2, WKPreferencesBasic)36 TEST(WebKit, WKPreferencesBasic) 37 37 { 38 38 WKPreferencesRef preference = WKPreferencesCreate(); … … 43 43 } 44 44 45 TEST(WebKit 2, WKPreferencesDefaults)45 TEST(WebKit, WKPreferencesDefaults) 46 46 { 47 47 #if PLATFORM(GTK) … … 107 107 } 108 108 109 TEST(WebKit 2, WKPreferencesCopying)109 TEST(WebKit, WKPreferencesCopying) 110 110 { 111 111 WKRetainPtr<WKStringRef> identifier(AdoptWK, WKStringCreateWithUTF8CString("identifier")); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/WKRetainPtr.cpp ¶
r190836 r221505 33 33 namespace TestWebKitAPI { 34 34 35 TEST(WebKit 2, WKRetainPtr)35 TEST(WebKit, WKRetainPtr) 36 36 { 37 37 WKRetainPtr<WKStringRef> string1 = adoptWK(WKStringCreateWithUTF8CString("a")); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/WKString.cpp ¶
r177506 r221505 30 30 namespace TestWebKitAPI { 31 31 32 TEST(WebKit 2, WKString)32 TEST(WebKit, WKString) 33 33 { 34 34 WKStringRef string = WKStringCreateWithUTF8CString("hello"); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/WKStringJSString.cpp ¶
r177506 r221505 33 33 namespace TestWebKitAPI { 34 34 35 TEST(WebKit 2, WKStringJSString)35 TEST(WebKit, WKStringJSString) 36 36 { 37 37 WKStringRef wkString = WKStringCreateWithUTF8CString("hello"); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/WKThumbnailView.mm ¶
r205878 r221505 75 75 } 76 76 77 TEST(WebKit 2, WKThumbnailViewKeepSnapshotWhenRemovedFromSuperview)77 TEST(WebKit, WKThumbnailViewKeepSnapshotWhenRemovedFromSuperview) 78 78 { 79 79 WKRetainPtr<WKContextRef> context = adoptWK(WKContextCreate()); … … 121 121 } 122 122 123 TEST(WebKit 2, WKThumbnailViewMaximumSnapshotSize)123 TEST(WebKit, WKThumbnailViewMaximumSnapshotSize) 124 124 { 125 125 WKRetainPtr<WKContextRef> context = adoptWK(WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/WebArchive.cpp ¶
r177506 r221505 106 106 } 107 107 108 TEST(WebKit 2, WebArchive)108 TEST(WebKit, WebArchive) 109 109 { 110 110 WKRetainPtr<WKContextRef> context = adoptWK(Util::createContextForInjectedBundleTest("WebArchiveTest")); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/WebCoreStatisticsWithNoWebProcess.cpp ¶
r177506 r221505 42 42 } 43 43 44 TEST(WebKit 2, WebCoreStatisticsWithNoWebProcess)44 TEST(WebKit, WebCoreStatisticsWithNoWebProcess) 45 45 { 46 46 WKRetainPtr<WKContextRef> context = adoptWK(WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/WillSendSubmitEvent.cpp ¶
r177506 r221505 70 70 } 71 71 72 TEST(WebKit 2, WillSendSubmitEvent)72 TEST(WebKit, WillSendSubmitEvent) 73 73 { 74 74 WKRetainPtr<WKContextRef> context = adoptWK(Util::createContextForInjectedBundleTest("WillSendSubmitEventTest")); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/mac/AttributedSubstringForProposedRangeWithImage.mm ¶
r209957 r221505 56 56 } 57 57 58 TEST(WebKit 2, AttributedSubstringForProposedRangeWithImage)58 TEST(WebKit, AttributedSubstringForProposedRangeWithImage) 59 59 { 60 60 WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextWithInjectedBundle()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/mac/ContextMenuDownload.mm ¶
r213010 r221505 74 74 // Checks that the HTML download attribute is used as suggested filename when selecting 75 75 // the "Download Linked File" item in the context menu. 76 TEST(WebKit 2, ContextMenuDownloadHTMLDownloadAttribute)76 TEST(WebKit, ContextMenuDownloadHTMLDownloadAttribute) 77 77 { 78 78 WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextWithInjectedBundle()); … … 120 120 } 121 121 122 TEST(WebKit 2, ContextMenuDownloadHTMLDownloadAttributeWithSlashes)122 TEST(WebKit, ContextMenuDownloadHTMLDownloadAttributeWithSlashes) 123 123 { 124 124 WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextWithInjectedBundle()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/mac/EditorCommands.mm ¶
r168961 r221505 41 41 } 42 42 43 TEST(WebKit 2, ScrollByLineCommands)43 TEST(WebKit, ScrollByLineCommands) 44 44 { 45 45 WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextWithInjectedBundle()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/mac/GetBackingScaleFactor.mm ¶
r168961 r221505 64 64 } 65 65 66 TEST(WebKit 2, GetBackingScaleFactor)66 TEST(WebKit, GetBackingScaleFactor) 67 67 { 68 68 WKRetainPtr<WKContextRef> context = adoptWK(Util::createContextForInjectedBundleTest("GetBackingScaleFactorTest")); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/mac/GetPIDAfterAbortedProcessLaunch.cpp ¶
r203674 r221505 41 41 } 42 42 43 TEST(WebKit 2, GetPIDAfterAbortedProcessLaunch)43 TEST(WebKit, GetPIDAfterAbortedProcessLaunch) 44 44 { 45 45 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/mac/InjectedBundleAppleEvent.cpp ¶
r215197 r221505 66 66 } 67 67 68 TEST(WebKit 2, InjectedBundleAppleEvent)68 TEST(WebKit, InjectedBundleAppleEvent) 69 69 { 70 70 WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextForInjectedBundleTest("InjectedBundleAppleEventTest")); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKit/mac/RestoreStateAfterTermination.mm ¶
r214006 r221505 70 70 } 71 71 72 TEST(WebKit 2, RestoreStateAfterTermination)72 TEST(WebKit, RestoreStateAfterTermination) 73 73 { 74 74 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/AdditionalReadAccessAllowedURLs.mm ¶
r217923 r221505 42 42 static bool done; 43 43 44 TEST(WebKit 2, AdditionalReadAccessAllowedURLs)44 TEST(WebKit, AdditionalReadAccessAllowedURLs) 45 45 { 46 46 RetainPtr<WKWebViewConfiguration> configuration = retainPtr([WKWebViewConfiguration _test_configurationWithTestPlugInClassName:@"AdditionalReadAccessAllowedURLsPlugIn"]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/AlwaysRevalidatedURLSchemes.mm ¶
r205329 r221505 75 75 @end 76 76 77 TEST(WebKit 2, AlwaysRevalidatedURLSchemes)77 TEST(WebKit, AlwaysRevalidatedURLSchemes) 78 78 { 79 79 @autoreleasepool { -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/AnimatedResize.mm ¶
r221153 r221505 86 86 } 87 87 88 TEST(WebKit 2, DISABLED_ResizeWithHiddenContentDoesNotHang)88 TEST(WebKit, DISABLED_ResizeWithHiddenContentDoesNotHang) 89 89 { 90 90 auto webView = createAnimatedResizeWebView(); … … 110 110 } 111 111 112 TEST(WebKit 2, AnimatedResizeDoesNotHang)112 TEST(WebKit, AnimatedResizeDoesNotHang) 113 113 { 114 114 auto webView = createAnimatedResizeWebView(); … … 138 138 } 139 139 140 TEST(WebKit 2, AnimatedResizeBlocksViewportFitChanges)140 TEST(WebKit, AnimatedResizeBlocksViewportFitChanges) 141 141 { 142 142 auto webView = createAnimatedResizeWebView(); … … 185 185 } 186 186 187 TEST(WebKit 2, OverrideLayoutSizeChangesDuringAnimatedResizeSucceed)187 TEST(WebKit, OverrideLayoutSizeChangesDuringAnimatedResizeSucceed) 188 188 { 189 189 auto webView = createAnimatedResizeWebView(); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/AutoLayoutIntegration.mm ¶
r218509 r221505 119 119 @end 120 120 121 TEST(WebKit 2, AutoLayoutIntegration)121 TEST(WebKit, AutoLayoutIntegration) 122 122 { 123 123 RetainPtr<AutoLayoutWKWebView> webView = adoptNS([[AutoLayoutWKWebView alloc] initWithFrame:NSMakeRect(0, 0, 1000, 1000)]); … … 174 174 } 175 175 176 TEST(WebKit 2, AutoLayoutRenderingProgressRelativeOrdering)176 TEST(WebKit, AutoLayoutRenderingProgressRelativeOrdering) 177 177 { 178 178 RetainPtr<AutoLayoutWKWebView> webView = adoptNS([[AutoLayoutWKWebView alloc] initWithFrame:NSMakeRect(0, 0, 1000, 1000)]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/BundleEditingDelegate.mm ¶
r216203 r221505 72 72 @end 73 73 74 TEST(WebKit 2, WKWebProcessPlugInEditingDelegate)74 TEST(WebKit, WKWebProcessPlugInEditingDelegate) 75 75 { 76 76 RetainPtr<WKWebViewConfiguration> configuration = retainPtr([WKWebViewConfiguration _test_configurationWithTestPlugInClassName:@"BundleEditingDelegatePlugIn"]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/BundleParameters.mm ¶
r219533 r221505 36 36 static bool isDone; 37 37 38 TEST(WebKit 2, BundleParameters)38 TEST(WebKit, BundleParameters) 39 39 { 40 40 @autoreleasepool { -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/BundleRangeHandle.mm ¶
r216203 r221505 63 63 64 64 // FIXME: Re-enable this test once webkit.org/b/167594 is fixed. 65 TEST(WebKit 2, DISABLED_WKWebProcessPlugInRangeHandle)65 TEST(WebKit, DISABLED_WKWebProcessPlugInRangeHandle) 66 66 { 67 67 RetainPtr<WKWebViewConfiguration> configuration = retainPtr([WKWebViewConfiguration _test_configurationWithTestPlugInClassName:@"BundleRangeHandlePlugIn"]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/CookieAcceptPolicy.mm ¶
r220243 r221505 52 52 @end 53 53 54 TEST(WebKit 2, CookieAcceptPolicy)54 TEST(WebKit, CookieAcceptPolicy) 55 55 { 56 56 auto originalCookieAcceptPolicy = [[NSHTTPCookieStorage sharedHTTPCookieStorage] cookieAcceptPolicy]; -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/DataDetection.mm ¶
r215651 r221505 71 71 72 72 // FIXME: Re-enable this test once webkit.org/b/161967 is fixed. 73 TEST(WebKit 2, DISABLED_DataDetectionReferenceDate)73 TEST(WebKit, DISABLED_DataDetectionReferenceDate) 74 74 { 75 75 RetainPtr<WKWebViewConfiguration> configuration = adoptNS([[WKWebViewConfiguration alloc] init]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/DecidePolicyForNavigationAction.mm ¶
r220459 r221505 74 74 @end 75 75 76 TEST(WebKit 2, DecidePolicyForNavigationActionReload)76 TEST(WebKit, DecidePolicyForNavigationActionReload) 77 77 { 78 78 auto webView = adoptNS([[WKWebView alloc] initWithFrame:NSMakeRect(0, 0, 800, 600)]); … … 104 104 } 105 105 106 TEST(WebKit 2, DecidePolicyForNavigationActionReloadFromOrigin)106 TEST(WebKit, DecidePolicyForNavigationActionReloadFromOrigin) 107 107 { 108 108 auto webView = adoptNS([[WKWebView alloc] initWithFrame:NSMakeRect(0, 0, 800, 600)]); … … 134 134 } 135 135 136 TEST(WebKit 2, DecidePolicyForNavigationActionGoBack)136 TEST(WebKit, DecidePolicyForNavigationActionGoBack) 137 137 { 138 138 auto webView = adoptNS([[WKWebView alloc] initWithFrame:NSMakeRect(0, 0, 800, 600)]); … … 168 168 } 169 169 170 TEST(WebKit 2, DecidePolicyForNavigationActionGoForward)170 TEST(WebKit, DecidePolicyForNavigationActionGoForward) 171 171 { 172 172 auto webView = adoptNS([[WKWebView alloc] initWithFrame:NSMakeRect(0, 0, 800, 600)]); … … 206 206 } 207 207 208 TEST(WebKit 2, DecidePolicyForNavigationActionOpenNewWindowAndDeallocSourceWebView)208 TEST(WebKit, DecidePolicyForNavigationActionOpenNewWindowAndDeallocSourceWebView) 209 209 { 210 210 auto controller = adoptNS([[DecidePolicyForNavigationActionController alloc] init]); … … 237 237 } 238 238 239 TEST(WebKit 2, DecidePolicyForNavigationActionForTargetedHyperlink)239 TEST(WebKit, DecidePolicyForNavigationActionForTargetedHyperlink) 240 240 { 241 241 auto webView = adoptNS([[WKWebView alloc] initWithFrame:NSMakeRect(0, 0, 800, 600)]); … … 286 286 } 287 287 288 TEST(WebKit 2, DecidePolicyForNavigationActionForTargetedWindowOpen)288 TEST(WebKit, DecidePolicyForNavigationActionForTargetedWindowOpen) 289 289 { 290 290 auto webView = adoptNS([[WKWebView alloc] initWithFrame:NSMakeRect(0, 0, 800, 600)]); … … 335 335 } 336 336 337 TEST(WebKit 2, DecidePolicyForNavigationActionForTargetedFormSubmission)337 TEST(WebKit, DecidePolicyForNavigationActionForTargetedFormSubmission) 338 338 { 339 339 auto webView = adoptNS([[WKWebView alloc] initWithFrame:NSMakeRect(0, 0, 800, 600)]); … … 383 383 } 384 384 385 TEST(WebKit 2, DecidePolicyForNavigationActionForHyperlinkThatRedirects)385 TEST(WebKit, DecidePolicyForNavigationActionForHyperlinkThatRedirects) 386 386 { 387 387 auto webView = adoptNS([[WKWebView alloc] initWithFrame:NSMakeRect(0, 0, 800, 600)]); … … 433 433 } 434 434 435 TEST(WebKit 2, DecidePolicyForNavigationActionForPOSTFormSubmissionThatRedirectsToGET)435 TEST(WebKit, DecidePolicyForNavigationActionForPOSTFormSubmissionThatRedirectsToGET) 436 436 { 437 437 auto webView = adoptNS([[WKWebView alloc] initWithFrame:NSMakeRect(0, 0, 800, 600)]); … … 480 480 } 481 481 482 TEST(WebKit 2, DecidePolicyForNavigationActionForPOSTFormSubmissionThatRedirectsToPOST)482 TEST(WebKit, DecidePolicyForNavigationActionForPOSTFormSubmissionThatRedirectsToPOST) 483 483 { 484 484 auto webView = adoptNS([[WKWebView alloc] initWithFrame:NSMakeRect(0, 0, 800, 600)]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/DoAfterNextPresentationUpdateAfterCrash.mm ¶
r214495 r221505 34 34 #if PLATFORM(IOS) && WK_API_ENABLED 35 35 36 TEST(WebKit 2, DoAfterNextPresentationUpdateAfterCrash)36 TEST(WebKit, DoAfterNextPresentationUpdateAfterCrash) 37 37 { 38 38 RetainPtr<WKWebView> webView = adoptNS([[WKWebView alloc] initWithFrame:NSMakeRect(0, 0, 100, 100)]); … … 54 54 } 55 55 56 TEST(WebKit 2, DoAfterNextStablePresentationUpdateAfterCrash)56 TEST(WebKit, DoAfterNextStablePresentationUpdateAfterCrash) 57 57 { 58 58 RetainPtr<WKWebView> webView = adoptNS([[WKWebView alloc] initWithFrame:NSMakeRect(0, 0, 100, 100)]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/DuplicateCompletionHandlerCalls.mm ¶
r210031 r221505 124 124 @end 125 125 126 TEST(WebKit 2, DuplicateCompletionHandlerCalls)126 TEST(WebKit, DuplicateCompletionHandlerCalls) 127 127 { 128 128 auto webView = adoptNS([[WKWebView alloc] initWithFrame:CGRectMake(0, 0, 800, 600)]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/FindInPage.mm ¶
r214893 r221505 77 77 } 78 78 79 TEST(WebKit 2, FindInPage)79 TEST(WebKit, FindInPage) 80 80 { 81 81 RetainPtr<WKWebView> webView = adoptNS([[WKWebView alloc] initWithFrame:NSMakeRect(0, 0, 200, 200)]); … … 127 127 } 128 128 129 TEST(WebKit 2, FindInPageWrapping)129 TEST(WebKit, FindInPageWrapping) 130 130 { 131 131 RetainPtr<WKWebView> webView = adoptNS([[WKWebView alloc] initWithFrame:NSMakeRect(0, 0, 100, 100)]); … … 155 155 } 156 156 157 TEST(WebKit 2, FindInPageWrappingDisabled)157 TEST(WebKit, FindInPageWrappingDisabled) 158 158 { 159 159 RetainPtr<WKWebView> webView = adoptNS([[WKWebView alloc] initWithFrame:NSMakeRect(0, 0, 100, 100)]); … … 178 178 } 179 179 180 TEST(WebKit 2, FindInPageWrappingSubframe)180 TEST(WebKit, FindInPageWrappingSubframe) 181 181 { 182 182 RetainPtr<WKWebView> webView = adoptNS([[WKWebView alloc] initWithFrame:NSMakeRect(0, 0, 100, 100)]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/FixedLayoutSize.mm ¶
r205329 r221505 38 38 static bool fixedLayoutSizeDisabledDone; 39 39 40 TEST(WebKit 2, FixedLayoutSize)40 TEST(WebKit, FixedLayoutSize) 41 41 { 42 42 RetainPtr<WKWebView> webView = adoptNS([[WKWebView alloc] initWithFrame:NSMakeRect(0, 0, 100, 100)]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/Geolocation.mm ¶
r215246 r221505 144 144 // the requests to the UI process. 145 145 146 TEST(WebKit 2, GeolocationDeniedByLocationProvider)146 TEST(WebKit, GeolocationDeniedByLocationProvider) 147 147 { 148 148 auto uiDelegate = adoptNS([[GeolocationTestUIDelegate alloc] init]); … … 168 168 } 169 169 170 TEST(WebKit 2, GeolocationDeniedByAPI)170 TEST(WebKit, GeolocationDeniedByAPI) 171 171 { 172 172 auto uiDelegate = adoptNS([[GeolocationTestUIDelegate alloc] init]); … … 192 192 } 193 193 194 TEST(WebKit 2, GeolocationAllowedByAPI)194 TEST(WebKit, GeolocationAllowedByAPI) 195 195 { 196 196 auto uiDelegate = adoptNS([[GeolocationTestUIDelegate alloc] init]); … … 216 216 } 217 217 218 TEST(WebKit 2, GeolocationError)218 TEST(WebKit, GeolocationError) 219 219 { 220 220 auto uiDelegate = adoptNS([[GeolocationTestUIDelegate alloc] init]); … … 241 241 } 242 242 243 TEST(WebKit 2, DuplicateGeolocationAuthorizationCallbackCalls)243 TEST(WebKit, DuplicateGeolocationAuthorizationCallbackCalls) 244 244 { 245 245 auto uiDelegate = adoptNS([[GeolocationTestUIDelegate alloc] init]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/InteractionDeadlockAfterCrash.mm ¶
r212167 r221505 57 57 } 58 58 59 TEST(WebKit 2, InteractionDeadlockAfterCrash)59 TEST(WebKit, InteractionDeadlockAfterCrash) 60 60 { 61 61 RetainPtr<WKWebViewConfiguration> configuration = adoptNS([[WKWebViewConfiguration alloc] init]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/LoadDataWithNilMIMEType.mm ¶
r207563 r221505 32 32 #import <wtf/RetainPtr.h> 33 33 34 TEST(WebKit 2, LoadDataWithNilMIMEType)34 TEST(WebKit, LoadDataWithNilMIMEType) 35 35 { 36 36 auto webView = adoptNS([[WKWebView alloc] initWithFrame:NSZeroRect]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/LoadInvalidURLRequest.mm ¶
r208089 r221505 67 67 namespace TestWebKitAPI { 68 68 69 TEST(WebKit 2, LoadInvalidURLRequest)69 TEST(WebKit, LoadInvalidURLRequest) 70 70 { 71 71 @autoreleasepool { -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/ModalAlerts.mm ¶
r217571 r221505 130 130 @end 131 131 132 TEST(WebKit 2, ModalAlerts)132 TEST(WebKit, ModalAlerts) 133 133 { 134 134 RetainPtr<WKWebView> webView = adoptNS([[WKWebView alloc] initWithFrame:NSMakeRect(0, 0, 800, 600)]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/NSFileManagerExtras.mm ¶
r220506 r221505 41 41 } 42 42 43 TEST(WebKit 2, _WKNSFileManagerExtras)43 TEST(WebKit, _WKNSFileManagerExtras) 44 44 { 45 45 NSString *fileName = @"test.pdf"; -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/ObservedRenderingProgressEventsAfterCrash.mm ¶
r208340 r221505 34 34 #if PLATFORM(MAC) && WK_API_ENABLED 35 35 36 TEST(WebKit 2, ObservedRenderingProgressEventsAfterCrash)36 TEST(WebKit, ObservedRenderingProgressEventsAfterCrash) 37 37 { 38 38 __block bool done = false; -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/OpenAndCloseWindow.mm ¶
r219378 r221505 78 78 @end 79 79 80 TEST(WebKit 2, OpenAndCloseWindow)80 TEST(WebKit, OpenAndCloseWindow) 81 81 { 82 82 resetToConsistentState(); … … 140 140 @end 141 141 142 TEST(WebKit 2, OpenAndCloseWindowAsync)142 TEST(WebKit, OpenAndCloseWindowAsync) 143 143 { 144 144 resetToConsistentState(); … … 158 158 } 159 159 160 TEST(WebKit 2, OpenAsyncWithNil)160 TEST(WebKit, OpenAsyncWithNil) 161 161 { 162 162 resetToConsistentState(); … … 178 178 179 179 // https://bugs.webkit.org/show_bug.cgi?id=171083 - Try to figure out why this fails for some configs but not others, and resolve. 180 //TEST(WebKit 2, OpenAndCloseWindowAsyncCallbackException)180 //TEST(WebKit, OpenAndCloseWindowAsyncCallbackException) 181 181 //{ 182 182 // resetToConsistentState(); … … 229 229 @end 230 230 231 TEST(WebKit 2, OpenWindowFeatures)231 TEST(WebKit, OpenWindowFeatures) 232 232 { 233 233 resetToConsistentState(); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/Preferences.mm ¶
r210103 r221505 34 34 #import <wtf/RetainPtr.h> 35 35 36 TEST(WebKit 2, DefaultWKPreferences)36 TEST(WebKit, DefaultWKPreferences) 37 37 { 38 38 RetainPtr<WKPreferences> preferences = adoptNS([[WKPreferences alloc] init]); … … 43 43 } 44 44 45 TEST(WebKit 2, LoadsImagesAutomatically)45 TEST(WebKit, LoadsImagesAutomatically) 46 46 { 47 47 RetainPtr<WKPreferences> preferences = adoptNS([[WKPreferences alloc] init]); … … 54 54 } 55 55 56 TEST(WebKit 2, ExperimentalFeatures)56 TEST(WebKit, ExperimentalFeatures) 57 57 { 58 58 NSArray *features = [WKPreferences _experimentalFeatures]; -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/RemoteObjectRegistry.mm ¶
r216203 r221505 41 41 static bool isDone; 42 42 43 TEST(WebKit 2, RemoteObjectRegistry)43 TEST(WebKit, RemoteObjectRegistry) 44 44 { 45 45 @autoreleasepool { -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/RenderedImageWithOptions.mm ¶
r216203 r221505 66 66 } 67 67 68 TEST(WebKit 2, NodeHandleRenderedImageExcludingOverflow)68 TEST(WebKit, NodeHandleRenderedImageExcludingOverflow) 69 69 { 70 70 runTestWithWidth(nil, { 720, 540 }); 71 71 } 72 72 73 TEST(WebKit 2, NodeHandleRenderedImageWithWidth)73 TEST(WebKit, NodeHandleRenderedImageWithWidth) 74 74 { 75 75 runTestWithWidth(@(-1), { 0, 0 }); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/RunOpenPanel.mm ¶
r217865 r221505 53 53 namespace TestWebKitAPI { 54 54 55 TEST(WebKit 2, RunOpenPanelNonLatin1)55 TEST(WebKit, RunOpenPanelNonLatin1) 56 56 { 57 57 auto webView = adoptNS([[WKWebView alloc] initWithFrame:NSMakeRect(0, 0, 100, 100)]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/ShouldOpenExternalURLsInNewWindowActions.mm ¶
r208455 r221505 71 71 @end 72 72 73 TEST(WebKit 2, ShouldOpenExternalURLsInWindowOpen)73 TEST(WebKit, ShouldOpenExternalURLsInWindowOpen) 74 74 { 75 75 auto webView = adoptNS([[WKWebView alloc] initWithFrame:NSMakeRect(0, 0, 800, 600)]); … … 132 132 } 133 133 134 TEST(WebKit 2, ShouldOpenExternalURLsInTargetedLink)134 TEST(WebKit, ShouldOpenExternalURLsInTargetedLink) 135 135 { 136 136 auto webView = adoptNS([[WKWebView alloc] initWithFrame:NSMakeRect(0, 0, 800, 600)]); … … 209 209 } 210 210 211 TEST(WebKit 2, RestoreShouldOpenExternalURLsPolicyAfterCrash)211 TEST(WebKit, RestoreShouldOpenExternalURLsPolicyAfterCrash) 212 212 { 213 213 auto webView = adoptNS([[WKWebView alloc] initWithFrame:NSMakeRect(0, 0, 800, 600)]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/ShrinkToFit.mm ¶
r205329 r221505 37 37 static bool shrinkToFitDisabledDone; 38 38 39 TEST(WebKit 2, ShrinkToFit)39 TEST(WebKit, ShrinkToFit) 40 40 { 41 41 RetainPtr<WKWebView> webView = adoptNS([[WKWebView alloc] initWithFrame:NSMakeRect(0, 0, 100, 100)]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/UIDelegate.mm ¶
r221503 r221505 60 60 @end 61 61 62 TEST(WebKit 2, WKWebViewIsPlayingAudio)62 TEST(WebKit, WKWebViewIsPlayingAudio) 63 63 { 64 64 auto webView = adoptNS([[TestWKWebView alloc] initWithFrame:CGRectMake(0, 0, 800, 600) configuration:[[[WKWebViewConfiguration alloc] init] autorelease]]); … … 110 110 @end 111 111 112 TEST(WebKit 2, ShowWebView)112 TEST(WebKit, ShowWebView) 113 113 { 114 114 delegate = adoptNS([[UITestDelegate alloc] init]); … … 149 149 @end 150 150 151 TEST(WebKit 2, ToolbarVisible)151 TEST(WebKit, ToolbarVisible) 152 152 { 153 153 auto webView = adoptNS([[TestWKWebView alloc] initWithFrame:CGRectMake(0, 0, 800, 600) configuration:[[[WKWebViewConfiguration alloc] init] autorelease]]); … … 181 181 @end 182 182 183 TEST(WebKit 2, ClickAutoFillButton)183 TEST(WebKit, ClickAutoFillButton) 184 184 { 185 185 WKWebViewConfiguration *configuration = [WKWebViewConfiguration _test_configurationWithTestPlugInClassName:@"ClickAutoFillButton"]; … … 227 227 @end 228 228 229 TEST(WebKit 2, Focus)229 TEST(WebKit, Focus) 230 230 { 231 231 auto webView = adoptNS([[WKWebView alloc] initWithFrame:CGRectMake(0, 0, 800, 600)]); … … 268 268 @end 269 269 270 TEST(WebKit 2, SaveDataToFile)270 TEST(WebKit, SaveDataToFile) 271 271 { 272 272 auto webView = adoptNS([[TestWKWebView alloc] initWithFrame:CGRectMake(0, 0, 800, 600)]); … … 316 316 @end 317 317 318 TEST(WebKit 2, DidNotHandleWheelEvent)318 TEST(WebKit, DidNotHandleWheelEvent) 319 319 { 320 320 auto webView = adoptNS([[WKWebView alloc] initWithFrame:CGRectMake(0, 0, 800, 600)]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/VisibleContentRect.mm ¶
r216802 r221505 52 52 namespace TestWebKitAPI { 53 53 54 TEST(WebKit 2, VisibleContentRect_FullBounds)54 TEST(WebKit, VisibleContentRect_FullBounds) 55 55 { 56 56 auto config = adoptNS([[WKWebViewConfiguration alloc] init]); … … 60 60 } 61 61 62 TEST(WebKit 2, VisibleContentRect_FullBoundsWithinScrollView)62 TEST(WebKit, VisibleContentRect_FullBoundsWithinScrollView) 63 63 { 64 64 auto config = adoptNS([[WKWebViewConfiguration alloc] init]); … … 72 72 } 73 73 74 TEST(WebKit 2, VisibleContentRect_FullBoundsWhenClippedByNonScrollView)74 TEST(WebKit, VisibleContentRect_FullBoundsWhenClippedByNonScrollView) 75 75 { 76 76 auto config = adoptNS([[WKWebViewConfiguration alloc] init]); … … 86 86 } 87 87 88 TEST(WebKit 2, VisibleContentRect_ClippedBoundsWhenClippedByScrollView)88 TEST(WebKit, VisibleContentRect_ClippedBoundsWhenClippedByScrollView) 89 89 { 90 90 CGRect windowBounds = CGRectMake(0, 0, 800, 600); … … 103 103 } 104 104 105 TEST(WebKit 2, VisibleContentRect_ClippedBoundsWhenClippedByEnclosingView)105 TEST(WebKit, VisibleContentRect_ClippedBoundsWhenClippedByEnclosingView) 106 106 { 107 107 auto config = adoptNS([[WKWebViewConfiguration alloc] init]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/WKContentViewEditingActions.mm ¶
r218276 r221505 49 49 } 50 50 51 TEST(WebKit 2, WKContentViewEditingActions)51 TEST(WebKit, WKContentViewEditingActions) 52 52 { 53 53 [UIPasteboard generalPasteboard].items = @[]; -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/WKContentViewTargetForAction.mm ¶
r221415 r221505 45 45 @end 46 46 47 TEST(WebKit 2, WKContentViewTargetForAction)47 TEST(WebKit, WKContentViewTargetForAction) 48 48 { 49 49 auto webView = adoptNS([[TestWKContentViewTargetForActionView alloc] init]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/WKHTTPCookieStore.mm ¶
r219567 r221505 183 183 } 184 184 185 TEST(WebKit 2, WKHTTPCookieStore)185 TEST(WebKit, WKHTTPCookieStore) 186 186 { 187 187 runTestWithWebsiteDataStore([WKWebsiteDataStore defaultDataStore]); 188 188 } 189 189 190 TEST(WebKit 2, WKHTTPCookieStoreNonPersistent)190 TEST(WebKit, WKHTTPCookieStoreNonPersistent) 191 191 { 192 192 RetainPtr<WKWebsiteDataStore> nonPersistentDataStore; … … 198 198 } 199 199 200 TEST(WebKit 2, WKHTTPCookieStoreCustom)200 TEST(WebKit, WKHTTPCookieStoreCustom) 201 201 { 202 202 NSURL *cookieStorageFile = [NSURL fileURLWithPath:[@"~/Library/WebKit/TestWebKitAPI/CustomWebsiteData/CookieStorage/Cookie.File" stringByExpandingTildeInPath] isDirectory:NO]; … … 217 217 } 218 218 219 TEST(WebKit 2, CookieObserverCrash)219 TEST(WebKit, CookieObserverCrash) 220 220 { 221 221 RetainPtr<WKWebsiteDataStore> nonPersistentDataStore; … … 257 257 @end 258 258 259 TEST(WebKit 2, WKHTTPCookieStoreWithoutProcessPool)259 TEST(WebKit, WKHTTPCookieStoreWithoutProcessPool) 260 260 { 261 261 NSHTTPCookie *cookie = [NSHTTPCookie cookieWithProperties:[NSDictionary dictionaryWithObjectsAndKeys:@"127.0.0.1", NSHTTPCookieDomain, @"/", NSHTTPCookiePath, @"cookiename", NSHTTPCookieName, @"cookievalue", NSHTTPCookieValue, [NSDate distantFuture], NSHTTPCookieExpires, nil]]; -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/WKNSNumber.mm ¶
r205036 r221505 35 35 namespace TestWebKitAPI { 36 36 37 TEST(WebKit 2, WKNSNumber)37 TEST(WebKit, WKNSNumber) 38 38 { 39 39 auto booleanRef = adoptWK(WKBooleanCreate(true)); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/WKObject.mm ¶
r219764 r221505 36 36 namespace TestWebKitAPI { 37 37 38 TEST(WebKit 2, WKObject)38 TEST(WebKit, WKObject) 39 39 { 40 40 WKStringRef stringRef = WKStringCreateWithUTF8CString("just testing"); … … 51 51 } 52 52 53 TEST(WebKit 2, WKObject_classMethods)53 TEST(WebKit, WKObject_classMethods) 54 54 { 55 55 Class wkObjectClass = NSClassFromString(@"WKObject"); … … 59 59 } 60 60 61 TEST(WebKit 2, WKObject_classInDictionary)61 TEST(WebKit, WKObject_classInDictionary) 62 62 { 63 63 Class wkObjectClass = NSClassFromString(@"WKObject"); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/WKPDFViewResizeCrash.mm ¶
r205329 r221505 36 36 static bool finishedDispatch; 37 37 38 TEST(WebKit 2, WKPDFViewResizeCrash)38 TEST(WebKit, WKPDFViewResizeCrash) 39 39 { 40 40 RetainPtr<WKWebView> webView = adoptNS([[WKWebView alloc] initWithFrame:NSMakeRect(0, 0, 800, 600)]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/WKPDFViewStablePresentationUpdateCallback.mm ¶
r218917 r221505 34 34 #if WK_API_ENABLED && PLATFORM(IOS) 35 35 36 TEST(WebKit 2, WKPDFViewStablePresentationUpdateCallback)36 TEST(WebKit, WKPDFViewStablePresentationUpdateCallback) 37 37 { 38 38 RetainPtr<WKWebView> webView = adoptNS([[WKWebView alloc] initWithFrame:NSMakeRect(0, 0, 800, 600)]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/WKRequestActivatedElementInfo.mm ¶
r219768 r221505 48 48 } 49 49 50 TEST(WebKit 2, RequestActivatedElementInfoForLink)50 TEST(WebKit, RequestActivatedElementInfoForLink) 51 51 { 52 52 auto webView = adoptNS([[TestWKWebView alloc] initWithFrame:CGRectMake(0, 0, 320, 500)]); … … 73 73 } 74 74 75 TEST(WebKit 2, RequestActivatedElementInfoForBlank)75 TEST(WebKit, RequestActivatedElementInfoForBlank) 76 76 { 77 77 auto webView = adoptNS([[TestWKWebView alloc] initWithFrame:CGRectMake(0, 0, 320, 500)]); … … 92 92 } 93 93 94 TEST(WebKit 2, RequestActivatedElementInfoWithNestedSynchronousUpdates)94 TEST(WebKit, RequestActivatedElementInfoWithNestedSynchronousUpdates) 95 95 { 96 96 auto webView = adoptNS([[TestWKWebView alloc] initWithFrame:CGRectMake(0, 0, 320, 500)]); … … 116 116 } 117 117 118 TEST(WebKit 2, RequestActivatedElementInfoWithNestedRequests)118 TEST(WebKit, RequestActivatedElementInfoWithNestedRequests) 119 119 { 120 120 auto webView = adoptNS([[TestWKWebView alloc] initWithFrame:CGRectMake(0, 0, 320, 500)]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/WebGLPolicy.mm ¶
r221486 r221505 115 115 } 116 116 117 TEST(WebKit 2, WebGLPolicy)117 TEST(WebKit, WebGLPolicy) 118 118 { 119 119 htmlURL = [NSURL URLWithString:@"test:///html"]; -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/WebsiteDataStoreCustomPaths.mm ¶
r221337 r221505 69 69 } 70 70 71 TEST(WebKit 2, WebsiteDataStoreCustomPaths)71 TEST(WebKit, WebsiteDataStoreCustomPaths) 72 72 { 73 73 RetainPtr<WebsiteDataStoreCustomPathsMessageHandler> handler = adoptNS([[WebsiteDataStoreCustomPathsMessageHandler alloc] init]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/WebsitePolicies.mm ¶
r221172 r221505 126 126 @end 127 127 128 TEST(WebKit 2, WebsitePoliciesContentBlockersEnabled)128 TEST(WebKit, WebsitePoliciesContentBlockersEnabled) 129 129 { 130 130 [[_WKUserContentExtensionStore defaultStore] _removeAllContentExtensions]; … … 198 198 @end 199 199 200 TEST(WebKit 2, WebsitePoliciesAutoplayEnabled)200 TEST(WebKit, WebsitePoliciesAutoplayEnabled) 201 201 { 202 202 auto configuration = adoptNS([[WKWebViewConfiguration alloc] init]); … … 299 299 } 300 300 301 TEST(WebKit 2, WebsitePoliciesPlayAfterPreventedAutoplay)301 TEST(WebKit, WebsitePoliciesPlayAfterPreventedAutoplay) 302 302 { 303 303 auto configuration = adoptNS([[WKWebViewConfiguration alloc] init]); … … 367 367 } 368 368 369 TEST(WebKit 2, WebsitePoliciesPlayingWithoutInterference)369 TEST(WebKit, WebsitePoliciesPlayingWithoutInterference) 370 370 { 371 371 auto configuration = adoptNS([[WKWebViewConfiguration alloc] init]); … … 386 386 } 387 387 388 TEST(WebKit 2, WebsitePoliciesUserInterferenceWithPlaying)388 TEST(WebKit, WebsitePoliciesUserInterferenceWithPlaying) 389 389 { 390 390 auto configuration = adoptNS([[WKWebViewConfiguration alloc] init]); … … 510 510 @end 511 511 512 TEST(WebKit 2, WebsitePoliciesDuringRedirect)512 TEST(WebKit, WebsitePoliciesDuringRedirect) 513 513 { 514 514 auto configuration = adoptNS([[WKWebViewConfiguration alloc] init]); … … 530 530 } 531 531 532 TEST(WebKit 2, WebsitePoliciesUpdates)532 TEST(WebKit, WebsitePoliciesUpdates) 533 533 { 534 534 auto configuration = adoptNS([[WKWebViewConfiguration alloc] init]); … … 566 566 } 567 567 568 TEST(WebKit 2, WebsitePoliciesAutoplayQuirks)568 TEST(WebKit, WebsitePoliciesAutoplayQuirks) 569 569 { 570 570 auto configuration = adoptNS([[WKWebViewConfiguration alloc] init]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitLegacy/ios/AudioSessionCategoryIOS.mm ¶
r219191 r221505 60 60 namespace TestWebKitAPI { 61 61 62 TEST(WebKit 1, AudioSessionCategoryIOS)62 TEST(WebKitLegacy, AudioSessionCategoryIOS) 63 63 { 64 64 WebCore::Settings::setShouldManageAudioSessionCategory(true); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitLegacy/ios/SnapshotViaRenderInContext.mm ¶
r217296 r221505 61 61 } 62 62 63 TEST(WebKit 1, RenderInContextSnapshot)63 TEST(WebKitLegacy, RenderInContextSnapshot) 64 64 { 65 65 const NSInteger width = 800; -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/WebKitObjC/PreventImageLoadWithAutoResizing.mm ¶
r194950 r221505 41 41 namespace TestWebKitAPI { 42 42 43 TEST(WebKit 2, PreventImageLoadWithAutoResizingTest)43 TEST(WebKit, PreventImageLoadWithAutoResizingTest) 44 44 { 45 45 WKRetainPtr<WKContextRef> context = adoptWK(Util::createContextForInjectedBundleTest("DenyWillSendRequestTest")); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/ios/MemoryCacheAddImageToCacheIOS.mm ¶
r168970 r221505 30 30 namespace TestWebKitAPI { 31 31 32 TEST(WebKit 1, MemoryCacheAddImageToCache)32 TEST(WebKitLegacy, MemoryCacheAddImageToCache) 33 33 { 34 34 CGColorSpaceRef rgb = CGColorSpaceCreateDeviceRGB(); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/BackForwardList.mm ¶
r178293 r221505 53 53 namespace TestWebKitAPI { 54 54 55 TEST(WebKit 1, ReloadBackForward)55 TEST(WebKitLegacy, ReloadBackForward) 56 56 { 57 57 RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/CancelLoadFromResourceLoadDelegate.mm ¶
r178293 r221505 61 61 namespace TestWebKitAPI { 62 62 63 TEST(WebKit 1, CancelLoadFromResourceLoadDelegate)63 TEST(WebKitLegacy, CancelLoadFromResourceLoadDelegate) 64 64 { 65 65 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/CloseNewWindowInNavigationPolicyDelegate.mm ¶
r178293 r221505 68 68 namespace TestWebKitAPI { 69 69 70 TEST(WebKit 1, CloseNewWindowInNavigationPolicyDelegate)70 TEST(WebKitLegacy, CloseNewWindowInNavigationPolicyDelegate) 71 71 { 72 72 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/ContextMenuCanCopyURL.mm ¶
r208455 r221505 87 87 } 88 88 89 90 TEST(WebKit1, ContextMenuCanCopyURL) 89 TEST(WebKitLegacy, ContextMenuCanCopyURL) 91 90 { 92 91 RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:NSMakeRect(0,0,800,600) frameName:nil groupName:nil]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/ContextMenuDefaultItemsHaveTags.mm ¶
r208455 r221505 48 48 namespace TestWebKitAPI { 49 49 50 TEST(WebKit 1, ContextMenuDefaultItemsHaveTags)50 TEST(WebKitLegacy, ContextMenuDefaultItemsHaveTags) 51 51 { 52 52 RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:NSMakeRect(0, 0, 800, 600) frameName:nil groupName:nil]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/CrossPartitionFileSchemeAccess.mm ¶
r210600 r221505 88 88 namespace TestWebKitAPI { 89 89 90 TEST(WebKit 1, CrossPartitionFileSchemeAccess)90 TEST(WebKitLegacy, CrossPartitionFileSchemeAccess) 91 91 { 92 92 NSURL *url = [[NSBundle mainBundle] URLForResource:@"CrossPartitionFileSchemeAccess" withExtension:@"html" subdirectory:@"TestWebKitAPI.resources"]; -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/DOMHTMLTableCellCellAbove.mm ¶
r178293 r221505 55 55 } 56 56 57 TEST(WebKit 1, HTMLTableCellElementCellAbove)57 TEST(WebKitLegacy, HTMLTableCellElementCellAbove) 58 58 { 59 59 RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/DOMHTMLVideoElementWrapper.mm ¶
r197633 r221505 48 48 namespace TestWebKitAPI { 49 49 50 TEST(WebKit 1, DOMHTMLVideoElementWrapper)50 TEST(WebKitLegacy, DOMHTMLVideoElementWrapper) 51 51 { 52 52 RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/DOMNode.mm ¶
r208027 r221505 47 47 namespace TestWebKitAPI { 48 48 49 TEST(WebKit 1, DOMNodeCompareDocumentPosition)49 TEST(WebKitLegacy, DOMNodeCompareDocumentPosition) 50 50 { 51 51 RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/DOMNodeFromJSObject.mm ¶
r138747 r221505 34 34 namespace TestWebKitAPI { 35 35 36 TEST(WebKit 1, DOMNodeFromJSObject)36 TEST(WebKitLegacy, DOMNodeFromJSObject) 37 37 { 38 38 WebView *webView = [[WebView alloc] initWithFrame:NSZeroRect frameName:nil groupName:nil]; -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/DOMRangeOfString.mm ¶
r178293 r221505 47 47 namespace TestWebKitAPI { 48 48 49 TEST(WebKit 1, DOMRangeOfString)49 TEST(WebKitLegacy, DOMRangeOfString) 50 50 { 51 51 RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:NSZeroRect frameName:nil groupName:nil]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/DeviceScaleFactorInDashboardRegions.mm ¶
r178293 r221505 51 51 namespace TestWebKitAPI { 52 52 53 TEST(WebKit 1, DeviceScaleFactorInDashboardRegions)53 TEST(WebKitLegacy, DeviceScaleFactorInDashboardRegions) 54 54 { 55 55 NSRect viewFrame = NSMakeRect(0, 0, 800, 600); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/EarlyKVOCrash.mm ¶
r198604 r221505 79 79 namespace TestWebKitAPI { 80 80 81 TEST(WebKit 1, EarlyKVOCrash)81 TEST(WebKitLegacy, EarlyKVOCrash) 82 82 { 83 83 auto webView = adoptNS([[WebView alloc] initWithFrame:NSZeroRect frameName:nil groupName:nil]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/ElementAtPointInWebFrame.mm ¶
r178293 r221505 45 45 namespace TestWebKitAPI { 46 46 47 TEST(WebKit 1, ElementAtPoint)47 TEST(WebKitLegacy, ElementAtPoint) 48 48 { 49 49 RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/FirstResponderScrollingPosition.mm ¶
r191451 r221505 42 42 } 43 43 44 TEST(WebKit 2, FirstResponderScrollingPosition)44 TEST(WebKit, FirstResponderScrollingPosition) 45 45 { 46 46 WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextWithInjectedBundle()); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/FirstResponderSuppression.mm ¶
r215587 r221505 46 46 namespace TestWebKitAPI { 47 47 48 TEST(WebKit 2, FirstResponderSuppression)48 TEST(WebKit, FirstResponderSuppression) 49 49 { 50 50 RetainPtr<NSWindow> window = adoptNS([[NSWindow alloc] initWithContentRect:NSMakeRect(0, 0, 800, 600) styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:NO]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/FragmentNavigation.mm ¶
r178293 r221505 111 111 namespace TestWebKitAPI { 112 112 113 TEST(WebKit 1, FragmentNavigation)113 TEST(WebKitLegacy, FragmentNavigation) 114 114 { 115 115 @autoreleasepool { -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/HTMLCollectionNamedItem.mm ¶
r183976 r221505 49 49 namespace TestWebKitAPI { 50 50 51 TEST(WebKit 1, HTMLCollectionNamedItemTest)51 TEST(WebKitLegacy, HTMLCollectionNamedItemTest) 52 52 { 53 53 RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/HTMLFormCollectionNamedItem.mm ¶
r183976 r221505 49 49 namespace TestWebKitAPI { 50 50 51 TEST(WebKit 1, HTMLFormCollectionNamedItemTest)51 TEST(WebKitLegacy, HTMLFormCollectionNamedItemTest) 52 52 { 53 53 RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/InspectorBar.mm ¶
r186268 r221505 51 51 namespace TestWebKitAPI { 52 52 53 TEST(WebKit 1, InspectorBarTest)53 TEST(WebKitLegacy, InspectorBarTest) 54 54 { 55 55 RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/IsNavigationActionTrusted.mm ¶
r197151 r221505 82 82 #if WK_API_ENABLED 83 83 84 TEST(WebKit 2, IsNavigationActionTrusted)84 TEST(WebKit, IsNavigationActionTrusted) 85 85 { 86 86 @autoreleasepool { … … 100 100 #endif 101 101 102 TEST(WebKit 1, IsNavigationActionTrusted)102 TEST(WebKitLegacy, IsNavigationActionTrusted) 103 103 { 104 104 @autoreleasepool { -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/JSWrapperForNodeInWebFrame.mm ¶
r178293 r221505 51 51 namespace TestWebKitAPI { 52 52 53 TEST(WebKit 1, JSWrapperForNode)53 TEST(WebKitLegacy, JSWrapperForNode) 54 54 { 55 55 RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/LimitTitleSize.mm ¶
r215784 r221505 59 59 namespace TestWebKitAPI { 60 60 61 TEST(WebKit 1, LimitTitleSize)61 TEST(WebKitLegacy, LimitTitleSize) 62 62 { 63 63 RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/LoadInvalidURLRequest.mm ¶
r208089 r221505 63 63 namespace TestWebKitAPI { 64 64 65 TEST(WebKit 1, LoadInvalidURLRequest)65 TEST(WebKitLegacy, LoadInvalidURLRequest) 66 66 { 67 67 @autoreleasepool { -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/MediaPlaybackSleepAssertion.mm ¶
r217449 r221505 142 142 } 143 143 144 TEST(WebKit 1, MediaPlaybackSleepAssertion)144 TEST(WebKitLegacy, MediaPlaybackSleepAssertion) 145 145 { 146 146 didFinishLoad = false; -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/MemoryCacheDisableWithinResourceLoadDelegate.mm ¶
r178293 r221505 71 71 namespace TestWebKitAPI { 72 72 73 TEST(WebKit 1, MemoryCacheDisableWithinResourceLoadDelegate)73 TEST(WebKitLegacy, MemoryCacheDisableWithinResourceLoadDelegate) 74 74 { 75 75 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/MemoryCachePruneWithinResourceLoadDelegate.mm ¶
r178293 r221505 76 76 namespace TestWebKitAPI { 77 77 78 TEST(WebKit 1, DISABLED_MemoryCachePruneWithinResourceLoadDelegate)78 TEST(WebKitLegacy, DISABLED_MemoryCachePruneWithinResourceLoadDelegate) 79 79 { 80 80 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/MemoryPressureHandler.mm ¶
r208580 r221505 29 29 namespace TestWebKitAPI { 30 30 31 TEST(WebKit 1, MemoryPressureHandler)31 TEST(WebKitLegacy, MemoryPressureHandler) 32 32 { 33 33 WebInstallMemoryPressureHandler(); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/MenuTypesForMouseEvents.mm ¶
r220979 r221505 64 64 } 65 65 66 TEST(WebKit 1, MenuAndButtonForNormalLeftClick)66 TEST(WebKitLegacy, MenuAndButtonForNormalLeftClick) 67 67 { 68 68 buildAndPerformTest(NSEventTypeLeftMouseDown, 0, WebCore::LeftButton, NSMenuTypeNone); 69 69 } 70 70 71 TEST(WebKit 1, MenuAndButtonForNormalRightClick)71 TEST(WebKitLegacy, MenuAndButtonForNormalRightClick) 72 72 { 73 73 buildAndPerformTest(NSEventTypeRightMouseDown, 0, WebCore::RightButton, NSMenuTypeContextMenu); 74 74 } 75 75 76 TEST(WebKit 1, MenuAndButtonForNormalMiddleClick)76 TEST(WebKitLegacy, MenuAndButtonForNormalMiddleClick) 77 77 { 78 78 buildAndPerformTest(NSEventTypeOtherMouseDown, 0, WebCore::MiddleButton, NSMenuTypeNone); 79 79 } 80 80 81 TEST(WebKit 1, MenuAndButtonForControlLeftClick)81 TEST(WebKitLegacy, MenuAndButtonForControlLeftClick) 82 82 { 83 83 buildAndPerformTest(NSEventTypeLeftMouseDown, NSEventModifierFlagControl, WebCore::LeftButton, NSMenuTypeContextMenu); 84 84 } 85 85 86 TEST(WebKit 1, MenuAndButtonForControlRightClick)86 TEST(WebKitLegacy, MenuAndButtonForControlRightClick) 87 87 { 88 88 buildAndPerformTest(NSEventTypeRightMouseDown, NSEventModifierFlagControl, WebCore::RightButton, NSMenuTypeContextMenu); 89 89 } 90 90 91 TEST(WebKit 1, MenuAndButtonForControlMiddleClick)91 TEST(WebKitLegacy, MenuAndButtonForControlMiddleClick) 92 92 { 93 93 buildAndPerformTest(NSEventTypeOtherMouseDown, NSEventModifierFlagControl, WebCore::MiddleButton, NSMenuTypeNone); 94 94 } 95 95 96 TEST(WebKit 1, MenuAndButtonForShiftLeftClick)96 TEST(WebKitLegacy, MenuAndButtonForShiftLeftClick) 97 97 { 98 98 buildAndPerformTest(NSEventTypeLeftMouseDown, NSEventModifierFlagShift, WebCore::LeftButton, NSMenuTypeNone); 99 99 } 100 100 101 TEST(WebKit 1, MenuAndButtonForShiftRightClick)101 TEST(WebKitLegacy, MenuAndButtonForShiftRightClick) 102 102 { 103 103 buildAndPerformTest(NSEventTypeRightMouseDown, NSEventModifierFlagShift, WebCore::RightButton, NSMenuTypeContextMenu); 104 104 } 105 105 106 TEST(WebKit 1, MenuAndButtonForShiftMiddleClick)106 TEST(WebKitLegacy, MenuAndButtonForShiftMiddleClick) 107 107 { 108 108 buildAndPerformTest(NSEventTypeOtherMouseDown, NSEventModifierFlagShift, WebCore::MiddleButton, NSMenuTypeNone); 109 109 } 110 110 111 TEST(WebKit 1, MenuAndButtonForCommandLeftClick)111 TEST(WebKitLegacy, MenuAndButtonForCommandLeftClick) 112 112 { 113 113 buildAndPerformTest(NSEventTypeLeftMouseDown, NSEventModifierFlagCommand, WebCore::LeftButton, NSMenuTypeNone); 114 114 } 115 115 116 TEST(WebKit 1, MenuAndButtonForCommandRightClick)116 TEST(WebKitLegacy, MenuAndButtonForCommandRightClick) 117 117 { 118 118 buildAndPerformTest(NSEventTypeRightMouseDown, NSEventModifierFlagCommand, WebCore::RightButton, NSMenuTypeContextMenu); 119 119 } 120 120 121 TEST(WebKit 1, MenuAndButtonForCommandMiddleClick)121 TEST(WebKitLegacy, MenuAndButtonForCommandMiddleClick) 122 122 { 123 123 buildAndPerformTest(NSEventTypeOtherMouseDown, NSEventModifierFlagCommand, WebCore::MiddleButton, NSMenuTypeNone); 124 124 } 125 125 126 TEST(WebKit 1, MenuAndButtonForAltLeftClick)126 TEST(WebKitLegacy, MenuAndButtonForAltLeftClick) 127 127 { 128 128 buildAndPerformTest(NSEventTypeLeftMouseDown, NSEventModifierFlagOption, WebCore::LeftButton, NSMenuTypeNone); 129 129 } 130 130 131 TEST(WebKit 1, MenuAndButtonForAltRightClick)131 TEST(WebKitLegacy, MenuAndButtonForAltRightClick) 132 132 { 133 133 buildAndPerformTest(NSEventTypeRightMouseDown, NSEventModifierFlagOption, WebCore::RightButton, NSMenuTypeContextMenu); 134 134 } 135 135 136 TEST(WebKit 1, MenuAndButtonForAltMiddleClick)136 TEST(WebKitLegacy, MenuAndButtonForAltMiddleClick) 137 137 { 138 138 buildAndPerformTest(NSEventTypeOtherMouseDown, NSEventModifierFlagOption, WebCore::MiddleButton, NSMenuTypeNone); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/NavigatorLanguage.mm ¶
r208601 r221505 91 91 ]; 92 92 93 TEST(WebKit 1, NavigatorLanguage)93 TEST(WebKitLegacy, NavigatorLanguage) 94 94 { 95 95 RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:NSZeroRect frameName:nil groupName:nil]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/RenderedImageFromDOMNode.mm ¶
r178293 r221505 47 47 namespace TestWebKitAPI { 48 48 49 TEST(WebKit 1, RenderedImageFromDOMNode)49 TEST(WebKitLegacy, RenderedImageFromDOMNode) 50 50 { 51 51 RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:NSMakeRect(0, 0, 400, 400) frameName:nil groupName:nil]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/RenderedImageFromDOMRange.mm ¶
r178293 r221505 47 47 namespace TestWebKitAPI { 48 48 49 TEST(WebKit 1, RenderedImageFromDOMRange)49 TEST(WebKitLegacy, RenderedImageFromDOMRange) 50 50 { 51 51 RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/SetAndUpdateCacheModel.mm ¶
r182434 r221505 36 36 namespace TestWebKitAPI { 37 37 38 TEST(WebKit 1, SetAndUpdateCacheModelInitialModel)38 TEST(WebKitLegacy, SetAndUpdateCacheModelInitialModel) 39 39 { 40 40 EXPECT_EQ((int)WebCacheModelDocumentViewer, (int)[WebView _cacheModel]); … … 45 45 } 46 46 47 TEST(WebKit 1, SetAndUpdateCacheModelStandardPreferenceChange)47 TEST(WebKitLegacy, SetAndUpdateCacheModelStandardPreferenceChange) 48 48 { 49 49 EXPECT_EQ((int)WebCacheModelDocumentViewer, (int)[WebView _cacheModel]); … … 59 59 } 60 60 61 TEST(WebKit 1, SetAndUpdateCacheModelPreferencesChangeMix)61 TEST(WebKitLegacy, SetAndUpdateCacheModelPreferencesChangeMix) 62 62 { 63 63 // On change, the cache model always take the highest value of any preference bound to a WebView. -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/SetDocumentURI.mm ¶
r204256 r221505 48 48 namespace TestWebKitAPI { 49 49 50 TEST(WebKit 1, SetDocumentURITestFile)50 TEST(WebKitLegacy, SetDocumentURITestFile) 51 51 { 52 52 RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]); … … 65 65 } 66 66 67 TEST(WebKit 1, SetDocumentURITestURL)67 TEST(WebKitLegacy, SetDocumentURITestURL) 68 68 { 69 69 RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]); … … 85 85 } 86 86 87 TEST(WebKit 1, SetDocumentURITestString)87 TEST(WebKitLegacy, SetDocumentURITestString) 88 88 { 89 89 RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]); … … 101 101 } 102 102 103 TEST(WebKit 1, SetDocumentURITestNull)103 TEST(WebKitLegacy, SetDocumentURITestNull) 104 104 { 105 105 RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/SimplifyMarkup.mm ¶
r178293 r221505 48 48 namespace TestWebKitAPI { 49 49 50 TEST(WebKit 1, SimplifyMarkupTest)50 TEST(WebKitLegacy, SimplifyMarkupTest) 51 51 { 52 52 RetainPtr<WebView> webView1 = adoptNS([[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/StopLoadingFromDidFinishLoading.mm ¶
r178293 r221505 47 47 namespace TestWebKitAPI { 48 48 49 TEST(WebKit 1, StopLoadingFromDidFinishLoading)49 TEST(WebKitLegacy, StopLoadingFromDidFinishLoading) 50 50 { 51 51 AutodrainedPool pool; -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/StopLoadingFromDidReceiveResponse.mm ¶
r178293 r221505 54 54 namespace TestWebKitAPI { 55 55 56 TEST(WebKit 1, StopLoadingFromDidReceiveResponse)56 TEST(WebKitLegacy, StopLoadingFromDidReceiveResponse) 57 57 { 58 58 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/StringByEvaluatingJavaScriptFromString.mm ¶
r149716 r221505 30 30 namespace TestWebKitAPI { 31 31 32 TEST(WebKit 1, StringByEvaluatingJavaScriptFromString)32 TEST(WebKitLegacy, StringByEvaluatingJavaScriptFromString) 33 33 { 34 34 // maps expected result <= JavaScript expression -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/StringTruncator.mm ¶
r219050 r221505 31 31 namespace TestWebKitAPI { 32 32 33 TEST(WebKit 1, StringTruncator)33 TEST(WebKitLegacy, StringTruncator) 34 34 { 35 35 @autoreleasepool { -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/SubresourceErrorCrash.mm ¶
r101939 r221505 28 28 namespace TestWebKitAPI { 29 29 30 TEST(WebKit 1, SubresourceErrorCrash)30 TEST(WebKitLegacy, SubresourceErrorCrash) 31 31 { 32 32 WebView *webView = [[WebView alloc] initWithFrame:NSZeroRect frameName:@"" groupName:@""]; -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/TypingStyleCrash.mm ¶
r175613 r221505 28 28 namespace TestWebKitAPI { 29 29 30 TEST(WebKit 1, TypingStyleCrash)30 TEST(WebKitLegacy, TypingStyleCrash) 31 31 { 32 32 WebView *webView = [[WebView alloc] init]; -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/WebScriptObjectDescription.mm ¶
r199834 r221505 59 59 namespace TestWebKitAPI { 60 60 61 TEST(WebKit 1, WebScriptObjectDescription)61 TEST(WebKitLegacy, WebScriptObjectDescription) 62 62 { 63 63 RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/WebViewCanPasteURL.mm ¶
r111080 r221505 33 33 namespace TestWebKitAPI { 34 34 35 TEST(WebKit 1, WebViewCanPasteURL)35 TEST(WebKitLegacy, WebViewCanPasteURL) 36 36 { 37 37 WebView *webView = [[WebView alloc] initWithFrame:NSZeroRect frameName:nil groupName:nil]; -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/WebViewCanPasteZeroPng.mm ¶
r122228 r221505 33 33 namespace TestWebKitAPI { 34 34 35 TEST(WebKit 1, WebViewCanPasteZeroPng)35 TEST(WebKitLegacy, WebViewCanPasteZeroPng) 36 36 { 37 37 WebView *webView = [[WebView alloc] initWithFrame:NSZeroRect frameName:nil groupName:nil]; -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/WebViewCloseInsideDidFinishLoadForFrame.mm ¶
r186579 r221505 49 49 namespace TestWebKitAPI { 50 50 51 TEST(WebKit 1, WebViewCloseInsideDidFinishLoadForFrame)51 TEST(WebKitLegacy, WebViewCloseInsideDidFinishLoadForFrame) 52 52 { 53 53 @autoreleasepool { -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/WebViewDidCreateJavaScriptContext.mm ¶
r185487 r221505 137 137 namespace TestWebKitAPI { 138 138 139 TEST(WebKit 1, DidCreateJavaScriptContextSanity1)139 TEST(WebKitLegacy, DidCreateJavaScriptContextSanity1) 140 140 { 141 141 didFinishLoad = false; … … 163 163 } 164 164 165 TEST(WebKit 1, DidCreateJavaScriptContextSanity2)165 TEST(WebKitLegacy, DidCreateJavaScriptContextSanity2) 166 166 { 167 167 didCallWindowCallback = false; … … 186 186 } 187 187 188 TEST(WebKit 1, DidCreateJavaScriptContextCallJSFunctionFromObjCCallbackTest)188 TEST(WebKitLegacy, DidCreateJavaScriptContextCallJSFunctionFromObjCCallbackTest) 189 189 { 190 190 @autoreleasepool { … … 210 210 } 211 211 212 TEST(WebKit 1, DidCreateJavaScriptContextAddCustomPropertiesFromJSTest)212 TEST(WebKitLegacy, DidCreateJavaScriptContextAddCustomPropertiesFromJSTest) 213 213 { 214 214 didFindMyCustomProperty = false; … … 236 236 } 237 237 238 TEST(WebKit 1, DidCreateJavaScriptContextAddCustomPropertiesFromObjCTest)238 TEST(WebKitLegacy, DidCreateJavaScriptContextAddCustomPropertiesFromObjCTest) 239 239 { 240 240 didFindMyCustomProperty = false; … … 264 264 } 265 265 266 TEST(WebKit 1, DidCreateJavaScriptContextBackForwardCacheTest)266 TEST(WebKitLegacy, DidCreateJavaScriptContextBackForwardCacheTest) 267 267 { 268 268 didInsertMyCustomProperty = false; … … 307 307 } 308 308 309 TEST(WebKit 1, ReportExceptionTest)309 TEST(WebKitLegacy, ReportExceptionTest) 310 310 { 311 311 didReportException = false; -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/WebViewDidRemoveFrameFromHierarchy.mm ¶
r178293 r221505 51 51 namespace TestWebKitAPI { 52 52 53 TEST(WebKit 1, DidRemoveFrameFromHierarchy)53 TEST(WebKitLegacy, DidRemoveFrameFromHierarchy) 54 54 { 55 55 RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]); -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/WebViewIconLoading.mm ¶
r219099 r221505 156 156 namespace TestWebKitAPI { 157 157 158 TEST(WebKit 1, IconLoadingDelegateDefaultFirst)158 TEST(WebKitLegacy, IconLoadingDelegateDefaultFirst) 159 159 { 160 160 [NSURLProtocol registerClass:[IconLoadingProtocol class]]; … … 197 197 } 198 198 199 TEST(WebKit 1, IconLoadingDelegateCustomFirst)199 TEST(WebKitLegacy, IconLoadingDelegateCustomFirst) 200 200 { 201 201 [NSURLProtocol registerClass:[IconLoadingProtocol class]]; -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/WillPerformClientRedirectToURLCrash.mm ¶
r178293 r221505 73 73 namespace TestWebKitAPI { 74 74 75 TEST(WebKit 1, WillPerformClientRedirectToURLCrash)75 TEST(WebKitLegacy, WillPerformClientRedirectToURLCrash) 76 76 { 77 77 @autoreleasepool { -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/WillSendSubmitEvent.mm ¶
r168177 r221505 58 58 namespace TestWebKitAPI { 59 59 60 TEST(WebKit 1, WillSendSubmitEvent)60 TEST(WebKitLegacy, WillSendSubmitEvent) 61 61 { 62 62 @autoreleasepool { -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/WindowlessWebViewWithMedia.mm ¶
r178293 r221505 62 62 } 63 63 64 TEST(WebKit 1, WindowlessWebViewWithMedia)64 TEST(WebKitLegacy, WindowlessWebViewWithMedia) 65 65 { 66 66 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; -
TabularUnified trunk/Tools/TestWebKitAPI/Tests/mac/WordBoundaryTypingAttributes.mm ¶
r187449 r221505 46 46 namespace TestWebKitAPI { 47 47 48 TEST(WebKit 1, WordBoundaryTypingAttributes)48 TEST(WebKitLegacy, WordBoundaryTypingAttributes) 49 49 { 50 50 RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]);
Note:
See TracChangeset
for help on using the changeset viewer.