summaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/phantomjs/lib/phantom/examples/loadurlwithoutcss.coffee
diff options
context:
space:
mode:
Diffstat (limited to 'vnfmarket/src/main/webapp/vnfmarket/node_modules/phantomjs/lib/phantom/examples/loadurlwithoutcss.coffee')
-rw-r--r--vnfmarket/src/main/webapp/vnfmarket/node_modules/phantomjs/lib/phantom/examples/loadurlwithoutcss.coffee20
1 files changed, 20 insertions, 0 deletions
diff --git a/vnfmarket/src/main/webapp/vnfmarket/node_modules/phantomjs/lib/phantom/examples/loadurlwithoutcss.coffee b/vnfmarket/src/main/webapp/vnfmarket/node_modules/phantomjs/lib/phantom/examples/loadurlwithoutcss.coffee
new file mode 100644
index 00000000..36143c8d
--- /dev/null
+++ b/vnfmarket/src/main/webapp/vnfmarket/node_modules/phantomjs/lib/phantom/examples/loadurlwithoutcss.coffee
@@ -0,0 +1,20 @@
+page = require("webpage").create()
+system = require("system")
+
+if system.args.length < 2
+ console.log "Usage: loadurlwithoutcss.js URL"
+ phantom.exit()
+
+address = system.args[1]
+
+page.onResourceRequested = (requestData, request) ->
+ if (/http:\/\/.+?\.css/g).test(requestData["url"]) or requestData["Content-Type"] is "text/css"
+ console.log "The url of the request is matching. Aborting: " + requestData["url"]
+ request.abort()
+
+page.open address, (status) ->
+ if status is "success"
+ phantom.exit()
+ else
+ console.log "Unable to load the address!"
+ phantom.exit()