Ticket #3408: 3408_2.patch
File 3408_2.patch, 582 bytes (added by , 15 years ago) |
---|
-
_source/core/htmlparser/element.js
166 166 { 167 167 for ( a in attributes ) 168 168 { 169 writer.attribute( a, attributes[ a ] ); 169 var value = attributes[ a ]; 170 171 if ( filter && ( !( a = filter.onAttributeName( a ) ) || ( value = filter.onAttribute( element, a, value ) ) === false ) ) 172 continue; 173 174 writer.attribute( a, value ); 170 175 } 171 176 } 172 177