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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/console/console-history-contains-requested-text.html

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month 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
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../../http/tests/inspector/inspector-test.js"></script> 3 <script src="../../http/tests/inspector/inspector-test.js"></script>
4 <script src="../../http/tests/inspector/console-test.js"></script> 4 <script src="../../http/tests/inspector/console-test.js"></script>
5 <script> 5 <script>
6 6
7 function test() 7 function test()
8 { 8 {
9 InspectorTest.evaluateInConsole("{a:1, b:2}", step2); 9 InspectorTest.evaluateInConsole("{a:1, b:2}", step2);
10 function step2() 10 function step2()
11 { 11 {
12 var consoleView = WebInspector.ConsoleView.instance(); 12 var consoleView = Console.ConsoleView.instance();
13 InspectorTest.addResult(consoleView._prompt.history().previous()); 13 InspectorTest.addResult(consoleView._prompt.history().previous());
14 InspectorTest.completeTest(); 14 InspectorTest.completeTest();
15 } 15 }
16 } 16 }
17 </script> 17 </script>
18 </head> 18 </head>
19 <body onload="runTest()"> 19 <body onload="runTest()">
20 <p>Tests that expression which is evaluated as Object Literal, is correctly stor ed in console history. (crbug.com/584881)</p> 20 <p>Tests that expression which is evaluated as Object Literal, is correctly stor ed in console history. (crbug.com/584881)</p>
21 </body> 21 </body>
22 </html> 22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698