File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 1500
1500
* Main native paste event editable should listen to.
1501
1501
*
1502
1502
* **Note:** Safari doesn't like 'beforepaste' event - it sometimes doesn't
1503
- * properly handles ctrl+c. Probably some race-condition between events.
1504
- * Chrome and Firefox works well with both events, so better to use 'paste'
1503
+ * handle ctrl+c properly . Probably some race-condition between events.
1504
+ * Chrome and Firefox work well with both events, so it's better to use 'paste'
1505
1505
* which will handle pasting from e.g. browsers' menu bars.
1506
1506
* IE7/8 doesn't like 'paste' event for which it's throwing random errors.
1507
1507
*
Original file line number Diff line number Diff line change 97
97
98
98
// #7946 TODO: Add editor doc quirks mode tests.
99
99
'test enter key key scrolls document' : function ( ) {
100
+ // On iPads, behavior of scrollTop, scrollHeight and clientHeight is a bit unexpected.
101
+ // <html> and <iframe> are resized even though they shouldn't, sudden changes of scrollHeight
102
+ // from higher value to ~clientHeight, even though more elements are being added, etc. (#13439)
103
+ if ( CKEDITOR . env . iOS ) {
104
+ assert . ignore ( ) ;
105
+ }
106
+
100
107
var bot = this . editorBots . editor ,
101
108
editor = bot . editor ;
102
109
258
265
se ( 'editor' , '<ul><li><em>foo{}</em><br /></li></ul>' , '<ul><li><em>foo<br />^</em><br /></li></ul>' )
259
266
} ) ;
260
267
261
- } ) ( ) ;
268
+ } ) ( ) ;
You can’t perform that action at this time.
0 commit comments