diff options
author | bptato <nincsnevem662@gmail.com> | 2022-07-18 17:58:38 +0200 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2022-07-18 17:58:38 +0200 |
commit | d6000870dbf2f110c3903e03833151cce1d9759a (patch) | |
tree | 0a1ab21793d9413c764d594a36396234be1ddbc0 /src/io/buffer.nim | |
parent | 918964940ddbbef317168392bc5f5e193a7a96cd (diff) | |
download | chawan-d6000870dbf2f110c3903e03833151cce1d9759a.tar.gz |
Enable remote stylesheets; fix inline block values
Diffstat (limited to 'src/io/buffer.nim')
-rw-r--r-- | src/io/buffer.nim | 2 |
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: |