Changeset 143684 in webkit
- Timestamp:
- Feb 21, 2013, 7:19:46 PM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r143683 r143684 1 2013-02-21 Dean Jackson <dino@apple.com> 2 3 Followup commit for https://bugs.webkit.org/show_bug.cgi?id=110541 4 from a comment by Jon Lee. 5 6 * html/HTMLPlugInImageElement.cpp: 7 (WebCore::HTMLPlugInImageElement::subframeLoaderWillCreatePlugIn): Logic 8 in conditional was unnecessarily complex. 9 1 10 2013-02-21 Ojan Vafai <ojan@chromium.org> 2 11 -
trunk/Source/WebCore/html/HTMLPlugInImageElement.cpp
r143680 r143684 424 424 int width = rect.width(); 425 425 int height = rect.height(); 426 if ( !width || !height || (width <= sizingTinyDimensionThreshold || height <= sizingTinyDimensionThreshold)) {426 if (width <= sizingTinyDimensionThreshold || height <= sizingTinyDimensionThreshold) { 427 427 LOG(Plugins, "%p Plug-in is %dx%d, set to play", this, width, height); 428 428 return;
Note:
See TracChangeset
for help on using the changeset viewer.