Skip to content

Commit c0e4dc3

Browse files
committed
Added failing tests in Safari to ignored.
1 parent a3f706b commit c0e4dc3

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed

tests/core/dom/element/element.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ bender.test( appendDomObjectTests(
2626
return new CKEDITOR.dom.element( document.getElementById( id ) );
2727
},
2828
{
29+
_should: {
30+
ignore: {
31+
test_isIdentical2: CKEDITOR.env.webkit && !CKEDITOR.env.chrome
32+
}
33+
},
34+
2935
test_$: function() {
3036
var element = newElement( document.getElementById( 'test1' ) );
3137
assert.areSame( document.getElementById( 'test1' ), element.$ );

tests/plugins/embedbase/undo.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,13 @@ embedTools.mockJsonp( function() {
4040
} );
4141

4242
bender.test( {
43+
_should: {
44+
ignore: {
45+
'test undo and redo after creation': CKEDITOR.env.webkit && !CKEDITOR.env.chrome,
46+
'test undo and redo after creation and edition': CKEDITOR.env.webkit && !CKEDITOR.env.chrome
47+
}
48+
},
49+
4350
spies: [],
4451
listeners: [],
4552

@@ -195,4 +202,4 @@ bender.test( {
195202
editor.execCommand( 'embed' );
196203
} );
197204
}
198-
} );
205+
} );

tests/plugins/font/font.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,13 @@
1616
ffCS = 'font-family:Comic Sans MS,cursive';
1717

1818
bender.test( {
19+
_should: {
20+
ignore: {
21+
'test apply font size over another font size (collapsed selection in empty span)':
22+
CKEDITOR.env.webkit && !CKEDITOR.env.chrome
23+
}
24+
},
25+
1926
'test apply font size (collapsed selection)': function() {
2027
var bot = this.editorBot,
2128
editor = this.editor;

0 commit comments

Comments
 (0)