Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(40)

Side by Side Diff: LayoutTests/vibration/vibration-detached-no-crash.html

Issue 298683002: navigator.vibrate() crash avoidance when in a detached state. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rephrase null check Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <body>
3 <head>
4 <script src="../resources/js-test.js"></script>
5 <script src="vibration-utils.js"></script>
6 </head>
7 <script>
8 description("Accessing navigator.vibrate on a closed window.");
9
10 window.jsTestIsAsync = true;
11
12 var w;
13 function processMessage(event) {
14 if (event.data == "opened") {
15 w.close();
16 } else if (event.data == "closed") {
17 shouldBeFalse("w.navigator.vibrate([])");
18 finishJSTest();
19 }
20 }
21
22 if (window.testRunner) {
23 testRunner.dumpAsText();
24 testRunner.setCanOpenWindows();
25 }
26 w = window.open('resources/vibration-detached-no-crash-new-window.html');
27 window.addEventListener("message", processMessage, false);
28 </script>
29 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698