Changeset 267550 in webkit
- Timestamp:
- Sep 24, 2020, 3:25:45 PM (6 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
dom/Document.cpp (modified) (2 diffs)
-
svg/svgtags.in (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r267544 r267550 1 2020-09-24 Fujii Hironori <Hironori.Fujii@sony.com> 2 3 [SVG2] Remove color-profile tag 4 https://bugs.webkit.org/show_bug.cgi?id=216910 5 6 Reviewed by Darin Adler. 7 8 SVG2 removed color-profile element. 9 10 * dom/Document.cpp: 11 (WebCore::Document::validateCustomElementName): 12 * svg/svgtags.in: 13 1 14 2020-09-24 Chris Dumez <cdumez@apple.com> 2 15 -
trunk/Source/WebCore/dom/Document.cpp
r267310 r267550 1267 1267 static MainThreadNeverDestroyed<const AtomString> annotationXmlLocalName("annotation-xml", AtomString::ConstructFromLiteral); 1268 1268 #endif 1269 1270 if (localName == SVGNames::color_profileTag->localName() 1271 ||localName == SVGNames::font_faceTag->localName()1269 static MainThreadNeverDestroyed<const AtomString> colorProfileLocalName("color-profile", AtomString::ConstructFromLiteral); 1270 1271 if (localName == SVGNames::font_faceTag->localName() 1272 1272 || localName == SVGNames::font_face_formatTag->localName() 1273 1273 || localName == SVGNames::font_face_nameTag->localName() … … 1275 1275 || localName == SVGNames::font_face_uriTag->localName() 1276 1276 || localName == SVGNames::missing_glyphTag->localName() 1277 || localName == annotationXmlLocalName) 1277 || localName == annotationXmlLocalName 1278 || localName == colorProfileLocalName) 1278 1279 return CustomElementNameValidationStatus::ConflictsWithStandardElementName; 1279 1280 -
trunk/Source/WebCore/svg/svgtags.in
r267497 r267550 15 15 circle 16 16 clipPath 17 #if 018 color_profile19 #endif20 17 cursor 21 18 defs
Note:
See TracChangeset
for help on using the changeset viewer.