What steps will reproduce the problem?
1. open
http://workshop.chromeexperiments.com/examples/gui/#4--Color-Controllers with
Chrome/Chromium on osx
2.
3.
What is the expected output? What do you see instead?
The color picker is not rendered correctly and does not work. On Chromium the
hue slider is rendered below the saturation/value box, which is not updated
properly. See attachments.
What version of the product are you using? On what operating system?
Latest version of Chrome (25.0.1364.26 dev) and Chromium (26.0.1380.0 (176058)
) on osx 10.8
Please provide any additional information below.
Rendering seems to be correct with Safari/Firefox.
test.html
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="http://dat-gui.googlecode.com/git/build/dat.gui.min.js"></script>
</head>
<body>
<script type="text/javascript">
var MyObj = function() {
this.x = 5;
this.color = [0, 255, 255];
};
var obj = new MyObj();
var gui = new dat.GUI();
gui.add(obj, 'x');
gui.addColor(obj, 'color');
</script>
</body>
</html>
Original issue reported on code.google.com by thecolou...@gmail.com on 10 Jan 2013 at 11:12
Original issue reported on code.google.com by
thecolou...@gmail.com
on 10 Jan 2013 at 11:12Attachments: