diff options
author | jcgregorio@google.com <jcgregorio@google.com@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | 2014-02-24 22:12:36 +0000 |
---|---|---|
committer | jcgregorio@google.com <jcgregorio@google.com@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | 2014-02-24 22:12:36 +0000 |
commit | ae658d99dda0ea37f60d1fa33814b08aedd0716b (patch) | |
tree | 57a4d066be5e81d06fbcbe28dc089fb778957707 /third_party/WebKit/LayoutTests/fast/canvas/canvas-path-context-stroke.html | |
parent | c6f6a302ede5467a8c5e1f02d8763309c152223a (diff) | |
download | chromium_src-ae658d99dda0ea37f60d1fa33814b08aedd0716b.zip chromium_src-ae658d99dda0ea37f60d1fa33814b08aedd0716b.tar.gz chromium_src-ae658d99dda0ea37f60d1fa33814b08aedd0716b.tar.bz2 |
Add versions of stroke, fill, and clip to CanvasRenderingContext2D that take a Path parameter.
The spec reference is:
http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html#dom-context-2d-fill
This partially addresses bug 330506. The rest of these functions need to be added to completely close that bug, which I plan to do in a following CL:
- drawSystemFocusRing(path, element);
- drawCustomFocusRing(path, element);
- isPointInPath(path, x, y);
- isPointInStroke(path, x, y);
- scrollPathIntoView(path);
BUG=330506
Review URL: https://codereview.chromium.org/137353004
git-svn-id: svn://svn.chromium.org/blink/trunk@167705 bbb929c8-8fbe-4397-9dbb-9b2b20218538
Diffstat (limited to 'third_party/WebKit/LayoutTests/fast/canvas/canvas-path-context-stroke.html')
-rw-r--r-- | third_party/WebKit/LayoutTests/fast/canvas/canvas-path-context-stroke.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-path-context-stroke.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-path-context-stroke.html new file mode 100644 index 0000000..5f84cb2 --- /dev/null +++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-path-context-stroke.html @@ -0,0 +1,9 @@ +<!doctype html> +<html> +<head> +<script src="../../resources/js-test.js"></script> +</head> +<body> +<canvas id="canvas" width="200" height="200"></canvas> +<script src="script-tests/canvas-path-context-stroke.js"></script> +</body> |