about summary refs log tree commit diff stats
path: root/src/html/htmlparser.nim
diff options
context:
space:
mode:
Diffstat (limited to 'src/html/htmlparser.nim')
-rw-r--r--src/html/htmlparser.nim6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/html/htmlparser.nim b/src/html/htmlparser.nim
index 5467e321..bee1ed9d 100644
--- a/src/html/htmlparser.nim
+++ b/src/html/htmlparser.nim
@@ -330,12 +330,6 @@ template insert_character_impl(parser: var HTML5Parser, data: typed) =
     let text = location.inside.document.createTextNode($data)
     location.insert(text)
 
-  if location.inside.nodeType == ELEMENT_NODE:
-    let parent = Element(location.inside)
-    if parent.tagType == TAG_STYLE:
-      let parent = HTMLStyleElement(parent)
-      parent.sheet_invalid = true
-
 proc insertCharacter(parser: var HTML5Parser, data: string) =
   insert_character_impl(parser, data)