private static void LoadSvg(this GeckoWebBrowser browser, string innerSvg) { browser.LoadBase64EncodedData("image/svg+xml", "<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.0//EN\" \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">" + "<svg xmlns=\"http://www.w3.org/2000/svg\">" + innerSvg + "</svg>"); browser.NavigateFinishedNotifier.BlockUntilNavigationFinished(); }