WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
37516
Re-write testProfilerTab to match the new profiler implementation
https://bugs.webkit.org/show_bug.cgi?id=37516
Summary
Re-write testProfilerTab to match the new profiler implementation
Mikhail Naganov
Reported
2010-04-13 12:34:27 PDT
Here is how js_page.html will look like: <html> <head> <script> function fib(n) { return n < 2 ? 1 : fib(n - 1) + fib(n - 2); } function eternal_fib() { console.profile(); for (var i = 0; i < 50; ++i) { fib(20); } console.profileEnd(); } function load() { // Let the page do initial rendering, then go. setTimeout(eternal_fib, 200); } </script> </head> <body onload="load()"> </body> </html>
Attachments
proposed patch
(3.47 KB, patch)
2010-04-13 12:37 PDT
,
Mikhail Naganov
no flags
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Mikhail Naganov
Comment 1
2010-04-13 12:37:03 PDT
Created
attachment 53272
[details]
proposed patch
WebKit Commit Bot
Comment 2
2010-04-14 01:51:41 PDT
Comment on
attachment 53272
[details]
proposed patch Clearing flags on attachment: 53272 Committed
r57571
: <
http://trac.webkit.org/changeset/57571
>
WebKit Commit Bot
Comment 3
2010-04-14 01:51:45 PDT
All reviewed patches have been landed. Closing bug.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug