| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 import os | 4 import os |
| 5 | 5 |
| 6 from gpu_tests.gpu_test_expectations import GpuTestExpectations | 6 from gpu_tests.gpu_test_expectations import GpuTestExpectations |
| 7 | 7 |
| 8 # See the GpuTestExpectations class for documentation. | 8 # See the GpuTestExpectations class for documentation. |
| 9 | 9 |
| 10 class WebGLConformanceExpectations(GpuTestExpectations): | 10 class WebGLConformanceExpectations(GpuTestExpectations): |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 | 94 |
| 95 # Need to add detection of feedback loops with multiple render targets. | 95 # Need to add detection of feedback loops with multiple render targets. |
| 96 self.Fail('conformance/extensions/webgl-draw-buffers-feedback-loop.html', | 96 self.Fail('conformance/extensions/webgl-draw-buffers-feedback-loop.html', |
| 97 bug=1619) # angle bug ID | 97 bug=1619) # angle bug ID |
| 98 | 98 |
| 99 # We need to add WebGL 1 check in command buffer that format/type from | 99 # We need to add WebGL 1 check in command buffer that format/type from |
| 100 # TexSubImage2D have to match the current texture's. | 100 # TexSubImage2D have to match the current texture's. |
| 101 self.Fail('conformance/textures/misc/tex-sub-image-2d-bad-args.html', | 101 self.Fail('conformance/textures/misc/tex-sub-image-2d-bad-args.html', |
| 102 bug=625738) | 102 bug=625738) |
| 103 | 103 |
| 104 # Temporary suppression; will be removed after bug fix. |
| 105 self.Fail('conformance/textures/misc/texture-corner-case-videos.html', |
| 106 bug=701060) |
| 107 |
| 104 # canvas.commit() promise synchronization isn't fully reliable yet. | 108 # canvas.commit() promise synchronization isn't fully reliable yet. |
| 105 self.Fail('conformance/offscreencanvas/offscreencanvas-resize.html', | 109 self.Fail('conformance/offscreencanvas/offscreencanvas-resize.html', |
| 106 bug=709484) | 110 bug=709484) |
| 107 | 111 |
| 108 # Passthrough command decoder | 112 # Passthrough command decoder |
| 109 self.Fail('conformance/extensions/ext-sRGB.html', | 113 self.Fail('conformance/extensions/ext-sRGB.html', |
| 110 ['passthrough'], bug=679696) | 114 ['passthrough'], bug=679696) |
| 111 self.Fail('conformance/extensions/oes-standard-derivatives.html', | 115 self.Fail('conformance/extensions/oes-standard-derivatives.html', |
| 112 ['passthrough'], bug=665521) | 116 ['passthrough'], bug=665521) |
| 113 self.Fail('conformance/extensions/ext-disjoint-timer-query.html', | 117 self.Fail('conformance/extensions/ext-disjoint-timer-query.html', |
| (...skipping 681 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 795 self.Fail('conformance/textures/misc/texture-npot.html', | 799 self.Fail('conformance/textures/misc/texture-npot.html', |
| 796 ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554) | 800 ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554) |
| 797 self.Fail('conformance/textures/misc/texture-npot-video.html', | 801 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 798 ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554) | 802 ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554) |
| 799 self.Fail('conformance/textures/misc/texture-size.html', | 803 self.Fail('conformance/textures/misc/texture-size.html', |
| 800 ['chromeos', ('intel', 0xa011)], bug=375554) | 804 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 801 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 805 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 802 ['chromeos', ('intel', 0xa011)], bug=375554) | 806 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 803 self.Skip('conformance/uniforms/uniform-default-values.html', | 807 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 804 ['chromeos', ('intel', 0xa011)], bug=375554) | 808 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |