Title: [224892] trunk/LayoutTests
Revision
224892
Author
cdu...@apple.com
Date
2017-11-15 11:50:41 -0800 (Wed, 15 Nov 2017)

Log Message

Unreviewed, fix tests introduced in r224880.

This is needed because of the changes in r224876.

* http/tests/workers/service/Client-properties.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (224891 => 224892)


--- trunk/LayoutTests/ChangeLog	2017-11-15 19:40:47 UTC (rev 224891)
+++ trunk/LayoutTests/ChangeLog	2017-11-15 19:50:41 UTC (rev 224892)
@@ -1,3 +1,11 @@
+2017-11-15  Chris Dumez  <cdu...@apple.com>
+
+        Unreviewed, fix tests introduced in r224880.
+
+        This is needed because of the changes in r224876.
+
+        * http/tests/workers/service/Client-properties.html:
+
 2017-11-15  Youenn Fablet  <you...@apple.com>
 
         Some service worker tests are flaky due to console log messages

Modified: trunk/LayoutTests/http/tests/workers/service/Client-properties.html (224891 => 224892)


--- trunk/LayoutTests/http/tests/workers/service/Client-properties.html	2017-11-15 19:40:47 UTC (rev 224891)
+++ trunk/LayoutTests/http/tests/workers/service/Client-properties.html	2017-11-15 19:50:41 UTC (rev 224892)
@@ -18,8 +18,8 @@
         logWindow.log(event.data);
 });
 
-navigator.serviceWorker.register("resources/Client-properties-worker.js", { }).then(function() {
-    navigator.serviceWorker.controller.postMessage("TEST");
+navigator.serviceWorker.register("resources/Client-properties-worker.js", { }).then(function(registration) {
+    registration.installing.postMessage("TEST");
 });
 </script>
 </body>
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to