Ticket #6089: 6089.patch
File 6089.patch, 895 bytes (added by , 14 years ago) |
---|
-
_source/core/env.js
86 86 mobile : ( agent.indexOf( 'mobile' ) > -1 ), 87 87 88 88 /** 89 * Indicate that the editing infrastructure is supported. 90 */ 91 contenteditable : !! ( document.designMode || document.createElement( 'div' ).contentEditable ), 92 93 /** 89 94 * Indicates that the browser has a custom domain enabled. This has 90 95 * been set with "document.domain". 91 96 * @returns {Boolean} "true" if a custom domain is enabled. … … 220 225 * alert( "Your browser is pretty cool!" ); 221 226 */ 222 227 env.isCompatible = 223 !env.mobile && (228 env.contenteditable && ( 224 229 ( env.ie && version >= 6 ) || 225 230 ( env.gecko && version >= 10801 ) || 226 231 ( env.opera && version >= 9.5 ) ||