I have seen some stylesheets are injected in hosted html page which has href value null. Are those coming from styles declared in ui.xml file? How the styles declared in ui.xml files get reflected in gwt?
<ui:style>
in UiBinder are internally known as implicit CssResource
: <ui:style>
, <ui:image>
and <ui:data>
generate implicit resources in an implicit ClientBundle
. UiBinder automatically calls ensureInjected()
on the implicit CssResource
s (generated by <ui:style>
)