summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/canvas/script-tests/canvas-path-addpath.js
diff options
context:
space:
mode:
authorpiotaixr@chromium.org <piotaixr@chromium.org>2014-10-09 18:53:15 +0000
committerpiotaixr@chromium.org <piotaixr@chromium.org>2014-10-09 18:53:15 +0000
commit8ee91e0d7aff770ebb322873a2bd9b87ebe26373 (patch)
tree600e4fa72523b716d300a4a765bb67400bc5cc6c /third_party/WebKit/LayoutTests/fast/canvas/script-tests/canvas-path-addpath.js
parentf8a12cc2282687fd270de4df153ee68ec4e594dd (diff)
downloadchromium_src-8ee91e0d7aff770ebb322873a2bd9b87ebe26373.zip
chromium_src-8ee91e0d7aff770ebb322873a2bd9b87ebe26373.tar.gz
chromium_src-8ee91e0d7aff770ebb322873a2bd9b87ebe26373.tar.bz2
Reenable test marked as flaky
Unable to repro locally and disabling too old: no information about flakiness. BUG=368531 Review URL: https://codereview.chromium.org/632353004 git-svn-id: svn://svn.chromium.org/blink/trunk@183483 bbb929c8-8fbe-4397-9dbb-9b2b20218538
Diffstat (limited to 'third_party/WebKit/LayoutTests/fast/canvas/script-tests/canvas-path-addpath.js')
-rw-r--r--third_party/WebKit/LayoutTests/fast/canvas/script-tests/canvas-path-addpath.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/script-tests/canvas-path-addpath.js b/third_party/WebKit/LayoutTests/fast/canvas/script-tests/canvas-path-addpath.js
index 4e8b5db..c6dc622 100644
--- a/third_party/WebKit/LayoutTests/fast/canvas/script-tests/canvas-path-addpath.js
+++ b/third_party/WebKit/LayoutTests/fast/canvas/script-tests/canvas-path-addpath.js
@@ -2,7 +2,7 @@ description("Test addPath() method.");
var canvas = document.createElement('canvas');
var ctx = canvas.getContext('2d');
-debug("Test addPath() with transform as identity matrix.")
+debug("Test addPath() with transform as identity matrix.");
ctx.clearRect(0, 0, canvas.width, canvas.height);
ctx.beginPath();
var p1 = new Path2D();
@@ -21,7 +21,7 @@ shouldBe("imgdata[6]", "0");
shouldBe("imgdata[7]", "255");
debug("");
-debug("Test addPath() with transform as translate(100, -100).")
+debug("Test addPath() with transform as translate(100, -100).");
ctx.clearRect(0, 0, canvas.width, canvas.height);
ctx.beginPath();
var p3 = new Path2D();
@@ -42,7 +42,7 @@ shouldBe("imgdata[6]", "0");
shouldBe("imgdata[7]", "255");
debug("");
-debug("Test addPath() with non-invertible transform.")
+debug("Test addPath() with non-invertible transform.");
ctx.clearRect(0, 0, canvas.width, canvas.height);
ctx.beginPath();
var p5 = new Path2D();
@@ -63,7 +63,7 @@ shouldBe("imgdata[6]", "0");
shouldNotBe("imgdata[7]", "255");
debug("");
-debug("Test addPath() with transform as null or invalid type.")
+debug("Test addPath() with transform as null or invalid type.");
ctx.clearRect(0, 0, canvas.width, canvas.height);
ctx.beginPath();
var p7 = new Path2D();
@@ -83,7 +83,7 @@ shouldBe("imgdata[6]", "0");
shouldBe("imgdata[7]", "255");
debug("");
-debug("Test addPath() with transform omitted.")
+debug("Test addPath() with transform omitted.");
ctx.clearRect(0, 0, canvas.width, canvas.height);
ctx.beginPath();
var p9 = new Path2D();