Index: Source/core/dom/PseudoElement.h |
diff --git a/Source/core/dom/PseudoElement.h b/Source/core/dom/PseudoElement.h |
index bb3b048e8b8da55224431662013177548e829654..abddc3e8d460a9bec11eabaa818853216e4ad7c3 100644 |
--- a/Source/core/dom/PseudoElement.h |
+++ b/Source/core/dom/PseudoElement.h |
@@ -65,6 +65,10 @@ inline bool pseudoElementRendererIsNeeded(const ComputedStyle* style) |
return false; |
if (style->display() == NONE) |
return false; |
+ |
+ if (style->styleType() == MARKER) |
+ return style->listStyleType() != NoneListStyle; |
+ |
if (style->styleType() == FIRST_LETTER || style->styleType() == BACKDROP) |
return true; |
return style->contentData(); |