Index: chrome/test/data/extensions/app_forbidden_apis/onbeforeunload/background.js |
diff --git a/chrome/test/data/extensions/app_forbidden_apis/onbeforeunload/background.js b/chrome/test/data/extensions/app_forbidden_apis/onbeforeunload/background.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d0ffcaadae996862e28188fe658e9d39de14b944 |
--- /dev/null |
+++ b/chrome/test/data/extensions/app_forbidden_apis/onbeforeunload/background.js |
@@ -0,0 +1,27 @@ |
+// Copyright 2016 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. |
+ |
+'use strict'; |
+ |
+var didRun = sessionStorage.didRun; |
+ |
+function beforeUnload() { |
+ chrome.test.fail(); |
+} |
+ |
+try { |
+ delete window.onbeforeunload; |
+ window.onbeforeunload = beforeUnload; |
+} catch (e) {} |
+ |
+try { |
+ window.addEventListener('beforeunload', beforeUnload); |
+} catch (e) {} |
+ |
+if (!didRun) { |
+ sessionStorage.didRun = true; |
+ location.reload(); |
+} else { |
+ chrome.test.succeed(); |
+} |