| Index: third_party/WebKit/PerformanceTests/Layout/long-line-nowrap.html
|
| diff --git a/third_party/WebKit/PerformanceTests/Layout/long-line-nowrap.html b/third_party/WebKit/PerformanceTests/Layout/long-line-nowrap.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a9ab1889faaa1191368b48ab9e605767fe62f4b1
|
| --- /dev/null
|
| +++ b/third_party/WebKit/PerformanceTests/Layout/long-line-nowrap.html
|
| @@ -0,0 +1,22 @@
|
| +<!DOCTYPE html>
|
| +<script src="../resources/runner.js"></script>
|
| +<script src="resources/line-layout-perf-test.js"></script>
|
| +<style>
|
| +#container {
|
| + width: 400px;
|
| + white-space: nowrap;
|
| +}
|
| +</style>
|
| +<body onload="run()">
|
| +<div id="container"></div>
|
| +<script>
|
| +'use strict';
|
| +
|
| +function run() {
|
| + var test = new LineLayoutPerfTest(container);
|
| + test.spanCount = 0;
|
| + test.lineCount = 10000;
|
| + test.run('Measures performance of "white-space: nowrap".');
|
| +}
|
| +</script>
|
| +</body>
|
|
|