Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(43)

Side by Side Diff: chrome/test/data/third_party/spaceport/js/sprites/container.js

Issue 10154006: Add test data for spaceport benchmark. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698