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

Side by Side Diff: PerformanceTests/htmloptionsinherit.html

Issue 350803003: Perf check for bug (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update metric Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/core/css/resolver/StyleResolver.cpp » ('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 <script src="resources/runner.js"></script>
2
3 <style>
4 option {
5 background: inherit;
6 }
7 </style>
8
9 <object>
10 <progress>
11 <option id="element"></option>
12 </progress>
13 </object>
14
15 <script>
16 requestAnimationFrame(function() {
17 requestAnimationFrame(function() {
18 PerfTestRunner.measureTime({
19 run: function() {
20 var start = Date.now();
21 if (element.getAttribute('badThings') == 'haveHappened')
22 while (Date.now() < start + 100);
23 },
24 });
25 });
26 });
27 </script>
OLDNEW
« no previous file with comments | « no previous file | Source/core/css/resolver/StyleResolver.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698