summaryrefslogtreecommitdiffstats
path: root/third_party/webkit/PerformanceTests/StyleBench/index.html
blob: 83dc2345a1f9d822b8306d3f5e851c763a268d78 (plain)
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
<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>StyleBench 0.3</title>
    <link rel="stylesheet" href="resources/main.css">
    <script src="resources/main.js" defer></script>
    <script src="resources/benchmark-runner.js" defer></script>
    <script src="resources/benchmark-report.js" defer></script>
    <script src="../resources/statistics.js" defer></script>
    <script src="resources/style-bench.js" defer></script>
    <script src="resources/tests.js" defer></script>
</head>
<body>
<main>
    <a id="logo-link" href="javascript:showHome()"></a>

    <section id="home" class="selected">
        <p>
            StyleBench is a browser benchmark that measures the performance of the style resolution mechanism.
        </p>
        <p id="screen-size-warning"><strong>
            Your browser window is too small. For most accurate results, please make the viewport size at least 850px by 650px.<br>
            It's currently <span id="screen-size"></span>.
        </strong>
        <div class="buttons">
            <button onclick="startTest()">Start Test</button>
        </div>
        <p class="show-about"><a href="javascript:showAbout()">About StyleBench</a></p>
    </section>

    <section id="running">
        <div id="testContainer"></div>
        <div id="progress"><div id="progress-completed"></div></div>
        <div id="info"></div>
    </section>

    <section id="summarized-results">
        <h1>Runs / Minute</h1>
        <div class="gauge"><div class="window"><div class="needle"></div></div></div>
        <hr>
        <div id="result-number"></div>
        <div id="confidence-number"></div>
        <div class="buttons">
            <button onclick="startTest()">Test Again</button>
            <button class="show-details" onclick="showResultDetails()">Details</button>
        </div>
    </section>

    <section id="detailed-results">
        <h1>Detailed Results</h1>
        <table class="results-table"></table>
        <table class="results-table"></table>
        <div class="arithmetic-mean"><label>Arithmetic Mean:</label><span id="results-with-statistics"></span></div>
        <div class="buttons">
            <button onclick="startTest()">Test Again</button>
            <button id="show-summary" onclick="showResultsSummary()">Summary</button>
        </div>
        <p class="show-about"><a href="javascript:showAbout()">About StyleBench</a></p>
    </section>

    <section id="about">
        <h1>About StyleBench</h1>

        <p>StyleBench tests performance of CSS style resolution and style invalidation. Each test run creates a large document and a large stylesheet using varying settings. It then applies a series of mutations to the document and measures the time to update the rendering. The resulting layout is simple, most of the pressure is on selector matching.</p>

        <p>StyleBench uses Speedometer framework for UI and measurements.</p>
    </section>
    <section id="local-message">
        <h2>Access via 'file:' protocol</h1>
        <p>To run locally, launch a web server under PerformanceTests directory with 'python -m SimpleHTTPServer 8001' and access via <a href="http://localhost:8001/StyleBench">http://localhost:8001/StyleBench</a>.
        </p>
        <p>
            Individual tests (without measurement) can also be run locally by opening <a href="resources/style-bench.html">PerformanceTests/StyleBench/resources/style-bench.html</a>
        </p>
    </section>
</main>
</body>
</html>