Skip to main content
Filter by
Sorted by
Tagged with
Advice
0 votes
2 replies
66 views

Our internal tooling uses a secondary house style color as brand color. Often, the main navigation bar has that (blueish) color as background, with white navigation items. According to SC 1.4.3 the ...
Allard's user avatar
  • 21
0 votes
1 answer
142 views

I use RabbitMQ as a message broker to enable data producers and consumers to communicate, and today I'd like to introduce OpenTelemetry's notions of tracing into them. So I did my implementation and ...
Baptiste AUDEMARD's user avatar
0 votes
1 answer
48 views

I found 3 accessible examples related to this, one of them is from Deque and uses only placeholder to provide instructions for date format. https://dequeuniversity.com/library/aria/date-picker https://...
rubisinghpanwar's user avatar
1 vote
0 answers
62 views

I'm writing a Nuget Package (which I'll post as Open Source to Github once it's done) that implements xml canonicalization using the Canonical XML Version 2.0 (c14n2) spec. I've also been using Test ...
Dave Black's user avatar
  • 8,199
1 vote
1 answer
410 views

Broadly browsers have the window.MediaSource source API. However, due to battery concerns Apple never adopted this API on mobile devices. In 2023 they released a spec for window.ManagedMediaSource ...
Dan Rasmuson's user avatar
  • 6,151
-6 votes
2 answers
110 views

I saw this code here: myCombobox.addEventListener('keydown', function(event) { if (event.key === 'Escape') { myCombobox.close(); event.stopPropagation(); } }); My education and experience ...
1.21 gigawatts's user avatar
1 vote
0 answers
62 views

I am seeking information regarding the handling of srcset by various browsers when implemented through JavaScript, specifically using new Image().srcset. My primary interest lies in understanding ...
Aerodynamic's user avatar
0 votes
0 answers
32 views

We're currently implementing W3C tracing and a requirement is that we log the span ID, trace ID and parent ID. Logging span and trace is easily done with pattern="Micrometer Trace ID[%X{traceId}] ...
N4zroth's user avatar
  • 1,376
0 votes
0 answers
117 views

I have the below code, which is a button tag inside that I have a icon inside tag ( previously I added tag to show the icon, but then had to change to because there was a SonarQube code smell issue ...
Nancy's user avatar
  • 1,029
0 votes
0 answers
206 views

My pwa project was successfully launched, using the following code: window.addEventListener('beforeinstallprompt', e => { console.log('Show pwa button') state.buttonShow=true // The default ...
user23722952's user avatar
0 votes
1 answer
468 views

<input type="file" id="el"> <code id="out"></code> const el = document.getElementById('el'); const out = document.getElementById('out'); el....
DisLido's user avatar
  • 157
0 votes
1 answer
130 views

I came across an interesting table of events at https://www.w3.org/TR/uievents. However, I am not familiar with the category Sync / Async. Event Type Sync / Async Bubbling Phase Trusted event target ...
MaximPro's user avatar
  • 566
0 votes
2 answers
77 views

While I know wrapping a paragraph inside a heading like this: <h1><p>Lorem<br>Ipsum</p></h1> is invalid (see this question for example), it still renders correctly in ...
timlg07's user avatar
  • 738
2 votes
0 answers
184 views

The quote: The insertion point is relative to the position of the character immediately after it, it is not an absolute offset into the input stream. What does it mean? Why not an absolute offset? ...
MaximPro's user avatar
  • 566
0 votes
1 answer
140 views

Whatwg spec describes conception of the speculative HTML parsing. So, there are many places in spec with the term active speculative parser. Spec says that HTML parser that owns an instance of ...
MaximPro's user avatar
  • 566

15 30 50 per page
1
2 3 4 5
84