dwighthouse

Results 8 issues of dwighthouse

**Version** Node v17.0.1 nut.js v2.0.1 **Short overview** Trying to retrieve title of any window results in Seg Fault and no other information, program ends immediately. **Issue occurs on** - [...

bug

Passing CSS variable values to a mixin results in corrupted output. Both color and size type values were tested, with the resulting output of both always being a substring of...

Passing color values that are not hex-based or named results in corrupted output. Different variations of rgb and hsl are tried below, with the resulting output always being a substring...

Related to: https://github.com/jonathantneal/postcss-advanced-variables/issues/76 There are two ways to avoid passing a required param to a mixin: empty params (`@include some-mixin();`) and no params (`@include some-mixin;`). However, they behave differently. Empty...

Including empty params on a mixin include (when there are default params) causes an empty string to be assumed for the passed value, rather than indicating that nothing was passed....

I'm working my way through the scripts here, learning what I've missed for the last few months since being away. In `misc/basic_keys.py`, for reasons I don't fully understand, the context...

Say you have a webc component for your header: ``` :host { color: #fff; & h1 { padding-bottom: 0.5rem; } } ``` The output of the HTML is as you...

According to the docs, dynamic props will "[evaluate as JavaScript (any data type, not just strings)](https://www.11ty.dev/docs/languages/webc/#props-(properties))". I attempted to send an arbitrary, small object through a dynamic prop: `` Where...