Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

koimemo.com - A zoomed -in version of the site is displayed #46169

Closed
webcompat-bot opened this issue Dec 8, 2019 · 4 comments
Closed

koimemo.com - A zoomed -in version of the site is displayed #46169

webcompat-bot opened this issue Dec 8, 2019 · 4 comments
Labels
browser-firefox-mobile engine-gecko The browser uses the Gecko rendering engine ml-needsdiagnosis-false ML - no need for diagnosis priority-normal severity-important A non-core broken piece of functionality, not behaving the way you would expect. type-css-flexbox type-tracking-protection-strict This page had content that was blocked by the strict tracking protection list in Firefox.
Milestone

Comments

@webcompat-bot
Copy link

URL: https://koimemo.com/article/10392

Browser / Version: Firefox Mobile 68.0
Operating System: Android 6.0.1
Tested Another Browser: Yes

Problem type: Site is not usable
Description: The paragraph is not display to the end.
Steps to Reproduce:

Screenshot Description

Browser Configuration
  • gfx.webrender.all: false
  • gfx.webrender.blob-images: true
  • gfx.webrender.enabled: false
  • image.mem.shared: true
  • buildID: 20191206211220
  • channel: nightly
  • hasTouchScreen: true
  • mixed active content blocked: false
  • mixed passive content blocked: false
  • tracking content blocked: true (strict)

Console Messages:

['[JavaScript Warning: "The resource at https://platform.twitter.com/widgets.js was blocked because content blocking is enabled." {file: "https://koimemo.com/article/10392" line: 0}]', '[JavaScript Warning: "The resource at https://securepubads.g.doubleclick.net/tag/js/gpt.js was blocked because content blocking is enabled." {file: "https://koimemo.com/article/10392" line: 0}]', '[JavaScript Warning: "The resource at https://securepubads.g.doubleclick.net/tag/js/gpt.js was blocked because content blocking is enabled." {file: "https://koimemo.com/article/10392" line: 0}]', '[JavaScript Warning: "The resource at https://connect.facebook.net/ja_JP/sdk.js#xfbml=1&version=v2.11 was blocked because content blocking is enabled." {file: "https://koimemo.com/article/10392" line: 0}]', '[JavaScript Warning: "The resource at https://www.google-analytics.com/analytics.js was blocked because content blocking is enabled." {file: "https://koimemo.com/article/10392" line: 0}]', '[JavaScript Warning: "The resource at https://connect.facebook.net/en_US/fbevents.js was blocked because content blocking is enabled." {file: "https://koimemo.com/article/10392" line: 0}]']

From webcompat.com with ❤️

@webcompat-bot webcompat-bot added this to the needstriage milestone Dec 8, 2019
@webcompat-bot webcompat-bot added browser-firefox-mobile engine-gecko The browser uses the Gecko rendering engine type-tracking-protection-strict This page had content that was blocked by the strict tracking protection list in Firefox. ml-needsdiagnosis-false ML - no need for diagnosis labels Dec 8, 2019
@cipriansv cipriansv changed the title koimemo.com - site is not usable koimemo.com - A zoomed -in version of the site is displayed Dec 10, 2019
@cipriansv cipriansv added priority-normal severity-important A non-core broken piece of functionality, not behaving the way you would expect. labels Dec 10, 2019
@cipriansv cipriansv modified the milestones: needstriage, needsdiagnosis Dec 10, 2019
@cipriansv
Copy link

Thanks for the report.
I was indeed able to reproduce the issue.

Tested with:
Browser / Version: Firefox Nightly Mobile 68.4a1 (2019-12-08), Chrome Mobile 78.0.3904.108

Operating System: Huawei P10 (Android 9.0) - 1080 x 1920 pixels (~432 ppi pixel density)

This is the web page displayed in Firefox Nightly:

image

And this is the web page displayed in Chrome:

image

The issue is also reproducible on Firefox Preview Nightly 191205 (🦎: 72.0a1-20191202091209)

@karlcow
Copy link
Member

karlcow commented Dec 10, 2019

Antiquated flexbox

.l-wrapper, .inner {
	max-width: 100%;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	flex-flow: row wrap;
	-webkit-flex-flow: row wrap;
}

To fix it:

/* koimemo_common.css | https://koimemo.com/css/koimemo_common.css */

.l-wrapper, .inner {
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
}

@media screen and (max-width: 1024px) {
		.l-breadcrumbs {
				/* -webkit-order: 5; */
		}
}

@media screen and (max-width: 1024px) {
		.l-content {
				/* -webkit-order: 2; */
				/* flex-basis: 100%; */
				/* -webkit-flex-basis: 100%; */
				flex-basis: auto;
		}
}

@karlcow
Copy link
Member

karlcow commented Dec 10, 2019

Close as duplicate of https://bugzilla.mozilla.org/show_bug.cgi?id=1316534

@lock
Copy link

lock bot commented Dec 17, 2019

This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue at https://webcompat.com/issues/new if you are experiencing a similar problem.

@lock lock bot locked as resolved and limited conversation to collaborators Dec 17, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
browser-firefox-mobile engine-gecko The browser uses the Gecko rendering engine ml-needsdiagnosis-false ML - no need for diagnosis priority-normal severity-important A non-core broken piece of functionality, not behaving the way you would expect. type-css-flexbox type-tracking-protection-strict This page had content that was blocked by the strict tracking protection list in Firefox.
Projects
None yet
Development

No branches or pull requests

3 participants