gnome-shell/tests/interactive/transitions.js
Jasper St. Pierre c7196a519f tests: Run each test in a function
As the global object of a context is rooted, if we want the GC to act
on these objects we need to take them out of the globals.

https://bugzilla.gnome.org/show_bug.cgi?id=678737
2012-06-24 19:20:48 -04:00

37 lines
1.2 KiB
JavaScript

// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
const Clutter = imports.gi.Clutter;
const St = imports.gi.St;
const UI = imports.testcommon.ui;
function test() {
let stage = new Clutter.Stage();
UI.init(stage);
let hbox = new St.BoxLayout({ name: 'transition-container',
reactive: true,
track_hover: true,
width: stage.width,
height: stage.height,
style: 'padding: 10px;'
+ 'spacing: 10px;' });
stage.add_actor(hbox);
for (let i = 0; i < 5; i ++) {
let label = new St.Label({ text: (i+1).toString(),
name: "label" + i,
style_class: 'transition-label',
reactive: true,
track_hover: true });
hbox.add(label, { x_fill: false,
y_fill: false });
}
////////////////////////////////////////////////////////////////////////////////
UI.main(stage);
}
test();