Changeset 157384 in webkit
- Timestamp:
- Oct 13, 2013, 3:06:47 PM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r157383 r157384 1 2013-10-13 Andreas Kling <akling@apple.com> 2 3 Uncrashify Document::head() too. (Why am I even awake?) 4 1 5 2013-10-13 Andreas Kling <akling@apple.com> 2 6 -
trunk/Source/WebCore/dom/Document.cpp
r157383 r157384 2276 2276 HTMLHeadElement* Document::head() 2277 2277 { 2278 return childrenOfType<HTMLHeadElement>(documentElement()).first(); 2278 if (auto element = documentElement()) 2279 return childrenOfType<HTMLHeadElement>(element).first(); 2280 return nullptr; 2279 2281 } 2280 2282
Note:
See TracChangeset
for help on using the changeset viewer.