This commit is contained in:
Misko Hevery
2010-04-19 14:36:41 -07:00
parent 8e1b670d5b
commit 618a2b423d
4 changed files with 27 additions and 8 deletions

View File

@@ -77,8 +77,9 @@ function sortedHtml(element) {
for(var css in node.style){
var value = node.style[css];
if (isString(value) && isString(css) && css != 'cssText' && value && (1*css != css)) {
var text = css + ': ' + node.style[css];
if (indexOf(style, text) == -1) {
var value = node.style[css];
var text = css + ': ' + value;
if (value != 'false' && indexOf(style, text) == -1) {
style.push(text);
}
}