Re: CSS example in action

This is a super example @Brian!

I have a difficulty with the last paragraph:

- Houdini’s: refs?
- exposing the CSS parser seems to me less relevant than exposing the 
CSS selection mechanism which is ultimately needed
- why not point to the codepen example?

paul

On 9 Oct 2021, at 8:18, Neil Soiffer wrote:

> I suspect most people don't see the commit logs, so I thought I'd 
> share a
> link Brian had in his commit to a codepen that shows a working example 
> of
> his CSS example <https://codepen.io/bkardell/pen/xxLKOxo?editors=1111> 
> in
> the gap analysis <https://w3c.github.io/mathml-docs/gap-analysis/#css> 
> .
>
> Basically, the JS takes the "CSS" and adds aria-label so that
> <mathml>
>   <mrow data-intent="point"">
>     <mo>(</mo>
>     <mi class="arg1">0</mi>
>     <mo>,</mo>
>     <mi class="arg2">5</mi>
>     <mo>)</mo>
>   </mrow>
> </mathml>
>
> becomes
> <mathml>
>   <mrow data-intent="point" aria-label="the point 0 comma 5">
>     <mo>(</mo>
>     <mi class="arg1">0</mi>
>     <mo>,</mo>
>     <mi class="arg2">5</mi>
>     <mo>)</mo>
>   </mrow>
> </mathml>

Received on Saturday, 9 October 2021 06:44:21 UTC