svnno****@sourc*****
svnno****@sourc*****
2011年 6月 1日 (水) 20:30:32 JST
Revision: 2728 http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=2728 Author: dhrname Date: 2011-06-01 20:30:32 +0900 (Wed, 01 Jun 2011) Log Message: ----------- beta fixedを取り込んだ Modified Paths: -------------- branches/07x/sie.js Modified: branches/07x/sie.js =================================================================== --- branches/07x/sie.js 2011-05-31 12:08:14 UTC (rev 2727) +++ branches/07x/sie.js 2011-06-01 11:30:32 UTC (rev 2728) @@ -4871,16 +4871,18 @@ } cursor = style.getPropertyCSSValue("cursor"); if (cursor && !cursor._isDefault) { //初期値でないならば - el.style.cursor = cursor; + var tc = cursor.cssText; + el.style.cursor = tc.substring(tc.indexOf(":")+1, tc.length); + tc = null; } vis = style.getPropertyCSSValue("visibility"); if (vis && !vis._isDefault) { - el.style.visibility = vis; + el.style.visibility = vis.cssText.substring(vis.cssText.indexOf(":")+1, vis.cssText.length); } disp = style.getPropertyCSSValue("display"); - if (disp && !disp._isDefault && (disp === "none")) { + if (disp && !disp._isDefault && (disp.cssText.indexOf("none") > -1)) { el.style.display = "none"; - } else if (disp && !disp._isDefault && (disp !== "inline-block")) { + } else if (disp && !disp._isDefault && (disp.indexOf("inline-block") === -1)) { el.style.display = "inline-block"; } tod = el = fill = stroke = sp = fp = style = cursor = tar = matrix = vis = disp = num = null;