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

Side by Side Diff: third_party/WebCore/html/canvas/CanvasRenderingContext2D.idl

Issue 10993053: Roll IDL to multivm@910, Take #2 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix for indexeddb Created 8 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 /* 1 /*
2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. 2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 attribute float lineWidth; 67 attribute float lineWidth;
68 attribute [TreatNullAs=NullString] DOMString lineCap; 68 attribute [TreatNullAs=NullString] DOMString lineCap;
69 attribute [TreatNullAs=NullString] DOMString lineJoin; 69 attribute [TreatNullAs=NullString] DOMString lineJoin;
70 attribute float miterLimit; 70 attribute float miterLimit;
71 71
72 attribute float shadowOffsetX; 72 attribute float shadowOffsetX;
73 attribute float shadowOffsetY; 73 attribute float shadowOffsetY;
74 attribute float shadowBlur; 74 attribute float shadowBlur;
75 attribute [TreatNullAs=NullString] DOMString shadowColor; 75 attribute [TreatNullAs=NullString] DOMString shadowColor;
76 76
77 void setLineDash(in sequence<float> dash);
78 sequence<float> getLineDash();
79 attribute float lineDashOffset;
80
77 // FIXME: These attributes should also be implemented for V8. 81 // FIXME: These attributes should also be implemented for V8.
78 #if !(defined(V8_BINDING) && V8_BINDING) 82 #if !(defined(V8_BINDING) && V8_BINDING)
79 attribute [Custom] Array webkitLineDash; 83 attribute [Custom] Array webkitLineDash;
80 attribute float webkitLineDashOffset; 84 attribute float webkitLineDashOffset;
81 #endif 85 #endif
82 86
83 void clearRect(in [Optional=DefaultIsUndefined] float x, 87 void clearRect(in [Optional=DefaultIsUndefined] float x,
84 in [Optional=DefaultIsUndefined] float y, 88 in [Optional=DefaultIsUndefined] float y,
85 in [Optional=DefaultIsUndefined] float width, 89 in [Optional=DefaultIsUndefined] float width,
86 in [Optional=DefaultIsUndefined] float height); 90 in [Optional=DefaultIsUndefined] float height);
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 in [Optional=DefaultIsUndefined] float sw , in [Optional=DefaultIsUndefined] float sh) 234 in [Optional=DefaultIsUndefined] float sw , in [Optional=DefaultIsUndefined] float sh)
231 raises(DOMException); 235 raises(DOMException);
232 236
233 readonly attribute float webkitBackingStorePixelRatio; 237 readonly attribute float webkitBackingStorePixelRatio;
234 238
235 attribute boolean webkitImageSmoothingEnabled; 239 attribute boolean webkitImageSmoothingEnabled;
236 }; 240 };
237 241
238 } 242 }
239 243
OLDNEW
« no previous file with comments | « third_party/WebCore/html/canvas/CanvasRenderingContext.idl ('k') | third_party/WebCore/page/DOMWindow.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698