1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48
   49
   50
   51
   52
   53
   54
   55
   56
   57
   58
   59
   60
   61
   62
   63
   64
   65
   66
   67
   68
   69
   70
   71
   72
   73
   74
   75
   76
   77
   78
   79
   80
   81
   82
   83
   84
   85
   86
   87
   88
   89
   90
   91
   92
   93
   94
   95
   96
   97
   98
   99
  100
  101
  102
  103
  104
  105
  106
  107
  108
  109
  110
  111
  112
  113
  114
  115
  116
  117
  118
  119
  120
  121
  122
  123
  124
  125
  126
  127
  128
  129
  130
  131
  132
  133
  134
  135
  136
  137
  138
  139
  140
  141
  142
  143
  144
  145
  146
  147
  148
  149
  150
  151
  152
  153
  154
  155
  156
  157
  158
  159
  160
  161
  162
  163
  164
  165
  166
  167
  168
  169
  170
  171
  172
  173
  174
  175
  176
  177
  178
  179
  180
  181
  182
  183
  184
  185
  186
  187
  188
  189
  190
  191
  192
  193
  194
  195
  196
  197
  198
  199
  200
  201
  202
  203
  204
  205
  206
  207
  208
  209
  210
  211
  212
  213
  214
  215
  216
  217
  218
  219
  220
  221
  222
  223
  224
  225
  226
  227
  228
  229
  230
  231
  232
  233
  234
  235
  236
  237
  238
  239
  240
  241
  242
  243
  244
  245
  246
  247
  248
  249
  250
  251
  252
  253
  254
  255
  256
  257
  258
  259
  260
  261
  262
  263
  264
  265
  266
  267
  268
  269
  270
  271
  272
  273
  274
  275
  276
  277
  278
  279
  280
  281
  282
  283
  284
  285
  286
  287
  288
  289
  290
  291
  292
  293
  294
  295
  296
  297
  298
  299
  300
  301
  302
  303
  304
  305
  306
  307
  308
  309
  310
  311
  312
  313
  314
  315
  316
  317
  318
  319
  320
  321
  322
  323
  324
  325
  326
  327
  328
  329
  330
  331
  332
  333
  334
  335
  336
  337
  338
  339
  340
  341
  342
  343
  344
  345
  346
  347
  348
  349
  350
  351
  352
  353
  354
  355
  356
  357
  358
  359
  360
  361
  362
  363
  364
  365
  366
  367
  368
  369
  370
  371
  372
  373
  374
  375
  376
  377
  378
  379
  380
  381
  382
  383
  384
  385
  386
  387
  388
  389
  390
  391
  392
  393
  394
  395
  396
  397
  398
  399
  400
  401
  402
  403
  404
  405
  406
  407
  408
  409
  410
  411
  412
  413
  414
  415
  416
  417
  418
  419
  420
  421
  422
  423
  424
  425
  426
  427
  428
  429
  430
  431
  432
  433
  434
  435
  436
  437
  438
  439
  440
  441
  442
  443
  444
  445
  446
  447
  448
  449
  450
  451
  452
  453
  454
  455
  456
  457
  458
  459
  460
  461
  462
  463
  464
  465
  466
  467
  468
  469
  470
  471
  472
  473
  474
  475
  476
  477
  478
  479
  480
  481
  482
  483
  484
  485
  486
  487
  488
  489
  490
  491
  492
  493
  494
  495
  496
  497
  498
  499
  500
  501
  502
  503
  504
  505
  506
  507
  508
  509
  510
  511
  512
  513
  514
  515
  516
  517
  518
  519
  520
  521
  522
  523
  524
  525
  526
  527
  528
  529
  530
  531
  532
  533
  534
  535
  536
  537
  538
  539
  540
  541
  542
  543
  544
  545
  546
  547
  548
  549
  550
  551
  552
  553
  554
  555
  556
  557
  558
  559
  560
  561
  562
  563
  564
  565
  566
  567
  568
  569
  570
  571
  572
  573
  574
  575
  576
  577
  578
  579
  580
  581
  582
  583
  584
  585
  586
  587
  588
  589
  590
  591
  592
  593
  594
  595
  596
  597
  598
  599
  600
  601
  602
  603
  604
  605
  606
  607
  608
  609
  610
  611
  612
  613
  614
  615
  616
  617
  618
  619
  620
  621
  622
  623
  624
  625
  626
  627
  628
  629
  630
  631
  632
  633
  634
  635
  636
  637
  638
  639
  640
  641
  642
  643
  644
  645
  646
  647
  648
  649
  650
  651
  652
  653
  654
  655
  656
  657
  658
  659
  660
  661
  662
  663
  664
  665
  666
  667
  668
  669
  670
  671
  672
  673
  674
  675
  676
  677
  678
  679
  680
  681
  682
  683
  684
  685
  686
  687
  688
  689
  690
  691
  692
  693
  694
  695
  696
  697
  698
  699
  700
  701
  702
  703
  704
  705
  706
  707
  708
  709
  710
  711
  712
  713
  714
  715
  716
  717
  718
  719
  720
  721
  722
  723
  724
  725
  726
  727
  728
  729
  730
  731
  732
  733
  734
  735
  736
  737
  738
  739
  740
  741
  742
  743
  744
  745
  746
  747
  748
  749
  750
  751
  752
  753
  754
  755
  756
  757
  758
  759
  760
  761
  762
  763
  764
  765
  766
  767
  768
  769
  770
  771
  772
  773
  774
  775
  776
  777
  778
  779
  780
  781
  782
  783
  784
  785
  786
  787
  788
  789
  790
  791
  792
  793
  794
  795
  796
  797
  798
  799
  800
  801
  802
  803
  804
  805
  806
  807
  808
  809
  810
  811
  812
  813
  814
  815
  816
  817
  818
  819
  820
  821
  822
  823
  824
  825
  826
  827
  828
  829
  830
  831
  832
  833
  834
  835
  836
  837
  838
  839
  840
  841
  842
  843
  844
  845
  846
  847
  848
  849
  850
  851
  852
  853
  854
  855
  856
  857
  858
  859
  860
  861
  862
  863
  864
  865
  866
  867
  868
  869
  870
  871
  872
  873
  874
  875
  876
  877
  878
  879
  880
  881
  882
  883
  884
  885
  886
  887
  888
  889
  890
  891
  892
  893
  894
  895
  896
  897
  898
  899
  900
  901
  902
  903
  904
  905
  906
  907
  908
  909
  910
  911
  912
  913
  914
  915
  916
  917
  918
  919
  920
  921
  922
  923
  924
  925
  926
  927
  928
  929
  930
  931
  932
  933
  934
  935
  936
  937
  938
  939
  940
  941
  942
  943
  944
  945
  946
  947
  948
  949
  950
  951
  952
  953
  954
  955
  956
  957
  958
  959
  960
  961
  962
  963
  964
  965
  966
  967
  968
  969
  970
  971
  972
  973
  974
  975
  976
  977
  978
  979
  980
  981
  982
  983
  984
  985
  986
  987
  988
  989
  990
  991
  992
  993
  994
  995
  996
  997
  998
  999
 1000

content / test / data / gpu / webgl1_conformance_mac_runtimes.json [blame]

