Bug 255025 - REGRESSION(262547@main) ASSERTION FAILED: !m_size.isEmpty()
Summary: REGRESSION(262547@main) ASSERTION FAILED: !m_size.isEmpty()
Status: RESOLVED DUPLICATE of bug 255001
Alias: None
Product: WebKit
Classification: Unclassified
Component: Layout and Rendering (show other bugs)
Version: WebKit Nightly Build
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2023-04-05 02:50 PDT by Vitaly Dyackhov
Modified: 2023-04-05 03:49 PDT (History)
3 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Vitaly Dyackhov 2023-04-05 02:50:44 PDT
```
ShareableBitmapConfiguration::ShareableBitmapConfiguration(const IntSize& size, std::optional<DestinationColorSpace> colorSpace, bool isOpaque, unsigned bytesPerPixel, unsigned bytesPerRow
#if USE(CG)
    , CGBitmapInfo bitmapInfo
#endif
)
    : m_size(size)
    , m_colorSpace(colorSpace)
    , m_isOpaque(isOpaque)
    , m_bytesPerPixel(bytesPerPixel)
    , m_bytesPerRow(bytesPerRow)
#if USE(CG)
    , m_bitmapInfo(bitmapInfo)
#endif
{
    ASSERT(!m_size.isEmpty());
}
```
Comment 1 Vitaly Dyackhov 2023-04-05 03:02:01 PDT
Pull request: https://github.com/WebKit/WebKit/pull/12406
Comment 2 Vitaly Dyackhov 2023-04-05 03:49:17 PDT

*** This bug has been marked as a duplicate of bug 255001 ***