qasta / gwt-diagrams

Automatically exported from code.google.com/p/gwt-diagrams
0 stars 0 forks source link

multiple color rendering for connections not supported in IE #24

Open GoogleCodeExporter opened 9 years ago

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

        BezierTwoEndedConnection connection = new BezierTwoEndedConnection(c1, c2);
        BezierTwoEndedConnection connection2 = new BezierTwoEndedConnection(c1, c3);
        ap.add(connection);
        ap.add(connection2);        
        RootPanel.get().add(ap);
        DOM.setStyleAttribute(connection.getElement(), "color", "#00BB00");
        connection.update();
        DOM.setStyleAttribute(connection2.getElement(), "color", "#CC00FF");
        connection2.update();

What is the expected output?
the 1st connection is green, the 2nd connection is purple

What do you see instead?
as expected in firefox and safari, both connections are purple in internet
explorer 7 and 6

What version of the product are you using? On what operating system?
0.1 on Linux CentOS

Please provide any additional information below.

Original issue reported on code.google.com by frde...@yahoo.fr on 14 Mar 2008 at 9:39

GoogleCodeExporter commented 9 years ago

Original comment by michal.b...@gmail.com on 14 Mar 2008 at 6:10