| <!-- |
| Copyright (C) 2011 Apple Inc. All rights reserved. |
| |
| Redistribution and use in source and binary forms, with or without |
| modification, are permitted provided that the following conditions |
| are met: |
| 1. Redistributions of source code must retain the above copyright |
| notice, this list of conditions and the following disclaimer. |
| 2. Redistributions in binary form must reproduce the above copyright |
| notice, this list of conditions and the following disclaimer in the |
| documentation and/or other materials provided with the distribution. |
| |
| THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' |
| AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, |
| THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS |
| BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
| THE POSSIBILITY OF SUCH DAMAGE. |
| --> |
| |
| <!DOCTYPE html> |
| <html> |
| <head> |
| <title>Leaks Viewer</title> |
| <link rel=stylesheet href="https://svn.webkit.org/repository/webkit/!svn/bc/80565/trunk/Source/WebCore/inspector/front-end/inspector.css"> |
| <link rel=stylesheet href=LeaksViewer.css> |
| |
| <script src=WebInspectorShims.js></script> |
| |
| <!-- The order here matches inspector.html. --> |
| <script src="https://svn.webkit.org/repository/webkit/!svn/bc/80565/trunk/Source/WebCore/inspector/front-end/utilities.js"></script> |
| <script src="https://svn.webkit.org/repository/webkit/!svn/bc/80565/trunk/Source/WebCore/inspector/front-end/treeoutline.js"></script> |
| <script src="https://svn.webkit.org/repository/webkit/!svn/bc/80565/trunk/Source/WebCore/inspector/front-end/Object.js"></script> |
| <script src="https://svn.webkit.org/repository/webkit/!svn/bc/80565/trunk/Source/WebCore/inspector/front-end/View.js"></script> |
| <script src="https://svn.webkit.org/repository/webkit/!svn/bc/80565/trunk/Source/WebCore/inspector/front-end/Panel.js"></script> |
| <script src="https://svn.webkit.org/repository/webkit/!svn/bc/80565/trunk/Source/WebCore/inspector/front-end/DataGrid.js"></script> |
| <script src="https://svn.webkit.org/repository/webkit/!svn/bc/80565/trunk/Source/WebCore/inspector/front-end/SidebarTreeElement.js"></script> |
| <script src="https://svn.webkit.org/repository/webkit/!svn/bc/80565/trunk/Source/WebCore/inspector/front-end/StatusBarButton.js"></script> |
| <script src="https://svn.webkit.org/repository/webkit/!svn/bc/80565/trunk/Source/WebCore/inspector/front-end/ProfilesPanel.js"></script> |
| <script src="https://svn.webkit.org/repository/webkit/!svn/bc/80565/trunk/Source/WebCore/inspector/front-end/ProfileDataGridTree.js"></script> |
| <script src="https://svn.webkit.org/repository/webkit/!svn/bc/80565/trunk/Source/WebCore/inspector/front-end/BottomUpProfileDataGridTree.js"></script> |
| <script src="https://svn.webkit.org/repository/webkit/!svn/bc/80565/trunk/Source/WebCore/inspector/front-end/TopDownProfileDataGridTree.js"></script> |
| <script src="https://svn.webkit.org/repository/webkit/!svn/bc/80565/trunk/Source/WebCore/inspector/front-end/ProfileView.js"></script> |
| |
| <script> |
| // Now that all the Inspector files have loaded we can apply our monkey patches. |
| monkeyPatchInspectorObjects(); |
| </script> |
| |
| <script src=LeaksLoader.js></script> |
| <script src=LeaksParser.js></script> |
| <script src=LeaksParserImpl.js></script> |
| <script src=LeaksViewer.js></script> |
| <script src=RecentBuildsLoader.js></script> |
| <script src=Utilities.js></script> |
| </head> |
| <body> |
| <div id=main-panels></div> |
| <div id=main-status-bar class=status-bar> |
| <div id=loading-indicator class=hidden> |
| <img id=spinner src="https://svn.webkit.org/repository/webkit/!svn/bc/80565/trunk/Source/WebCore/inspector/front-end/Images/spinner.gif"> |
| <span id=loading-indicator-label>Loading…</span> |
| </div> |
| </div> |
| <div id=url-prompt-container class=hidden> |
| <div id=url-prompt> |
| <p>Enter the URL of a build results page or leaks file:</p> |
| <input id=url type=url><button onclick='LeaksViewer.urlPromptButtonClicked(event)'>Fetch leaks</button> |
| <p>Or choose a recent build:</p> |
| <div id=recent-builds-container> |
| <p id=recent-builds-loading-indicator>Loading builds…</p> |
| </div> |
| </div> |
| </div> |
| </body> |
| </html> |