Skip to content

Commit

Permalink
(CSSStyleDeclarationImp::dump) : Refine
Browse files Browse the repository at this point in the history
  • Loading branch information
ShikiOkasaka committed Oct 26, 2013
1 parent d400d61 commit eb0f691
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/css/CSSStyleDeclarationImp.cpp
Expand Up @@ -1727,8 +1727,8 @@ void CSSStyleDeclarationImp::dump(const std::string& indent)
i->getSelector()->serialize(text);
text += u' ';
}
text += u'{' + decl->getCssText() + u"}\n";
std::cout << indent << " " << text;
text += u'{' + decl->getCssText() + u'}';
std::cout << indent << " " << text << " /* " << std::hex << i->priority << std::dec << " */\n";
}
}
}
Expand Down

0 comments on commit eb0f691

Please sign in to comment.