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

Unified 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: Code review fixes 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/dart/inspector/scope-variables.html
diff --git a/LayoutTests/dart/inspector/scope-variables.html b/LayoutTests/dart/inspector/scope-variables.html
index 23023a49e067eeec383ee6900c342768d57ac8ac..53fa6ac646e12d4dd36c6f5ab405fc89ef0711c5 100644
--- a/LayoutTests/dart/inspector/scope-variables.html
+++ b/LayoutTests/dart/inspector/scope-variables.html
@@ -10,6 +10,7 @@ if (window.navigator.webkitStartDart)
</script>
<script>
+
function postMessageToDart()
{
window.postMessage('fromJS', '*');
@@ -74,12 +75,13 @@ function test()
var section = sections[i];
var properties = section.propertiesForTest;
var contents = InspectorTest.textContentWithLineBreaks(section.element);
- InspectorTest.addResult(contents);
+ InspectorTest.addResult(contents.replace(/\(file:\/\/[^)]*\)/g, "(SOURCE_LOCATION)"));
}
}
};
</script>
<body onload="runTest()">
+ <div id="example_div">Example div</div>
</body>
</html>
« no previous file with comments | « LayoutTests/dart/inspector/scope-variables.dart ('k') | LayoutTests/dart/inspector/scope-variables-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698