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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger/properties-special.html

Issue 2122423002: [DevTools] Remove functionDetails from protocol.json (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove-generator-details-from-protocol
Patch Set: a Created 4 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 <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 src="../../../http/tests/inspector/elements-test.js"></script> 5 <script src="../../../http/tests/inspector/elements-test.js"></script>
6 <script> 6 <script>
7 7
8 function onload() 8 function onload()
9 { 9 {
10 console.dir(Object(true)); 10 console.dir(Object(true));
11 console.dir((function(a,b) { return a + b; })); 11 console.dir((function(a,b) { return a + b; }));
12 console.dir((function(a,b) { return a + b; }).bind({}, 2)); 12 console.dir((function(a,b) { return a + b; }).bind({}, 2));
13 console.dir((function*() { yeild [1,2,3] }));
13 runTest(); 14 runTest();
14 } 15 }
15 16
16 function test() 17 function test()
17 { 18 {
18 InspectorTest.expandConsoleMessages(dumpConsoleMessages); 19 InspectorTest.expandConsoleMessages(dumpConsoleMessages);
19 20
20 function dumpConsoleMessages() 21 function dumpConsoleMessages()
21 { 22 {
22 InspectorTest.dumpConsoleMessages(false, false, InspectorTest.textConten tWithLineBreaks); 23 InspectorTest.dumpConsoleMessages(false, false, InspectorTest.textConten tWithLineBreaks);
23 InspectorTest.completeTest(); 24 InspectorTest.completeTest();
24 } 25 }
25 } 26 }
26 27
27 </script> 28 </script>
28 </head> 29 </head>
29 <body onload="onload()"> 30 <body onload="onload()">
30 <p>Tests how debugger presents special properties of closures, bound functions a nd object wrappers.</p> 31 <p>Tests how debugger presents special properties of closures, bound functions a nd object wrappers.</p>
31 </body> 32 </body>
32 </html> 33 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698