1
0
Fork 0
mutter-performance-source/tests/data/test-script-named-object.json
Emmanuele Bassi 7d842079ca conform: Add named object property unit for ClutterScript
We should exercise the resolution of the object properties containing a
string pointing to an object previously defined using ClutterScript.
2009-11-30 19:11:00 +00:00

22 lines
379 B
JSON

[
{
"id" : "layout",
"type" : "ClutterBoxLayout",
"vertical" : true,
"spacing" : 12,
"pack-start" : false
},
{
"id" : "test",
"type" : "ClutterBox",
"layout-manager" : "layout",
"children" : [
{
"id" : "child-1",
"type" : "ClutterRectangle",
"width" : "3 em",
"height" : "3 em"
}
]
}
]