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

Unified Diff: third_party/WebKit/LayoutTests/fast/canvas/webgl/webgl-array-invalid-ranges.html

Issue 2433363003: Updated fast/canvas/webgl-array-invalid-ranges.html (Closed)
Patch Set: Created 4 years, 2 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/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");
}
}

Powered by Google App Engine
This is Rietveld 408576698