Ticket #9085: 9085.patch
File 9085.patch, 532 bytes (added by , 11 years ago) |
---|
-
_source/plugins/htmldataprocessor/plugin.js
203 203 // Remove dummy span in webkit. 204 204 span: function( element ) 205 205 { 206 if ( element.attributes[ 'class' ] == 'Apple-style-span')206 if ( String(element.attributes[ 'class' ]).match(/Apple-\w+-span/) ) 207 207 delete element.name; 208 208 }, 209 209