Skip to main content
Filter by
Sorted by
Tagged with
Advice
0 votes
2 replies
37 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
122 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
46 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
54 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
372 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
56 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
107 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
200 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
427 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
  • 147
0 votes
1 answer
122 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
  • 556
0 votes
2 answers
74 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
180 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
  • 556
0 votes
1 answer
134 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
  • 556
1 vote
0 answers
223 views

Angular uses shadow DOM to encapsule styles for it's components: In Angular, a component's styles can be encapsulated within the component's host element so that they don't affect the rest of the ...
meles's user avatar
  • 496
1 vote
2 answers
1k views

Let's have, say, an element with the text content of Clark, Theodore S.. Note the double white spaces after the "Theodore". Say you have this element be an HTML option, like this: <...
Emberfire's user avatar
  • 132
0 votes
0 answers
61 views

I want to use 2 synonymous IRIs to SPARQL query for same resource (from most recent ontology) I want to be able to construct SPARQL queries for the latest version of my ontology (example.org/...
SusV's user avatar
  • 1
1 vote
0 answers
134 views

During IntersectionObserver initialization, I encounter a TypeScript error that says "Object literal may only specify known properties, and 'trackVisibility' does not exist in type '...
Alexander Morozov's user avatar
1 vote
1 answer
558 views

I'm on a Mac, writing node.js (v16.19.0) test automation for an app running on an Android emulator (API 34 browser version 14). I'm trying to tap a button in the app that is always seen by the Appium ...
Wulf's user avatar
  • 489
0 votes
1 answer
754 views

I miss touchactions but they are deprecated so I want to understand how to write them with W3C standards. I want to move to a location and then tap that location. Here is what I am trying but its not ...
HANSTKE's user avatar
  • 79
1 vote
1 answer
282 views

I would like to store a password for the user using the Credential Management API. Trying to run the following code off of a local server results in null: await (async function testStoredPassword({id, ...
Yuval's user avatar
  • 3,598
1 vote
0 answers
73 views

my name is Tuan, I am getting the following error: Caused by: com.apicatalog.jsonld.JsonLdError: Unexpected response code [429]. JsonLdError[code=There was a problem encountered loading a remote ...
dev coder's user avatar
2 votes
2 answers
1k views

Step 1: Download a raw copy of Bootstrap 4's SHA-384 integrity listed css file, to a local web project: https://getbootstrap.com/docs/4.0/getting-started/download/ As of writing this, they have their ...
Steffen Cole Blake's user avatar
3 votes
2 answers
3k views

I'm testing the abilities of the Android Credential Manager APIs to work with passkeys over W3C standards. While everything is set up and works I'm getting the following errors inconsistently : While ...
Evgeniy Mishustin's user avatar
-1 votes
1 answer
263 views

I Deployed a MERN application on Vercel, but you know requests must happen between client and API in order for website to functions, such as signup, login, etc. as an exmaple I've made a post route ...
aasem shoshari's user avatar
1 vote
1 answer
119 views

I have an image of ice-cream and on top of that I am adding a heading text in very large font, but font color is showing accessibility issue to me with background. How to fix this without changing the ...
Rashid's user avatar
  • 375
1 vote
1 answer
62 views

I just made up a simple XML file: <main> <foo> <bar>1</bar> <bar>2</bar> <bar>3</bar> </foo> </main> I just ...
waxmar's user avatar
  • 499
5 votes
1 answer
304 views

The following two graphs clearly express a similar intent, one using RDF-star (soon to be incorporated into the RDF standard as RDF 1.2), and one using RDF reification. :bob :asserts <<:earth :...
levand's user avatar
  • 8,520
0 votes
0 answers
39 views

i my website is thai language, and link in webpage is thai i check page in https://validator.w3.org/ it's show error "Bad value for attribute href on element a: Percentage ("%") is not ...
Amika Boonthima's user avatar
0 votes
1 answer
57 views

The CSS Spec has this statement when talking about relative units versus absolute units: Style sheets that use relative units can more easily scale from one output environment to another. What does ...
Matthias's user avatar
  • 15.8k
1 vote
0 answers
212 views

I've recently been reading about Chromium trying to phase out third-party cookies, and the project confuses me a bit. Most of the documentation I can find about it relate to technical issues and ...
Dolda2000's user avatar
  • 26k
0 votes
0 answers
30 views

Tag attributes in form of x-feature-vendor is now in the HTML spec: For markup-level features that are intended for use with the HTML syntax, extensions should be limited to new attributes of the ...
Grove's user avatar
  • 25
1 vote
1 answer
174 views

I guess this is similar in spirit to vertical alignment of text element in SVG - consider this test.svg, which I made in Inkscape (with some manual text edits afterwards), where I just placed a "...
sdbbs's user avatar
  • 5,948
0 votes
1 answer
86 views

If I use this code, W3C validator shows warning. (Bad value 100% for attribute height on element img: Expected a digit but saw % instead.) <img src="" width="100%" height="...
habertimi's user avatar
3 votes
1 answer
693 views

I look for an authoritative reference list of all HTML block and inline elements. (That is, each element should me classified as either "block" or "inline".) There are three ...
user avatar
1 vote
2 answers
2k views

<b>, <i>, <u>, and <s> tags are purely "visual" and don't convey any semantic meaning. I've <em>already</em> told you <em>four</em> times that ...
user avatar
0 votes
1 answer
4k views

When working with BroadcastChannel API, I realized that there's a case where if the channel is closed and the developer still try to call postMessage(), there won't be any exception thrown; at least ...
Envil's user avatar
  • 2,687
2 votes
1 answer
1k views

I'm trying to find a way to have my controllers automatically create the activity based on w3c headers. My request has the traceparent header. I am not using AppInsights, and I know that if I ...
Joel Lara's user avatar
  • 1,619
-1 votes
1 answer
81 views

The documentation states that the boxes (siblings) are distributed one next to the other in the Inline Layout, An inline formatting context is established by a block container box that contains no ...
gus's user avatar
  • 132
4 votes
0 answers
206 views

I am having trouble understanding the term "box" as defined in CSS Display 3 § 1, and when it belongs to the "box tree" or "fragment tree". I'm asking for clarification ...
Oskar Grosser's user avatar
0 votes
1 answer
112 views

In a package A, there is an interface named HTMLMediaElement which had some properties i.e., HAVE_METADATA: number; HAVE_CURRENT_DATA: number; HAVE_NOTHING: number; NETWORK_NO_SOURCE: number; ...
Aarrav Agarwal's user avatar
-1 votes
1 answer
106 views

According to the documentation: https://www.w3.org/TR/CSS22/visuren.html#anonymous-block-level The properties of anonymous boxes are inherited from the enclosing non-anonymous box (e.g., in the ...
user avatar
0 votes
1 answer
65 views

https://www.w3.org/TR/CSS22/visuren.html#inline-boxes An inline box is one that is both inline-level and whose contents participate in its containing inline formatting context. A non-replaced element ...
user avatar
0 votes
0 answers
63 views

According to the documentation, it states the following: https://www.w3.org/TR/CSS22/visuren.html#anonymous-block-level The line boxes before the break and after the break are enclosed in anonymous ...
user avatar
0 votes
1 answer
457 views

Application can't start with following exception: INFO: Initializing Spring root WebApplicationContext 15:19:04.697 [main] ERROR org.springframework.web.context.ContextLoader - Context initialization ...
Dove's user avatar
  • 183
0 votes
1 answer
782 views

https://w3c.github.io/csswg-drafts/css2/#inline-boxes An inline box is one that is both inline-level and whose contents participate in its containing inline formatting context. A non-replaced element ...
user avatar
3 votes
1 answer
1k views

I'm trying to have an azure function (.net core 6 isolated) where I want to have connected to application insights and user W3C traceparent as my correlation method. I have installed System....
FEST's user avatar
  • 883
2 votes
0 answers
122 views

With the DOM Standard: For convenience, a range’s start node is its start’s node, its start offset is its start’s offset, its end node is its end’s node, and its end offset is its end’s offset. But ...
kakakali's user avatar
  • 305
0 votes
1 answer
255 views

I am attempting to write a class library that can be used to take an input colour in any format and returns one of two colours that subscribes to the W3 standards for good readability. Due to the font ...
TimesNewRobot's user avatar

1
2 3 4 5
25