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

Side by Side Diff: LayoutTests/dart/inspector/scope-variables.html

Issue 18169002: Improve Dart Debugger performance and robustness by creating Dart wrappers using the standard SetNa… (Closed) Base URL: svn://svn.chromium.org/multivm/trunk/webkit
Patch Set: ready for review Created 7 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
OLDNEW
1 <html> 1 <html>
2 <script src="../../http/tests/inspector/inspector-test.js"></script> 2 <script src="../../http/tests/inspector/inspector-test.js"></script>
3 <script src="../../http/tests/inspector/debugger-test.js"></script> 3 <script src="../../http/tests/inspector/debugger-test.js"></script>
4 4
5 <script type="application/dart" src="scope-variables.dart"></script> 5 <script type="application/dart" src="scope-variables.dart"></script>
6 6
7 <script> 7 <script>
8 if (window.navigator.webkitStartDart) 8 if (window.navigator.webkitStartDart)
9 navigator.webkitStartDart(); 9 navigator.webkitStartDart();
10 </script> 10 </script>
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 var section = sections[i]; 74 var section = sections[i];
75 var properties = section.propertiesForTest; 75 var properties = section.propertiesForTest;
76 var contents = InspectorTest.textContentWithLineBreaks(section.eleme nt); 76 var contents = InspectorTest.textContentWithLineBreaks(section.eleme nt);
77 InspectorTest.addResult(contents); 77 InspectorTest.addResult(contents);
78 } 78 }
79 } 79 }
80 }; 80 };
81 </script> 81 </script>
82 82
83 <body onload="runTest()"> 83 <body onload="runTest()">
84 <div id="example_div">Example div</div>
84 </body> 85 </body>
85 </html> 86 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698