Copy the sample Gutenberg post content from https://wordpress.org/gutenberg/ (by switching to "Code Editor" view). And paste it into a test post on a website using a _theme that does not support wide/full alignment_ of blocks.
Everything works as expected on a website front-end, however, when editing the post user keeps seeing the cover image full aligned. But there are no wide/full alignment buttons when editing the block.
When the block alignment is changed to left/right/center, the block is displayed correctly in admin too, matching the width of the other content elements/blocks.
This might bring a confusion to a user copying content from one source to another. User might want to recreate the full alignment, but failing doing so, and failing understanding how it actually works.
When copying wide/full aligned block from a website that supports such alignment into a website that does not, the block should not be wide/full aligned when editing the post.

Additional context
I tried the following steps and couldn't see copied alignfull images appear as full-width in the editor. I tested with the Twenty Fifteen theme and used Firefox on macOS for my test.
full or wide images (e.g. Twenty Fifteen).Result: the image at the top which is alignfull at https://wordpress.org/gutenberg/ did not have the alignfull designation after pasting.

Seen at https://tan-otter.jurassic.ninja/wp-admin/post.php?post=123&action=edit running WordPress 4.9.8 and Gutenberg 4.5.1 using Firefox 63.0.3 on macOS 10.13.6.
Do you see anything different in my testing steps compared to yours?
What OS and browser version did you use for testing?
What theme did you use for testing?
Oh, I see. You've basically pasted the copied content directly into Gutenberg's Visual Editor mode. I didn't realize this was actually possible.
Here is what I did instead (and that's where you get the image fullwidth):
_For information, I've used super-plain testing theme (download zip if further tests needed)._
@manake also pointed out in #12948 that disabling align-wide doesn't refresh the block and I think we can consolidate that report here as well:
Steps to reproduce the behavior:
- In functions.php add
add_theme_support( 'align-wide' );- Create a new post with a full wide image and save it.
- In functions.php remove
add_theme_support( 'align-wide' );- Open the post editing screen and see that the image is still full wide.
I added the Needs Decision label to ask specifically what should happen when align-wide content is opened in a theme that does not have align-wide support.
Can I remove data-align="full" by myself as a workaround before there is an official solution?
How would I do that?
Maybe there exists some wp.refreshGutenberg() that would do it that I could call on $(document).ready()?