Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / http / tests / serviceworker / interfaces.html
index 2170925..6a82d26 100644 (file)
@@ -7,7 +7,7 @@
 <script>
 
 test(function() {
-    verifyInterface(
+    verify_interface(
       'ServiceWorkerContainer', navigator.serviceWorker,
       {
         register: 'function',
@@ -17,14 +17,14 @@ test(function() {
 
 async_test(function(t) {
     var EVENT_HANDLER = 'object';
-    var scope = 'scope/interfaces-and-attributes';
+    var scope = 'resources/scope/interfaces-and-attributes';
     var registration;
 
     service_worker_unregister_and_register(
         t, 'resources/empty-worker.js', scope)
       .then(function(r) {
           registration = r;
-          verifyInterface(
+          verify_interface(
             'ServiceWorkerRegistration', registration,
             {
               installing: 'object',
@@ -37,7 +37,7 @@ async_test(function(t) {
           return wait_for_update(t, registration);
         })
       .then(function(worker) {
-          verifyInterface(
+          verify_interface(
             'ServiceWorker', worker,
             {
               scriptURL: 'string',