{
  "times": {
    "WebglExtension_ANGLE_instanced_arrays": 0.5958,
    "WebglExtension_EXT_blend_minmax": 0.6355,
    "WebglExtension_EXT_color_buffer_half_float": 0.6224,
    "WebglExtension_EXT_disjoint_timer_query": 0.6357,
    "WebglExtension_EXT_float_blend": 0.6138,
    "WebglExtension_EXT_frag_depth": 0.623,
    "WebglExtension_EXT_sRGB": 0.6461,
    "WebglExtension_EXT_shader_texture_lod": 0.3244,
    "WebglExtension_EXT_texture_compression_bptc": 0,
    "WebglExtension_EXT_texture_compression_rgtc": 0.6495,
    "WebglExtension_EXT_texture_filter_anisotropic": 0.3194,
    "WebglExtension_KHR_parallel_shader_compile": 0.3183,
    "WebglExtension_OES_element_index_uint": 0.3302,
    "WebglExtension_OES_fbo_render_mipmap": 0.2689,
    "WebglExtension_OES_standard_derivatives": 0.3298,
    "WebglExtension_OES_texture_float": 0.3341,
    "WebglExtension_OES_texture_float_linear": 0.3268,
    "WebglExtension_OES_texture_half_float": 0.3244,
    "WebglExtension_OES_texture_half_float_linear": 0.3217,
    "WebglExtension_OES_vertex_array_object": 0.3246,
    "WebglExtension_TestCoverage": 0.3069,
    "WebglExtension_WEBGL_color_buffer_float": 0.3239,
    "WebglExtension_WEBGL_compressed_texture_astc": 0,
    "WebglExtension_WEBGL_compressed_texture_etc": 0,
    "WebglExtension_WEBGL_compressed_texture_etc1": 0,
    "WebglExtension_WEBGL_compressed_texture_pvrtc": 0,
    "WebglExtension_WEBGL_compressed_texture_s3tc": 0.3193,
    "WebglExtension_WEBGL_compressed_texture_s3tc_srgb": 0.3144,
    "WebglExtension_WEBGL_debug_renderer_info": 0.3584,
    "WebglExtension_WEBGL_debug_shaders": 0.3259,
    "WebglExtension_WEBGL_depth_texture": 0.3248,
    "WebglExtension_WEBGL_draw_buffers": 0.3311,
    "WebglExtension_WEBGL_lose_context": 0.2496,
    "WebglExtension_WEBGL_multi_draw": 0.1849,
    "WebglExtension_WEBGL_video_texture": 0.1775,
    "WebglExtension_WEBGL_webcodecs_video_frame": 0.1832,
    "conformance/attribs/gl-bindAttribLocation-aliasing.html": 0.3797,
    "conformance/attribs/gl-bindAttribLocation-matrix.html": 0.319,
    "conformance/attribs/gl-bindAttribLocation-nonexistent-attribute.html": 0.1936,
    "conformance/attribs/gl-bindAttribLocation-repeated.html": 0.1866,
    "conformance/attribs/gl-disabled-vertex-attrib-update.html": 0.1878,
    "conformance/attribs/gl-disabled-vertex-attrib.html": 0.4174,
    "conformance/attribs/gl-enable-vertex-attrib.html": 0.2139,
    "conformance/attribs/gl-matrix-attributes.html": 0.3904,
    "conformance/attribs/gl-vertex-attrib-context-switch.html": 0.2029,
    "conformance/attribs/gl-vertex-attrib-render.html": 0.1736,
    "conformance/attribs/gl-vertex-attrib-unconsumed-out-of-bounds.html": 0.2658,
    "conformance/attribs/gl-vertex-attrib-zero-issues.html": 0.611,
    "conformance/attribs/gl-vertex-attrib.html": 0.5918,
    "conformance/attribs/gl-vertexattribpointer-offsets.html": 0.7481,
    "conformance/attribs/gl-vertexattribpointer.html": 0.5966,
    "conformance/buffers/buffer-bind-test.html": 0.1514,
    "conformance/buffers/buffer-data-and-buffer-sub-data.html": 0.1818,
    "conformance/buffers/buffer-data-array-buffer-delete.html": 2.2551,
    "conformance/buffers/buffer-data-dynamic-delay.html": 0.4891,
    "conformance/buffers/buffer-uninitialized.html": 0.3483,
    "conformance/buffers/element-array-buffer-delete-recreate.html": 0.1334,
    "conformance/buffers/index-validation-copies-indices.html": 0.1139,
    "conformance/buffers/index-validation-crash-with-buffer-sub-data.html": 0.1445,
    "conformance/buffers/index-validation-large-buffer.html": 0.1882,
    "conformance/buffers/index-validation-verifies-too-many-indices.html": 0.1126,
    "conformance/buffers/index-validation-with-resized-buffer.html": 0.16,
    "conformance/buffers/index-validation.html": 0.192,
    "conformance/buffers/vertex-buffer-updated-after-draw.html": 0.1616,
    "conformance/canvas/buffer-offscreen-test.html": 0.2392,
    "conformance/canvas/buffer-preserve-test.html": 2.3681,
    "conformance/canvas/canvas-test.html": 0.492,
    "conformance/canvas/canvas-zero-size.html": 0.1571,
    "conformance/canvas/draw-static-webgl-to-multiple-canvas-test.html": 1.0415,
    "conformance/canvas/draw-webgl-to-canvas-test.html": 0.6902,
    "conformance/canvas/drawingbuffer-hd-dpi-test.html": 0.2131,
    "conformance/canvas/drawingbuffer-static-canvas-test.html": 0.1442,
    "conformance/canvas/drawingbuffer-test.html": 0.1681,
    "conformance/canvas/framebuffer-bindings-affected-by-to-data-url.html": 0.1237,
    "conformance/canvas/framebuffer-bindings-unaffected-on-resize.html": 0.1688,
    "conformance/canvas/rapid-resizing.html": 6.1387,
    "conformance/canvas/render-after-resize-test.html": 0.2049,
    "conformance/canvas/texture-bindings-unaffected-on-resize.html": 0.3831,
    "conformance/canvas/to-data-url-after-composite.html": 0.4267,
    "conformance/canvas/to-data-url-test.html": 1.9442,
    "conformance/canvas/viewport-unchanged-upon-resize.html": 0.1392,
    "conformance/canvas/webgl-to-2d-canvas.html": 0.2441,
    "conformance/context/constants-and-properties.html": 0.0762,
    "conformance/context/context-attribute-preserve-drawing-buffer-antialias.html": 0.9052,
    "conformance/context/context-attribute-preserve-drawing-buffer.html": 0.5384,
    "conformance/context/context-attributes-alpha-depth-stencil-antialias.html": 0.4833,
    "conformance/context/context-creation-and-destruction.html": 0.9536,
    "conformance/context/context-creation.html": 0.541,
    "conformance/context/context-eviction-with-garbage-collection.html": 1.4394,
    "conformance/context/context-hidden-alpha.html": 0.1156,
    "conformance/context/context-lost-restored.html": 0.1385,
    "conformance/context/context-lost.html": 0.1058,
    "conformance/context/context-no-alpha-fbo-with-alpha.html": 0.4627,
    "conformance/context/context-release-upon-reload.html": 1.319,
    "conformance/context/context-release-with-workers.html": 1.4327,
    "conformance/context/context-size-change.html": 0.0903,
    "conformance/context/context-type-test.html": 0.107,
    "conformance/context/deleted-object-behavior.html": 0.101,
    "conformance/context/incorrect-context-object-behaviour.html": 0.14,
    "conformance/context/methods.html": 0.0995,
    "conformance/context/premultiplyalpha-test.html": 0.3763,
    "conformance/context/user-defined-properties-on-context.html": 0.1225,
    "conformance/context/zero-sized-canvas.html": 0.0874,
    "conformance/extensions/angle-instanced-arrays-out-of-bounds.html": 0.2906,
    "conformance/extensions/angle-instanced-arrays.html": 4.4459,
    "conformance/extensions/ext-blend-minmax.html": 0.1227,
    "conformance/extensions/ext-color-buffer-half-float.html": 0.2012,
    "conformance/extensions/ext-disjoint-timer-query.html": 7.0848,
    "conformance/extensions/ext-float-blend.html": 0.1863,
    "conformance/extensions/ext-frag-depth.html": 0.1912,
    "conformance/extensions/ext-polygon-offset-clamp.html": 0.112,
    "conformance/extensions/ext-sRGB.html": 0.1587,
    "conformance/extensions/ext-shader-texture-lod.html": 0.2988,
    "conformance/extensions/ext-texture-compression-bptc.html": 0.0927,
    "conformance/extensions/ext-texture-compression-rgtc.html": 0.1158,
    "conformance/extensions/ext-texture-filter-anisotropic.html": 0.0934,
    "conformance/extensions/get-extension.html": 0.2586,
    "conformance/extensions/khr-parallel-shader-compile.html": 10.9803,
    "conformance/extensions/oes-element-index-uint.html": 0.2453,
    "conformance/extensions/oes-fbo-render-mipmap.html": 0.1104,
    "conformance/extensions/oes-standard-derivatives.html": 0.2708,
    "conformance/extensions/oes-texture-float-linear.html": 0.332,
    "conformance/extensions/oes-texture-float-with-canvas.html": 0.5971,
    "conformance/extensions/oes-texture-float-with-image-data.html": 0.2191,
    "conformance/extensions/oes-texture-float-with-image.html": 0.2517,
    "conformance/extensions/oes-texture-float-with-video.html": 2.3028,
    "conformance/extensions/oes-texture-float.html": 0.567,
    "conformance/extensions/oes-texture-half-float-linear.html": 0.3813,
    "conformance/extensions/oes-texture-half-float-with-canvas.html": 0.6041,
    "conformance/extensions/oes-texture-half-float-with-image-data.html": 0.2182,
    "conformance/extensions/oes-texture-half-float-with-image.html": 0.2235,
    "conformance/extensions/oes-texture-half-float-with-video.html": 2.4843,
    "conformance/extensions/oes-texture-half-float.html": 0.2586,
    "conformance/extensions/oes-vertex-array-object-bufferData.html": 0.1188,
    "conformance/extensions/oes-vertex-array-object.html": 0.1919,
    "conformance/extensions/s3tc-and-rgtc.html": 0.9004,
    "conformance/extensions/webgl-compressed-texture-astc.html": 0.1003,
    "conformance/extensions/webgl-compressed-texture-etc.html": 0.1048,
    "conformance/extensions/webgl-compressed-texture-etc1.html": 0.1089,
    "conformance/extensions/webgl-compressed-texture-pvrtc.html": 0.1013,
    "conformance/extensions/webgl-compressed-texture-s3tc-srgb.html": 0.4995,
    "conformance/extensions/webgl-compressed-texture-size-limit.html": 4.6277,
    "conformance/extensions/webgl-debug-renderer-info.html": 0.081,
    "conformance/extensions/webgl-debug-shaders.html": 0.1129,
    "conformance/extensions/webgl-depth-texture.html": 0.2297,
    "conformance/extensions/webgl-draw-buffers-broadcast-return.html": 0.144,
    "conformance/extensions/webgl-draw-buffers-framebuffer-unsupported.html": 0.104,
    "conformance/extensions/webgl-draw-buffers-max-draw-buffers.html": 0.1083,
    "conformance/extensions/webgl-draw-buffers.html": 0.4833,
    "conformance/extensions/webgl-multi-draw.html": 8.0538,
    "conformance/glsl/bugs/angle-ambiguous-function-call.html": 0.1907,
    "conformance/glsl/bugs/angle-constructor-invalid-parameters.html": 0.0844,
    "conformance/glsl/bugs/angle-d3d11-compiler-error.html": 0.0855,
    "conformance/glsl/bugs/angle-dx-variable-bug.html": 0.1247,
    "conformance/glsl/bugs/array-of-struct-with-int-first-position.html": 0.1767,
    "conformance/glsl/bugs/assign-to-swizzled-twice-in-function.html": 0.1694,
    "conformance/glsl/bugs/bool-type-cast-bug-int-float.html": 0.1688,
    "conformance/glsl/bugs/character-set.html": 0.1326,
    "conformance/glsl/bugs/compare-loop-index-to-uniform.html": 0.1443,
    "conformance/glsl/bugs/complex-glsl-does-not-crash.html": 1.4147,
    "conformance/glsl/bugs/compound-assignment-type-combination.html": 0.4429,
    "conformance/glsl/bugs/conditional-discard-in-loop.html": 0.1159,
    "conformance/glsl/bugs/conditional-discard-optimization.html": 0.1174,
    "conformance/glsl/bugs/conditional-texture-fetch.html": 0.1004,
    "conformance/glsl/bugs/constant-precision-qualifier.html": 0.1412,
    "conformance/glsl/bugs/essl3-shaders-with-webgl1.html": 0.0912,
    "conformance/glsl/bugs/floor-div-cos-should-not-truncate.html": 0.0998,
    "conformance/glsl/bugs/floored-division-accuracy.html": 0.1196,
    "conformance/glsl/bugs/fragcoord-linking-bug.html": 0.0894,
    "conformance/glsl/bugs/gl-fragcoord-multisampling-bug.html": 0.1289,
    "conformance/glsl/bugs/global-invariant-does-not-leak-across-shaders.html": 0.0807,
    "conformance/glsl/bugs/if-return-and-elseif.html": 0.1401,
    "conformance/glsl/bugs/in-parameter-passed-as-inout-argument-and-global.html": 0.0905,
    "conformance/glsl/bugs/init-array-with-loop.html": 0.0857,
    "conformance/glsl/bugs/invariant-does-not-leak-across-shaders.html": 0.0757,
    "conformance/glsl/bugs/logic-inside-block-without-braces.html": 0.0938,
    "conformance/glsl/bugs/long-expressions-should-not-crash.html": 0.3206,
    "conformance/glsl/bugs/loop-if-loop-gradient.html": 0.0868,
    "conformance/glsl/bugs/modulo-arithmetic-accuracy.html": 0.1063,
    "conformance/glsl/bugs/multiplication-assignment.html": 0.0915,
    "conformance/glsl/bugs/nested-functions-should-not-crash.html": 0.1894,
    "conformance/glsl/bugs/nested-loops-with-break-and-continue.html": 0.0953,
    "conformance/glsl/bugs/nested-sequence-operator.html": 0.0873,
    "conformance/glsl/bugs/pow-of-small-constant-in-user-defined-function.html": 0.1183,
    "conformance/glsl/bugs/pow-with-constant-exponent-should-not-crash.html": 0.1057,
    "conformance/glsl/bugs/qualcomm-crash.html": 0.1007,
    "conformance/glsl/bugs/qualcomm-loop-with-continue-crash.html": 0.0848,
    "conformance/glsl/bugs/sampler-array-struct-function-arg.html": 0.1076,
    "conformance/glsl/bugs/sampler-array-using-loop-index.html": 0.107,
    "conformance/glsl/bugs/sampler-struct-function-arg.html": 0.0995,
    "conformance/glsl/bugs/sequence-operator-evaluation-order.html": 0.134,
    "conformance/glsl/bugs/sketchfab-lighting-shader-crash.html": 0.2912,
    "conformance/glsl/bugs/struct-constructor-highp-bug.html": 0.106,
    "conformance/glsl/bugs/struct-with-single-member-constructor.html": 0.0993,
    "conformance/glsl/bugs/temp-expressions-should-not-crash.html": 1.1251,
    "conformance/glsl/bugs/unary-minus-operator-float-bug.html": 0.0934,
    "conformance/glsl/bugs/undefined-index-should-not-crash.html": 0.0923,
    "conformance/glsl/bugs/uniforms-should-not-lose-values.html": 0.0952,
    "conformance/glsl/bugs/varying-arrays-should-not-be-reversed.html": 0.1247,
    "conformance/glsl/bugs/vector-matrix-constructor-scalarization.html": 0.1858,
    "conformance/glsl/bugs/vector-scalar-arithmetic-inside-loop-complex.html": 0.1165,
    "conformance/glsl/bugs/vector-scalar-arithmetic-inside-loop.html": 0.1146,
    "conformance/glsl/constructors/glsl-construct-bvec2.html": 0.33,
    "conformance/glsl/constructors/glsl-construct-bvec3.html": 0.4135,
    "conformance/glsl/constructors/glsl-construct-bvec4.html": 0.5123,
    "conformance/glsl/constructors/glsl-construct-ivec2.html": 0.3815,
    "conformance/glsl/constructors/glsl-construct-ivec3.html": 0.5173,
    "conformance/glsl/constructors/glsl-construct-ivec4.html": 0.5916,
    "conformance/glsl/constructors/glsl-construct-mat2.html": 0.4213,
    "conformance/glsl/constructors/glsl-construct-mat3.html": 0.2569,
    "conformance/glsl/constructors/glsl-construct-mat4.html": 0.314,
    "conformance/glsl/constructors/glsl-construct-vec-mat-corner-cases.html": 0.0971,
    "conformance/glsl/constructors/glsl-construct-vec-mat-index.html": 0.108,
    "conformance/glsl/constructors/glsl-construct-vec2.html": 0.3645,
    "conformance/glsl/constructors/glsl-construct-vec3.html": 0.4564,
    "conformance/glsl/constructors/glsl-construct-vec4.html": 0.5616,
    "conformance/glsl/functions/glsl-function-abs.html": 0.3179,
    "conformance/glsl/functions/glsl-function-acos.html": 0.2868,
    "conformance/glsl/functions/glsl-function-asin.html": 0.2736,
    "conformance/glsl/functions/glsl-function-atan-xy.html": 0.3009,
    "conformance/glsl/functions/glsl-function-atan.html": 0.2874,
    "conformance/glsl/functions/glsl-function-ceil.html": 0.3231,
    "conformance/glsl/functions/glsl-function-clamp-float.html": 0.3155,
    "conformance/glsl/functions/glsl-function-clamp-gentype.html": 0.2861,
    "conformance/glsl/functions/glsl-function-cos.html": 0.3117,
    "conformance/glsl/functions/glsl-function-cross.html": 0.1507,
    "conformance/glsl/functions/glsl-function-distance.html": 0.2968,
    "conformance/glsl/functions/glsl-function-dot.html": 0.3232,
    "conformance/glsl/functions/glsl-function-faceforward.html": 0.2955,
    "conformance/glsl/functions/glsl-function-floor.html": 0.3171,
    "conformance/glsl/functions/glsl-function-fract.html": 0.3031,
    "conformance/glsl/functions/glsl-function-length.html": 0.304,
    "conformance/glsl/functions/glsl-function-max-float.html": 0.2795,
    "conformance/glsl/functions/glsl-function-max-gentype.html": 0.3037,
    "conformance/glsl/functions/glsl-function-min-float.html": 0.28,
    "conformance/glsl/functions/glsl-function-min-gentype.html": 0.2805,
    "conformance/glsl/functions/glsl-function-mix-float.html": 0.3147,
    "conformance/glsl/functions/glsl-function-mix-gentype.html": 0.3095,
    "conformance/glsl/functions/glsl-function-mod-float.html": 0.3082,
    "conformance/glsl/functions/glsl-function-mod-gentype.html": 0.3135,
    "conformance/glsl/functions/glsl-function-normalize.html": 0.3075,
    "conformance/glsl/functions/glsl-function-reflect.html": 0.3008,
    "conformance/glsl/functions/glsl-function-sign.html": 0.3114,
    "conformance/glsl/functions/glsl-function-sin.html": 0.2856,
    "conformance/glsl/functions/glsl-function-smoothstep-float.html": 0.2848,
    "conformance/glsl/functions/glsl-function-smoothstep-gentype.html": 0.3091,
    "conformance/glsl/functions/glsl-function-step-float.html": 0.3146,
    "conformance/glsl/functions/glsl-function-step-gentype.html": 0.3186,
    "conformance/glsl/functions/glsl-function.html": 0.3191,
    "conformance/glsl/implicit/add_int_float.vert.html": 0.0973,
    "conformance/glsl/implicit/add_int_mat2.vert.html": 0.1049,
    "conformance/glsl/implicit/add_int_mat3.vert.html": 0.123,
    "conformance/glsl/implicit/add_int_mat4.vert.html": 0.1177,
    "conformance/glsl/implicit/add_int_vec2.vert.html": 0.1145,
    "conformance/glsl/implicit/add_int_vec3.vert.html": 0.1183,
    "conformance/glsl/implicit/add_int_vec4.vert.html": 0.1077,
    "conformance/glsl/implicit/add_ivec2_vec2.vert.html": 0.1296,
    "conformance/glsl/implicit/add_ivec3_vec3.vert.html": 0.094,
    "conformance/glsl/implicit/add_ivec4_vec4.vert.html": 0.0968,
    "conformance/glsl/implicit/assign_int_to_float.vert.html": 0.1292,
    "conformance/glsl/implicit/assign_ivec2_to_vec2.vert.html": 0.1026,
    "conformance/glsl/implicit/assign_ivec3_to_vec3.vert.html": 0.1065,
    "conformance/glsl/implicit/assign_ivec4_to_vec4.vert.html": 0.1031,
    "conformance/glsl/implicit/construct_struct.vert.html": 0.0856,
    "conformance/glsl/implicit/divide_int_float.vert.html": 0.0993,
    "conformance/glsl/implicit/divide_int_mat2.vert.html": 0.099,
    "conformance/glsl/implicit/divide_int_mat3.vert.html": 0.0832,
    "conformance/glsl/implicit/divide_int_mat4.vert.html": 0.0981,
    "conformance/glsl/implicit/divide_int_vec2.vert.html": 0.0839,
    "conformance/glsl/implicit/divide_int_vec3.vert.html": 0.079,
    "conformance/glsl/implicit/divide_int_vec4.vert.html": 0.0888,
    "conformance/glsl/implicit/divide_ivec2_vec2.vert.html": 0.1118,
    "conformance/glsl/implicit/divide_ivec3_vec3.vert.html": 0.0985,
    "conformance/glsl/implicit/divide_ivec4_vec4.vert.html": 0.0803,
    "conformance/glsl/implicit/equal_int_float.vert.html": 0.0825,
    "conformance/glsl/implicit/equal_ivec2_vec2.vert.html": 0.0995,
    "conformance/glsl/implicit/equal_ivec3_vec3.vert.html": 0.089,
    "conformance/glsl/implicit/equal_ivec4_vec4.vert.html": 0.0991,
    "conformance/glsl/implicit/function_int_float.vert.html": 0.0966,
    "conformance/glsl/implicit/function_ivec2_vec2.vert.html": 0.0876,
    "conformance/glsl/implicit/function_ivec3_vec3.vert.html": 0.0909,
    "conformance/glsl/implicit/function_ivec4_vec4.vert.html": 0.101,
    "conformance/glsl/implicit/greater_than.vert.html": 0.0997,
    "conformance/glsl/implicit/greater_than_equal.vert.html": 0.1007,
    "conformance/glsl/implicit/less_than.vert.html": 0.0958,
    "conformance/glsl/implicit/less_than_equal.vert.html": 0.0984,
    "conformance/glsl/implicit/multiply_int_float.vert.html": 0.102,
    "conformance/glsl/implicit/multiply_int_mat2.vert.html": 0.0973,
    "conformance/glsl/implicit/multiply_int_mat3.vert.html": 0.1029,
    "conformance/glsl/implicit/multiply_int_mat4.vert.html": 0.0964,
    "conformance/glsl/implicit/multiply_int_vec2.vert.html": 0.1383,
    "conformance/glsl/implicit/multiply_int_vec3.vert.html": 0.1005,
    "conformance/glsl/implicit/multiply_int_vec4.vert.html": 0.0996,
    "conformance/glsl/implicit/multiply_ivec2_vec2.vert.html": 0.0975,
    "conformance/glsl/implicit/multiply_ivec3_vec3.vert.html": 0.1013,
    "conformance/glsl/implicit/multiply_ivec4_vec4.vert.html": 0.1069,
    "conformance/glsl/implicit/not_equal_int_float.vert.html": 0.1057,
    "conformance/glsl/implicit/not_equal_ivec2_vec2.vert.html": 0.098,
    "conformance/glsl/implicit/not_equal_ivec3_vec3.vert.html": 0.098,
    "conformance/glsl/implicit/not_equal_ivec4_vec4.vert.html": 0.1059,
    "conformance/glsl/implicit/subtract_int_float.vert.html": 0.0967,
    "conformance/glsl/implicit/subtract_int_mat2.vert.html": 0.0969,
    "conformance/glsl/implicit/subtract_int_mat3.vert.html": 0.1048,
    "conformance/glsl/implicit/subtract_int_mat4.vert.html": 0.0967,
    "conformance/glsl/implicit/subtract_int_vec2.vert.html": 0.1012,
    "conformance/glsl/implicit/subtract_int_vec3.vert.html": 0.0962,
    "conformance/glsl/implicit/subtract_int_vec4.vert.html": 0.1014,
    "conformance/glsl/implicit/subtract_ivec2_vec2.vert.html": 0.0959,
    "conformance/glsl/implicit/subtract_ivec3_vec3.vert.html": 0.1024,
    "conformance/glsl/implicit/subtract_ivec4_vec4.vert.html": 0.1022,
    "conformance/glsl/implicit/ternary_int_float.vert.html": 0.1044,
    "conformance/glsl/implicit/ternary_ivec2_vec2.vert.html": 0.0915,
    "conformance/glsl/implicit/ternary_ivec3_vec3.vert.html": 0.093,
    "conformance/glsl/implicit/ternary_ivec4_vec4.vert.html": 0.1084,
    "conformance/glsl/literals/float_literal.vert.html": 0.1072,
    "conformance/glsl/literals/literal_precision.html": 0.0983,
    "conformance/glsl/literals/overflow_leak.vert.html": 0.1569,
    "conformance/glsl/matrices/glsl-mat3-construction.html": 0.1979,
    "conformance/glsl/matrices/glsl-mat4-to-mat3.html": 0.1829,
    "conformance/glsl/matrices/matrix-compound-multiply.html": 0.1414,
    "conformance/glsl/misc/attrib-location-length-limits.html": 0.1186,
    "conformance/glsl/misc/boolean_precision.html": 0.1009,
    "conformance/glsl/misc/const-variable-initialization.html": 0.4105,
    "conformance/glsl/misc/embedded-struct-definitions-forbidden.html": 0.0993,
    "conformance/glsl/misc/empty-declaration.html": 0.1115,
    "conformance/glsl/misc/empty_main.vert.html": 0.1246,
    "conformance/glsl/misc/expression-list-in-declarator-initializer.html": 0.4318,
    "conformance/glsl/misc/fragcolor-fragdata-invariant.html": 1.4889,
    "conformance/glsl/misc/gl_position_unset.vert.html": 0.0872,
    "conformance/glsl/misc/global-variable-init.html": 0.1735,
    "conformance/glsl/misc/glsl-function-nodes.html": 0.1256,
    "conformance/glsl/misc/glsl-long-variable-names.html": 0.1331,
    "conformance/glsl/misc/glsl-vertex-branch.html": 0.1317,
    "conformance/glsl/misc/large-loop-compile.html": 0.7264,
    "conformance/glsl/misc/local-variable-shadowing-outer-function.html": 0.0776,
    "conformance/glsl/misc/non-ascii-comments.vert.html": 0.3359,
    "conformance/glsl/misc/non-ascii.vert.html": 0.0924,
    "conformance/glsl/misc/re-compile-re-link.html": 0.1615,
    "conformance/glsl/misc/sampler-operand.html": 0.0857,
    "conformance/glsl/misc/sequence-operator-returns-constant.html": 0.0974,
    "conformance/glsl/misc/shader-precision-format-obeyed.html": 0.1099,
    "conformance/glsl/misc/shader-struct-scope.html": 0.0971,
    "conformance/glsl/misc/shader-uniform-packing-restrictions.html": 1.1738,
    "conformance/glsl/misc/shader-varying-packing-restrictions.html": 0.303,
    "conformance/glsl/misc/shader-with-256-character-define.html": 0.1531,
    "conformance/glsl/misc/shader-with-256-character-identifier.frag.html": 0.0792,
    "conformance/glsl/misc/shader-with-257-character-define.html": 0.0751,
    "conformance/glsl/misc/shader-with-257-character-identifier.frag.html": 0.0755,
    "conformance/glsl/misc/shader-with-_webgl-identifier.vert.html": 0.083,
    "conformance/glsl/misc/shader-with-arbitrary-indexing.frag.html": 0.092,
    "conformance/glsl/misc/shader-with-arbitrary-indexing.vert.html": 0.0879,
    "conformance/glsl/misc/shader-with-array-of-structs-containing-arrays.html": 0.1118,
    "conformance/glsl/misc/shader-with-array-of-structs-uniform.html": 0.1155,
    "conformance/glsl/misc/shader-with-attrib-array.vert.html": 0.0934,
    "conformance/glsl/misc/shader-with-attrib-struct.vert.html": 0.1052,
    "conformance/glsl/misc/shader-with-clipvertex.vert.html": 0.0834,
    "conformance/glsl/misc/shader-with-comma-assignment.html": 0.1085,
    "conformance/glsl/misc/shader-with-comma-conditional-assignment.html": 0.2262,
    "conformance/glsl/misc/shader-with-comma-separated-variable-declarations.html": 0.0826,
    "conformance/glsl/misc/shader-with-conditional-scoping-negative.html": 0.0868,
    "conformance/glsl/misc/shader-with-conditional-scoping.html": 0.0809,
    "conformance/glsl/misc/shader-with-default-precision.frag.html": 0.0842,
    "conformance/glsl/misc/shader-with-default-precision.vert.html": 0.0886,
    "conformance/glsl/misc/shader-with-dfdx-no-ext.frag.html": 0.0758,
    "conformance/glsl/misc/shader-with-dfdx.frag.html": 0.0934,
    "conformance/glsl/misc/shader-with-do-loop.html": 0.0852,
    "conformance/glsl/misc/shader-with-error-directive.html": 0.0852,
    "conformance/glsl/misc/shader-with-explicit-int-cast.vert.html": 0.0779,
    "conformance/glsl/misc/shader-with-float-return-value.frag.html": 0.0784,
    "conformance/glsl/misc/shader-with-for-loop.html": 0.0904,
    "conformance/glsl/misc/shader-with-for-scoping.html": 0.0859,
    "conformance/glsl/misc/shader-with-frag-depth.frag.html": 0.0976,
    "conformance/glsl/misc/shader-with-function-recursion.frag.html": 0.0782,
    "conformance/glsl/misc/shader-with-function-scoped-struct.html": 0.0973,
    "conformance/glsl/misc/shader-with-functional-scoping.html": 0.0995,
    "conformance/glsl/misc/shader-with-glcolor.vert.html": 0.0902,
    "conformance/glsl/misc/shader-with-gles-1.frag.html": 0.1056,
    "conformance/glsl/misc/shader-with-gles-symbol.frag.html": 0.0874,
    "conformance/glsl/misc/shader-with-global-variable-precision-mismatch.html": 0.1065,
    "conformance/glsl/misc/shader-with-glprojectionmatrix.vert.html": 0.087,
    "conformance/glsl/misc/shader-with-hex-int-constant-macro.html": 0.0995,
    "conformance/glsl/misc/shader-with-implicit-vec3-to-vec4-cast.vert.html": 0.0853,
    "conformance/glsl/misc/shader-with-include.vert.html": 0.0857,
    "conformance/glsl/misc/shader-with-int-return-value.frag.html": 0.097,
    "conformance/glsl/misc/shader-with-invalid-identifier.frag.html": 0.0873,
    "conformance/glsl/misc/shader-with-ivec2-return-value.frag.html": 0.0928,
    "conformance/glsl/misc/shader-with-ivec3-return-value.frag.html": 0.0859,
    "conformance/glsl/misc/shader-with-ivec4-return-value.frag.html": 0.1045,
    "conformance/glsl/misc/shader-with-limited-indexing.frag.html": 0.0948,
    "conformance/glsl/misc/shader-with-long-line.html": 0.1047,
    "conformance/glsl/misc/shader-with-non-ascii-error.frag.html": 0.0967,
    "conformance/glsl/misc/shader-with-non-reserved-words-1-of-8.html": 1.5579,
    "conformance/glsl/misc/shader-with-non-reserved-words-2-of-8.html": 1.4987,
    "conformance/glsl/misc/shader-with-non-reserved-words-3-of-8.html": 1.6012,
    "conformance/glsl/misc/shader-with-non-reserved-words-4-of-8.html": 1.4515,
    "conformance/glsl/misc/shader-with-non-reserved-words-5-of-8.html": 1.0037,
    "conformance/glsl/misc/shader-with-non-reserved-words-6-of-8.html": 1.2434,
    "conformance/glsl/misc/shader-with-non-reserved-words-7-of-8.html": 1.4833,
    "conformance/glsl/misc/shader-with-non-reserved-words-8-of-8.html": 1.0393,
    "conformance/glsl/misc/shader-with-precision.frag.html": 0.1088,
    "conformance/glsl/misc/shader-with-preprocessor-whitespace.html": 0.0911,
    "conformance/glsl/misc/shader-with-quoted-error.frag.html": 0.0911,
    "conformance/glsl/misc/shader-with-reserved-words.html": 2.2211,
    "conformance/glsl/misc/shader-with-short-circuiting-operators.html": 0.2325,
    "conformance/glsl/misc/shader-with-similar-uniform-array-names.html": 0.1335,
    "conformance/glsl/misc/shader-with-too-many-uniforms.html": 0.1088,
    "conformance/glsl/misc/shader-with-two-initializer-types.html": 0.086,
    "conformance/glsl/misc/shader-with-undefined-preprocessor-symbol.frag.html": 0.1113,
    "conformance/glsl/misc/shader-with-uniform-in-loop-condition.vert.html": 0.1104,
    "conformance/glsl/misc/shader-with-vec2-return-value.frag.html": 0.1111,
    "conformance/glsl/misc/shader-with-vec3-return-value.frag.html": 0.1203,
    "conformance/glsl/misc/shader-with-vec4-return-value.frag.html": 0.1245,
    "conformance/glsl/misc/shader-with-vec4-vec3-vec4-conditional.html": 0.1184,
    "conformance/glsl/misc/shader-with-version-100.frag.html": 0.1119,
    "conformance/glsl/misc/shader-with-version-100.vert.html": 0.0789,
    "conformance/glsl/misc/shader-with-version-120.vert.html": 0.1074,
    "conformance/glsl/misc/shader-with-version-130.vert.html": 0.1133,
    "conformance/glsl/misc/shader-with-webgl-identifier.vert.html": 0.116,
    "conformance/glsl/misc/shader-with-while-loop.html": 0.115,
    "conformance/glsl/misc/shader-without-precision.frag.html": 0.1029,
    "conformance/glsl/misc/shaders-with-constant-expression-loop-conditions.html": 0.0954,
    "conformance/glsl/misc/shaders-with-invariance.html": 0.1293,
    "conformance/glsl/misc/shaders-with-mis-matching-uniforms.html": 0.2378,
    "conformance/glsl/misc/shaders-with-mis-matching-varyings.html": 0.1296,
    "conformance/glsl/misc/shaders-with-missing-varyings.html": 0.0891,
    "conformance/glsl/misc/shaders-with-name-conflicts.html": 0.0762,
    "conformance/glsl/misc/shaders-with-uniform-structs.html": 0.1121,
    "conformance/glsl/misc/shaders-with-varyings.html": 0.0823,
    "conformance/glsl/misc/shared.html": 0.0994,
    "conformance/glsl/misc/struct-as-inout-parameter.html": 0.1327,
    "conformance/glsl/misc/struct-as-out-parameter.html": 0.1505,
    "conformance/glsl/misc/struct-assign.html": 0.1338,
    "conformance/glsl/misc/struct-equals.html": 0.1601,
    "conformance/glsl/misc/struct-mixed-array-declarators.html": 0.4555,
    "conformance/glsl/misc/struct-nesting-exceeds-maximum.html": 0.089,
    "conformance/glsl/misc/struct-nesting-of-variable-names.html": 1.3055,
    "conformance/glsl/misc/struct-nesting-under-maximum.html": 0.0955,
    "conformance/glsl/misc/struct-specifiers-in-uniforms.html": 0.2592,
    "conformance/glsl/misc/struct-unary-operators.html": 0.1235,
    "conformance/glsl/misc/ternary-operator-on-arrays.html": 0.1068,
    "conformance/glsl/misc/ternary-operators-in-global-initializers.html": 0.2018,
    "conformance/glsl/misc/ternary-operators-in-initializers.html": 0.1968,
    "conformance/glsl/misc/uniform-location-length-limits.html": 0.0925,
    "conformance/glsl/misc/uninitialized-local-global-variables.html": 0.2608,
    "conformance/glsl/preprocessor/comments.html": 0.1264,
    "conformance/glsl/preprocessor/macro-expansion-tricky.html": 0.0975,
    "conformance/glsl/reserved/_webgl_field.vert.html": 0.0943,
    "conformance/glsl/reserved/_webgl_function.vert.html": 0.0972,
    "conformance/glsl/reserved/_webgl_struct.vert.html": 0.0918,
    "conformance/glsl/reserved/_webgl_variable.vert.html": 0.0943,
    "conformance/glsl/reserved/webgl_field.vert.html": 0.0926,
    "conformance/glsl/reserved/webgl_function.vert.html": 0.0986,
    "conformance/glsl/reserved/webgl_struct.vert.html": 0.0961,
    "conformance/glsl/reserved/webgl_variable.vert.html": 0.1141,
    "conformance/glsl/samplers/glsl-function-texture2d-bias.html": 0.1814,
    "conformance/glsl/samplers/glsl-function-texture2dlod.html": 0.1745,
    "conformance/glsl/samplers/glsl-function-texture2dproj.html": 0.151,
    "conformance/glsl/samplers/glsl-function-texture2dprojlod.html": 0.5416,
    "conformance/glsl/variables/gl-fragcoord-xy-values.html": 0.1357,
    "conformance/glsl/variables/gl-fragcoord.html": 0.1114,
    "conformance/glsl/variables/gl-fragdata-and-fragcolor.html": 0.0894,
    "conformance/glsl/variables/gl-frontfacing.html": 0.1218,
    "conformance/glsl/variables/gl-pointcoord.html": 0.1284,
    "conformance/glsl/variables/glsl-built-ins.html": 0.2544,
    "conformance/limits/gl-line-width.html": 0.1024,
    "conformance/limits/gl-max-texture-dimensions.html": 0.1199,
    "conformance/limits/gl-min-attribs.html": 0.1101,
    "conformance/limits/gl-min-textures.html": 0.1009,
    "conformance/limits/gl-min-uniforms.html": 0.1787,
    "conformance/misc/bad-arguments-test.html": 0.1159,
    "conformance/misc/boolean-argument-conversion.html": 0.1097,
    "conformance/misc/delayed-drawing.html": 1.2803,
    "conformance/misc/error-reporting.html": 0.1026,
    "conformance/misc/expando-loss.html": 0.3009,
    "conformance/misc/functions-returning-strings.html": 0.1012,
    "conformance/misc/hint.html": 0.1772,
    "conformance/misc/instanceof-test.html": 0.1617,
    "conformance/misc/invalid-passed-params.html": 0.1254,
    "conformance/misc/is-object.html": 0.0946,
    "conformance/misc/null-object-behaviour.html": 0.1135,
    "conformance/misc/object-deletion-behaviour.html": 0.1982,
    "conformance/misc/shader-precision-format.html": 0.2004,
    "conformance/misc/type-conversion-test.html": 0.1631,
    "conformance/misc/uninitialized-test.html": 0.1845,
    "conformance/misc/webgl-specific-stencil-settings.html": 0.2401,
    "conformance/misc/webgl-specific.html": 0.1039,
    "conformance/more/conformance/constants.html": 0.1332,
    "conformance/more/conformance/getContext.html": 0.1295,
    "conformance/more/conformance/methods.html": 0.0997,
    "conformance/more/conformance/quickCheckAPI-A.html": 0.1572,
    "conformance/more/conformance/quickCheckAPI-B1.html": 0.1568,
    "conformance/more/conformance/quickCheckAPI-B2.html": 0.17,
    "conformance/more/conformance/quickCheckAPI-B3.html": 0.1064,
    "conformance/more/conformance/quickCheckAPI-B4.html": 0.1848,
    "conformance/more/conformance/quickCheckAPI-C.html": 0.1032,
    "conformance/more/conformance/quickCheckAPI-D_G.html": 0.1917,
    "conformance/more/conformance/quickCheckAPI-G_I.html": 0.1484,
    "conformance/more/conformance/quickCheckAPI-L_S.html": 0.1209,
    "conformance/more/conformance/quickCheckAPI-S_V.html": 0.1745,
    "conformance/more/conformance/webGLArrays.html": 0.1154,
    "conformance/more/functions/bindBuffer.html": 0.1432,
    "conformance/more/functions/bindBufferBadArgs.html": 0.1513,
    "conformance/more/functions/bindFramebufferLeaveNonZero.html": 0.15,
    "conformance/more/functions/bufferData.html": 0.1146,
    "conformance/more/functions/bufferDataBadArgs.html": 0.1424,
    "conformance/more/functions/bufferSubData.html": 0.1575,
    "conformance/more/functions/bufferSubDataBadArgs.html": 0.0959,
    "conformance/more/functions/copyTexImage2D.html": 0.1433,
    "conformance/more/functions/copyTexImage2DBadArgs.html": 0.1172,
    "conformance/more/functions/copyTexSubImage2D.html": 0.1491,
    "conformance/more/functions/copyTexSubImage2DBadArgs.html": 0.1075,
    "conformance/more/functions/deleteBufferBadArgs.html": 0.1121,
    "conformance/more/functions/drawArrays.html": 0.1471,
    "conformance/more/functions/drawElements.html": 0.1594,
    "conformance/more/functions/isTests.html": 0.1047,
    "conformance/more/functions/isTestsBadArgs.html": 0.0859,
    "conformance/more/functions/readPixels.html": 0.1092,
    "conformance/more/functions/readPixelsBadArgs.html": 0.1476,
    "conformance/more/functions/texImage2D.html": 0.1143,
    "conformance/more/functions/texImage2DBadArgs.html": 0.1022,
    "conformance/more/functions/texImage2DHTML.html": 0.3008,
    "conformance/more/functions/texImage2DHTMLBadArgs.html": 0.1114,
    "conformance/more/functions/texSubImage2D.html": 0.1048,
    "conformance/more/functions/texSubImage2DBadArgs.html": 0.1161,
    "conformance/more/functions/texSubImage2DHTML.html": 0.333,
    "conformance/more/functions/texSubImage2DHTMLBadArgs.html": 0.1158,
    "conformance/more/functions/uniformMatrix.html": 0.1552,
    "conformance/more/functions/uniformMatrixBadArgs.html": 0.1383,
    "conformance/more/functions/uniformf.html": 0.1248,
    "conformance/more/functions/uniformfArrayLen1.html": 0.1413,
    "conformance/more/functions/uniformfBadArgs.html": 0.1304,
    "conformance/more/functions/uniformi.html": 0.1379,
    "conformance/more/functions/uniformiBadArgs.html": 0.1538,
    "conformance/more/functions/vertexAttrib.html": 0.1311,
    "conformance/more/functions/vertexAttribBadArgs.html": 0.1449,
    "conformance/more/functions/vertexAttribPointer.html": 0.1245,
    "conformance/more/functions/vertexAttribPointerBadArgs.html": 0.1061,
    "conformance/more/glsl/arrayOutOfBounds.html": 0.141,
    "conformance/more/glsl/uniformOutOfBounds.html": 0.1352,
    "conformance/offscreencanvas/context-attribute-preserve-drawing-buffer.html": 0.6748,
    "conformance/offscreencanvas/context-creation-worker.html": 0.125,
    "conformance/offscreencanvas/context-creation.html": 0.1001,
    "conformance/offscreencanvas/context-lost-restored-worker.html": 0.1595,
    "conformance/offscreencanvas/context-lost-restored.html": 0.1453,
    "conformance/offscreencanvas/context-lost-worker.html": 0.1406,
    "conformance/offscreencanvas/context-lost.html": 0.1136,
    "conformance/offscreencanvas/methods-worker.html": 0.1133,
    "conformance/offscreencanvas/methods.html": 0.1101,
    "conformance/offscreencanvas/offscreencanvas-resize.html": 0.1078,
    "conformance/offscreencanvas/offscreencanvas-timer-query.html": 0.1319,
    "conformance/offscreencanvas/offscreencanvas-transfer-image-bitmap.html": 0.1345,
    "conformance/ogles/GL/abs/abs_001_to_006.html": 0.6128,
    "conformance/ogles/GL/acos/acos_001_to_006.html": 1.372,
    "conformance/ogles/GL/all/all_001_to_004.html": 0.5169,
    "conformance/ogles/GL/any/any_001_to_004.html": 0.4777,
    "conformance/ogles/GL/array/array_001_to_006.html": 0.4979,
    "conformance/ogles/GL/asin/asin_001_to_006.html": 1.3554,
    "conformance/ogles/GL/atan/atan_001_to_008.html": 0.8696,
    "conformance/ogles/GL/atan/atan_009_to_012.html": 0.706,
    "conformance/ogles/GL/biConstants/biConstants_001_to_008.html": 0.7676,
    "conformance/ogles/GL/biConstants/biConstants_009_to_016.html": 0.7096,
    "conformance/ogles/GL/biuDepthRange/biuDepthRange_001_to_002.html": 0.3045,
    "conformance/ogles/GL/build/build_001_to_008.html": 0.2041,
    "conformance/ogles/GL/build/build_009_to_016.html": 0.1975,
    "conformance/ogles/GL/build/build_017_to_024.html": 0.1518,
    "conformance/ogles/GL/build/build_025_to_032.html": 0.2242,
    "conformance/ogles/GL/build/build_033_to_040.html": 0.147,
    "conformance/ogles/GL/build/build_041_to_048.html": 0.1444,
    "conformance/ogles/GL/build/build_049_to_056.html": 0.1501,
    "conformance/ogles/GL/build/build_057_to_064.html": 0.1479,
    "conformance/ogles/GL/build/build_065_to_072.html": 0.1284,
    "conformance/ogles/GL/build/build_073_to_080.html": 0.204,
    "conformance/ogles/GL/build/build_081_to_088.html": 0.1978,
    "conformance/ogles/GL/build/build_089_to_096.html": 0.1947,
    "conformance/ogles/GL/build/build_097_to_104.html": 0.1562,
    "conformance/ogles/GL/build/build_105_to_112.html": 0.1289,
    "conformance/ogles/GL/build/build_113_to_120.html": 0.1702,
    "conformance/ogles/GL/build/build_121_to_128.html": 0.1181,
    "conformance/ogles/GL/build/build_129_to_136.html": 0.1655,
    "conformance/ogles/GL/build/build_137_to_144.html": 0.1357,
    "conformance/ogles/GL/build/build_145_to_152.html": 0.1835,
    "conformance/ogles/GL/build/build_153_to_160.html": 0.1344,
    "conformance/ogles/GL/build/build_161_to_168.html": 0.1522,
    "conformance/ogles/GL/build/build_169_to_176.html": 0.1775,
    "conformance/ogles/GL/build/build_177_to_178.html": 0.128,
    "conformance/ogles/GL/built_in_varying_array_out_of_bounds/built_in_varying_array_out_of_bounds_001_to_001.html": 0.1581,
    "conformance/ogles/GL/ceil/ceil_001_to_006.html": 0.6343,
    "conformance/ogles/GL/clamp/clamp_001_to_006.html": 0.6256,
    "conformance/ogles/GL/control_flow/control_flow_001_to_008.html": 0.5604,
    "conformance/ogles/GL/control_flow/control_flow_009_to_010.html": 0.2354,
    "conformance/ogles/GL/cos/cos_001_to_006.html": 0.8257,
    "conformance/ogles/GL/cross/cross_001_to_002.html": 0.3225,
    "conformance/ogles/GL/default/default_001_to_001.html": 0.1773,
    "conformance/ogles/GL/degrees/degrees_001_to_006.html": 0.6875,
    "conformance/ogles/GL/discard/discard_001_to_002.html": 0.244,
    "conformance/ogles/GL/distance/distance_001_to_006.html": 0.6754,
    "conformance/ogles/GL/dot/dot_001_to_006.html": 0.6438,
    "conformance/ogles/GL/equal/equal_001_to_008.html": 1.0937,
    "conformance/ogles/GL/equal/equal_009_to_012.html": 0.4938,
    "conformance/ogles/GL/exp/exp_001_to_008.html": 1.2152,
    "conformance/ogles/GL/exp/exp_009_to_012.html": 0.7174,
    "conformance/ogles/GL/exp2/exp2_001_to_008.html": 1.3416,
    "conformance/ogles/GL/exp2/exp2_009_to_012.html": 0.7662,
    "conformance/ogles/GL/faceforward/faceforward_001_to_006.html": 0.8456,
    "conformance/ogles/GL/floor/floor_001_to_006.html": 0.9779,
    "conformance/ogles/GL/fract/fract_001_to_006.html": 1.2596,
    "conformance/ogles/GL/functions/functions_001_to_008.html": 0.7773,
    "conformance/ogles/GL/functions/functions_009_to_016.html": 0.6056,
    "conformance/ogles/GL/functions/functions_017_to_024.html": 0.6389,
    "conformance/ogles/GL/functions/functions_025_to_032.html": 0.871,
    "conformance/ogles/GL/functions/functions_033_to_040.html": 0.8731,
    "conformance/ogles/GL/functions/functions_041_to_048.html": 0.6975,
    "conformance/ogles/GL/functions/functions_049_to_056.html": 0.8715,
    "conformance/ogles/GL/functions/functions_057_to_064.html": 0.6333,
    "conformance/ogles/GL/functions/functions_065_to_072.html": 0.9485,
    "conformance/ogles/GL/functions/functions_073_to_080.html": 0.9393,
    "conformance/ogles/GL/functions/functions_081_to_088.html": 0.9138,
    "conformance/ogles/GL/functions/functions_089_to_096.html": 0.6289,
    "conformance/ogles/GL/functions/functions_097_to_104.html": 0.9105,
    "conformance/ogles/GL/functions/functions_105_to_112.html": 0.7434,
    "conformance/ogles/GL/functions/functions_113_to_120.html": 0.9087,
    "conformance/ogles/GL/functions/functions_121_to_126.html": 0.6349,
    "conformance/ogles/GL/gl_FragCoord/gl_FragCoord_001_to_003.html": 0.4598,
    "conformance/ogles/GL/gl_FrontFacing/gl_FrontFacing_001_to_001.html": 0.1859,
    "conformance/ogles/GL/greaterThan/greaterThan_001_to_008.html": 1.2232,
    "conformance/ogles/GL/greaterThanEqual/greaterThanEqual_001_to_008.html": 1.2367,
    "conformance/ogles/GL/inversesqrt/inversesqrt_001_to_006.html": 0.9463,
    "conformance/ogles/GL/length/length_001_to_006.html": 1.1308,
    "conformance/ogles/GL/lessThan/lessThan_001_to_008.html": 1.3865,
    "conformance/ogles/GL/lessThanEqual/lessThanEqual_001_to_008.html": 1.4517,
    "conformance/ogles/GL/log/log_001_to_008.html": 1.4296,
    "conformance/ogles/GL/log/log_009_to_012.html": 1.2564,
    "conformance/ogles/GL/log2/log2_001_to_008.html": 1.3015,
    "conformance/ogles/GL/log2/log2_009_to_012.html": 1.3192,
    "conformance/ogles/GL/mat/mat_001_to_008.html": 0.969,
    "conformance/ogles/GL/mat/mat_009_to_016.html": 0.9115,
    "conformance/ogles/GL/mat/mat_017_to_024.html": 0.8597,
    "conformance/ogles/GL/mat/mat_025_to_032.html": 1.2296,
    "conformance/ogles/GL/mat/mat_033_to_040.html": 1.0599,
    "conformance/ogles/GL/mat/mat_041_to_046.html": 0.7417,
    "conformance/ogles/GL/mat3/mat3_001_to_006.html": 0.7387,
    "conformance/ogles/GL/matrixCompMult/matrixCompMult_001_to_004.html": 0.8494,
    "conformance/ogles/GL/max/max_001_to_006.html": 0.9987,
    "conformance/ogles/GL/min/min_001_to_006.html": 0.9216,
    "conformance/ogles/GL/mix/mix_001_to_006.html": 1.0564,
    "conformance/ogles/GL/mod/mod_001_to_008.html": 1.3633,
    "conformance/ogles/GL/normalize/normalize_001_to_006.html": 1.1745,
    "conformance/ogles/GL/not/not_001_to_004.html": 0.7819,
    "conformance/ogles/GL/notEqual/notEqual_001_to_008.html": 1.1286,
    "conformance/ogles/GL/notEqual/notEqual_009_to_012.html": 0.7752,
    "conformance/ogles/GL/operators/operators_001_to_008.html": 0.6719,
    "conformance/ogles/GL/operators/operators_009_to_016.html": 0.9648,
    "conformance/ogles/GL/operators/operators_017_to_024.html": 0.6446,
    "conformance/ogles/GL/operators/operators_025_to_026.html": 0.386,
    "conformance/ogles/GL/pow/pow_001_to_008.html": 0.7443,
    "conformance/ogles/GL/pow/pow_009_to_016.html": 0.9071,
    "conformance/ogles/GL/pow/pow_017_to_024.html": 1.1904,
    "conformance/ogles/GL/radians/radians_001_to_006.html": 0.7228,
    "conformance/ogles/GL/reflect/reflect_001_to_006.html": 1.3569,
    "conformance/ogles/GL/refract/refract_001_to_006.html": 1.2392,
    "conformance/ogles/GL/sign/sign_001_to_006.html": 0.7238,
    "conformance/ogles/GL/sin/sin_001_to_006.html": 1.432,
    "conformance/ogles/GL/smoothstep/smoothstep_001_to_006.html": 0.8038,
    "conformance/ogles/GL/sqrt/sqrt_001_to_006.html": 0.6777,
    "conformance/ogles/GL/step/step_001_to_006.html": 0.6624,
    "conformance/ogles/GL/struct/struct_001_to_008.html": 0.81,
    "conformance/ogles/GL/struct/struct_009_to_016.html": 1.2466,
    "conformance/ogles/GL/struct/struct_017_to_024.html": 0.9087,
    "conformance/ogles/GL/struct/struct_025_to_032.html": 0.9688,
    "conformance/ogles/GL/struct/struct_033_to_040.html": 0.9078,
    "conformance/ogles/GL/struct/struct_041_to_048.html": 0.8831,
    "conformance/ogles/GL/struct/struct_049_to_056.html": 0.9709,
    "conformance/ogles/GL/swizzlers/swizzlers_001_to_008.html": 0.9799,
    "conformance/ogles/GL/swizzlers/swizzlers_009_to_016.html": 1.0425,
    "conformance/ogles/GL/swizzlers/swizzlers_017_to_024.html": 1.013,
    "conformance/ogles/GL/swizzlers/swizzlers_025_to_032.html": 1.0306,
    "conformance/ogles/GL/swizzlers/swizzlers_033_to_040.html": 0.9714,
    "conformance/ogles/GL/swizzlers/swizzlers_041_to_048.html": 1.0244,
    "conformance/ogles/GL/swizzlers/swizzlers_049_to_056.html": 1.1385,
    "conformance/ogles/GL/swizzlers/swizzlers_057_to_064.html": 1.0751,
    "conformance/ogles/GL/swizzlers/swizzlers_065_to_072.html": 1.0398,
    "conformance/ogles/GL/swizzlers/swizzlers_073_to_080.html": 0.9965,
    "conformance/ogles/GL/swizzlers/swizzlers_081_to_088.html": 1.262,
    "conformance/ogles/GL/swizzlers/swizzlers_089_to_096.html": 1.5029,
    "conformance/ogles/GL/swizzlers/swizzlers_097_to_104.html": 0.8391,
    "conformance/ogles/GL/swizzlers/swizzlers_105_to_112.html": 1.4356,
    "conformance/ogles/GL/swizzlers/swizzlers_113_to_120.html": 0.8727,
    "conformance/ogles/GL/tan/tan_001_to_006.html": 0.6915,
    "conformance/ogles/GL/vec/vec_001_to_008.html": 0.9035,
    "conformance/ogles/GL/vec/vec_009_to_016.html": 0.9216,
    "conformance/ogles/GL/vec/vec_017_to_018.html": 0.2456,
    "conformance/ogles/GL/vec3/vec3_001_to_008.html": 0.8519,
    "conformance/programs/get-active-test.html": 0.2011,
    "conformance/programs/gl-bind-attrib-location-long-names-test.html": 0.1565,
    "conformance/programs/gl-bind-attrib-location-test.html": 0.1606,
    "conformance/programs/gl-get-active-attribute.html": 0.1716,
    "conformance/programs/gl-get-active-uniform.html": 0.1577,
    "conformance/programs/gl-getshadersource.html": 0.1504,
    "conformance/programs/gl-shader-test.html": 0.1693,
    "conformance/programs/invalid-UTF-16.html": 0.1254,
    "conformance/programs/program-handling.html": 0.1859,
    "conformance/programs/program-infolog.html": 0.1395,
    "conformance/programs/program-test.html": 0.221,
    "conformance/programs/use-program-crash-with-discard-in-fragment-shader.html": 0.1307,
    "conformance/reading/fbo-remains-unchanged-after-read-pixels.html": 0.1547,
    "conformance/reading/read-pixels-pack-alignment.html": 0.2559,
    "conformance/reading/read-pixels-test.html": 4.8038,
    "conformance/renderbuffers/depth-renderbuffer-initialization.html": 0.1639,
    "conformance/renderbuffers/feedback-loop.html": 0.1029,
    "conformance/renderbuffers/framebuffer-object-attachment.html": 0.2938,
    "conformance/renderbuffers/framebuffer-state-restoration.html": 0.5894,
    "conformance/renderbuffers/framebuffer-test.html": 0.1968,
    "conformance/renderbuffers/renderbuffer-initialization.html": 0.2697,
    "conformance/renderbuffers/stencil-renderbuffer-initialization.html": 0.1645,
    "conformance/rendering/bind-framebuffer-flush-bug.html": 0.1045,
    "conformance/rendering/blending.html": 0.1414,
    "conformance/rendering/canvas-alpha-bug.html": 0.1968,
    "conformance/rendering/clear-after-copyTexImage2D.html": 0.1798,
    "conformance/rendering/clear-default-framebuffer-with-scissor-test.html": 2.3862,
    "conformance/rendering/clipping-wide-points.html": 2.385,
    "conformance/rendering/color-mask-preserved-during-implicit-clears.html": 3.3239,
    "conformance/rendering/color-mask-should-not-affect-antialiased-framebuffer-resolution.html": 0.218,
    "conformance/rendering/culling.html": 0.9007,
    "conformance/rendering/default-texture-draw-bug.html": 0.2019,
    "conformance/rendering/draw-arrays-out-of-bounds.html": 1.0946,
    "conformance/rendering/draw-elements-out-of-bounds.html": 0.2164,
    "conformance/rendering/draw-webgl-to-canvas-2d-repeatedly.html": 0.2058,
    "conformance/rendering/draw-with-changing-start-vertex-bug.html": 0.2271,
    "conformance/rendering/framebuffer-switch.html": 0.0902,
    "conformance/rendering/framebuffer-texture-clear.html": 0.3382,
    "conformance/rendering/framebuffer-texture-switch.html": 0.1949,
    "conformance/rendering/gl-clear.html": 0.0907,
    "conformance/rendering/gl-drawarrays.html": 0.092,
    "conformance/rendering/gl-drawelements.html": 0.2067,
    "conformance/rendering/gl-scissor-canvas-dimensions.html": 0.1838,
    "conformance/rendering/gl-scissor-fbo-test.html": 0.3355,
    "conformance/rendering/gl-scissor-test.html": 0.3177,
    "conformance/rendering/gl-viewport-test.html": 0.3342,
    "conformance/rendering/line-loop-tri-fan.html": 0.0912,
    "conformance/rendering/line-rendering-quality.html": 0.2088,
    "conformance/rendering/many-draw-calls.html": 5.1812,
    "conformance/rendering/more-than-65536-indices.html": 0.1748,
    "conformance/rendering/multisample-corruption.html": 2.8957,
    "conformance/rendering/negative-one-index.html": 0.1693,
    "conformance/rendering/out-of-bounds-array-buffers.html": 0.1237,
    "conformance/rendering/out-of-bounds-index-buffers.html": 0.1758,
    "conformance/rendering/point-no-attributes.html": 0.1635,
    "conformance/rendering/point-size.html": 0.1069,
    "conformance/rendering/point-specific-shader-variables.html": 0.1843,
    "conformance/rendering/point-with-gl-pointcoord-in-fragment-shader.html": 0.1384,
    "conformance/rendering/polygon-offset.html": 0.1475,
    "conformance/rendering/preservedrawingbuffer-leak.html": 0.2314,
    "conformance/rendering/rendering-sampling-feedback-loop.html": 0.093,
    "conformance/rendering/rendering-stencil-large-viewport.html": 0.2462,
    "conformance/rendering/scissor-rect-repeated-rendering.html": 0.3979,
    "conformance/rendering/simple.html": 0.1043,
    "conformance/rendering/texture-switch-performance.html": 0,
    "conformance/rendering/triangle.html": 0.0998,
    "conformance/state/fb-attach-implicit-target-assignment.html": 0.1386,
    "conformance/state/gl-enable-enum-test.html": 0.3065,
    "conformance/state/gl-enum-tests.html": 0.1109,
    "conformance/state/gl-get-calls.html": 0.1112,
    "conformance/state/gl-geterror.html": 0.0998,
    "conformance/state/gl-getstring.html": 0.0893,
    "conformance/state/gl-initial-state.html": 0.0726,
    "conformance/state/gl-object-get-calls.html": 9.7066,
    "conformance/state/state-uneffected-after-compositing.html": 0.4113,
    "conformance/textures/canvas/tex-2d-alpha-alpha-unsigned_byte.html": 0.4556,
    "conformance/textures/canvas/tex-2d-luminance-luminance-unsigned_byte.html": 0.5509,
    "conformance/textures/canvas/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.5884,
    "conformance/textures/canvas/tex-2d-rgb-rgb-unsigned_byte.html": 1.2017,
    "conformance/textures/canvas/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.5546,
    "conformance/textures/canvas/tex-2d-rgba-rgba-unsigned_byte.html": 1.4723,
    "conformance/textures/canvas/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.5402,
    "conformance/textures/canvas/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.6484,
    "conformance/textures/canvas_sub_rectangle/tex-2d-alpha-alpha-unsigned_byte.html": 0.0724,
    "conformance/textures/canvas_sub_rectangle/tex-2d-luminance-luminance-unsigned_byte.html": 0.078,
    "conformance/textures/canvas_sub_rectangle/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.0706,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgb-rgb-unsigned_byte.html": 0.0733,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.0666,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgba-rgba-unsigned_byte.html": 0.0771,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.0789,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.0699,
    "conformance/textures/image/tex-2d-alpha-alpha-unsigned_byte.html": 0.202,
    "conformance/textures/image/tex-2d-luminance-luminance-unsigned_byte.html": 0.2386,
    "conformance/textures/image/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.2614,
    "conformance/textures/image/tex-2d-rgb-rgb-unsigned_byte.html": 0.2281,
    "conformance/textures/image/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.2063,
    "conformance/textures/image/tex-2d-rgba-rgba-unsigned_byte.html": 0.2082,
    "conformance/textures/image/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.2033,
    "conformance/textures/image/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.3403,
    "conformance/textures/image_bitmap_from_blob/tex-2d-alpha-alpha-unsigned_byte.html": 0.4242,
    "conformance/textures/image_bitmap_from_blob/tex-2d-luminance-luminance-unsigned_byte.html": 0.4078,
    "conformance/textures/image_bitmap_from_blob/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.2726,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgb-rgb-unsigned_byte.html": 0.5575,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.2724,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgba-rgba-unsigned_byte.html": 0.3564,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.4277,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.379,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-alpha-alpha-unsigned_byte.html": 0.4445,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-luminance-luminance-unsigned_byte.html": 0.439,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.4765,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgb-rgb-unsigned_byte.html": 0.6307,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.5909,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgba-rgba-unsigned_byte.html": 0.6276,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.478,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.5089,
    "conformance/textures/image_bitmap_from_image/tex-2d-alpha-alpha-unsigned_byte.html": 0.3197,
    "conformance/textures/image_bitmap_from_image/tex-2d-luminance-luminance-unsigned_byte.html": 0.3675,
    "conformance/textures/image_bitmap_from_image/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.2599,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgb-rgb-unsigned_byte.html": 0.4028,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.2606,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgba-rgba-unsigned_byte.html": 0.2601,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.2826,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.2469,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-alpha-alpha-unsigned_byte.html": 0.3696,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-luminance-luminance-unsigned_byte.html": 0.2461,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.26,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgb-rgb-unsigned_byte.html": 0.2682,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.2457,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgba-rgba-unsigned_byte.html": 0.2452,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.3666,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.3743,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-alpha-alpha-unsigned_byte.html": 0.3801,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-luminance-luminance-unsigned_byte.html": 0.3684,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.2755,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgb-rgb-unsigned_byte.html": 0.3664,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.3582,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgba-rgba-unsigned_byte.html": 0.2857,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.3512,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.3576,
    "conformance/textures/image_bitmap_from_video/tex-2d-alpha-alpha-unsigned_byte.html": 1.1589,
    "conformance/textures/image_bitmap_from_video/tex-2d-luminance-luminance-unsigned_byte.html": 1.3894,
    "conformance/textures/image_bitmap_from_video/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 1.1116,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgb-rgb-unsigned_byte.html": 1.5569,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 1.7359,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgba-rgba-unsigned_byte.html": 1.7967,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.8048,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.8333,
    "conformance/textures/image_data/tex-2d-alpha-alpha-unsigned_byte.html": 0.3008,
    "conformance/textures/image_data/tex-2d-luminance-luminance-unsigned_byte.html": 0.2762,
    "conformance/textures/image_data/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.2733,
    "conformance/textures/image_data/tex-2d-rgb-rgb-unsigned_byte.html": 0.2515,
    "conformance/textures/image_data/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.2747,
    "conformance/textures/image_data/tex-2d-rgba-rgba-unsigned_byte.html": 0.2329,
    "conformance/textures/image_data/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.2564,
    "conformance/textures/image_data/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.1887,
    "conformance/textures/misc/canvas-teximage-after-multiple-drawimages.html": 0.1835,
    "conformance/textures/misc/compressed-tex-image.html": 0.1309,
    "conformance/textures/misc/copy-tex-image-2d-formats.html": 0.1682,
    "conformance/textures/misc/copy-tex-image-and-sub-image-2d.html": 0.3416,
    "conformance/textures/misc/copy-tex-image-crash.html": 0.0896,
    "conformance/textures/misc/copytexsubimage2d-large-partial-copy-corruption.html": 0.1958,
    "conformance/textures/misc/copytexsubimage2d-subrects.html": 0.0896,
    "conformance/textures/misc/cube-incomplete-fbo.html": 0.086,
    "conformance/textures/misc/cube-map-uploads-out-of-order.html": 1.1725,
    "conformance/textures/misc/default-texture.html": 0.0868,
    "conformance/textures/misc/exif-orientation.html": 1.0488,
    "conformance/textures/misc/format-filterable-renderable.html": 0.1246,
    "conformance/textures/misc/gl-get-tex-parameter.html": 0.09,
    "conformance/textures/misc/gl-pixelstorei.html": 0.1282,
    "conformance/textures/misc/gl-teximage.html": 0.2202,
    "conformance/textures/misc/mipmap-fbo.html": 0.112,
    "conformance/textures/misc/origin-clean-conformance-offscreencanvas.html": 0.2229,
    "conformance/textures/misc/origin-clean-conformance.html": 0.1941,
    "conformance/textures/misc/png-image-types.html": 0.5197,
    "conformance/textures/misc/tex-image-and-sub-image-2d-with-array-buffer-view.html": 2.0436,
    "conformance/textures/misc/tex-image-and-uniform-binding-bugs.html": 0.0916,
    "conformance/textures/misc/tex-image-canvas-corruption.html": 0.1418,
    "conformance/textures/misc/tex-image-webgl.html": 0.1021,
    "conformance/textures/misc/tex-image-with-format-and-type.html": 0.3209,
    "conformance/textures/misc/tex-image-with-invalid-data.html": 0.0797,
    "conformance/textures/misc/tex-input-validation.html": 0.1295,
    "conformance/textures/misc/tex-sub-image-2d-bad-args.html": 0.1009,
    "conformance/textures/misc/tex-sub-image-2d.html": 0.0849,
    "conformance/textures/misc/tex-video-using-tex-unit-non-zero.html": 1.0592,
    "conformance/textures/misc/texparameter-test.html": 0.101,
    "conformance/textures/misc/texture-active-bind-2.html": 0.1118,
    "conformance/textures/misc/texture-active-bind.html": 0.1281,
    "conformance/textures/misc/texture-attachment-formats.html": 0.1656,
    "conformance/textures/misc/texture-clear.html": 0.0971,
    "conformance/textures/misc/texture-complete.html": 0.1587,
    "conformance/textures/misc/texture-copying-and-deletion.html": 1.0876,
    "conformance/textures/misc/texture-copying-feedback-loops.html": 0.143,
    "conformance/textures/misc/texture-corner-case-videos.html": 0.4874,
    "conformance/textures/misc/texture-cube-as-fbo-attachment.html": 0.0829,
    "conformance/textures/misc/texture-draw-with-2d-and-cube.html": 0.0932,
    "conformance/textures/misc/texture-fakeblack.html": 0.1566,
    "conformance/textures/misc/texture-formats-test.html": 0.1942,
    "conformance/textures/misc/texture-hd-dpi.html": 0.2073,
    "conformance/textures/misc/texture-mips.html": 0.1229,
    "conformance/textures/misc/texture-npot-video.html": 0.2569,
    "conformance/textures/misc/texture-npot.html": 0.2844,
    "conformance/textures/misc/texture-size-cube-maps.html": 0.8087,
    "conformance/textures/misc/texture-size-limit.html": 0.4971,
    "conformance/textures/misc/texture-size.html": 0.9102,
    "conformance/textures/misc/texture-srgb-upload.html": 0.5465,
    "conformance/textures/misc/texture-sub-image-cube-maps.html": 0.1478,
    "conformance/textures/misc/texture-transparent-pixels-initialized.html": 0.1172,
    "conformance/textures/misc/texture-upload-cube-maps.html": 0.1054,
    "conformance/textures/misc/texture-upload-size.html": 0.6723,
    "conformance/textures/misc/texture-video-transparent.html": 6.2481,
    "conformance/textures/misc/texture-with-flip-y-and-premultiply-alpha.html": 0.0818,
    "conformance/textures/misc/upload-from-srcset-with-empty-data.html": 0.0757,
    "conformance/textures/misc/video-rotation.html": 0.9204,
    "conformance/textures/svg_image/tex-2d-alpha-alpha-unsigned_byte.html": 0.1589,
    "conformance/textures/svg_image/tex-2d-luminance-luminance-unsigned_byte.html": 0.1859,
    "conformance/textures/svg_image/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.1888,
    "conformance/textures/svg_image/tex-2d-rgb-rgb-unsigned_byte.html": 0.1824,
    "conformance/textures/svg_image/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.1885,
    "conformance/textures/svg_image/tex-2d-rgba-rgba-unsigned_byte.html": 0.1644,
    "conformance/textures/svg_image/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.1671,
    "conformance/textures/svg_image/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.1494,
    "conformance/textures/video/tex-2d-alpha-alpha-unsigned_byte.html": 1.8477,
    "conformance/textures/video/tex-2d-luminance-luminance-unsigned_byte.html": 1.4591,
    "conformance/textures/video/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 1.6095,
    "conformance/textures/video/tex-2d-rgb-rgb-unsigned_byte.html": 1.761,
    "conformance/textures/video/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 1.3757,
    "conformance/textures/video/tex-2d-rgba-rgba-unsigned_byte.html": 1.2915,
    "conformance/textures/video/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 2.156,
    "conformance/textures/video/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 1.3683,
    "conformance/textures/webgl_canvas/tex-2d-alpha-alpha-unsigned_byte.html": 0.7494,
    "conformance/textures/webgl_canvas/tex-2d-luminance-luminance-unsigned_byte.html": 0.7983,
    "conformance/textures/webgl_canvas/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.7911,
    "conformance/textures/webgl_canvas/tex-2d-rgb-rgb-unsigned_byte.html": 1.9849,
    "conformance/textures/webgl_canvas/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.7535,
    "conformance/textures/webgl_canvas/tex-2d-rgba-rgba-unsigned_byte.html": 1.831,
    "conformance/textures/webgl_canvas/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.7313,
    "conformance/textures/webgl_canvas/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.9177,
    "conformance/typedarrays/array-buffer-crash.html": 0.0917,
    "conformance/typedarrays/array-buffer-view-crash.html": 0.1102,
    "conformance/typedarrays/array-large-array-tests.html": 0.2301,
    "conformance/typedarrays/array-unit-tests.html": 0.1127,
    "conformance/typedarrays/data-view-crash.html": 0.0839,
    "conformance/typedarrays/data-view-test.html": 0.1255,
    "conformance/typedarrays/typed-arrays-in-workers.html": 0.1294,
    "conformance/uniforms/gl-get-uniform-non-current-program.html": 0.0982,
    "conformance/uniforms/gl-uniform-arrays.html": 0.1248,
    "conformance/uniforms/gl-uniform-bool.html": 0.095,
    "conformance/uniforms/gl-uniformmatrix4fv.html": 0.0847,
    "conformance/uniforms/gl-unknown-uniform.html": 0.0998,
    "conformance/uniforms/no-over-optimization-on-uniform-array-00.html": 0.6594,
    "conformance/uniforms/no-over-optimization-on-uniform-array-01.html": 0.0969,
    "conformance/uniforms/no-over-optimization-on-uniform-array-02.html": 0.0992,
    "conformance/uniforms/no-over-optimization-on-uniform-array-03.html": 0.0997,
    "conformance/uniforms/no-over-optimization-on-uniform-array-04.html": 0.1033,
    "conformance/uniforms/no-over-optimization-on-uniform-array-05.html": 0.1368,
    "conformance/uniforms/no-over-optimization-on-uniform-array-06.html": 0.7127,
    "conformance/uniforms/no-over-optimization-on-uniform-array-07.html": 0.6687,
    "conformance/uniforms/no-over-optimization-on-uniform-array-08.html": 0.7155,
    "conformance/uniforms/no-over-optimization-on-uniform-array-09.html": 0.7033,
    "conformance/uniforms/no-over-optimization-on-uniform-array-10.html": 0.1055,
    "conformance/uniforms/no-over-optimization-on-uniform-array-11.html": 0.1054,
    "conformance/uniforms/no-over-optimization-on-uniform-array-12.html": 0.1093,
    "conformance/uniforms/no-over-optimization-on-uniform-array-13.html": 0.1281,
    "conformance/uniforms/no-over-optimization-on-uniform-array-14.html": 0.651,
    "conformance/uniforms/no-over-optimization-on-uniform-array-15.html": 0.9777,
    "conformance/uniforms/no-over-optimization-on-uniform-array-16.html": 0.755,
    "conformance/uniforms/no-over-optimization-on-uniform-array-17.html": 0.7035,
    "conformance/uniforms/null-uniform-location.html": 0.1168,
    "conformance/uniforms/out-of-bounds-uniform-array-access.html": 4.2497,
    "conformance/uniforms/uniform-default-values.html": 2.2578,
    "conformance/uniforms/uniform-location.html": 0.1786,
    "conformance/uniforms/uniform-samplers-test.html": 27.0813,
    "conformance/uniforms/uniform-values-per-program.html": 1.2657,
    "deqp/data/gles2/shaders/conditionals.html": 1.6826,
    "deqp/data/gles2/shaders/constant_expressions.html": 1.0878,
    "deqp/data/gles2/shaders/constants.html": 2.9994,
    "deqp/data/gles2/shaders/conversions_matrix_combine.html": 5.7147,
    "deqp/data/gles2/shaders/conversions_matrix_to_matrix.html": 1.5585,
    "deqp/data/gles2/shaders/conversions_scalar_to_matrix.html": 1.001,
    "deqp/data/gles2/shaders/conversions_scalar_to_scalar.html": 1.9328,
    "deqp/data/gles2/shaders/conversions_scalar_to_vector.html": 5.0229,
    "deqp/data/gles2/shaders/conversions_vector_combine.html": 13.8045,
    "deqp/data/gles2/shaders/conversions_vector_illegal.html": 1.2085,
    "deqp/data/gles2/shaders/conversions_vector_to_scalar.html": 3.9639,
    "deqp/data/gles2/shaders/conversions_vector_to_vector.html": 7.5442,
    "deqp/data/gles2/shaders/declarations.html": 0.301,
    "deqp/data/gles2/shaders/fragdata.html": 0.2712,
    "deqp/data/gles2/shaders/functions.html": 10.2336,
    "deqp/data/gles2/shaders/invalid_texture_functions.html": 0.1592,
    "deqp/data/gles2/shaders/keywords.html": 5.3957,
    "deqp/data/gles2/shaders/linkage.html": 1.6892,
    "deqp/data/gles2/shaders/preprocessor.html": 15.7254,
    "deqp/data/gles2/shaders/qualification_order.html": 0.7452,
    "deqp/data/gles2/shaders/reserved_operators.html": 0.3665,
    "deqp/data/gles2/shaders/scoping.html": 2.0722,
    "deqp/data/gles2/shaders/swizzles_bvec2.html": 2.7854,
    "deqp/data/gles2/shaders/swizzles_bvec3.html": 3.4278,
    "deqp/data/gles2/shaders/swizzles_bvec4.html": 5.2532,
    "deqp/data/gles2/shaders/swizzles_ivec2.html": 2.0216,
    "deqp/data/gles2/shaders/swizzles_ivec3.html": 3.7942,
    "deqp/data/gles2/shaders/swizzles_ivec4.html": 4.7465,
    "deqp/data/gles2/shaders/swizzles_vec2.html": 1.8697,
    "deqp/data/gles2/shaders/swizzles_vec3.html": 3.8505,
    "deqp/data/gles2/shaders/swizzles_vec4.html": 5.0483
  }
}