Index: third_party/WebKit/LayoutTests/fast/canvas/webgl/webgl-array-invalid-ranges.html |
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/webgl/webgl-array-invalid-ranges.html b/third_party/WebKit/LayoutTests/fast/canvas/webgl/webgl-array-invalid-ranges.html |
index 1cf68dd5a143987e0eb961a5556fabbfabedec04..1863f39dd92b39d139deabf0e473f82fd0ebd60b 100644 |
--- a/third_party/WebKit/LayoutTests/fast/canvas/webgl/webgl-array-invalid-ranges.html |
+++ b/third_party/WebKit/LayoutTests/fast/canvas/webgl/webgl-array-invalid-ranges.html |
@@ -15,9 +15,9 @@ function testConstructionWithNullBuffer(type, name) { |
var array; |
try { |
array = new type(null, 0, 0); |
- testFailed("Construction of " + name + " with null buffer should throw exception"); |
+ testPassed("Construction of " + name + " with null buffer should not throw exception"); |
} catch (e) { |
- testPassed("Construction of " + name + " with null buffer threw exception"); |
+ testFailed("Construction of " + name + " with null buffer threw exception"); |
} |
} |