Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(79)

Side by Side Diff: third_party/WebKit/PerformanceTests/Paint/complex-content-slow-scroll.html

Issue 2723243002: Add several tough paint performance tests (Closed)
Patch Set: Minimize tests Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/PerformanceTests/Paint/containment-resize.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 #container {
4 overflow: auto;
5 width: 600px;
6 height: 500px;
7 }
8 </style>
9 <div id="container">
10 <div id="template">
11 <h1><span>Sample</"span> Title<span><span> <a href=#>link1</a></span><span> <a href=#>link2</a></span></span></h1>
12 <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>
13 <div><span>Note</span>
14 <p>Lorem ipsum dolor sit amet, <span>consectetur adipiscing elit</span>, s ed do eiusmod tempor <a href=#>incididunt ut labore</a> et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco <span><span>laboris n isi ut aliquip</span> ex ea commodo consequat</span>. Duis aute irure dolor in r eprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Exc epteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<p>
15 </div>
16 </div>
17 </div>
18 <script src="../resources/runner.js"></script>
19 <script>
20 var cloned = template.cloneNode(true);
21 for (var i = 0; i < 10000; ++i)
22 container.appendChild(cloned.cloneNode(true));
23
24 PerfTestRunner.measureFrameTime({
25 run: function() {
26 container.scrollTop += 20;
27 },
28 });
29 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/PerformanceTests/Paint/containment-resize.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698