Ticket #5924: 5924_2.patch
File 5924_2.patch, 1.4 KB (added by , 12 years ago) |
---|
-
_source/plugins/flash/dialogs/flash.js
28 28 classid : [ { type : ATTRTYPE_OBJECT, name : 'classid' } ], 29 29 codebase : [ { type : ATTRTYPE_OBJECT, name : 'codebase'} ], 30 30 pluginspage : [ { type : ATTRTYPE_EMBED, name : 'pluginspage' } ], 31 src : [ { type : ATTRTYPE_PARAM, name : 'movie' }, { type : ATTRTYPE_EMBED, name : 'src' } ],31 src : [ { type : ATTRTYPE_PARAM, name : 'movie' }, { type : ATTRTYPE_EMBED, name : 'src' }, { type : ATTRTYPE_OBJECT, name : 'data' } ], 32 32 name : [ { type : ATTRTYPE_EMBED, name : 'name' } ], 33 33 align : [ { type : ATTRTYPE_OBJECT, name : 'align' } ], 34 34 title : [ { type : ATTRTYPE_OBJECT, name : 'title' }, { type : ATTRTYPE_EMBED, name : 'title' } ], -
_source/plugins/flash/plugin.js
107 107 var attributes = element.attributes, 108 108 classId = attributes.classid && String( attributes.classid ).toLowerCase(); 109 109 110 if ( !classId )110 if ( !classId && !isFlashEmbed( element ) ) 111 111 { 112 112 // Look for the inner <embed> 113 113 for ( var i = 0 ; i < element.children.length ; i++ )