Title: [238069] trunk/Tools
Revision
238069
Author
[email protected]
Date
2018-11-10 12:12:06 -0800 (Sat, 10 Nov 2018)

Log Message

[WPE][GTK] API test /webkit/WebKitSettings/webkit-settings is failing
https://bugs.webkit.org/show_bug.cgi?id=191221

Unreviewed, fix a typo from the previous patch. After disabling the setting, we should test
that it is disabled, but we're testing that it is enabled, because I failed to update this
line.

* TestWebKitAPI/Tests/WebKitGLib/TestWebKitSettings.cpp:
(testWebKitSettings):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (238068 => 238069)


--- trunk/Tools/ChangeLog	2018-11-10 19:52:32 UTC (rev 238068)
+++ trunk/Tools/ChangeLog	2018-11-10 20:12:06 UTC (rev 238069)
@@ -1,3 +1,15 @@
+2018-11-10  Michael Catanzaro  <[email protected]>
+
+        [WPE][GTK] API test /webkit/WebKitSettings/webkit-settings is failing
+        https://bugs.webkit.org/show_bug.cgi?id=191221
+
+        Unreviewed, fix a typo from the previous patch. After disabling the setting, we should test
+        that it is disabled, but we're testing that it is enabled, because I failed to update this
+        line.
+
+        * TestWebKitAPI/Tests/WebKitGLib/TestWebKitSettings.cpp:
+        (testWebKitSettings):
+
 2018-11-10  Tim Horton  <[email protected]>
 
         Make it possible to edit images inline

Modified: trunk/Tools/TestWebKitAPI/Tests/WebKitGLib/TestWebKitSettings.cpp (238068 => 238069)


--- trunk/Tools/TestWebKitAPI/Tests/WebKitGLib/TestWebKitSettings.cpp	2018-11-10 19:52:32 UTC (rev 238068)
+++ trunk/Tools/TestWebKitAPI/Tests/WebKitGLib/TestWebKitSettings.cpp	2018-11-10 20:12:06 UTC (rev 238069)
@@ -317,7 +317,7 @@
     // MediaSource is enabled by default
     g_assert(webkit_settings_get_enable_mediasource(settings));
     webkit_settings_set_enable_mediasource(settings, FALSE);
-    g_assert(webkit_settings_get_enable_mediasource(settings));
+    g_assert(!webkit_settings_get_enable_mediasource(settings));
 
     // EncryptedMedia is disabled by default
     g_assert(!webkit_settings_get_enable_encrypted_media(settings));
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to