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

Unified Diff: chrome/test/data/third_party/spaceport/js/tables.js

Issue 10134041: 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/third_party/spaceport/js/tables.js
diff --git a/chrome/test/data/third_party/spaceport/js/tables.js b/chrome/test/data/third_party/spaceport/js/tables.js
new file mode 100644
index 0000000000000000000000000000000000000000..753442b2aec0fcd6b426d15e1e3173cbf203b4ea
--- /dev/null
+++ b/chrome/test/data/third_party/spaceport/js/tables.js
@@ -0,0 +1,75 @@
+define([ ], function () {
+ return {
+ performance: {
+ sprites: {
+ $title: 'Source type',
+ image: 'Static <img>',
+ //spriteSheet: 'Animated sprite sheet',
+
+ $children: {
+ $title: 'Technique',
+ css2dImg: 'CSS3 2D transforms with <img>',
+ css3dImg: 'CSS3 3D transforms with <img>',
+ css2dBackground: 'CSS3 2D transforms with CSS backgrounds',
+ css3dBackground: 'CSS3 3D transforms with CSS backgrounds',
+ //cssMatrixImg: 'CSSMatrix transforms with <img>',
+ canvasDrawImageFullClear: 'Canvas drawImage, full clear',
+ canvasDrawImageFullClearAlign: 'Canvas drawImage, full clear, pixel aligned',
+ canvasDrawImagePartialClear: 'Canvas drawImage, partial clear',
+ canvasDrawImagePartialClearAlign: 'Canvas drawImage, partial clear, pixel aligned',
+
+ $children: {
+ $title: 'Test type',
+ $errors: true,
+ scale: 'Scale',
+ translate: 'Translate',
+ rotate: 'Rotate',
+
+ $children: {
+ $mode: 'horizontal',
+ js: 'JS time (ms)',
+ objectCount: 'Objects at 30FPS'
+ }
+ }
+ }
+ }
+
+ /*
+ text: {
+ $title: 'Font family',
+ sans: 'sans-serif',
+ serif: 'serif',
+ monospace: 'monospace',
+
+ $children: {
+ $title: 'Font size',
+ '8': '8pt',
+ '10': '10pt',
+ '12': '12pt',
+ '14': '14pt',
+ '16': '16pt',
+ '24': '24pt',
+
+ $children: {
+ $title: 'Style',
+ outline: 'Solid outline',
+ fill: 'Solid fill',
+ fillOutline: 'Solid fill + outline',
+
+ $children: {
+ $mode: 'horizontal',
+ score: 'Score'
+ }
+ }
+ }
+ },
+
+ audioLatency: {
+ $title: 'Type',
+ coldLatency: 'Cold latency (ms)',
+ warmLatency: 'Warm latency (ms)'
+ }
+ */
+ }
+ };
+});

Powered by Google App Engine
This is Rietveld 408576698