Index: content/test/data/service_worker/while_true_in_install_worker.js |
diff --git a/chrome/test/data/ssl/write_to_title.js b/content/test/data/service_worker/while_true_in_install_worker.js |
similarity index 78% |
copy from chrome/test/data/ssl/write_to_title.js |
copy to content/test/data/service_worker/while_true_in_install_worker.js |
index 747eb604156d99ab8c8b638a0085ce3152af4a94..33d1bf76930e595798a7170bad40c402fe6818fe 100644 |
--- a/chrome/test/data/ssl/write_to_title.js |
+++ b/content/test/data/service_worker/while_true_in_install_worker.js |
@@ -1,4 +1,5 @@ |
// Copyright 2015 The Chromium Authors. All rights reserved. |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-document.title = "This script has loaded"; |
+ |
+oninstall = function() { while(true) { } }; |