Skip to content

Publish minutes of 2026-02-26 meeting#956

Merged
Rob--W merged 1 commit intomainfrom
meeting-2026-02-26
Mar 12, 2026
Merged

Publish minutes of 2026-02-26 meeting#956
Rob--W merged 1 commit intomainfrom
meeting-2026-02-26

Conversation

@Rob--W
Copy link
Member

@Rob--W Rob--W commented Feb 26, 2026

Generated from https://docs.google.com/document/d/1QkwhEMtMS67JBUkl_WVPZ4lRSKoWcQNlLJSf_GwSXg8/edit using the tool and process from #105.

During this meeting we discussed or mentioned issues #953, #531, #951, #954, #955.

The next meeting happens at a potentially different time (for non-US people) due to Daylight Saving time changes! PST -> PDT time zone!

@Rob--W Rob--W requested a review from dotproto February 26, 2026 18:00
@Rob--W Rob--W force-pushed the meeting-2026-02-26 branch from bf5d526 to f24743f Compare February 26, 2026 18:32
@Rob--W Rob--W force-pushed the meeting-2026-02-26 branch from f24743f to a90c2dc Compare March 3, 2026 14:03
@dotproto
Copy link
Member

dotproto commented Mar 6, 2026

@Rob--W, I've updated this PR to include an SVG export of the whiteboard.

@dotproto dotproto force-pushed the meeting-2026-02-26 branch 2 times, most recently from d4638d0 to ecd51fb Compare March 6, 2026 01:06
@Rob--W
Copy link
Member Author

Rob--W commented Mar 6, 2026

@Rob--W, I've updated this PR to include an SVG export of the whiteboard.

The SVG is 661 KB. That's much larger than I'd expect for a few boxes with text and stars in it. I can cut down the size with tools such as https://jakearchibald.github.io/svgomg/ but it is still large.

What does the PNG version look like, in terms of size?

Perhaps it makes sense to post the image as a comment on the f2f issue (also for future reference) and link to that from the meeting notes.

The whole text is already captured in the meeting notes, in case people need an accessible version of it.

@Rob--W
Copy link
Member Author

Rob--W commented Mar 11, 2026

I took a stab at reducing the SVG. Its primary size originates from tons of useless inline style properties. Another significant chunk is the inline font. I note that when I open Github's linked SVG in Firefox, the font is not even used because it is blocked by the CSP. The content is still legible so I opted for stripping the font as well.

After some trial and error I created a reduced SVG as follows:

  1. Open https://raw.githubusercontent.com/w3c/webextensions/ecd51fb243595bd2afc64d7d8b3b972869c09da8/static/2026-02-26-whiteboard.svg (676.76 kB)
  2. Open the devtools and run:
document.querySelectorAll('[style]').forEach(x=>x.removeAttribute('style'));
document.querySelectorAll('[class]').forEach(x=>x.removeAttribute('class'));
document.querySelectorAll('p > br:first-child:last-child').forEach(x=>x.parentNode.remove())
document.querySelector('style').textContent=`svg{font-size:22px;line-height:1.35;text-align:center;font-family:sans-serif}foreignObject>div{height:100%;align-content:center}`;
copy(new XMLSerializer().serializeToString(document))
  1. Paste the output in https://jakearchibald.github.io/svgomg/ with default settings, minimal Number Precision and Transform Precision. This cuts the SVG from 65.96k down to 30.92k.

The appearance is not 100% identical obviously, but the boxes, text, colors, stars are all visible, which is what matters for conveying information.

@Rob--W Rob--W force-pushed the meeting-2026-02-26 branch from ecd51fb to 2b740d5 Compare March 11, 2026 18:07
@Rob--W
Copy link
Member Author

Rob--W commented Mar 12, 2026

Merging because the next meeting is about to start.

@Rob--W Rob--W merged commit eba8659 into main Mar 12, 2026
1 check passed
@Rob--W Rob--W deleted the meeting-2026-02-26 branch March 12, 2026 14:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants