| 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>
|
|
|