1 // =============================================================================
2 // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
3 // Copyright (C) 2008-2008 - INRIA - Jean-Baptiste Silvy
5 // This file is distributed under the same license as the Scilab package.
6 // =============================================================================
8 // <-- TEST WITH GRAPHIC -->
10 // <-- Non-regression test for bug 3092 -->
12 // <-- Bugzilla URL -->
13 // http://bugzilla.scilab.org/show_bug.cgi?id=3092
15 // <-- Short Description -->
16 // clf(<handle>,"reset") doesn't reset the figure size to the default value.
19 f4.figure_size = [400, 200];
24 // check that axes_size are set to default
25 if (f4.axes_size <> defaultFig.axes_size) then pause; end;
27 // check that figure is empty
28 if (f4.children.children <> [] ) then pause; end;