blob: f33bfddb299df3c9ce69e58c1dc66465ed8d4ed2 [file] [log] [blame]
reed@google.comdceecc72012-02-23 19:20:19 +00001/*
2 * Copyright 2012 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "include/core/SkBitmap.h"
9#include "include/core/SkCanvas.h"
10#include "include/core/SkColor.h"
11#include "include/core/SkImageInfo.h"
12#include "include/core/SkMatrix.h"
13#include "include/core/SkPaint.h"
14#include "include/core/SkPath.h"
15#include "include/core/SkPathEffect.h"
16#include "include/core/SkPoint.h"
17#include "include/core/SkRRect.h"
18#include "include/core/SkRect.h"
19#include "include/core/SkRefCnt.h"
20#include "include/core/SkScalar.h"
21#include "include/core/SkStrokeRec.h"
22#include "include/core/SkSurface.h"
23#include "include/core/SkTypes.h"
24#include "include/effects/SkDashPathEffect.h"
25#include "tests/Test.h"
reed@google.comdceecc72012-02-23 19:20:19 +000026
reed@google.comf272e352013-08-26 21:27:03 +000027// test that we can draw an aa-rect at coordinates > 32K (bigger than fixedpoint)
28static void test_big_aa_rect(skiatest::Reporter* reporter) {
29 SkBitmap output;
30 SkPMColor pixel[1];
commit-bot@chromium.org00f8d6c2014-05-29 15:57:20 +000031 output.installPixels(SkImageInfo::MakeN32Premul(1, 1), pixel, 4);
reed@google.comf272e352013-08-26 21:27:03 +000032
reede8f30622016-03-23 18:59:25 -070033 auto surf = SkSurface::MakeRasterN32Premul(300, 33300);
reed@google.comf272e352013-08-26 21:27:03 +000034 SkCanvas* canvas = surf->getCanvas();
35
36 SkRect r = { 0, 33000, 300, 33300 };
37 int x = SkScalarRoundToInt(r.left());
38 int y = SkScalarRoundToInt(r.top());
39
40 // check that the pixel in question starts as transparent (by the surface)
Mike Reedf1942192017-07-21 14:24:29 -040041 if (surf->readPixels(output, x, y)) {
reed@google.comf272e352013-08-26 21:27:03 +000042 REPORTER_ASSERT(reporter, 0 == pixel[0]);
43 } else {
Brian Salomon1c80e992018-01-29 09:50:47 -050044 REPORTER_ASSERT(reporter, false, "readPixels failed");
reed@google.comf272e352013-08-26 21:27:03 +000045 }
46
47 SkPaint paint;
48 paint.setAntiAlias(true);
49 paint.setColor(SK_ColorWHITE);
50
51 canvas->drawRect(r, paint);
52
53 // Now check that it is BLACK
Mike Reedf1942192017-07-21 14:24:29 -040054 if (surf->readPixels(output, x, y)) {
reed@google.comf272e352013-08-26 21:27:03 +000055 // don't know what swizzling PMColor did, but white should always
56 // appear the same.
57 REPORTER_ASSERT(reporter, 0xFFFFFFFF == pixel[0]);
58 } else {
Brian Salomon1c80e992018-01-29 09:50:47 -050059 REPORTER_ASSERT(reporter, false, "readPixels failed");
reed@google.comf272e352013-08-26 21:27:03 +000060 }
reed@google.comf272e352013-08-26 21:27:03 +000061}
62
63///////////////////////////////////////////////////////////////////////////////
64
reed@google.comb59ed512012-06-15 18:26:04 +000065static void moveToH(SkPath* path, const uint32_t raw[]) {
66 const float* fptr = (const float*)raw;
67 path->moveTo(fptr[0], fptr[1]);
68}
69
70static void cubicToH(SkPath* path, const uint32_t raw[]) {
71 const float* fptr = (const float*)raw;
72 path->cubicTo(fptr[0], fptr[1], fptr[2], fptr[3], fptr[4], fptr[5]);
73}
74
75// This used to assert, because we performed a cast (int)(pt[0].fX * scale) to
76// arrive at an int (SkFDot6) rather than calling sk_float_round2int. The assert
77// was that the initial line-segment produced by the cubic was not monotonically
78// going down (i.e. the initial DY was negative). By rounding the floats, we get
79// the more proper result.
80//
81// http://code.google.com/p/chromium/issues/detail?id=131181
82//
humper@google.com05af1af2013-01-07 16:47:43 +000083
84// we're not calling this test anymore; is that for a reason?
85
sugoi@google.com54f0d1b2013-02-27 19:17:41 +000086static void test_crbug131181() {
reed@google.comb59ed512012-06-15 18:26:04 +000087 /*
88 fX = 18.8943768,
89 fY = 129.121277
90 }, {
91 fX = 18.8937435,
92 fY = 129.121689
93 }, {
94 fX = 18.8950119,
95 fY = 129.120422
96 }, {
97 fX = 18.5030727,
98 fY = 129.13121
99 */
100 uint32_t data[] = {
101 0x419727af, 0x43011f0c, 0x41972663, 0x43011f27,
102 0x419728fc, 0x43011ed4, 0x4194064b, 0x43012197
103 };
rmistry@google.comd6176b02012-08-23 18:14:13 +0000104
reed@google.comb59ed512012-06-15 18:26:04 +0000105 SkPath path;
106 moveToH(&path, &data[0]);
107 cubicToH(&path, &data[2]);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000108
reede8f30622016-03-23 18:59:25 -0700109 auto surface(SkSurface::MakeRasterN32Premul(640, 480));
rmistry@google.comd6176b02012-08-23 18:14:13 +0000110
reed@google.comb59ed512012-06-15 18:26:04 +0000111 SkPaint paint;
112 paint.setAntiAlias(true);
reed3054be12014-12-10 07:24:28 -0800113 surface->getCanvas()->drawPath(path, paint);
reed@google.comb59ed512012-06-15 18:26:04 +0000114}
115
reed@google.come2faf172012-08-06 19:01:34 +0000116// This used to assert in debug builds (and crash writing bad memory in release)
117// because we overflowed an intermediate value (B coefficient) setting up our
118// stepper for the quadratic. Now we bias that value by 1/2 so we don't overflow
sugoi@google.com54f0d1b2013-02-27 19:17:41 +0000119static void test_crbug_140803() {
reed@google.come2faf172012-08-06 19:01:34 +0000120 SkBitmap bm;
commit-bot@chromium.orgfa9e5fa2014-02-13 22:00:04 +0000121 bm.allocN32Pixels(2700, 30*1024);
reed@google.come2faf172012-08-06 19:01:34 +0000122 SkCanvas canvas(bm);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000123
reed@google.come2faf172012-08-06 19:01:34 +0000124 SkPaint paint;
125 paint.setAntiAlias(true);
Mike Reedb6317422018-08-15 10:23:39 -0400126 canvas.drawPath(SkPath().moveTo(2762, 20).quadTo(11, 21702, 10, 21706), paint);
reed@google.come2faf172012-08-06 19:01:34 +0000127}
128
Michael Ludwigc7ffd5e2021-09-09 20:21:59 -0400129static void test_crbug_1239558(skiatest::Reporter* reporter) {
130 SkBitmap bm;
131 bm.allocN32Pixels(256, 256);
132
133 SkCanvas canvas(bm);
134 canvas.clear(SK_ColorWHITE);
135
136 // This creates a single cubic where the control points form an extremely skinny, vertical
137 // triangle contained within the x=0 column of pixels. Since it is convex (ignoring the leading
138 // moveTo's) it uses the convex aaa optimized edge walking algorithm after clipping the path to
139 // the device bounds. However, due to fixed-point math while walking these edges, the edge
140 // walking evaluates to coords that are very slightly less than 0 (i.e. 0.0012). Both the left
141 // and right edges would be out of bounds, but the edge walking is optimized to only clamp the
142 // left edge to the left bounds, and the right edge to the right bounds. After this clamping,
143 // the left and right edges are no longer sorted. This then led to incorrect behavior in various
144 // forms (described below).
145 SkPath path;
146 path.setFillType(SkPathFillType::kWinding);
147 path.moveTo(7.00649e-45f, 2.f);
148 path.moveTo(0.0160219f, 7.45063e-09f);
149 path.moveTo(192.263f, 8.40779e-44f);
150 path.moveTo(7.34684e-40f, 194.25f);
151 path.moveTo(2.3449e-38f, 6.01858e-36f);
152 path.moveTo(7.34684e-40f, 194.25f);
153 path.cubicTo(5.07266e-39f, 56.0488f,
154 0.0119172f, 0.f,
155 7.34684e-40f, 194.25f);
156
157 SkPaint paint;
158 paint.setColor(SK_ColorRED);
159 paint.setAntiAlias(true);
160 // On debug builds, the inverted left/right edges led to a negative coverage that triggered an
161 // assert while converting to a uint8 alpha value. On release builds with UBSAN, it would
162 // detect a negative left shift when computing the pixel address and crash. On regular release
163 // builds it would write a saturate coverage value to pixels that wrapped around to the far edge
164 canvas.drawPath(path, paint);
165
166 // UBSAN and debug builds would fail inside the drawPath() call above, but detect the incorrect
167 // memory access on release builds so that the test would fail. Given the path, it should only
168 // touch pixels with x=0 but the incorrect addressing would wrap to the right edge.
169 for (int y = 0; y < 256; ++y) {
170 if (bm.getColor(255, y) != SK_ColorWHITE) {
171 REPORTER_ASSERT(reporter, false, "drawPath modified incorrect pixels");
172 break;
173 }
174 }
175}
176
reed@google.com9d5f76a2012-05-01 14:49:28 +0000177// Need to exercise drawing an inverse-path whose bounds intersect the clip,
178// but whose edges do not (since its a quad which draws only in the bottom half
179// of its bounds).
180// In the debug build, we used to assert in this case, until it was fixed.
181//
sugoi@google.com54f0d1b2013-02-27 19:17:41 +0000182static void test_inversepathwithclip() {
reed@google.com9d5f76a2012-05-01 14:49:28 +0000183 SkPath path;
rmistry@google.comd6176b02012-08-23 18:14:13 +0000184
reed3054be12014-12-10 07:24:28 -0800185 path.moveTo(0, 20);
186 path.quadTo(10, 10, 20, 20);
reed@google.com9d5f76a2012-05-01 14:49:28 +0000187 path.toggleInverseFillType();
188
189 SkPaint paint;
190
reede8f30622016-03-23 18:59:25 -0700191 auto surface(SkSurface::MakeRasterN32Premul(640, 480));
reed3054be12014-12-10 07:24:28 -0800192 SkCanvas* canvas = surface->getCanvas();
193 canvas->save();
194 canvas->clipRect(SkRect::MakeWH(19, 11));
reed@google.com9d5f76a2012-05-01 14:49:28 +0000195
196 paint.setAntiAlias(false);
reed3054be12014-12-10 07:24:28 -0800197 canvas->drawPath(path, paint);
reed@google.com9d5f76a2012-05-01 14:49:28 +0000198 paint.setAntiAlias(true);
reed3054be12014-12-10 07:24:28 -0800199 canvas->drawPath(path, paint);
reed@google.com9d5f76a2012-05-01 14:49:28 +0000200
reed3054be12014-12-10 07:24:28 -0800201 canvas->restore();
rmistry@google.comd6176b02012-08-23 18:14:13 +0000202
reed@google.com9d5f76a2012-05-01 14:49:28 +0000203 // Now do the test again, with the path flipped, so we only draw in the
204 // top half of our bounds, and have the clip intersect our bounds at the
205 // bottom.
206 path.reset(); // preserves our filltype
reed3054be12014-12-10 07:24:28 -0800207 path.moveTo(0, 10);
208 path.quadTo(10, 20, 20, 10);
209 canvas->clipRect(SkRect::MakeXYWH(0, 19, 19, 11));
reed@google.com9d5f76a2012-05-01 14:49:28 +0000210
211 paint.setAntiAlias(false);
reed3054be12014-12-10 07:24:28 -0800212 canvas->drawPath(path, paint);
reed@google.com9d5f76a2012-05-01 14:49:28 +0000213 paint.setAntiAlias(true);
reed3054be12014-12-10 07:24:28 -0800214 canvas->drawPath(path, paint);
reed@google.com9d5f76a2012-05-01 14:49:28 +0000215}
216
sugoi@google.com54f0d1b2013-02-27 19:17:41 +0000217static void test_bug533() {
mike@reedtribe.org6093e652012-04-14 12:55:17 +0000218 /*
219 http://code.google.com/p/skia/issues/detail?id=533
220 This particular test/bug only applies to the float case, where the
221 coordinates are very large.
222 */
223 SkPath path;
224 path.moveTo(64, 3);
225 path.quadTo(-329936, -100000000, 1153, 330003);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000226
mike@reedtribe.org6093e652012-04-14 12:55:17 +0000227 SkPaint paint;
228 paint.setAntiAlias(true);
229
reede8f30622016-03-23 18:59:25 -0700230 auto surface(SkSurface::MakeRasterN32Premul(640, 480));
reed3054be12014-12-10 07:24:28 -0800231 surface->getCanvas()->drawPath(path, paint);
mike@reedtribe.org6093e652012-04-14 12:55:17 +0000232}
233
sugoi@google.com54f0d1b2013-02-27 19:17:41 +0000234static void test_crbug_140642() {
reed@google.comd9ee3482012-08-06 14:58:35 +0000235 /*
236 * We used to see this construct, and due to rounding as we accumulated
237 * our length, the loop where we apply the phase would run off the end of
238 * the array, since it relied on just -= each interval value, which did not
239 * behave as "expected". Now the code explicitly checks for walking off the
240 * end of that array.
241
242 * A different (better) fix might be to rewrite dashing to do all of its
243 * length/phase/measure math using double, but this may need to be
244 * coordinated with SkPathMeasure, to be consistent between the two.
245
246 <path stroke="mintcream" stroke-dasharray="27734 35660 2157846850 247"
247 stroke-dashoffset="-248.135982067">
248 */
249
reed@google.comd9ee3482012-08-06 14:58:35 +0000250 const SkScalar vals[] = { 27734, 35660, 2157846850.0f, 247 };
reeda4393342016-03-18 11:22:57 -0700251 auto dontAssert = SkDashPathEffect::Make(vals, 4, -248.135982067f);
reed@google.comd9ee3482012-08-06 14:58:35 +0000252}
253
sugoi@google.com54f0d1b2013-02-27 19:17:41 +0000254static void test_crbug_124652() {
reed@google.com1df888b2012-04-24 22:47:21 +0000255 /*
256 http://code.google.com/p/chromium/issues/detail?id=124652
257 This particular test/bug only applies to the float case, where
258 large values can "swamp" small ones.
259 */
260 SkScalar intervals[2] = {837099584, 33450};
reeda4393342016-03-18 11:22:57 -0700261 auto dontAssert = SkDashPathEffect::Make(intervals, 2, -10);
reed@google.com1df888b2012-04-24 22:47:21 +0000262}
263
sugoi@google.com54f0d1b2013-02-27 19:17:41 +0000264static void test_bigcubic() {
reed@google.coma90aa532012-04-16 16:27:09 +0000265 SkPath path;
266 path.moveTo(64, 3);
267 path.cubicTo(-329936, -100000000, -329936, 100000000, 1153, 330003);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000268
reed@google.coma90aa532012-04-16 16:27:09 +0000269 SkPaint paint;
270 paint.setAntiAlias(true);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000271
reede8f30622016-03-23 18:59:25 -0700272 auto surface(SkSurface::MakeRasterN32Premul(640, 480));
reed3054be12014-12-10 07:24:28 -0800273 surface->getCanvas()->drawPath(path, paint);
reed@google.coma90aa532012-04-16 16:27:09 +0000274}
275
caryclark6df61152016-01-04 14:17:47 -0800276// asserts if halfway case is not handled
277static void test_halfway() {
278 SkPaint paint;
279 SkPath path;
280 path.moveTo(16365.5f, 1394);
281 path.lineTo(16365.5f, 1387.5f);
282 path.quadTo(16365.5f, 1385.43f, 16367, 1383.96f);
283 path.quadTo(16368.4f, 1382.5f, 16370.5f, 1382.5f);
284 path.lineTo(16465.5f, 1382.5f);
285 path.quadTo(16467.6f, 1382.5f, 16469, 1383.96f);
286 path.quadTo(16470.5f, 1385.43f, 16470.5f, 1387.5f);
287 path.lineTo(16470.5f, 1394);
288 path.quadTo(16470.5f, 1396.07f, 16469, 1397.54f);
289 path.quadTo(16467.6f, 1399, 16465.5f, 1399);
290 path.lineTo(16370.5f, 1399);
291 path.quadTo(16368.4f, 1399, 16367, 1397.54f);
292 path.quadTo(16365.5f, 1396.07f, 16365.5f, 1394);
293 path.close();
294 SkPath p2;
295 SkMatrix m;
296 m.reset();
297 m.postTranslate(0.001f, 0.001f);
298 path.transform(m, &p2);
299
reede8f30622016-03-23 18:59:25 -0700300 auto surface(SkSurface::MakeRasterN32Premul(640, 480));
caryclark6df61152016-01-04 14:17:47 -0800301 SkCanvas* canvas = surface->getCanvas();
302 canvas->translate(-16366, -1383);
303 canvas->drawPath(p2, paint);
304
305 m.reset();
306 m.postTranslate(-0.001f, -0.001f);
307 path.transform(m, &p2);
308 canvas->drawPath(p2, paint);
309
310 m.reset();
311 path.transform(m, &p2);
312 canvas->drawPath(p2, paint);
313}
314
reed@google.comdceecc72012-02-23 19:20:19 +0000315// we used to assert if the bounds of the device (clip) was larger than 32K
316// even when the path itself was smaller. We just draw and hope in the debug
317// version to not assert.
sugoi@google.com54f0d1b2013-02-27 19:17:41 +0000318static void test_giantaa() {
reed@google.comdceecc72012-02-23 19:20:19 +0000319 const int W = 400;
320 const int H = 400;
reede8f30622016-03-23 18:59:25 -0700321 auto surface(SkSurface::MakeRasterN32Premul(33000, 10));
rmistry@google.comd6176b02012-08-23 18:14:13 +0000322
reed@google.comdceecc72012-02-23 19:20:19 +0000323 SkPaint paint;
324 paint.setAntiAlias(true);
325 SkPath path;
326 path.addOval(SkRect::MakeXYWH(-10, -10, 20 + W, 20 + H));
reed3054be12014-12-10 07:24:28 -0800327 surface->getCanvas()->drawPath(path, paint);
reed@google.comdceecc72012-02-23 19:20:19 +0000328}
329
fmalita@google.combfa04012012-12-12 22:13:58 +0000330// Extremely large path_length/dash_length ratios may cause infinite looping
331// in SkDashPathEffect::filterPath() due to single precision rounding.
332// The test is quite expensive, but it should get much faster after the fix
333// for http://crbug.com/165432 goes in.
334static void test_infinite_dash(skiatest::Reporter* reporter) {
335 SkPath path;
336 path.moveTo(0, 0);
337 path.lineTo(5000000, 0);
338
339 SkScalar intervals[] = { 0.2f, 0.2f };
reeda4393342016-03-18 11:22:57 -0700340 sk_sp<SkPathEffect> dash(SkDashPathEffect::Make(intervals, 2, 0));
fmalita@google.combfa04012012-12-12 22:13:58 +0000341
342 SkPath filteredPath;
343 SkPaint paint;
344 paint.setStyle(SkPaint::kStroke_Style);
commit-bot@chromium.org0a2bf902014-02-20 20:40:19 +0000345 paint.setPathEffect(dash);
fmalita@google.combfa04012012-12-12 22:13:58 +0000346
347 paint.getFillPath(path, &filteredPath);
348 // If we reach this, we passed.
349 REPORTER_ASSERT(reporter, true);
350}
351
fmalita@google.com6b18d242012-12-17 16:27:34 +0000352// http://crbug.com/165432
353// Limit extreme dash path effects to avoid exhausting the system memory.
354static void test_crbug_165432(skiatest::Reporter* reporter) {
355 SkPath path;
356 path.moveTo(0, 0);
357 path.lineTo(10000000, 0);
358
359 SkScalar intervals[] = { 0.5f, 0.5f };
reeda4393342016-03-18 11:22:57 -0700360 sk_sp<SkPathEffect> dash(SkDashPathEffect::Make(intervals, 2, 0));
fmalita@google.com6b18d242012-12-17 16:27:34 +0000361
362 SkPaint paint;
363 paint.setStyle(SkPaint::kStroke_Style);
commit-bot@chromium.org0a2bf902014-02-20 20:40:19 +0000364 paint.setPathEffect(dash);
fmalita@google.com6b18d242012-12-17 16:27:34 +0000365
366 SkPath filteredPath;
367 SkStrokeRec rec(paint);
halcanary96fcdcc2015-08-27 07:41:13 -0700368 REPORTER_ASSERT(reporter, !dash->filterPath(&filteredPath, path, &rec, nullptr));
fmalita@google.com6b18d242012-12-17 16:27:34 +0000369 REPORTER_ASSERT(reporter, filteredPath.isEmpty());
370}
371
herb7cf12dd2016-01-11 08:08:56 -0800372// http://crbug.com/472147
373// This is a simplified version from the bug. RRect radii not properly scaled.
374static void test_crbug_472147_simple(skiatest::Reporter* reporter) {
reede8f30622016-03-23 18:59:25 -0700375 auto surface(SkSurface::MakeRasterN32Premul(1000, 1000));
herb7cf12dd2016-01-11 08:08:56 -0800376 SkCanvas* canvas = surface->getCanvas();
377 SkPaint p;
378 SkRect r = SkRect::MakeLTRB(-246.0f, 33.0f, 848.0f, 33554464.0f);
379 SkVector radii[4] = {
380 { 13.0f, 8.0f }, { 170.0f, 2.0 }, { 256.0f, 33554430.0f }, { 120.0f, 5.0f }
381 };
382 SkRRect rr;
383 rr.setRectRadii(r, radii);
384 canvas->drawRRect(rr, p);
385}
386
387// http://crbug.com/472147
388// RRect radii not properly scaled.
389static void test_crbug_472147_actual(skiatest::Reporter* reporter) {
reede8f30622016-03-23 18:59:25 -0700390 auto surface(SkSurface::MakeRasterN32Premul(1000, 1000));
herb7cf12dd2016-01-11 08:08:56 -0800391 SkCanvas* canvas = surface->getCanvas();
392 SkPaint p;
393 SkRect r = SkRect::MakeLTRB(-246.0f, 33.0f, 848.0f, 33554464.0f);
394 SkVector radii[4] = {
395 { 13.0f, 8.0f }, { 170.0f, 2.0 }, { 256.0f, 33554430.0f }, { 120.0f, 5.0f }
396 };
397 SkRRect rr;
398 rr.setRectRadii(r, radii);
reed73603f32016-09-20 08:42:38 -0700399 canvas->clipRRect(rr);
herb7cf12dd2016-01-11 08:08:56 -0800400
401 SkRect r2 = SkRect::MakeLTRB(0, 33, 1102, 33554464);
402 canvas->drawRect(r2, p);
403}
404
tfarina@chromium.orge4fafb12013-12-12 21:11:12 +0000405DEF_TEST(DrawPath, reporter) {
sugoi@google.com54f0d1b2013-02-27 19:17:41 +0000406 test_giantaa();
407 test_bug533();
408 test_bigcubic();
409 test_crbug_124652();
410 test_crbug_140642();
411 test_crbug_140803();
412 test_inversepathwithclip();
humper@google.com05af1af2013-01-07 16:47:43 +0000413 // why?
sugoi@google.com54f0d1b2013-02-27 19:17:41 +0000414 if (false) test_crbug131181();
fmalita@google.combfa04012012-12-12 22:13:58 +0000415 test_infinite_dash(reporter);
fmalita@google.com6b18d242012-12-17 16:27:34 +0000416 test_crbug_165432(reporter);
herb7cf12dd2016-01-11 08:08:56 -0800417 test_crbug_472147_simple(reporter);
418 test_crbug_472147_actual(reporter);
Michael Ludwigc7ffd5e2021-09-09 20:21:59 -0400419 test_crbug_1239558(reporter);
reed@google.com1c028bd2013-08-28 15:23:19 +0000420 test_big_aa_rect(reporter);
caryclark6df61152016-01-04 14:17:47 -0800421 test_halfway();
reed@google.comdceecc72012-02-23 19:20:19 +0000422}