WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
181287
Implement createImageBitmap(ImageBitmap)
https://bugs.webkit.org/show_bug.cgi?id=181287
Summary
Implement createImageBitmap(ImageBitmap)
Ms2ger (he/him; ⌚ UTC+1/+2)
Reported
2018-01-04 05:32:50 PST
.
Attachments
Patch
(14.79 KB, patch)
2018-01-04 05:39 PST
,
Ms2ger (he/him; ⌚ UTC+1/+2)
no flags
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Ms2ger (he/him; ⌚ UTC+1/+2)
Comment 1
2018-01-04 05:39:44 PST
Created
attachment 330460
[details]
Patch
Darin Adler
Comment 2
2018-01-07 23:03:25 PST
Comment on
attachment 330460
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=330460&action=review
> Source/WebCore/html/ImageBitmap.cpp:399 > + if (existingImageBitmap->isDetached() || !existingImageBitmap->buffer()) {
Why do we need both checks? Why isn’t isDetached sufficient? Do we have test cases covering both cases?
WebKit Commit Bot
Comment 3
2018-01-07 23:23:33 PST
Comment on
attachment 330460
[details]
Patch Clearing flags on attachment: 330460 Committed
r226500
: <
https://trac.webkit.org/changeset/226500
>
WebKit Commit Bot
Comment 4
2018-01-07 23:23:35 PST
All reviewed patches have been landed. Closing bug.
Radar WebKit Bug Importer
Comment 5
2018-01-07 23:24:30 PST
<
rdar://problem/36344128
>
Ms2ger (he/him; ⌚ UTC+1/+2)
Comment 6
2018-01-08 00:00:15 PST
(In reply to Darin Adler from
comment #2
)
> Comment on
attachment 330460
[details]
> Patch > > View in context: >
https://bugs.webkit.org/attachment.cgi?id=330460&action=review
> > > Source/WebCore/html/ImageBitmap.cpp:399 > > + if (existingImageBitmap->isDetached() || !existingImageBitmap->buffer()) { > > Why do we need both checks? Why isn’t isDetached sufficient? Do we have test > cases covering both cases?
I followed the pattern in ImageBitmap::width/height(), which also check both. I think it'd be possible to simply define isDetached() as !buffer() at this point (removing the m_detached member), but I don't really want to do that until the implementation of the API is more complete. Will make a note to look into it later.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug