Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / http / tests / serviceworker / chromium / resources / xhr-is-not-exposed-to-service-workers.js
1 importScripts('../../resources/worker-testharness.js');
2
3 test(function() {
4     assert_false(
5         'XMLHttpRequest' in self,
6         'XMLHttpRequest should not be in scope.');
7   }, 'XMLHttpRequest is not exposed to ServiceWorkerGlobalScope');