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

Unified Diff: LayoutTests/inspector/console/console-memory-equals-console-memory.html

Issue 950343002: Decouple memory() from Console (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: nits Created 5 years, 10 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/inspector/console/console-memory-equals-console-memory.html
diff --git a/LayoutTests/inspector/console/console-eval.html b/LayoutTests/inspector/console/console-memory-equals-console-memory.html
similarity index 68%
copy from LayoutTests/inspector/console/console-eval.html
copy to LayoutTests/inspector/console/console-memory-equals-console-memory.html
index 64a0edbf092e1e4659040f4f6395d7bceca2fc8a..0150d93d3ec883210a0eb4f607bb627800c5f242 100644
--- a/LayoutTests/inspector/console/console-eval.html
+++ b/LayoutTests/inspector/console/console-memory-equals-console-memory.html
@@ -6,21 +6,19 @@
function test()
{
- InspectorTest.evaluateInConsole("1+2", step2);
+ InspectorTest.evaluateInConsole("console.memory === console.memory", step1);
- function step2()
- {
+ function step1() {
InspectorTest.dumpConsoleMessages();
InspectorTest.completeTest();
}
}
-
</script>
</head>
<body onload="runTest()">
<p>
-Tests that simple evaluations may be performed in the console.
+Tests that console.memory is strictly equal to itself.
</p>
</body>

Powered by Google App Engine
This is Rietveld 408576698