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

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: 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
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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 experimentalCSSRegionsEnabled = true; 49 experimentalCSSRegionsEnabled = true;
50 experimentalCSSGridLayoutEnabled = true; 50 experimentalCSSGridLayoutEnabled = true;
51 javaEnabled = false; 51 javaEnabled = false;
52 javaScriptCanAccessClipboard = true; 52 javaScriptCanAccessClipboard = true;
53 javaScriptCanOpenWindowsAutomatically = true; 53 javaScriptCanOpenWindowsAutomatically = true;
54 supportsMultipleWindows = true; 54 supportsMultipleWindows = true;
55 javaScriptEnabled = true; 55 javaScriptEnabled = true;
56 loadsImagesAutomatically = true; 56 loadsImagesAutomatically = true;
57 offlineWebApplicationCacheEnabled = true; 57 offlineWebApplicationCacheEnabled = true;
58 pluginsEnabled = true; 58 pluginsEnabled = true;
59 userStyleSheetLocation = WebURL();
60 caretBrowsingEnabled = false; 59 caretBrowsingEnabled = false;
61 60
62 // Allow those layout tests running as local files, i.e. under 61 // Allow those layout tests running as local files, i.e. under
63 // LayoutTests/http/tests/local, to access http server. 62 // LayoutTests/http/tests/local, to access http server.
64 allowUniversalAccessFromFileURLs = true; 63 allowUniversalAccessFromFileURLs = true;
65 64
66 #ifdef __APPLE__ 65 #ifdef __APPLE__
67 editingBehavior = WebSettings::EditingBehaviorMac; 66 editingBehavior = WebSettings::EditingBehaviorMac;
68 #else 67 #else
69 editingBehavior = WebSettings::EditingBehaviorWin; 68 editingBehavior = WebSettings::EditingBehaviorWin;
70 #endif 69 #endif
71 70
72 tabsToLinks = false; 71 tabsToLinks = false;
73 hyperlinkAuditingEnabled = false; 72 hyperlinkAuditingEnabled = false;
74 cssCustomFilterEnabled = false; 73 cssCustomFilterEnabled = false;
75 shouldRespectImageOrientation = false; 74 shouldRespectImageOrientation = false;
76 asynchronousSpellCheckingEnabled = false; 75 asynchronousSpellCheckingEnabled = false;
77 } 76 }
78 77
79 } 78 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698