about summary refs log tree commit diff stats
path: root/src/html
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2022-05-13 11:56:59 +0200
committerbptato <nincsnevem662@gmail.com>2022-05-13 11:56:59 +0200
commit7e65add5c43063c1f0fc2ece2f895aef7ff560e2 (patch)
tree06c8a869cf7b2688477449156036ebb271925857 /src/html
parent4c959684a4bd4705b4176140092e833dfdab7b7a (diff)
downloadchawan-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.nim4
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