Skip to content

Instantly share code, notes, and snippets.

@hallvors
Created July 23, 2014 10:48
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 hallvors/be56ad9be3b56786b783 to your computer and use it in GitHub Desktop.
Save hallvors/be56ad9be3b56786b783 to your computer and use it in GitHub Desktop.
test slimerjs issue 194
var page = require('webpage').create();
page.onConsoleMessage = function(message, line, file){
console.log(message);
}
page.open('data:text/html,<script>console.log("a", "b", "c", 100)</script><p>Hello world</p>', function(){setTimeout(phantom.exit, 1000)});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment