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

Unified Diff: LayoutTests/inspector/profiler/canvas2d/canvas2d-api-changes.html

Issue 527193002: Support CanvasPattern.setTransform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: putting under a runtime flag Created 6 years, 3 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: LayoutTests/inspector/profiler/canvas2d/canvas2d-api-changes.html
diff --git a/LayoutTests/inspector/profiler/canvas2d/canvas2d-api-changes.html b/LayoutTests/inspector/profiler/canvas2d/canvas2d-api-changes.html
index fd22e9e1f8a581606a37bf45873f0361908132d3..99a1b0dd229d1bbe6178933013c54d350a9c8d40 100644
--- a/LayoutTests/inspector/profiler/canvas2d/canvas2d-api-changes.html
+++ b/LayoutTests/inspector/profiler/canvas2d/canvas2d-api-changes.html
@@ -150,8 +150,11 @@ function test()
return;
}
output("New properties and functions of CanvasPattern object that should be manually examined (should be empty to pass the test):");
- for (var property in pattern)
+ for (var property in pattern) {
+ if (property == "setTransform")
+ continue;
output(property);
+ }
}
function runTest()
« no previous file with comments | « LayoutTests/fast/canvas/script-tests/canvas-pattern-set-transform.js ('k') | Source/core/html/canvas/CanvasPattern.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698