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

Side by Side Diff: chrome/test/data/devtools/extensions/simple_content_script/simple_content_script.js

Issue 295020: DevTools: test that content scripts are visible in the debugger scripts list (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 function buttonClickListener(e) {
2 var localVar = e + 'a';
3 debugger;
4 }
5
6
7 var button = document.getElementById('btn');
8 if (button) {
9 button.addEventListener('click', buttonClickListener, false);
10 }
OLDNEW
« no previous file with comments | « chrome/test/data/devtools/extensions/simple_content_script/manifest.json ('k') | webkit/glue/devtools/js/tests.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698