Changeset 157383 in webkit
- Timestamp:
- Oct 13, 2013, 2:21:32 PM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r157381 r157383 1 2013-10-13 Andreas Kling <akling@apple.com> 2 3 REGRESSION(r157381): Make Document::body() crash less when there is no documentElement. 4 5 Unreviewed. 6 1 7 2013-10-13 Darin Adler <darin@apple.com> 2 8 -
trunk/Source/WebCore/dom/Document.cpp
r157381 r157383 2242 2242 // If the document element contains both a frameset and a body, the frameset wins. 2243 2243 auto element = documentElement(); 2244 if (!element) 2245 return nullptr; 2244 2246 if (auto frameset = childrenOfType<HTMLFrameSetElement>(element).first()) 2245 2247 return frameset;
Note:
See TracChangeset
for help on using the changeset viewer.