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

Side by Side Diff: chrome/test/data/devtools/completion_on_pause.html

Issue 6295010: DevTools: re-enable devtools tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed obsolete test data. Created 9 years, 11 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <head>
3 <script>
4
5 function createClosure(p) {
6 var createClosureLocal = 10;
7 return function innerFunction(parameter1) {
8 var closureLocal = createClosureLocal + p + parameter1;
9 debugger;
10 };
11 }
12
13 function callDebugger(a) {
14 var local = a;
15 var local2 = a;
16 var local3 = a;
17 var s = a.name_;
18 debugger;
19 }
20
21 function handleClick() {
22 var self = {
23 field1: {id: 1,
24 name: 'a'},
25 field2: 2,
26 };
27 self.m = createClosure('p value');
28 self.m('closure parameter');
29 }
30 </script>
31 </head>
32 <body>
33 <input type='button' onclick='handleClick()' value='Test'/>
34 </body>
35 </html>
OLDNEW
« no previous file with comments | « chrome/browser/debugger/devtools_sanity_unittest.cc ('k') | chrome/test/data/devtools/console_test_page.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698