| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |