@@ -28,7 +28,7 @@ describe("Integration test", function () {
2828 callback = jasmine . createSpy ( "callback" ) . and . callFake ( function ( ) { finished = true ; } ) ;
2929 } ) ;
3030
31- ifNotInWebkitIt ( "should take a document, inline all displayable content and render to the given canvas" , function ( done ) {
31+ ifNotInPhantomJsIt ( "should take a document, inline all displayable content and render to the given canvas" , function ( done ) {
3232 testHelper . readHTMLDocumentFixture ( "test.html" ) . then ( function ( doc ) {
3333 rasterizeHTML . drawDocument ( doc , canvas , {
3434 cache : 'none' ,
@@ -51,7 +51,7 @@ describe("Integration test", function () {
5151 } ) ;
5252 } ) ;
5353
54- ifNotInWebkitIt ( "should take a HTML string, inline all displayable content and render to the given canvas" , function ( done ) {
54+ ifNotInPhantomJsIt ( "should take a HTML string, inline all displayable content and render to the given canvas" , function ( done ) {
5555 testHelper . readHTMLFixture ( "test.html" ) . then ( function ( html ) {
5656 rasterizeHTML . drawHTML ( html , canvas , {
5757 baseUrl : testHelper . fixturesPath ,
@@ -73,7 +73,7 @@ describe("Integration test", function () {
7373 } ) ;
7474 } ) ;
7575
76- ifNotInWebkitIt ( "should take a URL, inline all displayable content and render to the given canvas" , function ( done ) {
76+ ifNotInPhantomJsIt ( "should take a URL, inline all displayable content and render to the given canvas" , function ( done ) {
7777 rasterizeHTML . drawURL ( testHelper . fixturesPath + "testScaled50PercentWithJs.html" , canvas , {
7878 cache : 'none' ,
7979 executeJs : true ,
@@ -95,7 +95,7 @@ describe("Integration test", function () {
9595 } ) . finally ( done ) ;
9696 } ) ;
9797
98- ifNotInWebkitIt ( "should render a URL without canvas" , function ( done ) {
98+ ifNotInPhantomJsIt ( "should render a URL without canvas" , function ( done ) {
9999 rasterizeHTML . drawURL ( testHelper . fixturesPath + "testScaled50PercentWithJs.html" , {
100100 cache : 'none' ,
101101 width : width ,
@@ -135,7 +135,7 @@ describe("Integration test", function () {
135135 } ) . finally ( done ) ;
136136 } ) ;
137137
138- ifNotInWebKitAndNotLocalRunnerIt ( "should work around Firefox bug with `null` style properties" , function ( done ) {
138+ ifNotLocalRunnerIt ( "should work around Firefox bug with `null` style properties" , function ( done ) {
139139 // The bug only turns up when there's no JS executed which creates a new document
140140 // In addition this test will fail due to https://bugzilla.mozilla.org/show_bug.cgi?id=942138
141141 rasterizeHTML . drawURL ( testHelper . fixturesPath + "test.html" , {
0 commit comments