Title: [245363] trunk/LayoutTests
Revision
245363
Author
[email protected]
Date
2019-05-15 15:37:12 -0700 (Wed, 15 May 2019)

Log Message

REGRESSION (r240644): Layout Test inspector/page/overrideSetting-ICECandidateFilteringEnabled.html is a flaky timeout
https://bugs.webkit.org/show_bug.cgi?id=194437
<rdar://problem/48008005>

Reviewed by Joseph Pecoraro.

* inspector/page/overrideSetting-ICECandidateFilteringEnabled.html:
* inspector/page/overrideSetting-ICECandidateFilteringEnabled-expected.txt:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (245362 => 245363)


--- trunk/LayoutTests/ChangeLog	2019-05-15 22:36:34 UTC (rev 245362)
+++ trunk/LayoutTests/ChangeLog	2019-05-15 22:37:12 UTC (rev 245363)
@@ -1,5 +1,16 @@
 2019-05-15  Devin Rousso  <[email protected]>
 
+        REGRESSION (r240644): Layout Test inspector/page/overrideSetting-ICECandidateFilteringEnabled.html is a flaky timeout
+        https://bugs.webkit.org/show_bug.cgi?id=194437
+        <rdar://problem/48008005>
+
+        Reviewed by Joseph Pecoraro.
+
+        * inspector/page/overrideSetting-ICECandidateFilteringEnabled.html:
+        * inspector/page/overrideSetting-ICECandidateFilteringEnabled-expected.txt:
+
+2019-05-15  Devin Rousso  <[email protected]>
+
         REGRESSION (r242741) [Mac WK1 Debug] Layout Test inspector/timeline/exception-in-injected-script-while-recording.html is a flaky crash
         https://bugs.webkit.org/show_bug.cgi?id=197442
         <rdar://problem/50354090>

Modified: trunk/LayoutTests/inspector/page/overrideSetting-ICECandidateFilteringEnabled-expected.txt (245362 => 245363)


--- trunk/LayoutTests/inspector/page/overrideSetting-ICECandidateFilteringEnabled-expected.txt	2019-05-15 22:36:34 UTC (rev 245362)
+++ trunk/LayoutTests/inspector/page/overrideSetting-ICECandidateFilteringEnabled-expected.txt	2019-05-15 22:37:12 UTC (rev 245363)
@@ -8,8 +8,4 @@
 PASS: created offer
 PASS: received ICE candidate.
 PASS: Should be able to establish a connection when filtering ice candidates.
-Removing ICECandidateFilteringEnabled override...
-Creating data channel...
-PASS: created offer
-PASS: Should not be able to establish a connection when filtering ice candidates.
 

Modified: trunk/LayoutTests/inspector/page/overrideSetting-ICECandidateFilteringEnabled.html (245362 => 245363)


--- trunk/LayoutTests/inspector/page/overrideSetting-ICECandidateFilteringEnabled.html	2019-05-15 22:36:34 UTC (rev 245362)
+++ trunk/LayoutTests/inspector/page/overrideSetting-ICECandidateFilteringEnabled.html	2019-05-15 22:37:12 UTC (rev 245363)
@@ -43,8 +43,6 @@
 
 function test()
 {
-    InspectorTest.debug();
-
     let suite = InspectorTest.createAsyncSuite("Page.overrideSetting");
 
     suite.addTestCase({
@@ -59,15 +57,6 @@
                 InspectorTest.evaluateInPage(`createDataChannel()`),
             ])
             InspectorTest.expectThat(overriddenResult.data.success, "Should be able to establish a connection when filtering ice candidates.");
-
-            InspectorTest.log("Removing ICECandidateFilteringEnabled override...");
-            await PageAgent.overrideSetting(PageAgent.Setting.ICECandidateFilteringEnabled);
-
-            let [originalResult] = await Promise.all([
-                InspectorTest.awaitEvent("DataChannel"),
-                InspectorTest.evaluateInPage(`createDataChannel()`),
-            ])
-            InspectorTest.expectFalse(originalResult.data.success, "Should not be able to establish a connection when filtering ice candidates.");
         },
     });
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to