Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / test / data / third_party / spaceport / js / sprites / container.js
blob7291ff8694aa213ffd791ebd99fc51bfd8345e1e
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     }
14     return container;
15 });