Slide 12
Slide 12 text
flow("My first responsive webpage", function(){
decision({
"View in 1500px": function(){
step('Look at the page', look(1500));
},
"View in 990px": function(){
step('Look at the page', look(990));
},
"View in 440px": function(){
step('Look at the page', look(440));
}
});
});
function look(w){
return function(){
casper.viewport(w, 768).
thenOpen(url, function(){
casper.test.pass(w+'x768 page has loaded');
phantomCSS.screenshot('body');
});
};
}