repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Disable view source for Developer Tools.
[chromium-blink-merge.git]
/
chrome
/
test
/
data
/
third_party
/
spaceport
/
js
/
sprites
/
container.js
blob
7291ff8694aa213ffd791ebd99fc51bfd8345e1e
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
});