Title: [223928] trunk/Source/WebCore
- Revision
- 223928
- Author
- [email protected]
- Date
- 2017-10-24 14:58:48 -0700 (Tue, 24 Oct 2017)
Log Message
Attempted build fix for Sierra.
* html/ImageBitmap.cpp:
(WebCore::croppedSourceRectangleWithFormatting):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (223927 => 223928)
--- trunk/Source/WebCore/ChangeLog 2017-10-24 21:55:36 UTC (rev 223927)
+++ trunk/Source/WebCore/ChangeLog 2017-10-24 21:58:48 UTC (rev 223928)
@@ -1,5 +1,12 @@
2017-10-24 Dean Jackson <[email protected]>
+ Attempted build fix for Sierra.
+
+ * html/ImageBitmap.cpp:
+ (WebCore::croppedSourceRectangleWithFormatting):
+
+2017-10-24 Dean Jackson <[email protected]>
+
Implement resizing options for ImageBitmap rendering
https://bugs.webkit.org/show_bug.cgi?id=178687
<rdar://problem/35135417>
Modified: trunk/Source/WebCore/html/ImageBitmap.cpp (223927 => 223928)
--- trunk/Source/WebCore/html/ImageBitmap.cpp 2017-10-24 21:55:36 UTC (rev 223927)
+++ trunk/Source/WebCore/html/ImageBitmap.cpp 2017-10-24 21:58:48 UTC (rev 223928)
@@ -126,7 +126,7 @@
sourceRectangle.setWidth(std::min(sourceRectangle.width(), inputSize.width()));
sourceRectangle.setHeight(std::min(sourceRectangle.height(), inputSize.height()));
- return sourceRectangle;
+ return { WTFMove(sourceRectangle) };
}
static IntSize outputSizeForSourceRectangle(IntRect sourceRectangle, ImageBitmapOptions& options)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes