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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/devtools/completion_on_pause.html
diff --git a/chrome/test/data/devtools/completion_on_pause.html b/chrome/test/data/devtools/completion_on_pause.html
deleted file mode 100644
index c42e8f6c5f714aa70643f4232a78e4e01d0c1116..0000000000000000000000000000000000000000
--- a/chrome/test/data/devtools/completion_on_pause.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<html>
-<head>
-<script>
-
-function createClosure(p) {
- var createClosureLocal = 10;
- return function innerFunction(parameter1) {
- var closureLocal = createClosureLocal + p + parameter1;
- debugger;
- };
-}
-
-function callDebugger(a) {
- var local = a;
- var local2 = a;
- var local3 = a;
- var s = a.name_;
- debugger;
-}
-
-function handleClick() {
- var self = {
- field1: {id: 1,
- name: 'a'},
- field2: 2,
- };
- self.m = createClosure('p value');
- self.m('closure parameter');
-}
-</script>
-</head>
-<body>
-<input type='button' onclick='handleClick()' value='Test'/>
-</body>
-</html>
« 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