From eb0f6913cb46f71d4626ea7da206b6b2b8b12d91 Mon Sep 17 00:00:00 2001 From: Shiki Okasaka Date: Sun, 27 Oct 2013 05:24:02 +0900 Subject: [PATCH] (CSSStyleDeclarationImp::dump) : Refine --- src/css/CSSStyleDeclarationImp.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/css/CSSStyleDeclarationImp.cpp b/src/css/CSSStyleDeclarationImp.cpp index 9fcd493..5e0be29 100644 --- a/src/css/CSSStyleDeclarationImp.cpp +++ b/src/css/CSSStyleDeclarationImp.cpp @@ -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"; } } }