Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / platform_apps / messaging / app2 / background.js
index e078fa3..2555b8a 100644 (file)
@@ -15,7 +15,10 @@ chrome.runtime.onConnectExternal.addListener(function(port) {
 });
 
 chrome.runtime.onMessageExternal.addListener(function(msg, sender, callback) {
-  chrome.test.assertEq({id: otherId}, sender);
+  chrome.test.assertEq({
+    id: otherId,
+    url: 'chrome-extension://' + otherId + '/_generated_background_page.html'
+  }, sender);
   if (msg == 'hello')
     callback('hello_response');
   else