public Stylesheet jsxGet_sheet() {
if (sheet_ != null) {
return sheet_;
}
final HtmlStyle style = (HtmlStyle) getDomNodeOrDie();
final String css = style.getTextContent();
final Cache cache = getWindow().getWebWindow().getWebClient().getCache();
final CSSStyleSheet cached = cache.getCachedStyleSheet(css);
final String uri = getDomNodeOrDie().getPage().getWebResponse().getRequestSettings()
.getUrl().toExternalForm();