Index: chrome/test/data/extensions/error_console/content_script_log_and_runtime_error/content_script.js |
diff --git a/ui/base/cocoa/flipped_view.mm b/chrome/test/data/extensions/error_console/content_script_log_and_runtime_error/content_script.js |
similarity index 59% |
copy from ui/base/cocoa/flipped_view.mm |
copy to chrome/test/data/extensions/error_console/content_script_log_and_runtime_error/content_script.js |
index 57c16477a94b7b30f709bc71abbe10fe009b4ee8..ae581fbbb252c1007778277293a92728d1cbc7bd 100644 |
--- a/ui/base/cocoa/flipped_view.mm |
+++ b/chrome/test/data/extensions/error_console/content_script_log_and_runtime_error/content_script.js |
@@ -2,12 +2,11 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#import "ui/base/cocoa/flipped_view.h" |
- |
-@implementation FlippedView |
- |
-- (BOOL)isFlipped { |
- return YES; |
+function logHelloWorld() { |
+ console.log("Hello, World!"); |
} |
-@end |
+logHelloWorld(); |
+ |
+var bar = undefined; |
+bar.foo = 'baz'; |