| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #import <Cocoa/Cocoa.h> | 5 #import <Cocoa/Cocoa.h> |
| 6 #include <sys/stat.h> | 6 #include <sys/stat.h> |
| 7 | 7 |
| 8 #include "webkit/tools/test_shell/test_shell.h" | 8 #include "webkit/tools/test_shell/test_shell.h" |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 web_prefs_->default_font_size = 16; | 182 web_prefs_->default_font_size = 16; |
| 183 web_prefs_->default_fixed_font_size = 13; | 183 web_prefs_->default_fixed_font_size = 13; |
| 184 web_prefs_->minimum_font_size = 1; | 184 web_prefs_->minimum_font_size = 1; |
| 185 web_prefs_->minimum_logical_font_size = 9; | 185 web_prefs_->minimum_logical_font_size = 9; |
| 186 web_prefs_->javascript_can_open_windows_automatically = true; | 186 web_prefs_->javascript_can_open_windows_automatically = true; |
| 187 web_prefs_->dom_paste_enabled = true; | 187 web_prefs_->dom_paste_enabled = true; |
| 188 web_prefs_->developer_extras_enabled = interactive_; | 188 web_prefs_->developer_extras_enabled = interactive_; |
| 189 web_prefs_->shrinks_standalone_images_to_fit = false; | 189 web_prefs_->shrinks_standalone_images_to_fit = false; |
| 190 web_prefs_->uses_universal_detector = false; | 190 web_prefs_->uses_universal_detector = false; |
| 191 web_prefs_->text_areas_are_resizable = false; | 191 web_prefs_->text_areas_are_resizable = false; |
| 192 web_prefs_->dashboard_compatibility_mode = false; | |
| 193 web_prefs_->java_enabled = true; | 192 web_prefs_->java_enabled = true; |
| 194 } | 193 } |
| 195 } | 194 } |
| 196 | 195 |
| 197 // static | 196 // static |
| 198 void TestShell::ShutdownTestShell() { | 197 void TestShell::ShutdownTestShell() { |
| 199 delete window_list_; | 198 delete window_list_; |
| 200 delete TestShell::web_prefs_; | 199 delete TestShell::web_prefs_; |
| 201 } | 200 } |
| 202 | 201 |
| (...skipping 775 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 978 | 977 |
| 979 @interface DOMElement : NSObject | 978 @interface DOMElement : NSObject |
| 980 @end | 979 @end |
| 981 @implementation DOMElement | 980 @implementation DOMElement |
| 982 @end | 981 @end |
| 983 | 982 |
| 984 @interface DOMCSSStyleDeclaration : NSObject | 983 @interface DOMCSSStyleDeclaration : NSObject |
| 985 @end | 984 @end |
| 986 @implementation DOMCSSStyleDeclaration | 985 @implementation DOMCSSStyleDeclaration |
| 987 @end | 986 @end |
| OLD | NEW |