Source
StyleElement createStyleElement(String css, [d = null]) { HtmlDocument doc = d ?? document; if (doc == null) doc = document; var el = doc.createElement('STYLE'); el.text = css; return el; }
StyleElement createStyleElement(String css, [d = null]) { HtmlDocument doc = d ?? document; if (doc == null) doc = document; var el = doc.createElement('STYLE'); el.text = css; return el; }