about summary refs log tree commit diff stats
path: root/src/io/buffer.nim
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2022-07-18 17:58:38 +0200
committerbptato <nincsnevem662@gmail.com>2022-07-18 17:58:38 +0200
commitd6000870dbf2f110c3903e03833151cce1d9759a (patch)
tree0a1ab21793d9413c764d594a36396234be1ddbc0 /src/io/buffer.nim
parent918964940ddbbef317168392bc5f5e193a7a96cd (diff)
downloadchawan-d6000870dbf2f110c3903e03833151cce1d9759a.tar.gz
Enable remote stylesheets; fix inline block values
Diffstat (limited to 'src/io/buffer.nim')
-rw-r--r--src/io/buffer.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/io/buffer.nim b/src/io/buffer.nim
index 0cfcbe18..a9843eb4 100644
--- a/src/io/buffer.nim
+++ b/src/io/buffer.nim
@@ -713,7 +713,7 @@ proc loadResources(buffer: Buffer, document: Document) =
   var stack: seq[Element]
   if document.html != nil:
     stack.add(document.html)
-  while stack.len > 0 and false: #TODO actually implement this
+  while stack.len > 0:
     let elem = stack.pop()
 
     if elem.tagType == TAG_LINK: