| Index: Source/core/rendering/RenderDetailsMarker.cpp
 | 
| diff --git a/Source/core/rendering/RenderDetailsMarker.cpp b/Source/core/rendering/RenderDetailsMarker.cpp
 | 
| index 0b8c299f7daa64618ae7aadfd904eb191251b3fb..308defbf532d2af55df0336b0a0a9582b933f146 100644
 | 
| --- a/Source/core/rendering/RenderDetailsMarker.cpp
 | 
| +++ b/Source/core/rendering/RenderDetailsMarker.cpp
 | 
| @@ -127,10 +127,10 @@ void RenderDetailsMarker::paint(PaintInfo& paintInfo, const LayoutPoint& paintOf
 | 
|          return;
 | 
|  
 | 
|      const Color color(style()->visitedDependentColor(CSSPropertyColor));
 | 
| -    paintInfo.context->setStrokeColor(color, style()->colorSpace());
 | 
| +    paintInfo.context->setStrokeColor(color);
 | 
|      paintInfo.context->setStrokeStyle(SolidStroke);
 | 
|      paintInfo.context->setStrokeThickness(1.0f);
 | 
| -    paintInfo.context->setFillColor(color, style()->colorSpace());
 | 
| +    paintInfo.context->setFillColor(color);
 | 
|  
 | 
|      boxOrigin.move(borderLeft() + paddingLeft(), borderTop() + paddingTop());
 | 
|      paintInfo.context->fillPath(getPath(boxOrigin));
 | 
| 
 |