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

Side by Side Diff: LayoutTests/fast/canvas/canvas-hit-regions-basic-test-expected.txt

Issue 300223009: Implement basic parts of hit regions on canvas2d. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 6 years, 6 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
(Empty)
1 Hit detection and mouse event tests
2 PASS clickCanvas(100, 100) is 'face'
3 PASS clickCanvas(200, 200) is 'nose'
4 PASS clickCanvas(127, 242) is 'mouth'
5 PASS clickCanvas(150, 125) is 'eye'
6 PASS clickCanvas(250, 125) is 'eye'
7 PASS clickCanvas(200, 125) is 'face'
8 PASS clickCanvas(20, 10) is null
9
10 NotSupportedError exception tests
11 PASS context.addHitRegion() threw exception NotSupportedError: Failed to execute 'addHitRegion' on 'CanvasRenderingContext2D': Both id and control are null or u ndefined or invalid type..
12 PASS context.addHitRegion({ id : '' }) threw exception NotSupportedError: Failed to execute 'addHitRegion' on 'CanvasRenderingContext2D': Both id and control ar e null or undefined or invalid type..
13 PASS context.addHitRegion({ id : null }) threw exception NotSupportedError: Fail ed to execute 'addHitRegion' on 'CanvasRenderingContext2D': Both id and control are null or undefined or invalid type..
14 PASS context.addHitRegion({ id : undefined }) threw exception NotSupportedError: Failed to execute 'addHitRegion' on 'CanvasRenderingContext2D': Both id and con trol are null or undefined or invalid type..
15 PASS context.addHitRegion({ control : {} }) threw exception NotSupportedError: F ailed to execute 'addHitRegion' on 'CanvasRenderingContext2D': Both id and contr ol are null or undefined or invalid type..
16 PASS context.addHitRegion({ control : null }) threw exception NotSupportedError: Failed to execute 'addHitRegion' on 'CanvasRenderingContext2D': Both id and con trol are null or undefined or invalid type..
17 PASS context.addHitRegion({ control : undefined }) threw exception NotSupportedE rror: Failed to execute 'addHitRegion' on 'CanvasRenderingContext2D': Both id an d control are null or undefined or invalid type..
18 PASS context.addHitRegion({ id : '', control : {} }) threw exception NotSupporte dError: Failed to execute 'addHitRegion' on 'CanvasRenderingContext2D': Both id and control are null or undefined or invalid type..
19 PASS context.addHitRegion({ id : null, control : {} }) threw exception NotSuppor tedError: Failed to execute 'addHitRegion' on 'CanvasRenderingContext2D': Both i d and control are null or undefined or invalid type..
20 PASS context.addHitRegion({ id : undefined, control : {} }) threw exception NotS upportedError: Failed to execute 'addHitRegion' on 'CanvasRenderingContext2D': B oth id and control are null or undefined or invalid type..
21 PASS context.addHitRegion({ id : '', control : null }) threw exception NotSuppor tedError: Failed to execute 'addHitRegion' on 'CanvasRenderingContext2D': Both i d and control are null or undefined or invalid type..
22 PASS context.addHitRegion({ id : null, control : null }) threw exception NotSupp ortedError: Failed to execute 'addHitRegion' on 'CanvasRenderingContext2D': Both id and control are null or undefined or invalid type..
23 PASS context.addHitRegion({ id : undefined, control : null }) threw exception No tSupportedError: Failed to execute 'addHitRegion' on 'CanvasRenderingContext2D': Both id and control are null or undefined or invalid type..
24 PASS context.addHitRegion({ id : '', control : undefined }) threw exception NotS upportedError: Failed to execute 'addHitRegion' on 'CanvasRenderingContext2D': B oth id and control are null or undefined or invalid type..
25 PASS context.addHitRegion({ id : null, control : undefined }) threw exception No tSupportedError: Failed to execute 'addHitRegion' on 'CanvasRenderingContext2D': Both id and control are null or undefined or invalid type..
26 PASS context.addHitRegion({ id : undefined, control : undefined }) threw excepti on NotSupportedError: Failed to execute 'addHitRegion' on 'CanvasRenderingContex t2D': Both id and control are null or undefined or invalid type..
27 PASS successfullyParsed is true
28
29 TEST COMPLETE
30
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698