Skip to content

Instantly share code, notes, and snippets.

@arantius
Created September 6, 2012 14:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arantius/3656920 to your computer and use it in GitHub Desktop.
Save arantius/3656920 to your computer and use it in GitHub Desktop.
Issue 1620: alert + setTimeout + grant none test
// ==UserScript==
// @name Issue 1620: alert + setTimeout + grant none test
// @namespace http://arantius.com/misc/greasemonkey
// @include https://github.com/greasemonkey/greasemonkey/issues/1620
// @include https://gist.github.com/3656920
// @version 1
// @grant GM_log
// ==/UserScript==
alert(1);
setTimeout(alert, 500, 2);
setTimeout(alert, 500, 3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment