-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathhtml-distribution.html
2432 lines (2227 loc) · 175 KB
/
html-distribution.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="generator" content="webpagetest-mapper 0.0.1" />
<meta name="description" content="WebPageTest result distribution for " />
<title>WebPageTest result distribution</title>
<style>
html, body, div, h1, h2, h3, p, a, abbr, ol, ul, li, section, code
{
margin: 0;
padding: 0;
border: none;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
html, body
{
height: 100%;
}
html
{
font-size: 100.01%;
}
body
{
padding: 0 64px;
font-family: helvetica, arial, sans-serif;
font-size: 62.5%;
line-height: 1.5;
color: #333;
}
.content
{
max-width: 720px;
}
h1, h2, h3
{
display: block;
font-weight: bold;
}
h1, h2
{
letter-spacing: 1px;
}
h1
{
margin: 2em 0 1em;
font-size: 3.2em;
}
h2
{
margin: 1em 0 0.5em;
font-size: 2.4em;
}
h3
{
margin: 0 0 0.4em;
font-size: 1.4em;
}
p, ol, ul
{
margin-bottom: 1.4em;
font-size: 1.6em;
}
ol, ul
{
margin-left: 3em;
}
ol li
{
list-style-type: decimal;
}
ul li
{
list-style-type: circle;
}
a
{
color: #378bb2;
text-decoration: none;
cursor: pointer;
}
a:hover, a:active
{
color: #b22e40;
}
code
{
display: inline-block;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 0.2em 0.25em 0 0.25em;
border-radius: 3px;
background-color: #e5dfd6;
font-family: Consolas, Monaco, Menlo, "Lucida Console", monospace;
font-size: 1em;
}
.section-svg
{
float: left;
}
svg
{
margin: 1.2em 0;
page-break-inside: avoid;
}
.chart-axis
{
stroke-width: 2;
stroke: #000;
}
.chart-bar-less
{
fill: #00b225;
}
.chart-bar-greater
{
fill: #b22e40;
}
.chart-label
{
font-size: 1.4em;
}
.chart-bar-label
{
fill: #fff;
}
.chart-label-lower
{
display: none;
}
.chart-range:first-child .chart-label-lower
{
display: inline;
}
.visually-hidden
{
width: 1px;
height: 1px;
position: absolute;
clip: rect(1px 1px 1px 1px);
clip: rect(1px, 1px, 1px, 1px);
overflow: hidden;
}
abbr[title]
{
border-bottom: 1px dotted #333;
}
</style>
</head>
<body>
<div class="content">
<h1>WebPageTest result distribution</h1>
<ul>
<li><a href="#20150304-171825-01-nature-homepage">Nature homepage</a></li>
<li><a href="#20150304-171825-02-nature-article">Nature article</a></li>
<li><a href="#20150304-171825-03-science-homepage">Science homepage</a></li>
<li><a href="#20150304-171825-04-science-article">Science article</a></li>
</ul>
<section id="20150304-171825-01-nature-homepage">
<h2>Nature homepage</h2>
<section>
<h2>First view</h2>
<section class="section-svg">
<h3>First-byte time</h3>
<svg width="360px" height="180px">
<title>First-byte time histogram for Nature homepage first view</title>
<g transform="translate(30, 0)">
<g transform="translate(0, 144)" class="chart-range">
<title>251 to 300</title>
<rect width="47.666666666666664px" height="12px" class="chart-bar chart-bar-less" />
<text text-anchor="middle" x="23.833333333333332" y="-2px" class="chart-label">1</text>
<g transform="translate(0, 28)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">251</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">300</text>
</g>
</g>
<g transform="translate(49.666666666666664, 0)" class="chart-range">
<title>300 to 349</title>
<rect width="47.666666666666664px" height="156px" class="chart-bar chart-bar-less" />
<text text-anchor="middle" x="23.833333333333332" y="16px" class="chart-label chart-bar-label">13</text>
<g transform="translate(0, 172)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">300</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">349</text>
</g>
</g>
<g transform="translate(99.33333333333333, 48)" class="chart-range">
<title>349 to 398</title>
<rect width="47.666666666666664px" height="108px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="23.833333333333332" y="16px" class="chart-label chart-bar-label">9</text>
<g transform="translate(0, 124)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">349</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">398</text>
</g>
</g>
<g transform="translate(149, 144)" class="chart-range">
<title>398 to 447</title>
<rect width="47.666666666666664px" height="12px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="23.833333333333332" y="-2px" class="chart-label">1</text>
<g transform="translate(0, 28)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">398</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">447</text>
</g>
</g>
<g transform="translate(198.66666666666666, 156)" class="chart-range">
<title>447 to 496</title>
<rect width="47.666666666666664px" height="0px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="23.833333333333332" y="-2px" class="chart-label">0</text>
<g transform="translate(0, 16)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">447</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">496</text>
</g>
</g>
<g transform="translate(248.33333333333331, 144)" class="chart-range">
<title>496 to 545</title>
<rect width="47.666666666666664px" height="12px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="23.833333333333332" y="-2px" class="chart-label">1</text>
<g transform="translate(0, 28)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">496</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">545</text>
</g>
</g>
<line x1="-3px" y1="0" x2="-3px" y2="160px" class="chart-axis" />
<g transform="translate(-2, 159)">
<line x1="0" y1="0" x2="298px" y2="0" class="chart-axis" />
</g>
</g>
</svg>
<!-- TODO: scatterplots -->
</section>
<section class="section-svg">
<h3>Start-render time</h3>
<svg width="360px" height="180px">
<title>Start-render time histogram for Nature homepage first view</title>
<g transform="translate(30, 0)">
<g transform="translate(0, 86.66666666666667)" class="chart-range">
<title>2,251 to 2,481</title>
<rect width="72.5px" height="69.33333333333333px" class="chart-bar chart-bar-less" />
<text text-anchor="middle" x="36.25" y="16px" class="chart-label chart-bar-label">4</text>
<g transform="translate(0, 85.33333333333333)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">2,251</text>
<text text-anchor="middle" x="72.5px" y="2px" class="chart-label">2,481</text>
</g>
</g>
<g transform="translate(74.5, 34.66666666666667)" class="chart-range">
<title>2,481 to 2,712</title>
<rect width="72.5px" height="121.33333333333333px" class="chart-bar chart-bar-less" />
<text text-anchor="middle" x="36.25" y="16px" class="chart-label chart-bar-label">7</text>
<g transform="translate(0, 137.33333333333331)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">2,481</text>
<text text-anchor="middle" x="72.5px" y="2px" class="chart-label">2,712</text>
</g>
</g>
<g transform="translate(149, 0)" class="chart-range">
<title>2,712 to 2,943</title>
<rect width="72.5px" height="156px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="36.25" y="16px" class="chart-label chart-bar-label">9</text>
<g transform="translate(0, 172)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">2,712</text>
<text text-anchor="middle" x="72.5px" y="2px" class="chart-label">2,943</text>
</g>
</g>
<g transform="translate(223.5, 69.33333333333334)" class="chart-range">
<title>2,943 to 3,173</title>
<rect width="72.5px" height="86.66666666666666px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="36.25" y="16px" class="chart-label chart-bar-label">5</text>
<g transform="translate(0, 102.66666666666666)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">2,943</text>
<text text-anchor="middle" x="72.5px" y="2px" class="chart-label">3,173</text>
</g>
</g>
<line x1="-3px" y1="0" x2="-3px" y2="160px" class="chart-axis" />
<g transform="translate(-2, 159)">
<line x1="0" y1="0" x2="298px" y2="0" class="chart-axis" />
</g>
</g>
</svg>
<!-- TODO: scatterplots -->
</section>
<section class="section-svg">
<h3>Load event time</h3>
<svg width="360px" height="180px">
<title>Load event time histogram for Nature homepage first view</title>
<g transform="translate(30, 0)">
<g transform="translate(0, 69.33333333333334)" class="chart-range">
<title>3,519 to 4,086</title>
<rect width="57.6px" height="86.66666666666666px" class="chart-bar chart-bar-less" />
<text text-anchor="middle" x="28.8" y="16px" class="chart-label chart-bar-label">5</text>
<g transform="translate(0, 102.66666666666666)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">3,519</text>
<text text-anchor="middle" x="57.6px" y="2px" class="chart-label">4,086</text>
</g>
</g>
<g transform="translate(59.6, 34.66666666666667)" class="chart-range">
<title>4,086 to 4,653</title>
<rect width="57.6px" height="121.33333333333333px" class="chart-bar chart-bar-less" />
<text text-anchor="middle" x="28.8" y="16px" class="chart-label chart-bar-label">7</text>
<g transform="translate(0, 137.33333333333331)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">4,086</text>
<text text-anchor="middle" x="57.6px" y="2px" class="chart-label">4,653</text>
</g>
</g>
<g transform="translate(119.2, 0)" class="chart-range">
<title>4,653 to 5,220</title>
<rect width="57.6px" height="156px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="28.8" y="16px" class="chart-label chart-bar-label">9</text>
<g transform="translate(0, 172)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">4,653</text>
<text text-anchor="middle" x="57.6px" y="2px" class="chart-label">5,220</text>
</g>
</g>
<g transform="translate(178.8, 104)" class="chart-range">
<title>5,220 to 5,788</title>
<rect width="57.6px" height="52px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="28.8" y="16px" class="chart-label chart-bar-label">3</text>
<g transform="translate(0, 68)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">5,220</text>
<text text-anchor="middle" x="57.6px" y="2px" class="chart-label">5,788</text>
</g>
</g>
<g transform="translate(238.4, 138.66666666666666)" class="chart-range">
<title>5,788 to 6,355</title>
<rect width="57.6px" height="17.333333333333332px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="28.8" y="-2px" class="chart-label">1</text>
<g transform="translate(0, 33.33333333333333)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">5,788</text>
<text text-anchor="middle" x="57.6px" y="2px" class="chart-label">6,355</text>
</g>
</g>
<line x1="-3px" y1="0" x2="-3px" y2="160px" class="chart-axis" />
<g transform="translate(-2, 159)">
<line x1="0" y1="0" x2="298px" y2="0" class="chart-axis" />
</g>
</g>
</svg>
<!-- TODO: scatterplots -->
</section>
<section class="section-svg">
<h3>Speed index</h3>
<svg width="360px" height="180px">
<title>Speed index histogram for Nature homepage first view</title>
<g transform="translate(30, 0)">
<g transform="translate(0, 86.66666666666667)" class="chart-range">
<title>2,258 to 2,486</title>
<rect width="72.5px" height="69.33333333333333px" class="chart-bar chart-bar-less" />
<text text-anchor="middle" x="36.25" y="16px" class="chart-label chart-bar-label">4</text>
<g transform="translate(0, 85.33333333333333)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">2,258</text>
<text text-anchor="middle" x="72.5px" y="2px" class="chart-label">2,486</text>
</g>
</g>
<g transform="translate(74.5, 0)" class="chart-range">
<title>2,486 to 2,714</title>
<rect width="72.5px" height="156px" class="chart-bar chart-bar-less" />
<text text-anchor="middle" x="36.25" y="16px" class="chart-label chart-bar-label">9</text>
<g transform="translate(0, 172)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">2,486</text>
<text text-anchor="middle" x="72.5px" y="2px" class="chart-label">2,714</text>
</g>
</g>
<g transform="translate(149, 34.66666666666667)" class="chart-range">
<title>2,714 to 2,942</title>
<rect width="72.5px" height="121.33333333333333px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="36.25" y="16px" class="chart-label chart-bar-label">7</text>
<g transform="translate(0, 137.33333333333331)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">2,714</text>
<text text-anchor="middle" x="72.5px" y="2px" class="chart-label">2,942</text>
</g>
</g>
<g transform="translate(223.5, 69.33333333333334)" class="chart-range">
<title>2,942 to 3,170</title>
<rect width="72.5px" height="86.66666666666666px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="36.25" y="16px" class="chart-label chart-bar-label">5</text>
<g transform="translate(0, 102.66666666666666)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">2,942</text>
<text text-anchor="middle" x="72.5px" y="2px" class="chart-label">3,170</text>
</g>
</g>
<line x1="-3px" y1="0" x2="-3px" y2="160px" class="chart-axis" />
<g transform="translate(-2, 159)">
<line x1="0" y1="0" x2="298px" y2="0" class="chart-axis" />
</g>
</g>
</svg>
<!-- TODO: scatterplots -->
</section>
</section>
<section>
<h2>Repeat view</h2>
<section class="section-svg">
<h3>First-byte time</h3>
<svg width="360px" height="180px">
<title>First-byte time histogram for Nature homepage repeat view</title>
<g transform="translate(30, 0)">
<g transform="translate(0, 0)" class="chart-range">
<title>84 to 365</title>
<rect width="47.666666666666664px" height="156px" class="chart-bar chart-bar-less" />
<text text-anchor="middle" x="23.833333333333332" y="16px" class="chart-label chart-bar-label">23</text>
<g transform="translate(0, 172)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">84</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">365</text>
</g>
</g>
<g transform="translate(49.666666666666664, 149.2173913043478)" class="chart-range">
<title>365 to 647</title>
<rect width="47.666666666666664px" height="6.782608695652174px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="23.833333333333332" y="-2px" class="chart-label">1</text>
<g transform="translate(0, 22.782608695652172)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">365</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">647</text>
</g>
</g>
<g transform="translate(99.33333333333333, 156)" class="chart-range">
<title>647 to 928</title>
<rect width="47.666666666666664px" height="0px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="23.833333333333332" y="-2px" class="chart-label">0</text>
<g transform="translate(0, 16)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">647</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">928</text>
</g>
</g>
<g transform="translate(149, 156)" class="chart-range">
<title>928 to 1,209</title>
<rect width="47.666666666666664px" height="0px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="23.833333333333332" y="-2px" class="chart-label">0</text>
<g transform="translate(0, 16)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">928</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">1,209</text>
</g>
</g>
<g transform="translate(198.66666666666666, 156)" class="chart-range">
<title>1,209 to 1,490</title>
<rect width="47.666666666666664px" height="0px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="23.833333333333332" y="-2px" class="chart-label">0</text>
<g transform="translate(0, 16)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">1,209</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">1,490</text>
</g>
</g>
<g transform="translate(248.33333333333331, 149.2173913043478)" class="chart-range">
<title>1,490 to 1,771</title>
<rect width="47.666666666666664px" height="6.782608695652174px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="23.833333333333332" y="-2px" class="chart-label">1</text>
<g transform="translate(0, 22.782608695652172)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">1,490</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">1,771</text>
</g>
</g>
<line x1="-3px" y1="0" x2="-3px" y2="160px" class="chart-axis" />
<g transform="translate(-2, 159)">
<line x1="0" y1="0" x2="298px" y2="0" class="chart-axis" />
</g>
</g>
</svg>
<!-- TODO: scatterplots -->
</section>
<section class="section-svg">
<h3>Start-render time</h3>
<svg width="360px" height="180px">
<title>Start-render time histogram for Nature homepage repeat view</title>
<g transform="translate(30, 0)">
<g transform="translate(0, 0)" class="chart-range">
<title>1,084 to 1,346</title>
<rect width="47.666666666666664px" height="156px" class="chart-bar chart-bar-less" />
<text text-anchor="middle" x="23.833333333333332" y="16px" class="chart-label chart-bar-label">21</text>
<g transform="translate(0, 172)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">1,084</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">1,346</text>
</g>
</g>
<g transform="translate(49.666666666666664, 141.14285714285714)" class="chart-range">
<title>1,346 to 1,607</title>
<rect width="47.666666666666664px" height="14.857142857142858px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="23.833333333333332" y="-2px" class="chart-label">2</text>
<g transform="translate(0, 30.857142857142858)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">1,346</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">1,607</text>
</g>
</g>
<g transform="translate(99.33333333333333, 148.57142857142858)" class="chart-range">
<title>1,607 to 1,869</title>
<rect width="47.666666666666664px" height="7.428571428571429px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="23.833333333333332" y="-2px" class="chart-label">1</text>
<g transform="translate(0, 23.42857142857143)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">1,607</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">1,869</text>
</g>
</g>
<g transform="translate(149, 156)" class="chart-range">
<title>1,869 to 2,130</title>
<rect width="47.666666666666664px" height="0px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="23.833333333333332" y="-2px" class="chart-label">0</text>
<g transform="translate(0, 16)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">1,869</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">2,130</text>
</g>
</g>
<g transform="translate(198.66666666666666, 156)" class="chart-range">
<title>2,130 to 2,392</title>
<rect width="47.666666666666664px" height="0px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="23.833333333333332" y="-2px" class="chart-label">0</text>
<g transform="translate(0, 16)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">2,130</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">2,392</text>
</g>
</g>
<g transform="translate(248.33333333333331, 148.57142857142858)" class="chart-range">
<title>2,392 to 2,653</title>
<rect width="47.666666666666664px" height="7.428571428571429px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="23.833333333333332" y="-2px" class="chart-label">1</text>
<g transform="translate(0, 23.42857142857143)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">2,392</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">2,653</text>
</g>
</g>
<line x1="-3px" y1="0" x2="-3px" y2="160px" class="chart-axis" />
<g transform="translate(-2, 159)">
<line x1="0" y1="0" x2="298px" y2="0" class="chart-axis" />
</g>
</g>
</svg>
<!-- TODO: scatterplots -->
</section>
<section class="section-svg">
<h3>Load event time</h3>
<svg width="360px" height="180px">
<title>Load event time histogram for Nature homepage repeat view</title>
<g transform="translate(30, 0)">
<g transform="translate(0, 120)" class="chart-range">
<title>3,179 to 3,946</title>
<rect width="57.6px" height="36px" class="chart-bar chart-bar-less" />
<text text-anchor="middle" x="28.8" y="16px" class="chart-label chart-bar-label">3</text>
<g transform="translate(0, 52)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">3,179</text>
<text text-anchor="middle" x="57.6px" y="2px" class="chart-label">3,946</text>
</g>
</g>
<g transform="translate(59.6, 0)" class="chart-range">
<title>3,946 to 4,713</title>
<rect width="57.6px" height="156px" class="chart-bar chart-bar-less" />
<text text-anchor="middle" x="28.8" y="16px" class="chart-label chart-bar-label">13</text>
<g transform="translate(0, 172)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">3,946</text>
<text text-anchor="middle" x="57.6px" y="2px" class="chart-label">4,713</text>
</g>
</g>
<g transform="translate(119.2, 96)" class="chart-range">
<title>4,713 to 5,480</title>
<rect width="57.6px" height="60px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="28.8" y="16px" class="chart-label chart-bar-label">5</text>
<g transform="translate(0, 76)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">4,713</text>
<text text-anchor="middle" x="57.6px" y="2px" class="chart-label">5,480</text>
</g>
</g>
<g transform="translate(178.8, 120)" class="chart-range">
<title>5,480 to 6,247</title>
<rect width="57.6px" height="36px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="28.8" y="16px" class="chart-label chart-bar-label">3</text>
<g transform="translate(0, 52)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">5,480</text>
<text text-anchor="middle" x="57.6px" y="2px" class="chart-label">6,247</text>
</g>
</g>
<g transform="translate(238.4, 144)" class="chart-range">
<title>6,247 to 7,015</title>
<rect width="57.6px" height="12px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="28.8" y="-2px" class="chart-label">1</text>
<g transform="translate(0, 28)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">6,247</text>
<text text-anchor="middle" x="57.6px" y="2px" class="chart-label">7,015</text>
</g>
</g>
<line x1="-3px" y1="0" x2="-3px" y2="160px" class="chart-axis" />
<g transform="translate(-2, 159)">
<line x1="0" y1="0" x2="298px" y2="0" class="chart-axis" />
</g>
</g>
</svg>
<!-- TODO: scatterplots -->
</section>
<section class="section-svg">
<h3>Speed index</h3>
<svg width="360px" height="180px">
<title>Speed index histogram for Nature homepage repeat view</title>
<g transform="translate(30, 0)">
<g transform="translate(0, 0)" class="chart-range">
<title>1,093 to 1,353</title>
<rect width="47.666666666666664px" height="156px" class="chart-bar chart-bar-less" />
<text text-anchor="middle" x="23.833333333333332" y="16px" class="chart-label chart-bar-label">21</text>
<g transform="translate(0, 172)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">1,093</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">1,353</text>
</g>
</g>
<g transform="translate(49.666666666666664, 141.14285714285714)" class="chart-range">
<title>1,353 to 1,613</title>
<rect width="47.666666666666664px" height="14.857142857142858px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="23.833333333333332" y="-2px" class="chart-label">2</text>
<g transform="translate(0, 30.857142857142858)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">1,353</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">1,613</text>
</g>
</g>
<g transform="translate(99.33333333333333, 148.57142857142858)" class="chart-range">
<title>1,613 to 1,874</title>
<rect width="47.666666666666664px" height="7.428571428571429px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="23.833333333333332" y="-2px" class="chart-label">1</text>
<g transform="translate(0, 23.42857142857143)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">1,613</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">1,874</text>
</g>
</g>
<g transform="translate(149, 156)" class="chart-range">
<title>1,874 to 2,134</title>
<rect width="47.666666666666664px" height="0px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="23.833333333333332" y="-2px" class="chart-label">0</text>
<g transform="translate(0, 16)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">1,874</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">2,134</text>
</g>
</g>
<g transform="translate(198.66666666666666, 156)" class="chart-range">
<title>2,134 to 2,395</title>
<rect width="47.666666666666664px" height="0px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="23.833333333333332" y="-2px" class="chart-label">0</text>
<g transform="translate(0, 16)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">2,134</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">2,395</text>
</g>
</g>
<g transform="translate(248.33333333333331, 148.57142857142858)" class="chart-range">
<title>2,395 to 2,655</title>
<rect width="47.666666666666664px" height="7.428571428571429px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="23.833333333333332" y="-2px" class="chart-label">1</text>
<g transform="translate(0, 23.42857142857143)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">2,395</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">2,655</text>
</g>
</g>
<line x1="-3px" y1="0" x2="-3px" y2="160px" class="chart-axis" />
<g transform="translate(-2, 159)">
<line x1="0" y1="0" x2="298px" y2="0" class="chart-axis" />
</g>
</g>
</svg>
<!-- TODO: scatterplots -->
</section>
</section>
</section>
<section id="20150304-171825-02-nature-article">
<h2>Nature article</h2>
<section>
<h2>First view</h2>
<section class="section-svg">
<h3>First-byte time</h3>
<svg width="360px" height="180px">
<title>First-byte time histogram for Nature article first view</title>
<g transform="translate(30, 0)">
<g transform="translate(0, 0)" class="chart-range">
<title>601 to 1,162</title>
<rect width="57.6px" height="156px" class="chart-bar chart-bar-less" />
<text text-anchor="middle" x="28.8" y="16px" class="chart-label chart-bar-label">16</text>
<g transform="translate(0, 172)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">601</text>
<text text-anchor="middle" x="57.6px" y="2px" class="chart-label">1,162</text>
</g>
</g>
<g transform="translate(59.6, 97.5)" class="chart-range">
<title>1,162 to 1,722</title>
<rect width="57.6px" height="58.5px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="28.8" y="16px" class="chart-label chart-bar-label">6</text>
<g transform="translate(0, 74.5)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">1,162</text>
<text text-anchor="middle" x="57.6px" y="2px" class="chart-label">1,722</text>
</g>
</g>
<g transform="translate(119.2, 146.25)" class="chart-range">
<title>1,722 to 2,283</title>
<rect width="57.6px" height="9.75px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="28.8" y="-2px" class="chart-label">1</text>
<g transform="translate(0, 25.75)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">1,722</text>
<text text-anchor="middle" x="57.6px" y="2px" class="chart-label">2,283</text>
</g>
</g>
<g transform="translate(178.8, 146.25)" class="chart-range">
<title>2,283 to 2,843</title>
<rect width="57.6px" height="9.75px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="28.8" y="-2px" class="chart-label">1</text>
<g transform="translate(0, 25.75)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">2,283</text>
<text text-anchor="middle" x="57.6px" y="2px" class="chart-label">2,843</text>
</g>
</g>
<g transform="translate(238.4, 146.25)" class="chart-range">
<title>2,843 to 3,404</title>
<rect width="57.6px" height="9.75px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="28.8" y="-2px" class="chart-label">1</text>
<g transform="translate(0, 25.75)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">2,843</text>
<text text-anchor="middle" x="57.6px" y="2px" class="chart-label">3,404</text>
</g>
</g>
<line x1="-3px" y1="0" x2="-3px" y2="160px" class="chart-axis" />
<g transform="translate(-2, 159)">
<line x1="0" y1="0" x2="298px" y2="0" class="chart-axis" />
</g>
</g>
</svg>
<!-- TODO: scatterplots -->
</section>
<section class="section-svg">
<h3>Start-render time</h3>
<svg width="360px" height="180px">
<title>Start-render time histogram for Nature article first view</title>
<g transform="translate(30, 0)">
<g transform="translate(0, 145.6)" class="chart-range">
<title>2,262 to 2,839</title>
<rect width="47.666666666666664px" height="10.399999999999999px" class="chart-bar chart-bar-less" />
<text text-anchor="middle" x="23.833333333333332" y="-2px" class="chart-label">1</text>
<g transform="translate(0, 26.4)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">2,262</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">2,839</text>
</g>
</g>
<g transform="translate(49.666666666666664, 0)" class="chart-range">
<title>2,839 to 3,416</title>
<rect width="47.666666666666664px" height="156px" class="chart-bar chart-bar-less" />
<text text-anchor="middle" x="23.833333333333332" y="16px" class="chart-label chart-bar-label">15</text>
<g transform="translate(0, 172)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">2,839</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">3,416</text>
</g>
</g>
<g transform="translate(99.33333333333333, 93.6)" class="chart-range">
<title>3,416 to 3,993</title>
<rect width="47.666666666666664px" height="62.4px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="23.833333333333332" y="16px" class="chart-label chart-bar-label">6</text>
<g transform="translate(0, 78.4)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">3,416</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">3,993</text>
</g>
</g>
<g transform="translate(149, 135.2)" class="chart-range">
<title>3,993 to 4,570</title>
<rect width="47.666666666666664px" height="20.799999999999997px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="23.833333333333332" y="-2px" class="chart-label">2</text>
<g transform="translate(0, 36.8)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">3,993</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">4,570</text>
</g>
</g>
<g transform="translate(198.66666666666666, 156)" class="chart-range">
<title>4,570 to 5,147</title>
<rect width="47.666666666666664px" height="0px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="23.833333333333332" y="-2px" class="chart-label">0</text>
<g transform="translate(0, 16)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">4,570</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">5,147</text>
</g>
</g>
<g transform="translate(248.33333333333331, 145.6)" class="chart-range">
<title>5,147 to 5,724</title>
<rect width="47.666666666666664px" height="10.399999999999999px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="23.833333333333332" y="-2px" class="chart-label">1</text>
<g transform="translate(0, 26.4)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">5,147</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">5,724</text>
</g>
</g>
<line x1="-3px" y1="0" x2="-3px" y2="160px" class="chart-axis" />
<g transform="translate(-2, 159)">
<line x1="0" y1="0" x2="298px" y2="0" class="chart-axis" />
</g>
</g>
</svg>
<!-- TODO: scatterplots -->
</section>
<section class="section-svg">
<h3>Load event time</h3>
<svg width="360px" height="180px">
<title>Load event time histogram for Nature article first view</title>
<g transform="translate(30, 0)">
<g transform="translate(0, 0)" class="chart-range">
<title>-10,245 to 10,395</title>
<rect width="47.666666666666664px" height="156px" class="chart-bar chart-bar-less" />
<text text-anchor="middle" x="23.833333333333332" y="16px" class="chart-label chart-bar-label">24</text>
<g transform="translate(0, 172)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">-10,245</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">10,395</text>
</g>
</g>
<g transform="translate(49.666666666666664, 156)" class="chart-range">
<title>10,395 to 31,034</title>
<rect width="47.666666666666664px" height="0px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="23.833333333333332" y="-2px" class="chart-label">0</text>
<g transform="translate(0, 16)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">10,395</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">31,034</text>
</g>
</g>
<g transform="translate(99.33333333333333, 156)" class="chart-range">
<title>31,034 to 51,673</title>
<rect width="47.666666666666664px" height="0px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="23.833333333333332" y="-2px" class="chart-label">0</text>
<g transform="translate(0, 16)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">31,034</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">51,673</text>
</g>
</g>
<g transform="translate(149, 156)" class="chart-range">
<title>51,673 to 72,313</title>
<rect width="47.666666666666664px" height="0px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="23.833333333333332" y="-2px" class="chart-label">0</text>
<g transform="translate(0, 16)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">51,673</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">72,313</text>
</g>
</g>
<g transform="translate(198.66666666666666, 156)" class="chart-range">
<title>72,313 to 92,952</title>
<rect width="47.666666666666664px" height="0px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="23.833333333333332" y="-2px" class="chart-label">0</text>
<g transform="translate(0, 16)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">72,313</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">92,952</text>
</g>
</g>
<g transform="translate(248.33333333333331, 149.5)" class="chart-range">
<title>92,952 to 113,591</title>
<rect width="47.666666666666664px" height="6.5px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="23.833333333333332" y="-2px" class="chart-label">1</text>
<g transform="translate(0, 22.5)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">92,952</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">113,591</text>
</g>
</g>
<line x1="-3px" y1="0" x2="-3px" y2="160px" class="chart-axis" />
<g transform="translate(-2, 159)">
<line x1="0" y1="0" x2="298px" y2="0" class="chart-axis" />
</g>
</g>
</svg>
<!-- TODO: scatterplots -->
</section>
<section class="section-svg">
<h3>Speed index</h3>
<svg width="360px" height="180px">
<title>Speed index histogram for Nature article first view</title>
<g transform="translate(30, 0)">
<g transform="translate(0, 133.71428571428572)" class="chart-range">
<title>2,622 to 3,178</title>
<rect width="47.666666666666664px" height="22.285714285714285px" class="chart-bar chart-bar-less" />
<text text-anchor="middle" x="23.833333333333332" y="16px" class="chart-label chart-bar-label">2</text>
<g transform="translate(0, 38.285714285714285)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">2,622</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">3,178</text>
</g>
</g>
<g transform="translate(49.666666666666664, 0)" class="chart-range">
<title>3,178 to 3,735</title>
<rect width="47.666666666666664px" height="156px" class="chart-bar chart-bar-less" />
<text text-anchor="middle" x="23.833333333333332" y="16px" class="chart-label chart-bar-label">14</text>
<g transform="translate(0, 172)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">3,178</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">3,735</text>
</g>
</g>
<g transform="translate(99.33333333333333, 89.14285714285714)" class="chart-range">
<title>3,735 to 4,291</title>
<rect width="47.666666666666664px" height="66.85714285714286px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="23.833333333333332" y="16px" class="chart-label chart-bar-label">6</text>
<g transform="translate(0, 82.85714285714286)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">3,735</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">4,291</text>
</g>
</g>
<g transform="translate(149, 133.71428571428572)" class="chart-range">
<title>4,291 to 4,847</title>
<rect width="47.666666666666664px" height="22.285714285714285px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="23.833333333333332" y="16px" class="chart-label chart-bar-label">2</text>
<g transform="translate(0, 38.285714285714285)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">4,291</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">4,847</text>
</g>
</g>
<g transform="translate(198.66666666666666, 156)" class="chart-range">
<title>4,847 to 5,403</title>
<rect width="47.666666666666664px" height="0px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="23.833333333333332" y="-2px" class="chart-label">0</text>
<g transform="translate(0, 16)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">4,847</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">5,403</text>
</g>
</g>
<g transform="translate(248.33333333333331, 144.85714285714286)" class="chart-range">
<title>5,403 to 5,959</title>
<rect width="47.666666666666664px" height="11.142857142857142px" class="chart-bar chart-bar-greater" />
<text text-anchor="middle" x="23.833333333333332" y="-2px" class="chart-label">1</text>
<g transform="translate(0, 27.142857142857142)">
<text text-anchor="middle" x="-1px" y="2px" class="chart-label chart-label-lower">5,403</text>
<text text-anchor="middle" x="47.666666666666664px" y="2px" class="chart-label">5,959</text>
</g>