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

Unified Diff: third_party/WebKit/LayoutTests/fast/canvas/resources/test-helpers.js

Issue 1575813002: css Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/canvas/resources/test-helpers.js
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/resources/test-helpers.js b/third_party/WebKit/LayoutTests/fast/canvas/resources/test-helpers.js
new file mode 100644
index 0000000000000000000000000000000000000000..6dd7dd170f8c4f9dccc3acc3facc594a832c8b95
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/canvas/resources/test-helpers.js
@@ -0,0 +1,67 @@
+function coroutine(generator) {
+ var g = generator();
+ var promise = g.next().value;
+ function result(r) {
+ promise = g.next(r).value;
+ promise && promise.then(result);
+ }
+ promise.then(result)
+}
+
+function clickOrTouch(x, y) {
+ return new Promise(function(resolve, reject) {
+ window.ontouchstart = function(e) {
+ if (!window.eventSender)
+ console.log('x: ' + e.pageX, ', y: ' + e.pageY, ', region: ' + e.region);
+ resolve(e.targetTouches[0].region);
+ };
+
+ window.onclick = function(e) {
+ if (!window.eventSender)
+ console.log('x: ' + e.pageX, ', y: ' + e.pageY, ', region: ' + e.region);
+ resolve(e.region);
+ };
+
+ if (window.eventSender) {
+ eventSender.clearTouchPoints();
+ eventSender.addTouchPoint(x, y);
+ eventSender.touchStart();
+ eventSender.touchEnd();
+
+ eventSender.mouseMoveTo(x, y);
+ eventSender.mouseDown();
+ eventSender.mouseUp();
+ }
+ });
+}
+
+function createFace(context) {
+ context.fillStyle = 'pink';
+ context.arc(200, 175, 150, 0, Math.PI * 2, true);
+ context.fill();
+ context.addHitRegion({ id : 'face', control : document.getElementById('face') });
+
+ context.beginPath();
+ context.fillStyle = 'black';
+ context.globalAlpha = .5;
+ context.moveTo(200, 165);
+ context.lineTo(240, 205);
+ context.lineTo(160, 205);
+ context.closePath();
+ context.fill();
+ context.addHitRegion({ id : 'nose' });
+
+ context.beginPath();
+ context.fillStyle = 'red';
+ context.rect(125, 240, 150, 20);
+ context.fill();
+ context.addHitRegion({ id : 'mouth' });
+
+ context.beginPath();
+ context.globalAlpha = 1;
+ context.fillStyle = 'blue';
+ context.arc(150, 125, 25, 0, Math.PI * 2, true);
+ context.arc(250, 125, 25, 0, Math.PI * 2, true);
+ context.fill();
+ context.addHitRegion({ id: 'eye', control : document.getElementById('eyes') });
+}

Powered by Google App Engine
This is Rietveld 408576698