diff options
author | bptato <nincsnevem662@gmail.com> | 2022-05-13 11:56:59 +0200 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2022-05-13 11:56:59 +0200 |
commit | 7e65add5c43063c1f0fc2ece2f895aef7ff560e2 (patch) | |
tree | 06c8a869cf7b2688477449156036ebb271925857 /src/html | |
parent | 4c959684a4bd4705b4176140092e833dfdab7b7a (diff) | |
download | chawan-7e65add5c43063c1f0fc2ece2f895aef7ff560e2.tar.gz |
SpecifiedValue -> ComputedValue
Actually it's neither but ComputedValue is more accurate.
Diffstat (limited to 'src/html')
-rw-r--r-- | src/html/dom.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/html/dom.nim b/src/html/dom.nim index 924fa7a9..d50c1c8e 100644 --- a/src/html/dom.nim +++ b/src/html/dom.nim @@ -78,8 +78,8 @@ type id*: string classList*: seq[string] attributes*: Table[string, string] - css*: CSSSpecifiedValues - pseudo*: array[PSEUDO_BEFORE..PSEUDO_AFTER, CSSSpecifiedValues] + css*: CSSComputedValues + pseudo*: array[PSEUDO_BEFORE..PSEUDO_AFTER, CSSComputedValues] hover*: bool cssapplied*: bool rendered*: bool |