Changeset 157665 in webkit for trunk/Source/WebCore/rendering/RenderImage.cpp
- Timestamp:
- Oct 19, 2013, 6:58:49 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/rendering/RenderImage.cpp
r157408 r157665 85 85 // the pseudo element doesn't change the size of the image. In all other cases we 86 86 // can just share the style. 87 RefPtr<RenderStyle>style = RenderStyle::create();88 style ->inheritFrom(pseudoStyle.get());89 setStyle(st yle.release());87 auto style = RenderStyle::create(); 88 style.get().inheritFrom(pseudoStyle.get()); 89 setStyle(std::move(style)); 90 90 } 91 91
Note:
See TracChangeset
for help on using the changeset viewer.