Title: [200670] trunk/Tools
Revision
200670
Author
[email protected]
Date
2016-05-10 21:26:04 -0700 (Tue, 10 May 2016)

Log Message

Another attempt to fix the build after r200668.

Unreviewed build fix.

* TestWebKitAPI/Tests/WebKit2Cocoa/Coding.mm:
(TEST):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (200669 => 200670)


--- trunk/Tools/ChangeLog	2016-05-11 03:57:13 UTC (rev 200669)
+++ trunk/Tools/ChangeLog	2016-05-11 04:26:04 UTC (rev 200670)
@@ -1,3 +1,12 @@
+2016-05-10  Ryan Haddad  <[email protected]>
+
+        Another attempt to fix the build after r200668.
+
+        Unreviewed build fix.
+
+        * TestWebKitAPI/Tests/WebKit2Cocoa/Coding.mm:
+        (TEST):
+
 2016-05-10  Dan Bernstein  <[email protected]>
 
         Tried to fix the Mac build after r200668.

Modified: trunk/Tools/TestWebKitAPI/Tests/WebKit2Cocoa/Coding.mm (200669 => 200670)


--- trunk/Tools/TestWebKitAPI/Tests/WebKit2Cocoa/Coding.mm	2016-05-11 03:57:13 UTC (rev 200669)
+++ trunk/Tools/TestWebKitAPI/Tests/WebKit2Cocoa/Coding.mm	2016-05-11 04:26:04 UTC (rev 200670)
@@ -97,9 +97,9 @@
     [a setSuppressesIncrementalRendering:YES];
     [a setApplicationNameForUserAgent:@"Application Name"];
     [a setAllowsAirPlayForMediaPlayback:NO];
-    [a setDataDetectorTypes:WKDataDetectorTypeAll];
 
 #if PLATFORM(IOS)
+    [a setDataDetectorTypes:WKDataDetectorTypeAll];
     [a setAllowsInlineMediaPlayback:YES];
     [a setRequiresUserActionForMediaPlayback:NO];
     [a setSelectionGranularity:WKSelectionGranularityCharacter];
@@ -111,9 +111,9 @@
     EXPECT_EQ([a suppressesIncrementalRendering], [b suppressesIncrementalRendering]);
     EXPECT_TRUE([[a applicationNameForUserAgent] isEqualToString:[b applicationNameForUserAgent]]);
     EXPECT_EQ([a allowsAirPlayForMediaPlayback], [b allowsAirPlayForMediaPlayback]);
-    EXPECT_EQ([a dataDetectorTypes], [b dataDetectorTypes]);
 
 #if PLATFORM(IOS)
+    EXPECT_EQ([a dataDetectorTypes], [b dataDetectorTypes]);
     EXPECT_EQ([a allowsInlineMediaPlayback], [b allowsInlineMediaPlayback]);
     EXPECT_EQ([a requiresUserActionForMediaPlayback], [b requiresUserActionForMediaPlayback]);
     EXPECT_EQ([a selectionGranularity], [b selectionGranularity]);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to