| 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 215 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 226     # Win10 / NVIDIA Quadro P400 / D3D9 failures | 226     # Win10 / NVIDIA Quadro P400 / D3D9 failures | 
| 227     self.Fail('conformance/canvas/drawingbuffer-static-canvas-test.html', | 227     self.Fail('conformance/canvas/drawingbuffer-static-canvas-test.html', | 
| 228         ['win10', ('nvidia', 0x1cb3), 'd3d9'], bug=680754) | 228         ['win10', ('nvidia', 0x1cb3), 'd3d9'], bug=680754) | 
| 229     self.Fail('conformance/canvas/' + | 229     self.Fail('conformance/canvas/' + | 
| 230         'framebuffer-bindings-affected-by-to-data-url.html', | 230         'framebuffer-bindings-affected-by-to-data-url.html', | 
| 231         ['win10', ('nvidia', 0x1cb3), 'd3d9'], bug=680754) | 231         ['win10', ('nvidia', 0x1cb3), 'd3d9'], bug=680754) | 
| 232     self.Fail('conformance/limits/gl-max-texture-dimensions.html', | 232     self.Fail('conformance/limits/gl-max-texture-dimensions.html', | 
| 233         ['win10', ('nvidia', 0x1cb3)], bug=715001) | 233         ['win10', ('nvidia', 0x1cb3)], bug=715001) | 
| 234     self.Fail('conformance/ogles/GL/cos/cos_001_to_006.html', | 234     self.Fail('conformance/ogles/GL/cos/cos_001_to_006.html', | 
| 235         ['win10', ('nvidia', 0x1cb3), 'd3d9'], bug=680754) | 235         ['win10', ('nvidia', 0x1cb3), 'd3d9'], bug=680754) | 
|  | 236     self.Flaky('conformance/textures/image_bitmap_from_video/' + | 
|  | 237         'tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html', | 
|  | 238         ['win10', ('nvidia', 0x1cb3)], bug=728670) | 
|  | 239     self.Flaky('conformance/textures/image_bitmap_from_video/' + | 
|  | 240         'tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html', | 
|  | 241         ['win10', ('nvidia', 0x1cb3)], bug=728670) | 
| 236 | 242 | 
| 237     # Win7 / Intel failures | 243     # Win7 / Intel failures | 
| 238     self.Fail('conformance/textures/misc/' + | 244     self.Fail('conformance/textures/misc/' + | 
| 239               'copy-tex-image-and-sub-image-2d.html', | 245               'copy-tex-image-and-sub-image-2d.html', | 
| 240               ['win7', 'intel', 'no_passthrough']) | 246               ['win7', 'intel', 'no_passthrough']) | 
| 241 | 247 | 
| 242     # Win7 / NVIDIA D3D9 failures | 248     # Win7 / NVIDIA D3D9 failures | 
| 243     self.Flaky('conformance/canvas/canvas-test.html', | 249     self.Flaky('conformance/canvas/canvas-test.html', | 
| 244         ['win7', 'nvidia', 'd3d9'], bug=690248) | 250         ['win7', 'nvidia', 'd3d9'], bug=690248) | 
| 245 | 251 | 
| (...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 724     self.Fail('conformance/textures/misc/texture-npot.html', | 730     self.Fail('conformance/textures/misc/texture-npot.html', | 
| 725         ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554) | 731         ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554) | 
| 726     self.Fail('conformance/textures/misc/texture-npot-video.html', | 732     self.Fail('conformance/textures/misc/texture-npot-video.html', | 
| 727         ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554) | 733         ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554) | 
| 728     self.Fail('conformance/textures/misc/texture-size.html', | 734     self.Fail('conformance/textures/misc/texture-size.html', | 
| 729         ['chromeos', ('intel', 0xa011)], bug=375554) | 735         ['chromeos', ('intel', 0xa011)], bug=375554) | 
| 730     self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 736     self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 
| 731         ['chromeos', ('intel', 0xa011)], bug=375554) | 737         ['chromeos', ('intel', 0xa011)], bug=375554) | 
| 732     self.Skip('conformance/uniforms/uniform-default-values.html', | 738     self.Skip('conformance/uniforms/uniform-default-values.html', | 
| 733         ['chromeos', ('intel', 0xa011)], bug=375554) | 739         ['chromeos', ('intel', 0xa011)], bug=375554) | 
| OLD | NEW | 
|---|