Skip to content

Instantly share code, notes, and snippets.

@tlync
Created May 24, 2011 09:16
Show Gist options
  • Save tlync/988407 to your computer and use it in GitHub Desktop.
Save tlync/988407 to your computer and use it in GitHub Desktop.
bookmarklet: list webkit properties
javascript:(function(){var p=[];for(var i in window){if(/webkit/i.test(i))p.push(i);}p.sort();alert(p.join('\n'));})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment