- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / third_party / spaceport / js / sprites / container.js
1 define([ ], function () {
2     function container() {
3         var el = document.createElement('div');
4         el.style.overflow = 'hidden';
5         el.style.position = 'absolute';
6         el.style.left = '0';
7         el.style.top = '0';
8         el.style.width = '512px';
9         el.style.height = '512px';
10         el.style.background = '#FFFFFF';
11         return el;
12     }
13
14     return container;
15 });