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

Side by Side Diff: chrome/test/data/extensions/api_test/media_galleries/common/common.js

Issue 24420003: Media Galleries: Run API tests in a temp directory with an injected common.js file. Avoid the need … (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Valid WEBP image. 5 // Valid WEBP image.
6 // TODO(thestig) Maybe copy these files to a media gallery in the C++ setup 6 // TODO(thestig) Maybe copy these files to a media gallery in the C++ setup
7 // phase to avoid having this and webkitRequestFileSystem() below. 7 // phase to avoid having this and webkitRequestFileSystem() below.
8 var validWEBPImageCase = { 8 var validWEBPImageCase = {
9 filename: "valid.webp", 9 filename: "valid.webp",
10 blobString: "RIFF0\0\0\0WEBPVP8 $\0\0\0\xB2\x02\0\x9D\x01\x2A" + 10 blobString: "RIFF0\0\0\0WEBPVP8 $\0\0\0\xB2\x02\0\x9D\x01\x2A" +
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 width: 800, 90 width: 800,
91 height: 600, 91 height: 600,
92 left: 100, 92 left: 100,
93 top: 100 93 top: 100
94 }, 94 },
95 minWidth: 800, 95 minWidth: 800,
96 minHeight: 600 96 minHeight: 600
97 }); 97 });
98 }); 98 });
99 } 99 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698