diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigLocaleOverrideWebTest.php b/core/modules/config/lib/Drupal/config/Tests/ConfigLocaleOverrideWebTest.php
new file mode 100644
index 0000000..56715ed
--- /dev/null
+++ b/core/modules/config/lib/Drupal/config/Tests/ConfigLocaleOverrideWebTest.php
@@ -0,0 +1,53 @@
+<?php
+
+/**
+ * @file
+ * Definition of Drupal\config\Tests\ConfigLocaleOverrideWebTest.
+ */
+
+namespace Drupal\config\Tests;
+
+use Drupal\simpletest\WebTestBase;
+
+/**
+ * Tests langugae overrides in configuration through the request.
+ */
+class ConfigLocaleOverrideWebTest extends WebTestBase {
+
+  public static $modules = array('locale', 'language', 'system', 'config_test');
+
+  public static function getInfo() {
+    return array(
+      'name' => 'Locale overrides through the request',
+      'description' => 'Tests locale overrides applied through the website.',
+      'group' => 'Configuration',
+    );
+  }
+
+  function setUp() {
+    parent::setUp();
+  }
+
+  /**
+   * Tests translating the site name.
+   */
+  function testSiteNameTranslation() {
+    config('system.timezone')->set('user.configurable', TRUE)->save();
+    $adminUser = $this->drupalCreateUser(array('administer site configuration', 'administer languages'));
+    $this->drupalLogin($adminUser);
+
+    // Add French language.
+    $this->drupalPost('admin/config/regional/language/add', array('predefined_langcode' => 'fr'), t('Add language'));
+
+    // The English regional settings page should not have a default timezone of
+    // Europe/Paris.
+    $this->drupalGet('admin/config/regional/settings');
+    $this->assertNoOptionSelected('edit-date-default-timezone', 'Europe/Paris');
+
+    // The French regional settings page should have a default timezone of
+    // Europe/Paris.
+    $this->drupalGet('fr/admin/config/regional/settings');
+    $this->assertOptionSelected('edit-date-default-timezone', 'Europe/Paris');
+  }
+
+}
diff --git a/core/modules/config/tests/config_test/config/locale.config.fr.system.timezone.yml b/core/modules/config/tests/config_test/config/locale.config.fr.system.timezone.yml
new file mode 100644
index 0000000..517b076
--- /dev/null
+++ b/core/modules/config/tests/config_test/config/locale.config.fr.system.timezone.yml
@@ -0,0 +1 @@
+default: 'Europe/Paris'
