module( 'plugins.music' ); test( ' trace 3745 3780 音乐', function () { var editor = te.obj[0]; var range = te.obj[1]; editor.setContent( '

hello

' ); range.setStart(editor.body.firstChild,0).collapse(true).select(); editor.execCommand( 'music',{url:"http://box.baidu.com/widget/flash/bdspacesong.swf?from=tiebasongwidget&url=…artist=%E5%BC%A0%E6%B6%A6%E8%B4%9E&extra=Vol.%202&autoPlay=false&loop=true"}); stop(); setTimeout(function(){ ua.manualDeleteFillData(editor.body); ua.checkSameHtml(editor.getContent(),'

hello

',''); equal(editor.body.firstChild.firstChild.tagName.toLowerCase(),'img'); equal(editor.body.firstChild.firstChild.className,'edui-faked-music'); start(); },50); } );