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

Side by Side Diff: Source/testing/runner/WebPreferences.cpp

Issue 66383005: Remove the concept of user stylesheets. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix WebFrameCSSCallbackTest tests Created 7 years, 1 month 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
« no previous file with comments | « Source/testing/runner/TestRunner.cpp ('k') | Source/web/WebDocument.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 experimentalCSSRegionsEnabled = true; 48 experimentalCSSRegionsEnabled = true;
49 experimentalCSSGridLayoutEnabled = true; 49 experimentalCSSGridLayoutEnabled = true;
50 javaEnabled = false; 50 javaEnabled = false;
51 javaScriptCanAccessClipboard = true; 51 javaScriptCanAccessClipboard = true;
52 javaScriptCanOpenWindowsAutomatically = true; 52 javaScriptCanOpenWindowsAutomatically = true;
53 supportsMultipleWindows = true; 53 supportsMultipleWindows = true;
54 javaScriptEnabled = true; 54 javaScriptEnabled = true;
55 loadsImagesAutomatically = true; 55 loadsImagesAutomatically = true;
56 offlineWebApplicationCacheEnabled = true; 56 offlineWebApplicationCacheEnabled = true;
57 pluginsEnabled = true; 57 pluginsEnabled = true;
58 userStyleSheetLocation = WebURL();
59 caretBrowsingEnabled = false; 58 caretBrowsingEnabled = false;
60 59
61 // Allow those layout tests running as local files, i.e. under 60 // Allow those layout tests running as local files, i.e. under
62 // LayoutTests/http/tests/local, to access http server. 61 // LayoutTests/http/tests/local, to access http server.
63 allowUniversalAccessFromFileURLs = true; 62 allowUniversalAccessFromFileURLs = true;
64 63
65 #ifdef __APPLE__ 64 #ifdef __APPLE__
66 editingBehavior = WebSettings::EditingBehaviorMac; 65 editingBehavior = WebSettings::EditingBehaviorMac;
67 #else 66 #else
68 editingBehavior = WebSettings::EditingBehaviorWin; 67 editingBehavior = WebSettings::EditingBehaviorWin;
69 #endif 68 #endif
70 69
71 tabsToLinks = false; 70 tabsToLinks = false;
72 hyperlinkAuditingEnabled = false; 71 hyperlinkAuditingEnabled = false;
73 cssCustomFilterEnabled = false; 72 cssCustomFilterEnabled = false;
74 shouldRespectImageOrientation = false; 73 shouldRespectImageOrientation = false;
75 asynchronousSpellCheckingEnabled = false; 74 asynchronousSpellCheckingEnabled = false;
76 } 75 }
77 76
78 } 77 }
OLDNEW
« no previous file with comments | « Source/testing/runner/TestRunner.cpp ('k') | Source/web/WebDocument.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698