[Sie-announce] SIEコード [1657]

アーカイブの一覧に戻る

svnno****@sourc***** svnno****@sourc*****
2010年 2月 11日 (木) 22:45:15 JST


Revision: 1657
          http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=1657
Author:   dhrname
Date:     2010-02-11 22:45:14 +0900 (Thu, 11 Feb 2010)

Log Message:
-----------


Modified Paths:
--------------
    branches/ufltima/dom/css.js

Modified: branches/ufltima/dom/css.js
===================================================================
--- branches/ufltima/dom/css.js	2010-02-11 13:35:53 UTC (rev 1656)
+++ branches/ufltima/dom/css.js	2010-02-11 13:45:14 UTC (rev 1657)
@@ -193,6 +193,7 @@
 /*string*/   getPropertyValue : function( /*string*/ propertyName) {
     var tg = this.getPropertyCSSValue(propertyName);
     if (tg) {                             //見つかった場合
+      //_valueプロパティは本来、cssTextで代用されるべき
       return (tg._value);
     } else {
       return "";
@@ -224,6 +225,9 @@
 /*void*/     setProperty : function( /*string*/ propertyName, /*string*/ value, /*string*/ priority) {
     var tg = this.getPropertyCSSValue(propertyName);
     if (tg) {  //見つかった場合
+      /*_priorityや_propertyName、_valueといったプロパティは、本当ならば、
+       *cssTextプロパティに収納されるべきである。get関連メソッドで解析するのが大変なので、3つのプロパティに分けておいた
+       */
       tg._priority = priority;
       tg._propertyName = propertyName;
       tg._value = value;




Sie-announce メーリングリストの案内
アーカイブの一覧に戻る