OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |