Rubber-stamped by Brady Eidson.
[webbrowser.git] / LayoutTests / inspector / timeline-enum-stability.html
blob5553b16a2eab9a13b5698922c90e927b4da438aa
1 <html>
2 <head>
3 <script src="inspector-test.js"></script>
4 <script>
6 function dumpTimelineAgentRecordType(types) {
7 var prefix = "WebInspector.TimelineAgent.RecordType.";
8 for (prop in types) {
9 output(prefix + prop + " : " + types[prop]);
11 notifyDone();
14 function doit()
16 evaluateInWebInspector("WebInspector.TimelineAgent.RecordType", dumpTimelineAgentRecordType);
19 </script>
20 </head>
22 <body onload="onload()">
23 <p>
24 Check to see that TimelineAgent record types are stable.
25 </p>
27 <p>
28 Applications outside of WebKit depend on the stability of the mapping of
29 these types to these specific values.
30 </p>
32 </body>
33 </html>