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() |