Changeset 175974 in webkit
- Timestamp:
- Nov 11, 2014, 1:56:21 PM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
dom/ProcessingInstruction.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r175972 r175974 1 2014-11-11 David Kilzer <ddkilzer@apple.com> 2 3 Protect Document in ProcessingInstruction::setXSLStyleSheet() 4 <http://webkit.org/b/138621> 5 6 Reviewed by Andreas Kling. 7 8 The patch is inspired by the following Blink revision by 9 <tasak@google.com>: 10 <https://src.chromium.org/viewvc/blink?view=rev&revision=182309> 11 12 * dom/ProcessingInstruction.cpp: 13 (WebCore::ProcessingInstruction::setXSLStyleSheet): 14 1 15 2014-11-11 Myles C. Maxfield <mmaxfield@apple.com> 2 16 -
trunk/Source/WebCore/dom/ProcessingInstruction.cpp
r174332 r175974 216 216 ASSERT(m_isXSL); 217 217 m_sheet = XSLStyleSheet::create(this, href, baseURL); 218 Ref<Document> protect(document()); 218 219 parseStyleSheet(sheet); 219 220 }
Note:
See TracChangeset
for help on using the changeset viewer.