Title: [219362] trunk/LayoutTests
Revision
219362
Author
[email protected]
Date
2017-07-11 14:07:49 -0700 (Tue, 11 Jul 2017)

Log Message

We should do ICE candidate filtering at the Document level
https://bugs.webkit.org/show_bug.cgi?id=173861
<rdar://problem/33122058>

Unreviewed.

Patch by Youenn Fablet <[email protected]> on 2017-07-11

* resources/testharnessreport.js: Not calling setICECandidateFiltering if not defined.

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (219361 => 219362)


--- trunk/LayoutTests/ChangeLog	2017-07-11 21:07:08 UTC (rev 219361)
+++ trunk/LayoutTests/ChangeLog	2017-07-11 21:07:49 UTC (rev 219362)
@@ -1,3 +1,13 @@
+2017-07-11  Youenn Fablet  <[email protected]>
+
+        We should do ICE candidate filtering at the Document level
+        https://bugs.webkit.org/show_bug.cgi?id=173861
+        <rdar://problem/33122058>
+
+        Unreviewed.
+
+        * resources/testharnessreport.js: Not calling setICECandidateFiltering if not defined.
+
 2017-07-10  Sam Weinig  <[email protected]>
 
         [WebIDL] Convert MutationCallback to be a normal generate callback

Modified: trunk/LayoutTests/resources/testharnessreport.js (219361 => 219362)


--- trunk/LayoutTests/resources/testharnessreport.js	2017-07-11 21:07:08 UTC (rev 219361)
+++ trunk/LayoutTests/resources/testharnessreport.js	2017-07-11 21:07:49 UTC (rev 219362)
@@ -23,7 +23,7 @@
         setTimeout(timeout, testRunner.timeout * 0.9);
 }
 
-if (self.internals)
+if (self.internals && internals.setICECandidateFiltering)
     internals.setICECandidateFiltering(false);
 
 // Function used to convert the test status code into
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to