[ Index ] |
|
Code source de Dotclear 2.0-beta6 |
1 /* Copyright (c) 2005 Tim Taylor Consulting (see LICENSE.txt) */ 2 3 // TODO: write unit tests 4 ToolMan._cssFactory = { 5 readStyle : function(element, property) { 6 if (element.style[property]) { 7 return element.style[property] 8 } else if (element.currentStyle) { 9 return element.currentStyle[property] 10 } else if (document.defaultView && document.defaultView.getComputedStyle) { 11 var style = document.defaultView.getComputedStyle(element, null) 12 return style.getPropertyValue(property) 13 } else { 14 return null 15 } 16 } 17 }
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Fri Feb 23 22:16:06 2007 | par Balluche grâce à PHPXref 0.7 |