google-code-export / mgwt

Automatically exported from code.google.com/p/mgwt
Other
1 stars 0 forks source link

ProgressIndicator rendering with firefox (linux, windows) #288

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?

1.Create a panel which enables ProgressIndicator:

/*
** MobileLoadingPanel.java
*/
public class MobileLoadingPanel extends Composite {

    private static MobileLoadingPanelUiBinder uiBinder = GWT.create(MobileLoadingPanelUiBinder.class);

    interface MobileLoadingPanelUiBinder extends UiBinder<Widget, MobileLoadingPanel> {
    }

    public MobileLoadingPanel() {
        initWidget(uiBinder.createAndBindUi(this));
    }
}

/*
** MobileLoadingPanel.ui.xml
*/
<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
         xmlns:g="urn:import:com.google.gwt.user.client.ui"
             xmlns:m="urn:import:com.googlecode.mgwt.ui.client.widget">

    <ui:style>
        .indicator {
            margin: auto;
            margin-top: 50px;
        }

        .text {
            text-align: center;
            margin-top: 20px;
        }
    </ui:style>

    <m:LayoutPanel>
        <m:ProgressIndicator addStyleNames="{style.indicator}" />
        <g:HTML addStyleNames="{style.text}">
            <ui:text from="{msg.loadingMessage}" />
        </g:HTML>
    </m:LayoutPanel>
</ui:UiBinder>

What is the expected output? What do you see instead?

Expected: see picture (chrome_c.png) from Google Chrome 

Shown instead: see pictures (firefox0x_c.png) from Mozilla Firefox

What version of the product are you using? On what operating system?
master build  

Please provide any additional information below.

Original issue reported on code.google.com by c.ramass...@gmail.com on 14 Jan 2013 at 1:53

Attachments:

GoogleCodeExporter commented 9 years ago
Desktop firefox is not a support target for mgwt.

Original comment by kurka.da...@gmail.com on 13 Jul 2014 at 7:51