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

Side by Side Diff: content/test/gpu/gpu_tests/webgl_conformance_expectations.py

Issue 2614313002: Roll WebGL 046d1f6..da6fe82 (Closed)
Patch Set: fix Created 3 years, 11 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 unified diff | Download patch
OLDNEW
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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 103
104 # Nexus 9 104 # Nexus 9
105 self.Fail('WebglExtension_WEBGL_compressed_texture_atc', 105 self.Fail('WebglExtension_WEBGL_compressed_texture_atc',
106 ['android', ('nvidia', 'NVIDIA Tegra')]) 106 ['android', ('nvidia', 'NVIDIA Tegra')])
107 107
108 # ======================== 108 # ========================
109 # Conformance expectations 109 # Conformance expectations
110 # ======================== 110 # ========================
111 # Fails on all platforms 111 # Fails on all platforms
112 112
113 self.Fail('conformance/more/functions/vertexAttribPointerBadArgs.html',
114 bug=678850)
115 self.Fail('conformance/attribs/gl-vertexattribpointer.html', bug=678850)
116
117 self.Skip('conformance/textures/image_bitmap_from_image_data/*', bug=679677)
118 self.Skip('conformance/textures/image_bitmap_from_image/*', bug=679677)
119 self.Skip('conformance/textures/image_bitmap_from_video/*', bug=679677)
120 self.Skip('conformance/textures/image_bitmap_from_canvas/*', bug=679677)
121 self.Skip('conformance/textures/image_bitmap_from_blob/*', bug=679677)
122 self.Skip('conformance/textures/image_bitmap_from_image_bitmap/*',
123 bug=679677)
Ken Russell (switch to Gerrit) 2017/01/11 19:25:11 Please remove these expectations.
124
113 # Need to add detection of feedback loops with multiple render targets. 125 # Need to add detection of feedback loops with multiple render targets.
114 self.Fail('conformance/extensions/webgl-draw-buffers-feedback-loop.html', 126 self.Fail('conformance/extensions/webgl-draw-buffers-feedback-loop.html',
115 bug=1619) # angle bug ID 127 bug=1619) # angle bug ID
116 128
117 # We need to add WebGL 1 check in command buffer that format/type from 129 # We need to add WebGL 1 check in command buffer that format/type from
118 # TexSubImage2D have to match the current texture's. 130 # TexSubImage2D have to match the current texture's.
119 self.Fail('conformance/textures/misc/tex-sub-image-2d-bad-args.html', 131 self.Fail('conformance/textures/misc/tex-sub-image-2d-bad-args.html',
120 bug=570453) 132 bug=570453)
121 133
122 # Win failures 134 # Win failures
123 # Note that the following test seems to pass, but it may still be flaky. 135 # Note that the following test seems to pass, but it may still be flaky.
124 self.Fail('conformance/glsl/constructors/' + 136 self.Fail('conformance/glsl/constructors/' +
125 'glsl-construct-vec-mat-index.html', 137 'glsl-construct-vec-mat-index.html',
126 ['win'], bug=525188) 138 ['win'], bug=525188)
127 self.Fail('conformance/rendering/point-specific-shader-variables.html', 139 self.Fail('conformance/rendering/point-specific-shader-variables.html',
128 ['win'], bug=616335) 140 ['win'], bug=616335)
129 self.Fail('deqp/data/gles2/shaders/functions.html', 141 self.Fail('deqp/data/gles2/shaders/functions.html',
130 ['win'], bug=478572) 142 ['win'], bug=478572)
131 143
132 # Win NVIDIA failures 144 # Win NVIDIA failures
133 self.Flaky('conformance/textures/misc/texture-npot-video.html', 145 self.Flaky('conformance/textures/misc/texture-npot-video.html',
134 ['win', 'nvidia', 'no_passthrough'], bug=626524) 146 ['win', 'nvidia', 'no_passthrough'], bug=626524)
135 self.Flaky('conformance/textures/misc/texture-upload-size.html', 147 self.Flaky('conformance/textures/misc/texture-upload-size.html',
136 ['win', 'nvidia'], bug=630860) 148 ['win', 'nvidia'], bug=630860)
137 self.Fail('conformance/glsl/bugs/unary-minus-operator-float-bug.html', 149 self.Fail('conformance/glsl/bugs/unary-minus-operator-float-bug.html',
138 ['win', 'nvidia'], bug=672380) 150 ['win', 'nvidia'], bug=672380)
151 self.Fail('conformance/extensions/ext-sRGB.html',
152 ['win', 'nvidia', 'no_passthrough'], bug=679696)
139 153
140 # Win7 / Intel failures 154 # Win7 / Intel failures
141 self.Fail('conformance/textures/misc/' + 155 self.Fail('conformance/textures/misc/' +
142 'copy-tex-image-and-sub-image-2d.html', 156 'copy-tex-image-and-sub-image-2d.html',
143 ['win7', 'intel', 'no_passthrough']) 157 ['win7', 'intel', 'no_passthrough'])
144 158
145 # Win / Intel failures 159 # Win / Intel failures
146 self.Skip('conformance/uniforms/gl-uniform-arrays.html', 160 self.Skip('conformance/uniforms/gl-uniform-arrays.html',
147 ['win', 'debug', 'intel'], bug=678382) 161 ['win', 'debug', 'intel'], bug=678382)
148 162
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 self.Fail('conformance/glsl/misc/shader-struct-scope.html', 232 self.Fail('conformance/glsl/misc/shader-struct-scope.html',
219 ['win', 'intel', 'opengl'], bug=1007) # angle bug ID 233 ['win', 'intel', 'opengl'], bug=1007) # angle bug ID
220 self.Fail('conformance/uniforms/uniform-default-values.html', 234 self.Fail('conformance/uniforms/uniform-default-values.html',
221 ['win', 'intel', 'opengl'], bug=1007) # angle bug ID 235 ['win', 'intel', 'opengl'], bug=1007) # angle bug ID
222 self.Fail('conformance/glsl/bugs/sampler-struct-function-arg.html', 236 self.Fail('conformance/glsl/bugs/sampler-struct-function-arg.html',
223 ['win10', 'intel', 'opengl'], bug=1007) # angle bug ID 237 ['win10', 'intel', 'opengl'], bug=1007) # angle bug ID
224 self.Fail('conformance/glsl/variables/gl-pointcoord.html', 238 self.Fail('conformance/glsl/variables/gl-pointcoord.html',
225 ['win10', 'intel', 'opengl'], bug=1007) # angle bug ID 239 ['win10', 'intel', 'opengl'], bug=1007) # angle bug ID
226 240
227 # Win / Passthrough command decoder 241 # Win / Passthrough command decoder
228 self.Fail('conformance/attribs/gl-vertexattribpointer.html', 242 self.Fail('conformance/extensions/ext-sRGB.html',
229 ['win', 'passthrough', 'd3d11'], bug=1523) # angle bug ID 243 ['win', 'passthrough', 'd3d11'], bug=679696)
230 self.Fail('conformance/extensions/angle-instanced-arrays.html', 244 self.Fail('conformance/extensions/angle-instanced-arrays.html',
231 ['win', 'passthrough', 'd3d11'], bug=1523) # angle bug ID 245 ['win', 'passthrough', 'd3d11'], bug=1523) # angle bug ID
232 self.Fail('conformance/extensions/ext-disjoint-timer-query.html', 246 self.Fail('conformance/extensions/ext-disjoint-timer-query.html',
233 ['win', 'passthrough', 'd3d11'], bug=1523) # angle bug ID 247 ['win', 'passthrough', 'd3d11'], bug=1523) # angle bug ID
234 self.Fail('conformance/extensions/ext-frag-depth.html', 248 self.Fail('conformance/extensions/ext-frag-depth.html',
235 ['win', 'passthrough', 'd3d11'], bug=1523) # angle bug ID 249 ['win', 'passthrough', 'd3d11'], bug=1523) # angle bug ID
236 self.Fail('conformance/extensions/ext-shader-texture-lod.html', 250 self.Fail('conformance/extensions/ext-shader-texture-lod.html',
237 ['win', 'passthrough', 'd3d11'], bug=1523) # angle bug ID 251 ['win', 'passthrough', 'd3d11'], bug=1523) # angle bug ID
238 self.Fail('conformance/extensions/oes-standard-derivatives.html', 252 self.Fail('conformance/extensions/oes-standard-derivatives.html',
239 ['win', 'passthrough', 'd3d11'], bug=1523) # angle bug ID 253 ['win', 'passthrough', 'd3d11'], bug=1523) # angle bug ID
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 self.Fail('conformance/misc/object-deletion-behaviour.html', 294 self.Fail('conformance/misc/object-deletion-behaviour.html',
281 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID 295 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID
282 self.Fail('conformance/misc/uninitialized-test.html', 296 self.Fail('conformance/misc/uninitialized-test.html',
283 ['win', 'passthrough', 'd3d11'], bug=1635) # angle bug ID 297 ['win', 'passthrough', 'd3d11'], bug=1635) # angle bug ID
284 self.Fail('conformance/more/functions/copyTexImage2DBadArgs.html', 298 self.Fail('conformance/more/functions/copyTexImage2DBadArgs.html',
285 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID 299 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID
286 self.Fail('conformance/more/functions/texSubImage2DBadArgs.html', 300 self.Fail('conformance/more/functions/texSubImage2DBadArgs.html',
287 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID 301 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID
288 self.Fail('conformance/more/functions/texSubImage2DHTMLBadArgs.html', 302 self.Fail('conformance/more/functions/texSubImage2DHTMLBadArgs.html',
289 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID 303 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID
290 self.Fail('conformance/more/functions/vertexAttribPointerBadArgs.html',
291 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID
292 self.Fail('conformance/reading/read-pixels-test.html', 304 self.Fail('conformance/reading/read-pixels-test.html',
293 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID 305 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID
294 self.Fail('conformance/renderbuffers/feedback-loop.html', 306 self.Fail('conformance/renderbuffers/feedback-loop.html',
295 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID 307 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID
296 self.Fail('conformance/renderbuffers/framebuffer-object-attachment.html', 308 self.Fail('conformance/renderbuffers/framebuffer-object-attachment.html',
297 ['win', 'passthrough', 'd3d11'], bug=602688) 309 ['win', 'passthrough', 'd3d11'], bug=602688)
298 self.Fail('conformance/renderbuffers/framebuffer-test.html', 310 self.Fail('conformance/renderbuffers/framebuffer-test.html',
299 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID 311 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID
300 self.Fail('conformance/rendering/draw-elements-out-of-bounds.html', 312 self.Fail('conformance/rendering/draw-elements-out-of-bounds.html',
301 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID 313 ['win', 'passthrough', 'd3d11'], bug=1639) # angle bug ID
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 ['linux'], bug=627525) 374 ['linux'], bug=627525)
363 self.Flaky('conformance/textures/video/' + 375 self.Flaky('conformance/textures/video/' +
364 'tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html', 376 'tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html',
365 ['linux'], bug=627525) 377 ['linux'], bug=627525)
366 self.Flaky('conformance/textures/video/' + 378 self.Flaky('conformance/textures/video/' +
367 'tex-2d-rgb-rgb-unsigned_byte.html', 379 'tex-2d-rgb-rgb-unsigned_byte.html',
368 ['linux'], bug=627525) 380 ['linux'], bug=627525)
369 self.Flaky('conformance/textures/video/' + 381 self.Flaky('conformance/textures/video/' +
370 'tex-2d-rgb-rgb-unsigned_short_5_6_5.html', 382 'tex-2d-rgb-rgb-unsigned_short_5_6_5.html',
371 ['linux'], bug=627525) 383 ['linux'], bug=627525)
384 self.Fail('conformance/extensions/webgl-compressed-texture-etc.html',
385 bug=679678)
372 386
373 # NVIDIA 387 # NVIDIA
374 self.Flaky('conformance/extensions/oes-element-index-uint.html', 388 self.Flaky('conformance/extensions/oes-element-index-uint.html',
375 ['linux', 'nvidia'], bug=524144) 389 ['linux', 'nvidia'], bug=524144)
376 self.Flaky('conformance/textures/image/' + 390 self.Flaky('conformance/textures/image/' +
377 'tex-2d-rgb-rgb-unsigned_byte.html', 391 'tex-2d-rgb-rgb-unsigned_byte.html',
378 ['linux', 'nvidia'], bug=596622) 392 ['linux', 'nvidia'], bug=596622)
379 self.Fail('conformance/glsl/bugs/unary-minus-operator-float-bug.html', 393 self.Fail('conformance/glsl/bugs/unary-minus-operator-float-bug.html',
380 ['linux', 'nvidia'], bug=672380) 394 ['linux', 'nvidia'], bug=672380)
381 395
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
429 self.Fail('conformance/glsl/bugs/sequence-operator-evaluation-order.html', 443 self.Fail('conformance/glsl/bugs/sequence-operator-evaluation-order.html',
430 ['android'], bug=478572) 444 ['android'], bug=478572)
431 # The following test is very slow and therefore times out on Android bot. 445 # The following test is very slow and therefore times out on Android bot.
432 self.Skip('conformance/rendering/multisample-corruption.html', 446 self.Skip('conformance/rendering/multisample-corruption.html',
433 ['android']) 447 ['android'])
434 self.Fail('conformance/textures/image/tex-2d-rgb-rgb-unsigned_byte.html', 448 self.Fail('conformance/textures/image/tex-2d-rgb-rgb-unsigned_byte.html',
435 ['android'], bug=586183) 449 ['android'], bug=586183)
436 # The following tests timed out on android, so skip them for now. 450 # The following tests timed out on android, so skip them for now.
437 self.Skip('conformance/textures/image_bitmap_from_video/*', 451 self.Skip('conformance/textures/image_bitmap_from_video/*',
438 ['android'], bug=585108) 452 ['android'], bug=585108)
453
454 self.Fail('conformance/textures/misc/' +
455 'copytexsubimage2d-large-partial-copy-corruption.html',
456 ['android'], bug=679697)
439 # The following WebView crashes are causing problems with further 457 # The following WebView crashes are causing problems with further
440 # tests in the suite, so skip them for now. 458 # tests in the suite, so skip them for now.
441 self.Skip('conformance/textures/video/' + 459 self.Skip('conformance/textures/video/' +
442 'tex-2d-rgb-rgb-unsigned_byte.html', 460 'tex-2d-rgb-rgb-unsigned_byte.html',
443 ['android', 'android-webview-shell'], bug=352645) 461 ['android', 'android-webview-shell'], bug=352645)
444 self.Skip('conformance/textures/video/' + 462 self.Skip('conformance/textures/video/' +
445 'tex-2d-rgb-rgb-unsigned_short_5_6_5.html', 463 'tex-2d-rgb-rgb-unsigned_short_5_6_5.html',
446 ['android', 'android-webview-shell'], bug=352645) 464 ['android', 'android-webview-shell'], bug=352645)
447 self.Skip('conformance/textures/video/' + 465 self.Skip('conformance/textures/video/' +
448 'tex-2d-rgba-rgba-unsigned_byte.html', 466 'tex-2d-rgba-rgba-unsigned_byte.html',
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
547 self.Fail('conformance/textures/image_bitmap_from_blob/*', 565 self.Fail('conformance/textures/image_bitmap_from_blob/*',
548 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=610951) 566 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=610951)
549 self.Fail('conformance/textures/image_bitmap_from_image/*', 567 self.Fail('conformance/textures/image_bitmap_from_image/*',
550 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=610951) 568 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=610951)
551 self.Fail('conformance/textures/image_bitmap_from_image_bitmap/*', 569 self.Fail('conformance/textures/image_bitmap_from_image_bitmap/*',
552 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=610951) 570 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=610951)
553 self.Fail('conformance/textures/image_bitmap_from_image_data/*', 571 self.Fail('conformance/textures/image_bitmap_from_image_data/*',
554 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=610951) 572 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=610951)
555 self.Fail('conformance/textures/image_data/*', 573 self.Fail('conformance/textures/image_data/*',
556 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=610951) 574 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=610951)
557 self.Fail('conformance/textures/misc/' +
558 'copy-tex-sub-image-2d-partial-texture.html',
559 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=643361)
560 self.Fail('conformance/textures/svg_image/*', 575 self.Fail('conformance/textures/svg_image/*',
561 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=610951) 576 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=610951)
562 self.Fail('conformance/textures/video/*', 577 self.Fail('conformance/textures/video/*',
563 ['android', 'android-content-shell', 'android-chromium', 578 ['android', 'android-content-shell', 'android-chromium',
564 ('qualcomm', 'Adreno (TM) 418')], bug=610951) 579 ('qualcomm', 'Adreno (TM) 418')], bug=610951)
565 self.Fail('conformance/textures/webgl_canvas/*', 580 self.Fail('conformance/textures/webgl_canvas/*',
566 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=610951) 581 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=610951)
567 self.Fail('conformance/uniforms/uniform-samplers-test.html', 582 self.Fail('conformance/uniforms/uniform-samplers-test.html',
568 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=610951) 583 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=610951)
569 584
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
662 self.Fail('conformance/textures/image_bitmap_from_image_bitmap/*', 677 self.Fail('conformance/textures/image_bitmap_from_image_bitmap/*',
663 ['android', ('qualcomm', 'Adreno (TM) 430')], bug=611945) 678 ['android', ('qualcomm', 'Adreno (TM) 430')], bug=611945)
664 self.Fail('conformance/textures/image_data/*', 679 self.Fail('conformance/textures/image_data/*',
665 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=499555) 680 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=499555)
666 self.Fail('conformance/textures/image_data/*', 681 self.Fail('conformance/textures/image_data/*',
667 ['android', ('qualcomm', 'Adreno (TM) 430')], bug=611945) 682 ['android', ('qualcomm', 'Adreno (TM) 430')], bug=611945)
668 self.Fail('conformance/textures/misc/' + 683 self.Fail('conformance/textures/misc/' +
669 'copy-tex-image-and-sub-image-2d.html', 684 'copy-tex-image-and-sub-image-2d.html',
670 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=499555) 685 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=499555)
671 self.Fail('conformance/textures/misc/' + 686 self.Fail('conformance/textures/misc/' +
672 'copy-tex-sub-image-2d-partial-texture.html',
673 ['android',
674 ('qualcomm', 'Adreno (TM) 420'),
675 ('qualcomm', 'Adreno (TM) 430')], bug=643361)
676 self.Fail('conformance/textures/misc/' +
677 'tex-image-and-sub-image-2d-with-array-buffer-view.html', 687 'tex-image-and-sub-image-2d-with-array-buffer-view.html',
678 ['android', 688 ['android',
679 ('qualcomm', 'Adreno (TM) 420'), 689 ('qualcomm', 'Adreno (TM) 420'),
680 ('qualcomm', 'Adreno (TM) 430')], bug=499555) 690 ('qualcomm', 'Adreno (TM) 430')], bug=499555)
681 self.Fail('conformance/textures/svg_image/*', 691 self.Fail('conformance/textures/svg_image/*',
682 ['android', 692 ['android',
683 ('qualcomm', 'Adreno (TM) 420'), 693 ('qualcomm', 'Adreno (TM) 420'),
684 ('qualcomm', 'Adreno (TM) 430')], bug=611945) 694 ('qualcomm', 'Adreno (TM) 430')], bug=611945)
685 # The following tests mention android-content-shell and android-chrome, 695 # The following tests mention android-content-shell and android-chrome,
686 # but not webview. 696 # but not webview.
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
819 self.Fail('conformance/textures/misc/texture-npot.html', 829 self.Fail('conformance/textures/misc/texture-npot.html',
820 ['chromeos', ('intel', 0xa011)], bug=375554) 830 ['chromeos', ('intel', 0xa011)], bug=375554)
821 self.Fail('conformance/textures/misc/texture-npot-video.html', 831 self.Fail('conformance/textures/misc/texture-npot-video.html',
822 ['chromeos', ('intel', 0xa011)], bug=375554) 832 ['chromeos', ('intel', 0xa011)], bug=375554)
823 self.Fail('conformance/textures/misc/texture-size.html', 833 self.Fail('conformance/textures/misc/texture-size.html',
824 ['chromeos', ('intel', 0xa011)], bug=375554) 834 ['chromeos', ('intel', 0xa011)], bug=375554)
825 self.Fail('conformance/uniforms/gl-uniform-arrays.html', 835 self.Fail('conformance/uniforms/gl-uniform-arrays.html',
826 ['chromeos', ('intel', 0xa011)], bug=375554) 836 ['chromeos', ('intel', 0xa011)], bug=375554)
827 self.Skip('conformance/uniforms/uniform-default-values.html', 837 self.Skip('conformance/uniforms/uniform-default-values.html',
828 ['chromeos', ('intel', 0xa011)], bug=375554) 838 ['chromeos', ('intel', 0xa011)], bug=375554)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698