docs icon indicating copy to clipboard operation
docs copied to clipboard

A place to store things for public consumption

Results 8 docs issues
Sort by recently updated
recently updated
newest added

Added note on the ::theme pseudo-class which was never implemented

https://github.com/fergald/docs/blob/master/explainers/css-shadow-parts-1.md#the-all-buttons-in-this-app-should-be-blue-theming-problem Indicates that theming could be acheived by adding styles like: ```css :root::part(some-input) { ... } ``` However, while I could get the exportparts attribute to work as described, I...

::slotted(my-button::part(icon)) Error ::slotted(my-button)::part(icon) Error Is this the way it is designed

Fix minor typo in readme file.

[source file link](https://github.com/fergald/docs/blob/master/explainers/queueMicrotask.md) ```javascript function microtask() { console.log("microtask"); } function task() { console.log("task"); } setTimeout(task, 0); queueMicrotask(microtask); ``` 1. Log "microtask" 2. [Return to the event loop and allow rendering/input...