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

Side by Side Diff: LayoutTests/fast/canvas/webgl/null-object-behaviour-expected.txt

Issue 585873002: Show a warning when using sync xhr. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added needsrebaseline for win_rel. Created 6 years, 1 month 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 unified diff | Download patch
OLDNEW
1 CONSOLE WARNING: Synchronous XMLHttpRequest on the main thread is deprecated bec ause of its detrimental effects to the end user's experience. For more help, che ck http://xhr.spec.whatwg.org/.
1 Tests calling WebGL APIs without providing the necessary objects 2 Tests calling WebGL APIs without providing the necessary objects
2 3
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 5
5 PASS Program Compiled 6 PASS Program Compiled
6 PASS Shader Compiled 7 PASS Shader Compiled
7 PASS context.compileShader(undefined) was expected value: INVALID_VALUE. 8 PASS context.compileShader(undefined) was expected value: INVALID_VALUE.
8 PASS context.linkProgram(undefined) was expected value: INVALID_VALUE. 9 PASS context.linkProgram(undefined) was expected value: INVALID_VALUE.
9 PASS context.attachShader(undefined, undefined) was expected value: INVALID_VALU E. 10 PASS context.attachShader(undefined, undefined) was expected value: INVALID_VALU E.
10 PASS context.attachShader(program, undefined) was expected value: INVALID_VALUE. 11 PASS context.attachShader(program, undefined) was expected value: INVALID_VALUE.
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 check without bindings 47 check without bindings
47 PASS context.bufferData(context.ARRAY_BUFFER, 1, context.STATIC_DRAW) was expect ed value: INVALID_OPERATION. 48 PASS context.bufferData(context.ARRAY_BUFFER, 1, context.STATIC_DRAW) was expect ed value: INVALID_OPERATION.
48 PASS context.getBufferParameter(context.ARRAY_BUFFER, context.BUFFER_SIZE) was e xpected value: INVALID_OPERATION. 49 PASS context.getBufferParameter(context.ARRAY_BUFFER, context.BUFFER_SIZE) was e xpected value: INVALID_OPERATION.
49 PASS context.texImage2D(context.TEXTURE_2D, 0, context.RGBA, 1, 1, 0, context.RG BA, context.UNSIGNED_BYTE, new Uint8Array([0,0,0,0])) was expected value: INVALI D_OPERATION. 50 PASS context.texImage2D(context.TEXTURE_2D, 0, context.RGBA, 1, 1, 0, context.RG BA, context.UNSIGNED_BYTE, new Uint8Array([0,0,0,0])) was expected value: INVALI D_OPERATION.
50 PASS context.texParameteri(context.TEXTURE_2D, context.TEXTURE_MIN_FILTER, conte xt.NEAREST) was expected value: INVALID_OPERATION. 51 PASS context.texParameteri(context.TEXTURE_2D, context.TEXTURE_MIN_FILTER, conte xt.NEAREST) was expected value: INVALID_OPERATION.
51 PASS context.getTexParameter(context.TEXTURE_2D, context.TEXTURE_MIN_FILTER) was expected value: INVALID_OPERATION. 52 PASS context.getTexParameter(context.TEXTURE_2D, context.TEXTURE_MIN_FILTER) was expected value: INVALID_OPERATION.
52 PASS successfullyParsed is true 53 PASS successfullyParsed is true
53 54
54 TEST COMPLETE 55 TEST COMPLETE
55 56
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698