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

Side by Side Diff: third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2D.idl

Issue 1919363002: Add createGradient and createPattern to OffscreenCanvas2D in worker (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ScriptState Created 4 years, 7 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
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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 // image smoothing 61 // image smoothing
62 [ImplementedAs=imageSmoothingEnabled, DeprecateAs=PrefixedImageSmoothingEnab led] attribute boolean webkitImageSmoothingEnabled; 62 [ImplementedAs=imageSmoothingEnabled, DeprecateAs=PrefixedImageSmoothingEnab led] attribute boolean webkitImageSmoothingEnabled;
63 [MeasureAs=UnprefixedImageSmoothingEnabled] attribute boolean imageSmoothing Enabled; // (default True) 63 [MeasureAs=UnprefixedImageSmoothingEnabled] attribute boolean imageSmoothing Enabled; // (default True)
64 [RuntimeEnabled=ExperimentalCanvasFeatures] attribute ImageSmoothingQuality imageSmoothingQuality; // (default "low") 64 [RuntimeEnabled=ExperimentalCanvasFeatures] attribute ImageSmoothingQuality imageSmoothingQuality; // (default "low")
65 65
66 // colors and styles (see also the CanvasDrawingStyles interface) 66 // colors and styles (see also the CanvasDrawingStyles interface)
67 attribute (DOMString or CanvasGradient or CanvasPattern) strokeStyle; // (de fault black) 67 attribute (DOMString or CanvasGradient or CanvasPattern) strokeStyle; // (de fault black)
68 attribute (DOMString or CanvasGradient or CanvasPattern) fillStyle; // (defa ult black) 68 attribute (DOMString or CanvasGradient or CanvasPattern) fillStyle; // (defa ult black)
69 CanvasGradient createLinearGradient(double x0, double y0, double x1, double y1); 69 CanvasGradient createLinearGradient(double x0, double y0, double x1, double y1);
70 [RaisesException] CanvasGradient createRadialGradient(double x0, double y0, double r0, double x1, double y1, double r1); 70 [RaisesException] CanvasGradient createRadialGradient(double x0, double y0, double r0, double x1, double y1, double r1);
71 [RaisesException] CanvasPattern? createPattern(CanvasImageSource image, [Tre atNullAs=NullString] DOMString repetitionType); 71 [CallWith=ScriptState, RaisesException] CanvasPattern? createPattern(CanvasI mageSource image, [TreatNullAs=NullString] DOMString repetitionType);
72 72
73 // shadows 73 // shadows
74 attribute unrestricted double shadowOffsetX; 74 attribute unrestricted double shadowOffsetX;
75 attribute unrestricted double shadowOffsetY; 75 attribute unrestricted double shadowOffsetY;
76 attribute unrestricted double shadowBlur; 76 attribute unrestricted double shadowBlur;
77 attribute DOMString shadowColor; 77 attribute DOMString shadowColor;
78 78
79 // rects 79 // rects
80 void clearRect(unrestricted double x, unrestricted double y, unrestricted do uble width, unrestricted double height); 80 void clearRect(unrestricted double x, unrestricted double y, unrestricted do uble width, unrestricted double height);
81 void fillRect(unrestricted double x, unrestricted double y, unrestricted dou ble width, unrestricted double height); 81 void fillRect(unrestricted double x, unrestricted double y, unrestricted dou ble width, unrestricted double height);
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 141
142 // text 142 // text
143 attribute DOMString font; // (default 10px sans-serif) 143 attribute DOMString font; // (default 10px sans-serif)
144 attribute DOMString textAlign; // "start", "end", "left", "right", "center" (default: "start") 144 attribute DOMString textAlign; // "start", "end", "left", "right", "center" (default: "start")
145 attribute DOMString textBaseline; // "top", "hanging", "middle", "alphabetic ", "ideographic", "bottom" (default: "alphabetic") 145 attribute DOMString textBaseline; // "top", "hanging", "middle", "alphabetic ", "ideographic", "bottom" (default: "alphabetic")
146 [RuntimeEnabled=ExperimentalCanvasFeatures] attribute DOMString direction; / / "inherit", "rtl", "ltr" (default: "inherit") 146 [RuntimeEnabled=ExperimentalCanvasFeatures] attribute DOMString direction; / / "inherit", "rtl", "ltr" (default: "inherit")
147 147
148 }; 148 };
149 149
150 CanvasRenderingContext2D implements CanvasPathMethods; 150 CanvasRenderingContext2D implements CanvasPathMethods;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698