Open
Bug 1925924
Opened 24 days ago
Updated 9 days ago
w3.nhk.or.jp - Missing elements from the page
Categories
(Web Compatibility :: Site Reports, defect, P2)
Tracking
(firefox131 affected, firefox133 affected)
NEW
People
(Reporter: rbucata, Unassigned)
References
(Depends on 1 open bug, )
Details
(Keywords: webcompat:platform-bug, webcompat:site-report, Whiteboard: [webcompat-source:web-bugs])
User Story
platform:windows,mac,linux,android impact:content-missing configuration:general affects:all branch:release diagnosis-team:layout
Attachments
(1 file)
2.59 MB,
video/mp4
|
Details |
Environment:
Operating system: Windows 10
Firefox version: Firefox 131.0
Steps to reproduce:
- Navigate to: https://www3.nhk.or.jp/sports/program/
- Scroll the page and observe the broadcasting time next to the shows
Expected Behavior:
Icons are rendered ("BS", "G", etc)
Actual Behavior:
Icons are missing
Notes:
- Reproduces regardless of the status of ETP
- Reproduces in Firefox Nightly, and Firefox Release
- Does not reproduce in Chrome
Created from https://github.com/webcompat/web-bugs/issues/142992
Reporter | ||
Comment 1•24 days ago
|
||
Reporter | ||
Updated•24 days ago
|
status-firefox131:
--- → affected
status-firefox133:
--- → affected
Comment 2•10 days ago
|
||
That's an SVG, and the <img>
tag has width and height specified, yet Firefox is rendering it as 0x0px small
Comment 3•10 days ago
|
||
The img here has max-width:max-content
which we're treating as 0
for some reason -- maybe because the SVG file itself has no declared width
or height
?
If I undo that by e.g. setting max-width:none
, then the image shows up just fine.
Reduced testcase which is blank in Firefox vs. shows the image in Chrome:
data:text/html,<img style="max-width: max-content" src="https://www.nhk.jp/assets/images/broadcastservice/bs/g1/g1-badge9x4.svg">
Comment 4•9 days ago
|
||
I spun off bug 1929151 as a platform bug here.
Keywords: webcompat:needs-diagnosis → webcompat:platform-bug
You need to log in
before you can comment on or make changes to this bug.
Description
•