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_win_runtimes.json [blame]

{
  "times": {
    "WebglExtension_ANGLE_instanced_arrays": 0.2689,
    "WebglExtension_EXT_blend_minmax": 0.2822,
    "WebglExtension_EXT_color_buffer_half_float": 0.2753,
    "WebglExtension_EXT_disjoint_timer_query": 0.2487,
    "WebglExtension_EXT_float_blend": 0.2868,
    "WebglExtension_EXT_frag_depth": 0.2544,
    "WebglExtension_EXT_sRGB": 0.2728,
    "WebglExtension_EXT_shader_texture_lod": 0.1511,
    "WebglExtension_EXT_texture_compression_bptc": 0.1615,
    "WebglExtension_EXT_texture_compression_rgtc": 0.2619,
    "WebglExtension_EXT_texture_filter_anisotropic": 0.1453,
    "WebglExtension_KHR_parallel_shader_compile": 0.1542,
    "WebglExtension_OES_element_index_uint": 0.1517,
    "WebglExtension_OES_fbo_render_mipmap": 0.1431,
    "WebglExtension_OES_standard_derivatives": 0.1715,
    "WebglExtension_OES_texture_float": 0.165,
    "WebglExtension_OES_texture_float_linear": 0.1599,
    "WebglExtension_OES_texture_half_float": 0.1743,
    "WebglExtension_OES_texture_half_float_linear": 0.1416,
    "WebglExtension_OES_vertex_array_object": 0.1526,
    "WebglExtension_TestCoverage": 0.1754,
    "WebglExtension_WEBGL_color_buffer_float": 0.1478,
    "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.1426,
    "WebglExtension_WEBGL_compressed_texture_s3tc_srgb": 0,
    "WebglExtension_WEBGL_debug_renderer_info": 0.1566,
    "WebglExtension_WEBGL_debug_shaders": 0.1588,
    "WebglExtension_WEBGL_depth_texture": 0.1519,
    "WebglExtension_WEBGL_draw_buffers": 0.1586,
    "WebglExtension_WEBGL_lose_context": 0.1566,
    "WebglExtension_WEBGL_multi_draw": 0.1677,
    "WebglExtension_WEBGL_video_texture": 0.1723,
    "WebglExtension_WEBGL_webcodecs_video_frame": 0.1352,
    "conformance/attribs/gl-bindAttribLocation-aliasing.html": 0.1988,
    "conformance/attribs/gl-bindAttribLocation-matrix.html": 0.3227,
    "conformance/attribs/gl-bindAttribLocation-nonexistent-attribute.html": 0.1148,
    "conformance/attribs/gl-bindAttribLocation-repeated.html": 0.1267,
    "conformance/attribs/gl-disabled-vertex-attrib-update.html": 0.1843,
    "conformance/attribs/gl-disabled-vertex-attrib.html": 0.2517,
    "conformance/attribs/gl-enable-vertex-attrib.html": 0.1801,
    "conformance/attribs/gl-matrix-attributes.html": 0.6064,
    "conformance/attribs/gl-vertex-attrib-context-switch.html": 0.1084,
    "conformance/attribs/gl-vertex-attrib-render.html": 0.0905,
    "conformance/attribs/gl-vertex-attrib-unconsumed-out-of-bounds.html": 0.1292,
    "conformance/attribs/gl-vertex-attrib-zero-issues.html": 0.2247,
    "conformance/attribs/gl-vertex-attrib.html": 0.6398,
    "conformance/attribs/gl-vertexattribpointer-offsets.html": 0.6427,
    "conformance/attribs/gl-vertexattribpointer.html": 0.768,
    "conformance/buffers/buffer-bind-test.html": 0.0787,
    "conformance/buffers/buffer-data-and-buffer-sub-data.html": 0.5407,
    "conformance/buffers/buffer-data-array-buffer-delete.html": 2.0877,
    "conformance/buffers/buffer-data-dynamic-delay.html": 0.2339,
    "conformance/buffers/buffer-uninitialized.html": 0.2511,
    "conformance/buffers/element-array-buffer-delete-recreate.html": 0.0987,
    "conformance/buffers/index-validation-copies-indices.html": 0.1305,
    "conformance/buffers/index-validation-crash-with-buffer-sub-data.html": 0.0904,
    "conformance/buffers/index-validation-large-buffer.html": 0.1323,
    "conformance/buffers/index-validation-verifies-too-many-indices.html": 0.1187,
    "conformance/buffers/index-validation-with-resized-buffer.html": 0.0954,
    "conformance/buffers/index-validation.html": 0.1163,
    "conformance/buffers/vertex-buffer-updated-after-draw.html": 0.0831,
    "conformance/canvas/buffer-offscreen-test.html": 0.1479,
    "conformance/canvas/buffer-preserve-test.html": 0.7509,
    "conformance/canvas/canvas-test.html": 0.2257,
    "conformance/canvas/canvas-zero-size.html": 0.074,
    "conformance/canvas/draw-static-webgl-to-multiple-canvas-test.html": 0.5566,
    "conformance/canvas/draw-webgl-to-canvas-test.html": 0.3722,
    "conformance/canvas/drawingbuffer-hd-dpi-test.html": 0.2537,
    "conformance/canvas/drawingbuffer-static-canvas-test.html": 0.154,
    "conformance/canvas/drawingbuffer-test.html": 0.1227,
    "conformance/canvas/framebuffer-bindings-affected-by-to-data-url.html": 0.1629,
    "conformance/canvas/framebuffer-bindings-unaffected-on-resize.html": 0.1829,
    "conformance/canvas/rapid-resizing.html": 2.115,
    "conformance/canvas/render-after-resize-test.html": 0.1102,
    "conformance/canvas/texture-bindings-unaffected-on-resize.html": 0.1482,
    "conformance/canvas/to-data-url-after-composite.html": 0.1869,
    "conformance/canvas/to-data-url-test.html": 0.468,
    "conformance/canvas/viewport-unchanged-upon-resize.html": 0.1128,
    "conformance/canvas/webgl-to-2d-canvas.html": 0.1703,
    "conformance/context/constants-and-properties.html": 0.0883,
    "conformance/context/context-attribute-preserve-drawing-buffer-antialias.html": 0.3137,
    "conformance/context/context-attribute-preserve-drawing-buffer.html": 0.3021,
    "conformance/context/context-attributes-alpha-depth-stencil-antialias.html": 0.6078,
    "conformance/context/context-creation-and-destruction.html": 0.7516,
    "conformance/context/context-creation.html": 1.0158,
    "conformance/context/context-eviction-with-garbage-collection.html": 0.7815,
    "conformance/context/context-hidden-alpha.html": 0.1426,
    "conformance/context/context-lost-restored.html": 0.1806,
    "conformance/context/context-lost.html": 0.1472,
    "conformance/context/context-no-alpha-fbo-with-alpha.html": 0.1863,
    "conformance/context/context-release-upon-reload.html": 1.3929,
    "conformance/context/context-release-with-workers.html": 1.3402,
    "conformance/context/context-size-change.html": 0.1197,
    "conformance/context/context-type-test.html": 0.0874,
    "conformance/context/deleted-object-behavior.html": 0.1426,
    "conformance/context/incorrect-context-object-behaviour.html": 0.1739,
    "conformance/context/methods.html": 0.1277,
    "conformance/context/premultiplyalpha-test.html": 0.396,
    "conformance/context/user-defined-properties-on-context.html": 0.1322,
    "conformance/context/zero-sized-canvas.html": 0.0748,
    "conformance/extensions/angle-instanced-arrays-out-of-bounds.html": 1.0479,
    "conformance/extensions/angle-instanced-arrays.html": 1.7534,
    "conformance/extensions/ext-blend-minmax.html": 0.1646,
    "conformance/extensions/ext-color-buffer-half-float.html": 0.2084,
    "conformance/extensions/ext-disjoint-timer-query.html": 6.7626,
    "conformance/extensions/ext-float-blend.html": 0.1178,
    "conformance/extensions/ext-frag-depth.html": 0.2424,
    "conformance/extensions/ext-polygon-offset-clamp.html": 0.0874,
    "conformance/extensions/ext-sRGB.html": 0.211,
    "conformance/extensions/ext-shader-texture-lod.html": 0.2899,
    "conformance/extensions/ext-texture-compression-bptc.html": 0.182,
    "conformance/extensions/ext-texture-compression-rgtc.html": 0.1161,
    "conformance/extensions/ext-texture-filter-anisotropic.html": 0.1246,
    "conformance/extensions/get-extension.html": 0.2632,
    "conformance/extensions/khr-parallel-shader-compile.html": 12.4489,
    "conformance/extensions/oes-element-index-uint.html": 0.2312,
    "conformance/extensions/oes-fbo-render-mipmap.html": 0.1187,
    "conformance/extensions/oes-standard-derivatives.html": 0.2772,
    "conformance/extensions/oes-texture-float-linear.html": 0.2741,
    "conformance/extensions/oes-texture-float-with-canvas.html": 0.5104,
    "conformance/extensions/oes-texture-float-with-image-data.html": 0.3536,
    "conformance/extensions/oes-texture-float-with-image.html": 0.3304,
    "conformance/extensions/oes-texture-float-with-video.html": 1.4127,
    "conformance/extensions/oes-texture-float.html": 0.3176,
    "conformance/extensions/oes-texture-half-float-linear.html": 0.3911,
    "conformance/extensions/oes-texture-half-float-with-canvas.html": 0.8644,
    "conformance/extensions/oes-texture-half-float-with-image-data.html": 0.209,
    "conformance/extensions/oes-texture-half-float-with-image.html": 0.3237,
    "conformance/extensions/oes-texture-half-float-with-video.html": 1.2201,
    "conformance/extensions/oes-texture-half-float.html": 0.5367,
    "conformance/extensions/oes-vertex-array-object-bufferData.html": 0.1072,
    "conformance/extensions/oes-vertex-array-object.html": 0.1813,
    "conformance/extensions/s3tc-and-rgtc.html": 1.0377,
    "conformance/extensions/webgl-compressed-texture-astc.html": 0.1087,
    "conformance/extensions/webgl-compressed-texture-etc.html": 0.1313,
    "conformance/extensions/webgl-compressed-texture-etc1.html": 0.1257,
    "conformance/extensions/webgl-compressed-texture-pvrtc.html": 0.1286,
    "conformance/extensions/webgl-compressed-texture-s3tc-srgb.html": 1.4106,
    "conformance/extensions/webgl-compressed-texture-size-limit.html": 3.6029,
    "conformance/extensions/webgl-debug-renderer-info.html": 0.1062,
    "conformance/extensions/webgl-debug-shaders.html": 0.1355,
    "conformance/extensions/webgl-depth-texture.html": 0.1907,
    "conformance/extensions/webgl-draw-buffers-broadcast-return.html": 0.1495,
    "conformance/extensions/webgl-draw-buffers-framebuffer-unsupported.html": 0.1109,
    "conformance/extensions/webgl-draw-buffers-max-draw-buffers.html": 0.1414,
    "conformance/extensions/webgl-draw-buffers.html": 0.3997,
    "conformance/extensions/webgl-multi-draw.html": 2.5239,
    "conformance/glsl/bugs/angle-ambiguous-function-call.html": 0.1355,
    "conformance/glsl/bugs/angle-constructor-invalid-parameters.html": 0.1006,
    "conformance/glsl/bugs/angle-d3d11-compiler-error.html": 0.1087,
    "conformance/glsl/bugs/angle-dx-variable-bug.html": 0.1128,
    "conformance/glsl/bugs/array-of-struct-with-int-first-position.html": 0.1779,
    "conformance/glsl/bugs/assign-to-swizzled-twice-in-function.html": 0.1421,
    "conformance/glsl/bugs/bool-type-cast-bug-int-float.html": 0.2004,
    "conformance/glsl/bugs/character-set.html": 0.2359,
    "conformance/glsl/bugs/compare-loop-index-to-uniform.html": 0.1409,
    "conformance/glsl/bugs/complex-glsl-does-not-crash.html": 4.5295,
    "conformance/glsl/bugs/compound-assignment-type-combination.html": 0.8483,
    "conformance/glsl/bugs/conditional-discard-in-loop.html": 0.2458,
    "conformance/glsl/bugs/conditional-discard-optimization.html": 0.1357,
    "conformance/glsl/bugs/conditional-texture-fetch.html": 0.1123,
    "conformance/glsl/bugs/constant-precision-qualifier.html": 0.1351,
    "conformance/glsl/bugs/essl3-shaders-with-webgl1.html": 0.1189,
    "conformance/glsl/bugs/floor-div-cos-should-not-truncate.html": 0.1143,
    "conformance/glsl/bugs/floored-division-accuracy.html": 0.1109,
    "conformance/glsl/bugs/fragcoord-linking-bug.html": 0.1328,
    "conformance/glsl/bugs/gl-fragcoord-multisampling-bug.html": 0.1253,
    "conformance/glsl/bugs/global-invariant-does-not-leak-across-shaders.html": 0.1158,
    "conformance/glsl/bugs/if-return-and-elseif.html": 0.156,
    "conformance/glsl/bugs/in-parameter-passed-as-inout-argument-and-global.html": 0.1625,
    "conformance/glsl/bugs/init-array-with-loop.html": 0.1143,
    "conformance/glsl/bugs/invariant-does-not-leak-across-shaders.html": 0.1137,
    "conformance/glsl/bugs/logic-inside-block-without-braces.html": 0.1187,
    "conformance/glsl/bugs/long-expressions-should-not-crash.html": 0.7236,
    "conformance/glsl/bugs/loop-if-loop-gradient.html": 0.1159,
    "conformance/glsl/bugs/modulo-arithmetic-accuracy.html": 0.1083,
    "conformance/glsl/bugs/multiplication-assignment.html": 0.1122,
    "conformance/glsl/bugs/nested-functions-should-not-crash.html": 0.2118,
    "conformance/glsl/bugs/nested-loops-with-break-and-continue.html": 0.1303,
    "conformance/glsl/bugs/nested-sequence-operator.html": 0.1056,
    "conformance/glsl/bugs/pow-of-small-constant-in-user-defined-function.html": 0.128,
    "conformance/glsl/bugs/pow-with-constant-exponent-should-not-crash.html": 0.1382,
    "conformance/glsl/bugs/qualcomm-crash.html": 0.1406,
    "conformance/glsl/bugs/qualcomm-loop-with-continue-crash.html": 0.1237,
    "conformance/glsl/bugs/sampler-array-struct-function-arg.html": 0.1216,
    "conformance/glsl/bugs/sampler-array-using-loop-index.html": 0.1052,
    "conformance/glsl/bugs/sampler-struct-function-arg.html": 0.1165,
    "conformance/glsl/bugs/sequence-operator-evaluation-order.html": 0.1163,
    "conformance/glsl/bugs/sketchfab-lighting-shader-crash.html": 0.1736,
    "conformance/glsl/bugs/struct-constructor-highp-bug.html": 0.0861,
    "conformance/glsl/bugs/struct-with-single-member-constructor.html": 0.0763,
    "conformance/glsl/bugs/temp-expressions-should-not-crash.html": 6.2702,
    "conformance/glsl/bugs/unary-minus-operator-float-bug.html": 0.1171,
    "conformance/glsl/bugs/undefined-index-should-not-crash.html": 0.0814,
    "conformance/glsl/bugs/uniforms-should-not-lose-values.html": 0.129,
    "conformance/glsl/bugs/varying-arrays-should-not-be-reversed.html": 0.1302,
    "conformance/glsl/bugs/vector-matrix-constructor-scalarization.html": 0.2875,
    "conformance/glsl/bugs/vector-scalar-arithmetic-inside-loop-complex.html": 0.1178,
    "conformance/glsl/bugs/vector-scalar-arithmetic-inside-loop.html": 0.1208,
    "conformance/glsl/constructors/glsl-construct-bvec2.html": 0.3892,
    "conformance/glsl/constructors/glsl-construct-bvec3.html": 0.443,
    "conformance/glsl/constructors/glsl-construct-bvec4.html": 0.5416,
    "conformance/glsl/constructors/glsl-construct-ivec2.html": 0.3429,
    "conformance/glsl/constructors/glsl-construct-ivec3.html": 0.413,
    "conformance/glsl/constructors/glsl-construct-ivec4.html": 0.5407,
    "conformance/glsl/constructors/glsl-construct-mat2.html": 0.4143,
    "conformance/glsl/constructors/glsl-construct-mat3.html": 0.2749,
    "conformance/glsl/constructors/glsl-construct-mat4.html": 0.2057,
    "conformance/glsl/constructors/glsl-construct-vec-mat-corner-cases.html": 0.1341,
    "conformance/glsl/constructors/glsl-construct-vec-mat-index.html": 0.0858,
    "conformance/glsl/constructors/glsl-construct-vec2.html": 0.2805,
    "conformance/glsl/constructors/glsl-construct-vec3.html": 0.4648,
    "conformance/glsl/constructors/glsl-construct-vec4.html": 0.5986,
    "conformance/glsl/functions/glsl-function-abs.html": 0.2735,
    "conformance/glsl/functions/glsl-function-acos.html": 0.2527,
    "conformance/glsl/functions/glsl-function-asin.html": 0.3372,
    "conformance/glsl/functions/glsl-function-atan-xy.html": 0.3847,
    "conformance/glsl/functions/glsl-function-atan.html": 0.3376,
    "conformance/glsl/functions/glsl-function-ceil.html": 0.292,
    "conformance/glsl/functions/glsl-function-clamp-float.html": 0.3863,
    "conformance/glsl/functions/glsl-function-clamp-gentype.html": 0.3515,
    "conformance/glsl/functions/glsl-function-cos.html": 0.2362,
    "conformance/glsl/functions/glsl-function-cross.html": 0.1404,
    "conformance/glsl/functions/glsl-function-distance.html": 0.384,
    "conformance/glsl/functions/glsl-function-dot.html": 0.3125,
    "conformance/glsl/functions/glsl-function-faceforward.html": 0.3336,
    "conformance/glsl/functions/glsl-function-floor.html": 0.3064,
    "conformance/glsl/functions/glsl-function-fract.html": 0.3041,
    "conformance/glsl/functions/glsl-function-length.html": 0.2835,
    "conformance/glsl/functions/glsl-function-max-float.html": 0.3337,
    "conformance/glsl/functions/glsl-function-max-gentype.html": 0.336,
    "conformance/glsl/functions/glsl-function-min-float.html": 0.3526,
    "conformance/glsl/functions/glsl-function-min-gentype.html": 0.3514,
    "conformance/glsl/functions/glsl-function-mix-float.html": 0.2713,
    "conformance/glsl/functions/glsl-function-mix-gentype.html": 0.2808,
    "conformance/glsl/functions/glsl-function-mod-float.html": 0.2872,
    "conformance/glsl/functions/glsl-function-mod-gentype.html": 0.3734,
    "conformance/glsl/functions/glsl-function-normalize.html": 0.2802,
    "conformance/glsl/functions/glsl-function-reflect.html": 0.362,
    "conformance/glsl/functions/glsl-function-sign.html": 0.3445,
    "conformance/glsl/functions/glsl-function-sin.html": 0.2366,
    "conformance/glsl/functions/glsl-function-smoothstep-float.html": 0.2471,
    "conformance/glsl/functions/glsl-function-smoothstep-gentype.html": 0.3724,
    "conformance/glsl/functions/glsl-function-step-float.html": 0.268,
    "conformance/glsl/functions/glsl-function-step-gentype.html": 0.2853,
    "conformance/glsl/functions/glsl-function.html": 0.3335,
    "conformance/glsl/implicit/add_int_float.vert.html": 0.0818,
    "conformance/glsl/implicit/add_int_mat2.vert.html": 0.0714,
    "conformance/glsl/implicit/add_int_mat3.vert.html": 0.1148,
    "conformance/glsl/implicit/add_int_mat4.vert.html": 0.1272,
    "conformance/glsl/implicit/add_int_vec2.vert.html": 0.1128,
    "conformance/glsl/implicit/add_int_vec3.vert.html": 0.1081,
    "conformance/glsl/implicit/add_int_vec4.vert.html": 0.0949,
    "conformance/glsl/implicit/add_ivec2_vec2.vert.html": 0.0683,
    "conformance/glsl/implicit/add_ivec3_vec3.vert.html": 0.1135,
    "conformance/glsl/implicit/add_ivec4_vec4.vert.html": 0.1042,
    "conformance/glsl/implicit/assign_int_to_float.vert.html": 0.1069,
    "conformance/glsl/implicit/assign_ivec2_to_vec2.vert.html": 0.0841,
    "conformance/glsl/implicit/assign_ivec3_to_vec3.vert.html": 0.0953,
    "conformance/glsl/implicit/assign_ivec4_to_vec4.vert.html": 0.1161,
    "conformance/glsl/implicit/construct_struct.vert.html": 0.1231,
    "conformance/glsl/implicit/divide_int_float.vert.html": 0.098,
    "conformance/glsl/implicit/divide_int_mat2.vert.html": 0.0877,
    "conformance/glsl/implicit/divide_int_mat3.vert.html": 0.0894,
    "conformance/glsl/implicit/divide_int_mat4.vert.html": 0.086,
    "conformance/glsl/implicit/divide_int_vec2.vert.html": 0.0947,
    "conformance/glsl/implicit/divide_int_vec3.vert.html": 0.1091,
    "conformance/glsl/implicit/divide_int_vec4.vert.html": 0.0937,
    "conformance/glsl/implicit/divide_ivec2_vec2.vert.html": 0.103,
    "conformance/glsl/implicit/divide_ivec3_vec3.vert.html": 0.0942,
    "conformance/glsl/implicit/divide_ivec4_vec4.vert.html": 0.1059,
    "conformance/glsl/implicit/equal_int_float.vert.html": 0.107,
    "conformance/glsl/implicit/equal_ivec2_vec2.vert.html": 0.0999,
    "conformance/glsl/implicit/equal_ivec3_vec3.vert.html": 0.119,
    "conformance/glsl/implicit/equal_ivec4_vec4.vert.html": 0.0979,
    "conformance/glsl/implicit/function_int_float.vert.html": 0.1199,
    "conformance/glsl/implicit/function_ivec2_vec2.vert.html": 0.1118,
    "conformance/glsl/implicit/function_ivec3_vec3.vert.html": 0.0888,
    "conformance/glsl/implicit/function_ivec4_vec4.vert.html": 0.085,
    "conformance/glsl/implicit/greater_than.vert.html": 0.0805,
    "conformance/glsl/implicit/greater_than_equal.vert.html": 0.0776,
    "conformance/glsl/implicit/less_than.vert.html": 0.0979,
    "conformance/glsl/implicit/less_than_equal.vert.html": 0.085,
    "conformance/glsl/implicit/multiply_int_float.vert.html": 0.0751,
    "conformance/glsl/implicit/multiply_int_mat2.vert.html": 0.1178,
    "conformance/glsl/implicit/multiply_int_mat3.vert.html": 0.0716,
    "conformance/glsl/implicit/multiply_int_mat4.vert.html": 0.0789,
    "conformance/glsl/implicit/multiply_int_vec2.vert.html": 0.1164,
    "conformance/glsl/implicit/multiply_int_vec3.vert.html": 0.1097,
    "conformance/glsl/implicit/multiply_int_vec4.vert.html": 0.0698,
    "conformance/glsl/implicit/multiply_ivec2_vec2.vert.html": 0.094,
    "conformance/glsl/implicit/multiply_ivec3_vec3.vert.html": 0.0981,
    "conformance/glsl/implicit/multiply_ivec4_vec4.vert.html": 0.0691,
    "conformance/glsl/implicit/not_equal_int_float.vert.html": 0.0759,
    "conformance/glsl/implicit/not_equal_ivec2_vec2.vert.html": 0.1253,
    "conformance/glsl/implicit/not_equal_ivec3_vec3.vert.html": 0.1041,
    "conformance/glsl/implicit/not_equal_ivec4_vec4.vert.html": 0.0673,
    "conformance/glsl/implicit/subtract_int_float.vert.html": 0.0971,
    "conformance/glsl/implicit/subtract_int_mat2.vert.html": 0.1194,
    "conformance/glsl/implicit/subtract_int_mat3.vert.html": 0.0683,
    "conformance/glsl/implicit/subtract_int_mat4.vert.html": 0.1157,
    "conformance/glsl/implicit/subtract_int_vec2.vert.html": 0.07,
    "conformance/glsl/implicit/subtract_int_vec3.vert.html": 0.1228,
    "conformance/glsl/implicit/subtract_int_vec4.vert.html": 0.0683,
    "conformance/glsl/implicit/subtract_ivec2_vec2.vert.html": 0.1204,
    "conformance/glsl/implicit/subtract_ivec3_vec3.vert.html": 0.0683,
    "conformance/glsl/implicit/subtract_ivec4_vec4.vert.html": 0.0778,
    "conformance/glsl/implicit/ternary_int_float.vert.html": 0.0749,
    "conformance/glsl/implicit/ternary_ivec2_vec2.vert.html": 0.1162,
    "conformance/glsl/implicit/ternary_ivec3_vec3.vert.html": 0.0866,
    "conformance/glsl/implicit/ternary_ivec4_vec4.vert.html": 0.0794,
    "conformance/glsl/literals/float_literal.vert.html": 0.0789,
    "conformance/glsl/literals/literal_precision.html": 0.1026,
    "conformance/glsl/literals/overflow_leak.vert.html": 0.0893,
    "conformance/glsl/matrices/glsl-mat3-construction.html": 0.1522,
    "conformance/glsl/matrices/glsl-mat4-to-mat3.html": 0.1855,
    "conformance/glsl/matrices/matrix-compound-multiply.html": 0.1397,
    "conformance/glsl/misc/attrib-location-length-limits.html": 0.0924,
    "conformance/glsl/misc/boolean_precision.html": 0.0836,
    "conformance/glsl/misc/const-variable-initialization.html": 1.0263,
    "conformance/glsl/misc/embedded-struct-definitions-forbidden.html": 0.0868,
    "conformance/glsl/misc/empty-declaration.html": 0.0926,
    "conformance/glsl/misc/empty_main.vert.html": 0.0855,
    "conformance/glsl/misc/expression-list-in-declarator-initializer.html": 0.3638,
    "conformance/glsl/misc/fragcolor-fragdata-invariant.html": 0.1053,
    "conformance/glsl/misc/gl_position_unset.vert.html": 0.1142,
    "conformance/glsl/misc/global-variable-init.html": 0.1491,
    "conformance/glsl/misc/glsl-function-nodes.html": 0.118,
    "conformance/glsl/misc/glsl-long-variable-names.html": 0.1755,
    "conformance/glsl/misc/glsl-vertex-branch.html": 0.1648,
    "conformance/glsl/misc/large-loop-compile.html": 1.6151,
    "conformance/glsl/misc/local-variable-shadowing-outer-function.html": 0.1177,
    "conformance/glsl/misc/non-ascii-comments.vert.html": 0.11,
    "conformance/glsl/misc/non-ascii.vert.html": 0.0784,
    "conformance/glsl/misc/re-compile-re-link.html": 0.2061,
    "conformance/glsl/misc/sampler-operand.html": 0.0946,
    "conformance/glsl/misc/sequence-operator-returns-constant.html": 0.1533,
    "conformance/glsl/misc/shader-precision-format-obeyed.html": 0.0947,
    "conformance/glsl/misc/shader-struct-scope.html": 0.1115,
    "conformance/glsl/misc/shader-uniform-packing-restrictions.html": 3.0025,
    "conformance/glsl/misc/shader-varying-packing-restrictions.html": 0.2812,
    "conformance/glsl/misc/shader-with-256-character-define.html": 0.1234,
    "conformance/glsl/misc/shader-with-256-character-identifier.frag.html": 0.1323,
    "conformance/glsl/misc/shader-with-257-character-define.html": 0.1027,
    "conformance/glsl/misc/shader-with-257-character-identifier.frag.html": 0.115,
    "conformance/glsl/misc/shader-with-_webgl-identifier.vert.html": 0.1485,
    "conformance/glsl/misc/shader-with-arbitrary-indexing.frag.html": 0.1253,
    "conformance/glsl/misc/shader-with-arbitrary-indexing.vert.html": 0.1322,
    "conformance/glsl/misc/shader-with-array-of-structs-containing-arrays.html": 0.1363,
    "conformance/glsl/misc/shader-with-array-of-structs-uniform.html": 0.1494,
    "conformance/glsl/misc/shader-with-attrib-array.vert.html": 0.1167,
    "conformance/glsl/misc/shader-with-attrib-struct.vert.html": 0.1099,
    "conformance/glsl/misc/shader-with-clipvertex.vert.html": 0.1182,
    "conformance/glsl/misc/shader-with-comma-assignment.html": 0.1346,
    "conformance/glsl/misc/shader-with-comma-conditional-assignment.html": 0.1879,
    "conformance/glsl/misc/shader-with-comma-separated-variable-declarations.html": 0.0884,
    "conformance/glsl/misc/shader-with-conditional-scoping-negative.html": 0.0983,
    "conformance/glsl/misc/shader-with-conditional-scoping.html": 0.1226,
    "conformance/glsl/misc/shader-with-default-precision.frag.html": 0.0884,
    "conformance/glsl/misc/shader-with-default-precision.vert.html": 0.109,
    "conformance/glsl/misc/shader-with-dfdx-no-ext.frag.html": 0.1067,
    "conformance/glsl/misc/shader-with-dfdx.frag.html": 0.1202,
    "conformance/glsl/misc/shader-with-do-loop.html": 0.0981,
    "conformance/glsl/misc/shader-with-error-directive.html": 0.1204,
    "conformance/glsl/misc/shader-with-explicit-int-cast.vert.html": 0.1084,
    "conformance/glsl/misc/shader-with-float-return-value.frag.html": 0.1007,
    "conformance/glsl/misc/shader-with-for-loop.html": 0.1625,
    "conformance/glsl/misc/shader-with-for-scoping.html": 0.1085,
    "conformance/glsl/misc/shader-with-frag-depth.frag.html": 0.0933,
    "conformance/glsl/misc/shader-with-function-recursion.frag.html": 0.1149,
    "conformance/glsl/misc/shader-with-function-scoped-struct.html": 0.1059,
    "conformance/glsl/misc/shader-with-functional-scoping.html": 0.1054,
    "conformance/glsl/misc/shader-with-glcolor.vert.html": 0.1189,
    "conformance/glsl/misc/shader-with-gles-1.frag.html": 0.099,
    "conformance/glsl/misc/shader-with-gles-symbol.frag.html": 0.109,
    "conformance/glsl/misc/shader-with-global-variable-precision-mismatch.html": 0.099,
    "conformance/glsl/misc/shader-with-glprojectionmatrix.vert.html": 0.118,
    "conformance/glsl/misc/shader-with-hex-int-constant-macro.html": 0.0833,
    "conformance/glsl/misc/shader-with-implicit-vec3-to-vec4-cast.vert.html": 0.1085,
    "conformance/glsl/misc/shader-with-include.vert.html": 0.1039,
    "conformance/glsl/misc/shader-with-int-return-value.frag.html": 0.1023,
    "conformance/glsl/misc/shader-with-invalid-identifier.frag.html": 0.1067,
    "conformance/glsl/misc/shader-with-ivec2-return-value.frag.html": 0.1187,
    "conformance/glsl/misc/shader-with-ivec3-return-value.frag.html": 0.1194,
    "conformance/glsl/misc/shader-with-ivec4-return-value.frag.html": 0.1078,
    "conformance/glsl/misc/shader-with-limited-indexing.frag.html": 0.1007,
    "conformance/glsl/misc/shader-with-long-line.html": 0.1292,
    "conformance/glsl/misc/shader-with-non-ascii-error.frag.html": 0.1072,
    "conformance/glsl/misc/shader-with-non-reserved-words-1-of-8.html": 2.4587,
    "conformance/glsl/misc/shader-with-non-reserved-words-2-of-8.html": 2.7309,
    "conformance/glsl/misc/shader-with-non-reserved-words-3-of-8.html": 2.6265,
    "conformance/glsl/misc/shader-with-non-reserved-words-4-of-8.html": 2.5827,
    "conformance/glsl/misc/shader-with-non-reserved-words-5-of-8.html": 1.2475,
    "conformance/glsl/misc/shader-with-non-reserved-words-6-of-8.html": 1.6933,
    "conformance/glsl/misc/shader-with-non-reserved-words-7-of-8.html": 2.4639,
    "conformance/glsl/misc/shader-with-non-reserved-words-8-of-8.html": 0.9603,
    "conformance/glsl/misc/shader-with-precision.frag.html": 0.1144,
    "conformance/glsl/misc/shader-with-preprocessor-whitespace.html": 0.0997,
    "conformance/glsl/misc/shader-with-quoted-error.frag.html": 0.1272,
    "conformance/glsl/misc/shader-with-reserved-words.html": 2.284,
    "conformance/glsl/misc/shader-with-short-circuiting-operators.html": 0.336,
    "conformance/glsl/misc/shader-with-similar-uniform-array-names.html": 0.1548,
    "conformance/glsl/misc/shader-with-too-many-uniforms.html": 0.5235,
    "conformance/glsl/misc/shader-with-two-initializer-types.html": 0.0831,
    "conformance/glsl/misc/shader-with-undefined-preprocessor-symbol.frag.html": 0.0891,
    "conformance/glsl/misc/shader-with-uniform-in-loop-condition.vert.html": 0.1146,
    "conformance/glsl/misc/shader-with-vec2-return-value.frag.html": 0.1037,
    "conformance/glsl/misc/shader-with-vec3-return-value.frag.html": 0.1097,
    "conformance/glsl/misc/shader-with-vec4-return-value.frag.html": 0.1271,
    "conformance/glsl/misc/shader-with-vec4-vec3-vec4-conditional.html": 0.1078,
    "conformance/glsl/misc/shader-with-version-100.frag.html": 0.1212,
    "conformance/glsl/misc/shader-with-version-100.vert.html": 0.138,
    "conformance/glsl/misc/shader-with-version-120.vert.html": 0.1103,
    "conformance/glsl/misc/shader-with-version-130.vert.html": 0.1065,
    "conformance/glsl/misc/shader-with-webgl-identifier.vert.html": 0.0986,
    "conformance/glsl/misc/shader-with-while-loop.html": 0.1015,
    "conformance/glsl/misc/shader-without-precision.frag.html": 0.114,
    "conformance/glsl/misc/shaders-with-constant-expression-loop-conditions.html": 0.1342,
    "conformance/glsl/misc/shaders-with-invariance.html": 0.1507,
    "conformance/glsl/misc/shaders-with-mis-matching-uniforms.html": 0.1852,
    "conformance/glsl/misc/shaders-with-mis-matching-varyings.html": 0.1274,
    "conformance/glsl/misc/shaders-with-missing-varyings.html": 0.1146,
    "conformance/glsl/misc/shaders-with-name-conflicts.html": 0.1015,
    "conformance/glsl/misc/shaders-with-uniform-structs.html": 0.1055,
    "conformance/glsl/misc/shaders-with-varyings.html": 0.1059,
    "conformance/glsl/misc/shared.html": 0.1264,
    "conformance/glsl/misc/struct-as-inout-parameter.html": 0.1627,
    "conformance/glsl/misc/struct-as-out-parameter.html": 0.1446,
    "conformance/glsl/misc/struct-assign.html": 0.1834,
    "conformance/glsl/misc/struct-equals.html": 0.1588,
    "conformance/glsl/misc/struct-mixed-array-declarators.html": 0.4156,
    "conformance/glsl/misc/struct-nesting-exceeds-maximum.html": 0.1005,
    "conformance/glsl/misc/struct-nesting-of-variable-names.html": 1.2539,
    "conformance/glsl/misc/struct-nesting-under-maximum.html": 0.1167,
    "conformance/glsl/misc/struct-specifiers-in-uniforms.html": 0.2191,
    "conformance/glsl/misc/struct-unary-operators.html": 0.1411,
    "conformance/glsl/misc/ternary-operator-on-arrays.html": 0.1523,
    "conformance/glsl/misc/ternary-operators-in-global-initializers.html": 0.2098,
    "conformance/glsl/misc/ternary-operators-in-initializers.html": 0.2262,
    "conformance/glsl/misc/uniform-location-length-limits.html": 0.119,
    "conformance/glsl/misc/uninitialized-local-global-variables.html": 0.2647,
    "conformance/glsl/preprocessor/comments.html": 0.1795,
    "conformance/glsl/preprocessor/macro-expansion-tricky.html": 0.1131,
    "conformance/glsl/reserved/_webgl_field.vert.html": 0.1034,
    "conformance/glsl/reserved/_webgl_function.vert.html": 0.0975,
    "conformance/glsl/reserved/_webgl_struct.vert.html": 0.0888,
    "conformance/glsl/reserved/_webgl_variable.vert.html": 0.0764,
    "conformance/glsl/reserved/webgl_field.vert.html": 0.0819,
    "conformance/glsl/reserved/webgl_function.vert.html": 0.097,
    "conformance/glsl/reserved/webgl_struct.vert.html": 0.0844,
    "conformance/glsl/reserved/webgl_variable.vert.html": 0.1088,
    "conformance/glsl/samplers/glsl-function-texture2d-bias.html": 0.1563,
    "conformance/glsl/samplers/glsl-function-texture2dlod.html": 0.1589,
    "conformance/glsl/samplers/glsl-function-texture2dproj.html": 0.2055,
    "conformance/glsl/samplers/glsl-function-texture2dprojlod.html": 0.4773,
    "conformance/glsl/variables/gl-fragcoord-xy-values.html": 0.1428,
    "conformance/glsl/variables/gl-fragcoord.html": 0.1435,
    "conformance/glsl/variables/gl-fragdata-and-fragcolor.html": 0.0831,
    "conformance/glsl/variables/gl-frontfacing.html": 0.1672,
    "conformance/glsl/variables/gl-pointcoord.html": 0.2004,
    "conformance/glsl/variables/glsl-built-ins.html": 0.2753,
    "conformance/limits/gl-line-width.html": 0.1162,
    "conformance/limits/gl-max-texture-dimensions.html": 0.1253,
    "conformance/limits/gl-min-attribs.html": 0.1329,
    "conformance/limits/gl-min-textures.html": 0.1293,
    "conformance/limits/gl-min-uniforms.html": 0.197,
    "conformance/misc/bad-arguments-test.html": 0.124,
    "conformance/misc/boolean-argument-conversion.html": 0.1394,
    "conformance/misc/delayed-drawing.html": 1.1037,
    "conformance/misc/error-reporting.html": 0.1307,
    "conformance/misc/expando-loss.html": 0.2542,
    "conformance/misc/functions-returning-strings.html": 0.0899,
    "conformance/misc/hint.html": 0.2002,
    "conformance/misc/instanceof-test.html": 0.1213,
    "conformance/misc/invalid-passed-params.html": 0.1468,
    "conformance/misc/is-object.html": 0.1097,
    "conformance/misc/null-object-behaviour.html": 0.1294,
    "conformance/misc/object-deletion-behaviour.html": 0.2503,
    "conformance/misc/shader-precision-format.html": 0.353,
    "conformance/misc/type-conversion-test.html": 0.1438,
    "conformance/misc/uninitialized-test.html": 0.1714,
    "conformance/misc/webgl-specific-stencil-settings.html": 0.2374,
    "conformance/misc/webgl-specific.html": 0.1219,
    "conformance/more/conformance/constants.html": 0.1113,
    "conformance/more/conformance/getContext.html": 0.0918,
    "conformance/more/conformance/methods.html": 0.1013,
    "conformance/more/conformance/quickCheckAPI-A.html": 0.1647,
    "conformance/more/conformance/quickCheckAPI-B1.html": 0.1609,
    "conformance/more/conformance/quickCheckAPI-B2.html": 0.1649,
    "conformance/more/conformance/quickCheckAPI-B3.html": 0.1838,
    "conformance/more/conformance/quickCheckAPI-B4.html": 0.1327,
    "conformance/more/conformance/quickCheckAPI-C.html": 0.1286,
    "conformance/more/conformance/quickCheckAPI-D_G.html": 0.1567,
    "conformance/more/conformance/quickCheckAPI-G_I.html": 0.1664,
    "conformance/more/conformance/quickCheckAPI-L_S.html": 0.1352,
    "conformance/more/conformance/quickCheckAPI-S_V.html": 0.1784,
    "conformance/more/conformance/webGLArrays.html": 0.124,
    "conformance/more/functions/bindBuffer.html": 0.1079,
    "conformance/more/functions/bindBufferBadArgs.html": 0.1418,
    "conformance/more/functions/bindFramebufferLeaveNonZero.html": 0.1126,
    "conformance/more/functions/bufferData.html": 0.101,
    "conformance/more/functions/bufferDataBadArgs.html": 0.1233,
    "conformance/more/functions/bufferSubData.html": 0.0951,
    "conformance/more/functions/bufferSubDataBadArgs.html": 0.0861,
    "conformance/more/functions/copyTexImage2D.html": 0.1318,
    "conformance/more/functions/copyTexImage2DBadArgs.html": 0.0963,
    "conformance/more/functions/copyTexSubImage2D.html": 0.149,
    "conformance/more/functions/copyTexSubImage2DBadArgs.html": 0.0874,
    "conformance/more/functions/deleteBufferBadArgs.html": 0.1094,
    "conformance/more/functions/drawArrays.html": 0.1394,
    "conformance/more/functions/drawElements.html": 0.1246,
    "conformance/more/functions/isTests.html": 0.0882,
    "conformance/more/functions/isTestsBadArgs.html": 0.0997,
    "conformance/more/functions/readPixels.html": 0.1085,
    "conformance/more/functions/readPixelsBadArgs.html": 0.1148,
    "conformance/more/functions/texImage2D.html": 0.1151,
    "conformance/more/functions/texImage2DBadArgs.html": 0.0852,
    "conformance/more/functions/texImage2DHTML.html": 0.2083,
    "conformance/more/functions/texImage2DHTMLBadArgs.html": 0.0943,
    "conformance/more/functions/texSubImage2D.html": 0.0785,
    "conformance/more/functions/texSubImage2DBadArgs.html": 0.0909,
    "conformance/more/functions/texSubImage2DHTML.html": 0.2649,
    "conformance/more/functions/texSubImage2DHTMLBadArgs.html": 0.1117,
    "conformance/more/functions/uniformMatrix.html": 0.1467,
    "conformance/more/functions/uniformMatrixBadArgs.html": 0.1124,
    "conformance/more/functions/uniformf.html": 0.1235,
    "conformance/more/functions/uniformfArrayLen1.html": 0.1351,
    "conformance/more/functions/uniformfBadArgs.html": 0.1258,
    "conformance/more/functions/uniformi.html": 0.1322,
    "conformance/more/functions/uniformiBadArgs.html": 0.1041,
    "conformance/more/functions/vertexAttrib.html": 0.1111,
    "conformance/more/functions/vertexAttribBadArgs.html": 0.1087,
    "conformance/more/functions/vertexAttribPointer.html": 0.0915,
    "conformance/more/functions/vertexAttribPointerBadArgs.html": 0.0892,
    "conformance/more/glsl/arrayOutOfBounds.html": 0.0965,
    "conformance/more/glsl/uniformOutOfBounds.html": 0.094,
    "conformance/offscreencanvas/context-attribute-preserve-drawing-buffer.html": 0.6295,
    "conformance/offscreencanvas/context-creation-worker.html": 0.0938,
    "conformance/offscreencanvas/context-creation.html": 0.0768,
    "conformance/offscreencanvas/context-lost-restored-worker.html": 0.1372,
    "conformance/offscreencanvas/context-lost-restored.html": 0.1119,
    "conformance/offscreencanvas/context-lost-worker.html": 0.1109,
    "conformance/offscreencanvas/context-lost.html": 0.1114,
    "conformance/offscreencanvas/methods-worker.html": 0.128,
    "conformance/offscreencanvas/methods.html": 0.104,
    "conformance/offscreencanvas/offscreencanvas-resize.html": 0.0898,
    "conformance/offscreencanvas/offscreencanvas-timer-query.html": 0.1109,
    "conformance/offscreencanvas/offscreencanvas-transfer-image-bitmap.html": 0.1367,
    "conformance/ogles/GL/abs/abs_001_to_006.html": 0.5542,
    "conformance/ogles/GL/acos/acos_001_to_006.html": 1.359,
    "conformance/ogles/GL/all/all_001_to_004.html": 0.4501,
    "conformance/ogles/GL/any/any_001_to_004.html": 0.4025,
    "conformance/ogles/GL/array/array_001_to_006.html": 0.3966,
    "conformance/ogles/GL/asin/asin_001_to_006.html": 1.293,
    "conformance/ogles/GL/atan/atan_001_to_008.html": 0.8851,
    "conformance/ogles/GL/atan/atan_009_to_012.html": 0.6305,
    "conformance/ogles/GL/biConstants/biConstants_001_to_008.html": 0.6067,
    "conformance/ogles/GL/biConstants/biConstants_009_to_016.html": 0.6174,
    "conformance/ogles/GL/biuDepthRange/biuDepthRange_001_to_002.html": 0.2353,
    "conformance/ogles/GL/build/build_001_to_008.html": 0.1737,
    "conformance/ogles/GL/build/build_009_to_016.html": 0.2582,
    "conformance/ogles/GL/build/build_017_to_024.html": 0.1936,
    "conformance/ogles/GL/build/build_025_to_032.html": 0.1517,
    "conformance/ogles/GL/build/build_033_to_040.html": 0.1436,
    "conformance/ogles/GL/build/build_041_to_048.html": 0.1173,
    "conformance/ogles/GL/build/build_049_to_056.html": 0.1455,
    "conformance/ogles/GL/build/build_057_to_064.html": 0.1596,
    "conformance/ogles/GL/build/build_065_to_072.html": 0.1534,
    "conformance/ogles/GL/build/build_073_to_080.html": 0.1298,
    "conformance/ogles/GL/build/build_081_to_088.html": 0.1174,
    "conformance/ogles/GL/build/build_089_to_096.html": 0.1257,
    "conformance/ogles/GL/build/build_097_to_104.html": 0.1251,
    "conformance/ogles/GL/build/build_105_to_112.html": 0.1402,
    "conformance/ogles/GL/build/build_113_to_120.html": 0.1205,
    "conformance/ogles/GL/build/build_121_to_128.html": 0.16,
    "conformance/ogles/GL/build/build_129_to_136.html": 0.1061,
    "conformance/ogles/GL/build/build_137_to_144.html": 0.1648,
    "conformance/ogles/GL/build/build_145_to_152.html": 0.1412,
    "conformance/ogles/GL/build/build_153_to_160.html": 0.1536,
    "conformance/ogles/GL/build/build_161_to_168.html": 0.1785,
    "conformance/ogles/GL/build/build_169_to_176.html": 0.1341,
    "conformance/ogles/GL/build/build_177_to_178.html": 0.122,
    "conformance/ogles/GL/built_in_varying_array_out_of_bounds/built_in_varying_array_out_of_bounds_001_to_001.html": 0.0891,
    "conformance/ogles/GL/ceil/ceil_001_to_006.html": 0.6226,
    "conformance/ogles/GL/clamp/clamp_001_to_006.html": 0.5068,
    "conformance/ogles/GL/control_flow/control_flow_001_to_008.html": 0.5679,
    "conformance/ogles/GL/control_flow/control_flow_009_to_010.html": 0.1733,
    "conformance/ogles/GL/cos/cos_001_to_006.html": 0.633,
    "conformance/ogles/GL/cross/cross_001_to_002.html": 0.3178,
    "conformance/ogles/GL/default/default_001_to_001.html": 0.1754,
    "conformance/ogles/GL/degrees/degrees_001_to_006.html": 0.493,
    "conformance/ogles/GL/discard/discard_001_to_002.html": 0.2313,
    "conformance/ogles/GL/distance/distance_001_to_006.html": 0.6136,
    "conformance/ogles/GL/dot/dot_001_to_006.html": 0.6098,
    "conformance/ogles/GL/equal/equal_001_to_008.html": 0.672,
    "conformance/ogles/GL/equal/equal_009_to_012.html": 0.4514,
    "conformance/ogles/GL/exp/exp_001_to_008.html": 0.7322,
    "conformance/ogles/GL/exp/exp_009_to_012.html": 0.5944,
    "conformance/ogles/GL/exp2/exp2_001_to_008.html": 0.7247,
    "conformance/ogles/GL/exp2/exp2_009_to_012.html": 0.5502,
    "conformance/ogles/GL/faceforward/faceforward_001_to_006.html": 0.7042,
    "conformance/ogles/GL/floor/floor_001_to_006.html": 0.5458,
    "conformance/ogles/GL/fract/fract_001_to_006.html": 0.6018,
    "conformance/ogles/GL/functions/functions_001_to_008.html": 0.595,
    "conformance/ogles/GL/functions/functions_009_to_016.html": 0.4908,
    "conformance/ogles/GL/functions/functions_017_to_024.html": 0.4646,
    "conformance/ogles/GL/functions/functions_025_to_032.html": 0.4186,
    "conformance/ogles/GL/functions/functions_033_to_040.html": 0.4547,
    "conformance/ogles/GL/functions/functions_041_to_048.html": 0.4525,
    "conformance/ogles/GL/functions/functions_049_to_056.html": 0.4098,
    "conformance/ogles/GL/functions/functions_057_to_064.html": 0.4497,
    "conformance/ogles/GL/functions/functions_065_to_072.html": 0.4243,
    "conformance/ogles/GL/functions/functions_073_to_080.html": 0.4404,
    "conformance/ogles/GL/functions/functions_081_to_088.html": 0.4199,
    "conformance/ogles/GL/functions/functions_089_to_096.html": 0.4449,
    "conformance/ogles/GL/functions/functions_097_to_104.html": 0.4092,
    "conformance/ogles/GL/functions/functions_105_to_112.html": 0.4221,
    "conformance/ogles/GL/functions/functions_113_to_120.html": 0.4034,
    "conformance/ogles/GL/functions/functions_121_to_126.html": 0.3592,
    "conformance/ogles/GL/gl_FragCoord/gl_FragCoord_001_to_003.html": 0.2184,
    "conformance/ogles/GL/gl_FrontFacing/gl_FrontFacing_001_to_001.html": 0.1396,
    "conformance/ogles/GL/greaterThan/greaterThan_001_to_008.html": 0.5981,
    "conformance/ogles/GL/greaterThanEqual/greaterThanEqual_001_to_008.html": 0.5948,
    "conformance/ogles/GL/inversesqrt/inversesqrt_001_to_006.html": 0.5451,
    "conformance/ogles/GL/length/length_001_to_006.html": 0.5457,
    "conformance/ogles/GL/lessThan/lessThan_001_to_008.html": 0.6297,
    "conformance/ogles/GL/lessThanEqual/lessThanEqual_001_to_008.html": 0.6606,
    "conformance/ogles/GL/log/log_001_to_008.html": 0.6883,
    "conformance/ogles/GL/log/log_009_to_012.html": 0.6374,
    "conformance/ogles/GL/log2/log2_001_to_008.html": 0.6688,
    "conformance/ogles/GL/log2/log2_009_to_012.html": 0.6483,
    "conformance/ogles/GL/mat/mat_001_to_008.html": 0.4625,
    "conformance/ogles/GL/mat/mat_009_to_016.html": 0.4032,
    "conformance/ogles/GL/mat/mat_017_to_024.html": 0.4216,
    "conformance/ogles/GL/mat/mat_025_to_032.html": 0.5948,
    "conformance/ogles/GL/mat/mat_033_to_040.html": 0.5106,
    "conformance/ogles/GL/mat/mat_041_to_046.html": 0.3594,
    "conformance/ogles/GL/mat3/mat3_001_to_006.html": 0.4093,
    "conformance/ogles/GL/matrixCompMult/matrixCompMult_001_to_004.html": 0.4232,
    "conformance/ogles/GL/max/max_001_to_006.html": 0.5428,
    "conformance/ogles/GL/min/min_001_to_006.html": 0.4848,
    "conformance/ogles/GL/mix/mix_001_to_006.html": 0.5095,
    "conformance/ogles/GL/mod/mod_001_to_008.html": 0.6801,
    "conformance/ogles/GL/normalize/normalize_001_to_006.html": 0.5893,
    "conformance/ogles/GL/not/not_001_to_004.html": 0.3747,
    "conformance/ogles/GL/notEqual/notEqual_001_to_008.html": 0.6123,
    "conformance/ogles/GL/notEqual/notEqual_009_to_012.html": 0.3838,
    "conformance/ogles/GL/operators/operators_001_to_008.html": 0.42,
    "conformance/ogles/GL/operators/operators_009_to_016.html": 0.4489,
    "conformance/ogles/GL/operators/operators_017_to_024.html": 0.448,
    "conformance/ogles/GL/operators/operators_025_to_026.html": 0.1959,
    "conformance/ogles/GL/pow/pow_001_to_008.html": 0.5726,
    "conformance/ogles/GL/pow/pow_009_to_016.html": 0.6822,
    "conformance/ogles/GL/pow/pow_017_to_024.html": 0.8106,
    "conformance/ogles/GL/radians/radians_001_to_006.html": 0.517,
    "conformance/ogles/GL/reflect/reflect_001_to_006.html": 0.6848,
    "conformance/ogles/GL/refract/refract_001_to_006.html": 0.6511,
    "conformance/ogles/GL/sign/sign_001_to_006.html": 0.5036,
    "conformance/ogles/GL/sin/sin_001_to_006.html": 0.8107,
    "conformance/ogles/GL/smoothstep/smoothstep_001_to_006.html": 0.5291,
    "conformance/ogles/GL/sqrt/sqrt_001_to_006.html": 0.5246,
    "conformance/ogles/GL/step/step_001_to_006.html": 0.488,
    "conformance/ogles/GL/struct/struct_001_to_008.html": 0.5712,
    "conformance/ogles/GL/struct/struct_009_to_016.html": 0.6034,
    "conformance/ogles/GL/struct/struct_017_to_024.html": 0.6115,
    "conformance/ogles/GL/struct/struct_025_to_032.html": 0.6058,
    "conformance/ogles/GL/struct/struct_033_to_040.html": 0.5976,
    "conformance/ogles/GL/struct/struct_041_to_048.html": 0.5945,
    "conformance/ogles/GL/struct/struct_049_to_056.html": 0.5835,
    "conformance/ogles/GL/swizzlers/swizzlers_001_to_008.html": 0.6727,
    "conformance/ogles/GL/swizzlers/swizzlers_009_to_016.html": 0.6755,
    "conformance/ogles/GL/swizzlers/swizzlers_017_to_024.html": 0.6865,
    "conformance/ogles/GL/swizzlers/swizzlers_025_to_032.html": 0.6892,
    "conformance/ogles/GL/swizzlers/swizzlers_033_to_040.html": 0.673,
    "conformance/ogles/GL/swizzlers/swizzlers_041_to_048.html": 0.649,
    "conformance/ogles/GL/swizzlers/swizzlers_049_to_056.html": 0.6496,
    "conformance/ogles/GL/swizzlers/swizzlers_057_to_064.html": 0.6438,
    "conformance/ogles/GL/swizzlers/swizzlers_065_to_072.html": 0.6512,
    "conformance/ogles/GL/swizzlers/swizzlers_073_to_080.html": 0.6646,
    "conformance/ogles/GL/swizzlers/swizzlers_081_to_088.html": 0.6263,
    "conformance/ogles/GL/swizzlers/swizzlers_089_to_096.html": 0.6466,
    "conformance/ogles/GL/swizzlers/swizzlers_097_to_104.html": 0.636,
    "conformance/ogles/GL/swizzlers/swizzlers_105_to_112.html": 0.6047,
    "conformance/ogles/GL/swizzlers/swizzlers_113_to_120.html": 0.6485,
    "conformance/ogles/GL/tan/tan_001_to_006.html": 0.5487,
    "conformance/ogles/GL/vec/vec_001_to_008.html": 0.4314,
    "conformance/ogles/GL/vec/vec_009_to_016.html": 0.4061,
    "conformance/ogles/GL/vec/vec_017_to_018.html": 0.1726,
    "conformance/ogles/GL/vec3/vec3_001_to_008.html": 0.3749,
    "conformance/programs/get-active-test.html": 0.1198,
    "conformance/programs/gl-bind-attrib-location-long-names-test.html": 0.0862,
    "conformance/programs/gl-bind-attrib-location-test.html": 0.0891,
    "conformance/programs/gl-get-active-attribute.html": 0.0978,
    "conformance/programs/gl-get-active-uniform.html": 0.1564,
    "conformance/programs/gl-getshadersource.html": 0.0648,
    "conformance/programs/gl-shader-test.html": 0.0923,
    "conformance/programs/invalid-UTF-16.html": 0.0915,
    "conformance/programs/program-handling.html": 0.0856,
    "conformance/programs/program-infolog.html": 0.0809,
    "conformance/programs/program-test.html": 0.1439,
    "conformance/programs/use-program-crash-with-discard-in-fragment-shader.html": 0.0782,
    "conformance/reading/fbo-remains-unchanged-after-read-pixels.html": 0.0926,
    "conformance/reading/read-pixels-pack-alignment.html": 0.143,
    "conformance/reading/read-pixels-test.html": 0.3358,
    "conformance/renderbuffers/depth-renderbuffer-initialization.html": 0.1724,
    "conformance/renderbuffers/feedback-loop.html": 0.0874,
    "conformance/renderbuffers/framebuffer-object-attachment.html": 0.2273,
    "conformance/renderbuffers/framebuffer-state-restoration.html": 0.2515,
    "conformance/renderbuffers/framebuffer-test.html": 0.0939,
    "conformance/renderbuffers/renderbuffer-initialization.html": 0.1425,
    "conformance/renderbuffers/stencil-renderbuffer-initialization.html": 0.1511,
    "conformance/rendering/bind-framebuffer-flush-bug.html": 0.1096,
    "conformance/rendering/blending.html": 0.1539,
    "conformance/rendering/canvas-alpha-bug.html": 0.1104,
    "conformance/rendering/clear-after-copyTexImage2D.html": 0.0881,
    "conformance/rendering/clear-default-framebuffer-with-scissor-test.html": 0.0979,
    "conformance/rendering/clipping-wide-points.html": 0.0899,
    "conformance/rendering/color-mask-preserved-during-implicit-clears.html": 1.5484,
    "conformance/rendering/color-mask-should-not-affect-antialiased-framebuffer-resolution.html": 0.0755,
    "conformance/rendering/culling.html": 0.1339,
    "conformance/rendering/default-texture-draw-bug.html": 0.1991,
    "conformance/rendering/draw-arrays-out-of-bounds.html": 0.1545,
    "conformance/rendering/draw-elements-out-of-bounds.html": 0.1492,
    "conformance/rendering/draw-webgl-to-canvas-2d-repeatedly.html": 0.1419,
    "conformance/rendering/draw-with-changing-start-vertex-bug.html": 0.129,
    "conformance/rendering/framebuffer-switch.html": 0.1166,
    "conformance/rendering/framebuffer-texture-clear.html": 0.2238,
    "conformance/rendering/framebuffer-texture-switch.html": 0.1537,
    "conformance/rendering/gl-clear.html": 0.1171,
    "conformance/rendering/gl-drawarrays.html": 0.124,
    "conformance/rendering/gl-drawelements.html": 0.1419,
    "conformance/rendering/gl-scissor-canvas-dimensions.html": 0.1083,
    "conformance/rendering/gl-scissor-fbo-test.html": 0.2253,
    "conformance/rendering/gl-scissor-test.html": 0.2226,
    "conformance/rendering/gl-viewport-test.html": 0.2084,
    "conformance/rendering/line-loop-tri-fan.html": 0.0942,
    "conformance/rendering/line-rendering-quality.html": 0.1292,
    "conformance/rendering/many-draw-calls.html": 1.8454,
    "conformance/rendering/more-than-65536-indices.html": 0.1543,
    "conformance/rendering/multisample-corruption.html": 2.3606,
    "conformance/rendering/negative-one-index.html": 0.1175,
    "conformance/rendering/out-of-bounds-array-buffers.html": 0.1297,
    "conformance/rendering/out-of-bounds-index-buffers.html": 0.1358,
    "conformance/rendering/point-no-attributes.html": 0.1264,
    "conformance/rendering/point-size.html": 0.1512,
    "conformance/rendering/point-specific-shader-variables.html": 0.1068,
    "conformance/rendering/point-with-gl-pointcoord-in-fragment-shader.html": 0.0931,
    "conformance/rendering/polygon-offset.html": 0.1129,
    "conformance/rendering/preservedrawingbuffer-leak.html": 0.1411,
    "conformance/rendering/rendering-sampling-feedback-loop.html": 0.1236,
    "conformance/rendering/rendering-stencil-large-viewport.html": 0.1486,
    "conformance/rendering/scissor-rect-repeated-rendering.html": 0.233,
    "conformance/rendering/simple.html": 0.1267,
    "conformance/rendering/texture-switch-performance.html": 0,
    "conformance/rendering/triangle.html": 0.1017,
    "conformance/state/fb-attach-implicit-target-assignment.html": 0.0973,
    "conformance/state/gl-enable-enum-test.html": 0.1845,
    "conformance/state/gl-enum-tests.html": 0.1289,
    "conformance/state/gl-get-calls.html": 0.1137,
    "conformance/state/gl-geterror.html": 0.1348,
    "conformance/state/gl-getstring.html": 0.0983,
    "conformance/state/gl-initial-state.html": 0.1039,
    "conformance/state/gl-object-get-calls.html": 9.396,
    "conformance/state/state-uneffected-after-compositing.html": 0.2733,
    "conformance/textures/canvas/tex-2d-alpha-alpha-unsigned_byte.html": 0.6029,
    "conformance/textures/canvas/tex-2d-luminance-luminance-unsigned_byte.html": 0.6042,
    "conformance/textures/canvas/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.645,
    "conformance/textures/canvas/tex-2d-rgb-rgb-unsigned_byte.html": 1.187,
    "conformance/textures/canvas/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.5355,
    "conformance/textures/canvas/tex-2d-rgba-rgba-unsigned_byte.html": 1.2624,
    "conformance/textures/canvas/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.529,
    "conformance/textures/canvas/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.5126,
    "conformance/textures/canvas_sub_rectangle/tex-2d-alpha-alpha-unsigned_byte.html": 0.089,
    "conformance/textures/canvas_sub_rectangle/tex-2d-luminance-luminance-unsigned_byte.html": 0.0904,
    "conformance/textures/canvas_sub_rectangle/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.0775,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgb-rgb-unsigned_byte.html": 0.106,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.0955,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgba-rgba-unsigned_byte.html": 0.0758,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.1025,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.0901,
    "conformance/textures/image/tex-2d-alpha-alpha-unsigned_byte.html": 0.1682,
    "conformance/textures/image/tex-2d-luminance-luminance-unsigned_byte.html": 0.3082,
    "conformance/textures/image/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.2462,
    "conformance/textures/image/tex-2d-rgb-rgb-unsigned_byte.html": 0.2065,
    "conformance/textures/image/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.2262,
    "conformance/textures/image/tex-2d-rgba-rgba-unsigned_byte.html": 0.2138,
    "conformance/textures/image/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.2108,
    "conformance/textures/image/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.2386,
    "conformance/textures/image_bitmap_from_blob/tex-2d-alpha-alpha-unsigned_byte.html": 0.4583,
    "conformance/textures/image_bitmap_from_blob/tex-2d-luminance-luminance-unsigned_byte.html": 0.443,
    "conformance/textures/image_bitmap_from_blob/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.3343,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgb-rgb-unsigned_byte.html": 0.429,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.3194,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgba-rgba-unsigned_byte.html": 0.3571,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.6153,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.5531,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-alpha-alpha-unsigned_byte.html": 0.3985,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-luminance-luminance-unsigned_byte.html": 0.3729,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.3849,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgb-rgb-unsigned_byte.html": 0.4009,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.3568,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgba-rgba-unsigned_byte.html": 0.379,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.3751,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.3298,
    "conformance/textures/image_bitmap_from_image/tex-2d-alpha-alpha-unsigned_byte.html": 0.1989,
    "conformance/textures/image_bitmap_from_image/tex-2d-luminance-luminance-unsigned_byte.html": 0.1814,
    "conformance/textures/image_bitmap_from_image/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.2229,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgb-rgb-unsigned_byte.html": 0.1798,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.2188,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgba-rgba-unsigned_byte.html": 0.2074,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.2107,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.2073,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-alpha-alpha-unsigned_byte.html": 0.1774,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-luminance-luminance-unsigned_byte.html": 0.2057,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.2057,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgb-rgb-unsigned_byte.html": 0.2096,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.1954,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgba-rgba-unsigned_byte.html": 0.2007,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.1948,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.1856,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-alpha-alpha-unsigned_byte.html": 0.1948,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-luminance-luminance-unsigned_byte.html": 0.1784,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.2069,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgb-rgb-unsigned_byte.html": 0.1794,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.1859,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgba-rgba-unsigned_byte.html": 0.1955,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.1812,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.1907,
    "conformance/textures/image_bitmap_from_video/tex-2d-alpha-alpha-unsigned_byte.html": 0.7223,
    "conformance/textures/image_bitmap_from_video/tex-2d-luminance-luminance-unsigned_byte.html": 0.7336,
    "conformance/textures/image_bitmap_from_video/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.4832,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgb-rgb-unsigned_byte.html": 0.61,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.6054,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgba-rgba-unsigned_byte.html": 0.6227,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.5129,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.5902,
    "conformance/textures/image_data/tex-2d-alpha-alpha-unsigned_byte.html": 0.2035,
    "conformance/textures/image_data/tex-2d-luminance-luminance-unsigned_byte.html": 0.2204,
    "conformance/textures/image_data/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.2045,
    "conformance/textures/image_data/tex-2d-rgb-rgb-unsigned_byte.html": 0.2045,
    "conformance/textures/image_data/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.2324,
    "conformance/textures/image_data/tex-2d-rgba-rgba-unsigned_byte.html": 0.2235,
    "conformance/textures/image_data/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.2131,
    "conformance/textures/image_data/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.2391,
    "conformance/textures/misc/canvas-teximage-after-multiple-drawimages.html": 0.1303,
    "conformance/textures/misc/compressed-tex-image.html": 0.1525,
    "conformance/textures/misc/copy-tex-image-2d-formats.html": 0.1453,
    "conformance/textures/misc/copy-tex-image-and-sub-image-2d.html": 0.3584,
    "conformance/textures/misc/copy-tex-image-crash.html": 0.0918,
    "conformance/textures/misc/copytexsubimage2d-large-partial-copy-corruption.html": 0.2101,
    "conformance/textures/misc/copytexsubimage2d-subrects.html": 0.0724,
    "conformance/textures/misc/cube-incomplete-fbo.html": 0.1317,
    "conformance/textures/misc/cube-map-uploads-out-of-order.html": 1.1436,
    "conformance/textures/misc/default-texture.html": 0.1227,
    "conformance/textures/misc/exif-orientation.html": 0.6812,
    "conformance/textures/misc/format-filterable-renderable.html": 0.1154,
    "conformance/textures/misc/gl-get-tex-parameter.html": 0.1186,
    "conformance/textures/misc/gl-pixelstorei.html": 0.0936,
    "conformance/textures/misc/gl-teximage.html": 0.2024,
    "conformance/textures/misc/mipmap-fbo.html": 0.1135,
    "conformance/textures/misc/origin-clean-conformance-offscreencanvas.html": 0.142,
    "conformance/textures/misc/origin-clean-conformance.html": 0.1564,
    "conformance/textures/misc/png-image-types.html": 0.3033,
    "conformance/textures/misc/tex-image-and-sub-image-2d-with-array-buffer-view.html": 1.5603,
    "conformance/textures/misc/tex-image-and-uniform-binding-bugs.html": 0.0838,
    "conformance/textures/misc/tex-image-canvas-corruption.html": 0.1828,
    "conformance/textures/misc/tex-image-webgl.html": 0.1204,
    "conformance/textures/misc/tex-image-with-format-and-type.html": 0.1888,
    "conformance/textures/misc/tex-image-with-invalid-data.html": 0.0948,
    "conformance/textures/misc/tex-input-validation.html": 0.1672,
    "conformance/textures/misc/tex-sub-image-2d-bad-args.html": 0.1274,
    "conformance/textures/misc/tex-sub-image-2d.html": 0.1512,
    "conformance/textures/misc/tex-video-using-tex-unit-non-zero.html": 0.5967,
    "conformance/textures/misc/texparameter-test.html": 0.1157,
    "conformance/textures/misc/texture-active-bind-2.html": 0.1131,
    "conformance/textures/misc/texture-active-bind.html": 0.1246,
    "conformance/textures/misc/texture-attachment-formats.html": 0.1137,
    "conformance/textures/misc/texture-clear.html": 0.1137,
    "conformance/textures/misc/texture-complete.html": 0.1012,
    "conformance/textures/misc/texture-copying-and-deletion.html": 1.0824,
    "conformance/textures/misc/texture-copying-feedback-loops.html": 0.1012,
    "conformance/textures/misc/texture-corner-case-videos.html": 0.1621,
    "conformance/textures/misc/texture-cube-as-fbo-attachment.html": 0.1152,
    "conformance/textures/misc/texture-draw-with-2d-and-cube.html": 0.1072,
    "conformance/textures/misc/texture-fakeblack.html": 0.0902,
    "conformance/textures/misc/texture-formats-test.html": 0.1044,
    "conformance/textures/misc/texture-hd-dpi.html": 0.126,
    "conformance/textures/misc/texture-mips.html": 0.1431,
    "conformance/textures/misc/texture-npot-video.html": 0.1144,
    "conformance/textures/misc/texture-npot.html": 0.1347,
    "conformance/textures/misc/texture-size-cube-maps.html": 0.3809,
    "conformance/textures/misc/texture-size-limit.html": 0.2257,
    "conformance/textures/misc/texture-size.html": 0.5392,
    "conformance/textures/misc/texture-srgb-upload.html": 0.2296,
    "conformance/textures/misc/texture-sub-image-cube-maps.html": 0.1606,
    "conformance/textures/misc/texture-transparent-pixels-initialized.html": 0.0967,
    "conformance/textures/misc/texture-upload-cube-maps.html": 0.0698,
    "conformance/textures/misc/texture-upload-size.html": 0.4555,
    "conformance/textures/misc/texture-video-transparent.html": 2.2735,
    "conformance/textures/misc/texture-with-flip-y-and-premultiply-alpha.html": 0.1057,
    "conformance/textures/misc/upload-from-srcset-with-empty-data.html": 0.0946,
    "conformance/textures/misc/video-rotation.html": 0.5945,
    "conformance/textures/svg_image/tex-2d-alpha-alpha-unsigned_byte.html": 0.1377,
    "conformance/textures/svg_image/tex-2d-luminance-luminance-unsigned_byte.html": 0.1934,
    "conformance/textures/svg_image/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.1639,
    "conformance/textures/svg_image/tex-2d-rgb-rgb-unsigned_byte.html": 0.2088,
    "conformance/textures/svg_image/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.1199,
    "conformance/textures/svg_image/tex-2d-rgba-rgba-unsigned_byte.html": 0.2102,
    "conformance/textures/svg_image/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.2012,
    "conformance/textures/svg_image/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.1433,
    "conformance/textures/video/tex-2d-alpha-alpha-unsigned_byte.html": 1.0095,
    "conformance/textures/video/tex-2d-luminance-luminance-unsigned_byte.html": 0.9627,
    "conformance/textures/video/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 1.186,
    "conformance/textures/video/tex-2d-rgb-rgb-unsigned_byte.html": 1.0785,
    "conformance/textures/video/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 1.0183,
    "conformance/textures/video/tex-2d-rgba-rgba-unsigned_byte.html": 0.9611,
    "conformance/textures/video/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 1.0095,
    "conformance/textures/video/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.9995,
    "conformance/textures/webgl_canvas/tex-2d-alpha-alpha-unsigned_byte.html": 0.8802,
    "conformance/textures/webgl_canvas/tex-2d-luminance-luminance-unsigned_byte.html": 0.572,
    "conformance/textures/webgl_canvas/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.7783,
    "conformance/textures/webgl_canvas/tex-2d-rgb-rgb-unsigned_byte.html": 1.4828,
    "conformance/textures/webgl_canvas/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.6768,
    "conformance/textures/webgl_canvas/tex-2d-rgba-rgba-unsigned_byte.html": 1.5226,
    "conformance/textures/webgl_canvas/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.5775,
    "conformance/textures/webgl_canvas/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.5725,
    "conformance/typedarrays/array-buffer-crash.html": 0.0608,
    "conformance/typedarrays/array-buffer-view-crash.html": 0.1476,
    "conformance/typedarrays/array-large-array-tests.html": 0.2237,
    "conformance/typedarrays/array-unit-tests.html": 0.0828,
    "conformance/typedarrays/data-view-crash.html": 0.0838,
    "conformance/typedarrays/data-view-test.html": 0.1129,
    "conformance/typedarrays/typed-arrays-in-workers.html": 0.1827,
    "conformance/uniforms/gl-get-uniform-non-current-program.html": 0.1007,
    "conformance/uniforms/gl-uniform-arrays.html": 0.1715,
    "conformance/uniforms/gl-uniform-bool.html": 0.0718,
    "conformance/uniforms/gl-uniformmatrix4fv.html": 0.1077,
    "conformance/uniforms/gl-unknown-uniform.html": 0.1002,
    "conformance/uniforms/no-over-optimization-on-uniform-array-00.html": 0.7636,
    "conformance/uniforms/no-over-optimization-on-uniform-array-01.html": 0.767,
    "conformance/uniforms/no-over-optimization-on-uniform-array-02.html": 0.8816,
    "conformance/uniforms/no-over-optimization-on-uniform-array-03.html": 0.9001,
    "conformance/uniforms/no-over-optimization-on-uniform-array-04.html": 0.8875,
    "conformance/uniforms/no-over-optimization-on-uniform-array-05.html": 0.8578,
    "conformance/uniforms/no-over-optimization-on-uniform-array-06.html": 0.8656,
    "conformance/uniforms/no-over-optimization-on-uniform-array-07.html": 0.8037,
    "conformance/uniforms/no-over-optimization-on-uniform-array-08.html": 0.8719,
    "conformance/uniforms/no-over-optimization-on-uniform-array-09.html": 0.8401,
    "conformance/uniforms/no-over-optimization-on-uniform-array-10.html": 0.8403,
    "conformance/uniforms/no-over-optimization-on-uniform-array-11.html": 0.829,
    "conformance/uniforms/no-over-optimization-on-uniform-array-12.html": 0.8327,
    "conformance/uniforms/no-over-optimization-on-uniform-array-13.html": 0.8127,
    "conformance/uniforms/no-over-optimization-on-uniform-array-14.html": 0.8064,
    "conformance/uniforms/no-over-optimization-on-uniform-array-15.html": 0.8276,
    "conformance/uniforms/no-over-optimization-on-uniform-array-16.html": 0.8428,
    "conformance/uniforms/no-over-optimization-on-uniform-array-17.html": 0.8092,
    "conformance/uniforms/null-uniform-location.html": 0.1338,
    "conformance/uniforms/out-of-bounds-uniform-array-access.html": 1.9115,
    "conformance/uniforms/uniform-default-values.html": 1.446,
    "conformance/uniforms/uniform-location.html": 0.152,
    "conformance/uniforms/uniform-samplers-test.html": 18.3754,
    "conformance/uniforms/uniform-values-per-program.html": 0.7485,
    "deqp/data/gles2/shaders/conditionals.html": 0.8346,
    "deqp/data/gles2/shaders/constant_expressions.html": 0.7041,
    "deqp/data/gles2/shaders/constants.html": 1.5122,
    "deqp/data/gles2/shaders/conversions_matrix_combine.html": 2.9328,
    "deqp/data/gles2/shaders/conversions_matrix_to_matrix.html": 0.8277,
    "deqp/data/gles2/shaders/conversions_scalar_to_matrix.html": 0.9471,
    "deqp/data/gles2/shaders/conversions_scalar_to_scalar.html": 0.8682,
    "deqp/data/gles2/shaders/conversions_scalar_to_vector.html": 2.4403,
    "deqp/data/gles2/shaders/conversions_vector_combine.html": 9.061,
    "deqp/data/gles2/shaders/conversions_vector_illegal.html": 0.4938,
    "deqp/data/gles2/shaders/conversions_vector_to_scalar.html": 2.0934,
    "deqp/data/gles2/shaders/conversions_vector_to_vector.html": 3.7428,
    "deqp/data/gles2/shaders/declarations.html": 0.1616,
    "deqp/data/gles2/shaders/fragdata.html": 0.1872,
    "deqp/data/gles2/shaders/functions.html": 5.9362,
    "deqp/data/gles2/shaders/invalid_texture_functions.html": 0.1764,
    "deqp/data/gles2/shaders/keywords.html": 1.5143,
    "deqp/data/gles2/shaders/linkage.html": 1.3198,
    "deqp/data/gles2/shaders/preprocessor.html": 6.6624,
    "deqp/data/gles2/shaders/qualification_order.html": 0.4264,
    "deqp/data/gles2/shaders/reserved_operators.html": 0.2964,
    "deqp/data/gles2/shaders/scoping.html": 1.0935,
    "deqp/data/gles2/shaders/swizzles_bvec2.html": 1.6422,
    "deqp/data/gles2/shaders/swizzles_bvec3.html": 3.146,
    "deqp/data/gles2/shaders/swizzles_bvec4.html": 3.4657,
    "deqp/data/gles2/shaders/swizzles_ivec2.html": 1.6057,
    "deqp/data/gles2/shaders/swizzles_ivec3.html": 2.9345,
    "deqp/data/gles2/shaders/swizzles_ivec4.html": 3.7279,
    "deqp/data/gles2/shaders/swizzles_vec2.html": 1.6262,
    "deqp/data/gles2/shaders/swizzles_vec3.html": 2.8102,
    "deqp/data/gles2/shaders/swizzles_vec4.html": 3.8633
  }
}