| <script type="text/javascript"> |
| document.getElementById("result").innerHTML += message + "<br>"; |
| if (!window.webkitNotifications) { |
| log("FAIL: No webkitNotifications interface!"); |
| var N = window.webkitNotifications.checkPermission(); |
| log("PASS: Permission not granted."); |
| log("FAIL: Permission shouldn't be granted."); |
| testRunner.grantWebNotificationPermission("file://"); |
| N = window.webkitNotifications.checkPermission(); |
| log("PASS: Permission granted."); |
| log("FAIL: Permission not granted."); |
| <p>Checking permission...</p> |
| <script type="text/javascript"> |