1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef COMPONENTS_TEST_RUNNER_TEST_PREFERENCES_H_
6 #define COMPONENTS_TEST_RUNNER_TEST_PREFERENCES_H_
8 #include "components/test_runner/test_runner_export.h"
9 #include "third_party/WebKit/public/platform/WebString.h"
10 #include "third_party/WebKit/public/platform/WebURL.h"
11 #include "third_party/WebKit/public/web/WebSettings.h"
17 namespace test_runner
{
19 struct TEST_RUNNER_EXPORT TestPreferences
{
20 int default_font_size
;
21 int minimum_font_size
;
22 bool dom_paste_allowed
;
23 bool xss_auditor_enabled
;
24 bool allow_display_of_insecure_content
;
25 bool allow_file_access_from_file_urls
;
26 bool allow_running_of_insecure_content
;
27 bool author_and_user_styles_enabled
;
28 blink::WebString default_text_encoding_name
;
29 bool experimental_webgl_enabled
;
30 bool experimental_css_regions_enabled
;
31 bool experimental_css_grid_layout_enabled
;
32 bool java_script_can_access_clipboard
;
33 bool java_script_can_open_windows_automatically
;
34 bool supports_multiple_windows
;
35 bool java_script_enabled
;
36 bool loads_images_automatically
;
37 bool offline_web_application_cache_enabled
;
39 bool allow_universal_access_from_file_urls
;
40 blink::WebSettings::EditingBehavior editing_behavior
;
42 bool hyperlink_auditing_enabled
;
43 bool caret_browsing_enabled
;
44 bool should_respect_image_orientation
;
45 bool asynchronous_spell_checking_enabled
;
46 bool web_security_enabled
;
47 bool disable_reading_from_canvas
;
48 bool strict_mixed_content_checking
;
49 bool strict_powerful_feature_restrictions
;
57 #endif // COMPONENTS_TEST_RUNNER_TEST_PREFERENCES_H_