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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/console/console-format-es6-symbols-error.html

Issue 2982263002: DevTools: prepare migration for a batch of console tests (Closed)
Patch Set: update test expects Created 3 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
OLDNEW
1 <html> 1 <!-- NOTE: Test is being migrated (see crbug.com/667560) !--><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 logSymbolToConsoleWithError() 7 function logSymbolToConsoleWithError()
8 { 8 {
9 Symbol.prototype.toString = function (arg) { throw new Error(); }; 9 Symbol.prototype.toString = function (arg) { throw new Error(); };
10 var smb = Symbol(); 10 var smb = Symbol();
11 console.log(smb); 11 console.log(smb);
(...skipping 11 matching lines...) Expand all
23 } 23 }
24 </script> 24 </script>
25 </head> 25 </head>
26 26
27 <body onload="runTest()"> 27 <body onload="runTest()">
28 <p> 28 <p>
29 Tests that console properly displays information about ES6 Symbols. 29 Tests that console properly displays information about ES6 Symbols.
30 </p> 30 </p>
31 </body> 31 </body>
32 </html> 32 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698