From 849d16f485b67929d05ce528d330b6b59f4b89c1 Mon Sep 17 00:00:00 2001 From: "Frank A. Krueger" Date: Thu, 21 Mar 2019 14:23:36 -0700 Subject: [PATCH] Fix closing tag on iframe Fixes #223 --- Ooui/Iframe.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Ooui/Iframe.cs b/Ooui/Iframe.cs index 26a917c..ccb22b6 100644 --- a/Ooui/Iframe.cs +++ b/Ooui/Iframe.cs @@ -12,5 +12,7 @@ : base ("iframe") { } + + protected override bool HtmlNeedsFullEndElement => true; } }