diff --git a/core/includes/batch.inc b/core/includes/batch.inc
index 0b07d8e..3bb90ab 100644
--- a/core/includes/batch.inc
+++ b/core/includes/batch.inc
@@ -480,18 +480,17 @@ function _batch_finished() {
         $queue->deleteQueue();
       }
     }
+    // Clean-up the session. Not needed for CLI updates.
+    if (isset($_SESSION)) {
+      unset($_SESSION['batches'][$batch['id']]);
+      if (empty($_SESSION['batches'])) {
+        unset($_SESSION['batches']);
+      }
+    }
   }
   $_batch = $batch;
   $batch = NULL;
 
-  // Clean-up the session. Not needed for CLI updates.
-  if (isset($_SESSION)) {
-    unset($_SESSION['batches'][$batch['id']]);
-    if (empty($_SESSION['batches'])) {
-      unset($_SESSION['batches']);
-    }
-  }
-
   // Redirect if needed.
   if ($_batch['progressive']) {
     // Revert the 'destination' that was saved in batch_process().
diff --git a/core/includes/bootstrap.inc b/core/includes/bootstrap.inc
index 95adc95..23135cf 100644
--- a/core/includes/bootstrap.inc
+++ b/core/includes/bootstrap.inc
@@ -2575,7 +2575,12 @@ function drupal_fast_404() {
  * Returns TRUE if a Drupal installation is currently being attempted.
  */
 function drupal_installation_attempted() {
-  return defined('MAINTENANCE_MODE') && MAINTENANCE_MODE == 'install';
+  // This cannot rely on the MAINTENANCE_MODE constant, since that would prevent
+  // tests from using the non-interactive installer, in which case Drupal is
+  // only happens to be installed within the same request, but subsequently
+  // executed code does not involve the installer at all.
+  // @see install_drupal()
+  return isset($GLOBALS['install_state']) && empty($GLOBALS['install_state']['installation_finished']);
 }
 
 /**
diff --git a/core/includes/cache.inc b/core/includes/cache.inc
index 73bb05f..554fe95 100644
--- a/core/includes/cache.inc
+++ b/core/includes/cache.inc
@@ -24,13 +24,12 @@
  * @see Drupal\Core\Cache\CacheBackendInterface
  */
 function cache($bin = 'cache') {
+  $cache_objects = &drupal_static(__FUNCTION__, array());
+
   // Temporary backwards compatibiltiy layer, allow old style prefixed cache
   // bin names to be passed as arguments.
   $bin = str_replace('cache_', '', $bin);
 
-  // We do not use drupal_static() here because we do not want to change the
-  // storage of a cache bin mid-request.
-  static $cache_objects;
   if (!isset($cache_objects[$bin])) {
     $cache_backends = cache_get_backends();
     $class = isset($cache_backends[$bin]) ? $cache_backends[$bin] : $cache_backends['cache'];
diff --git a/core/includes/install.core.inc b/core/includes/install.core.inc
index 32ce838..5608216 100644
--- a/core/includes/install.core.inc
+++ b/core/includes/install.core.inc
@@ -94,19 +94,27 @@ function install_drupal($settings = array()) {
       throw $e;
     }
   }
+  // After execution, all tasks might be complete, in which case
+  // $install_state['installation_finished'] is TRUE. In case the last task
+  // has been processed, remove the global $install_state, so other code can
+  // reliably check whether it is running during the installer.
+  // @see drupal_installation_attempted()
+  $state = $install_state;
+  unset($install_state);
+
   // All available tasks for this page request are now complete. Interactive
   // installations can send output to the browser or redirect the user to the
   // next page.
-  if ($install_state['interactive']) {
-    if ($install_state['parameters_changed']) {
+  if ($state['interactive']) {
+    if ($state['parameters_changed']) {
       // Redirect to the correct page if the URL parameters have changed.
-      install_goto(install_redirect_url($install_state));
+      install_goto(install_redirect_url($state));
     }
     elseif (isset($output)) {
       // Display a page only if some output is available. Otherwise it is
       // possible that we are printing a JSON page and theme output should
       // not be shown.
-      install_display_output($output, $install_state);
+      install_display_output($output, $state);
     }
   }
 }
@@ -224,7 +232,9 @@ function install_state_defaults() {
  */
 function install_begin_request(&$install_state) {
   // Add any installation parameters passed in via the URL.
-  $install_state['parameters'] += $_GET;
+  if ($install_state['interactive']) {
+    $install_state['parameters'] += $_GET;
+  }
 
   // Validate certain core settings that are used throughout the installation.
   if (!empty($install_state['parameters']['profile'])) {
@@ -240,11 +250,10 @@ function install_begin_request(&$install_state) {
   if (!$install_state['interactive']) {
     drupal_override_server_variables($install_state['server']);
   }
-
   // The user agent header is used to pass a database prefix in the request when
   // running tests. However, for security reasons, it is imperative that no
   // installation be permitted using such a prefix.
-  if (isset($_SERVER['HTTP_USER_AGENT']) && strpos($_SERVER['HTTP_USER_AGENT'], "simpletest") !== FALSE) {
+  elseif (isset($_SERVER['HTTP_USER_AGENT']) && strpos($_SERVER['HTTP_USER_AGENT'], "simpletest") !== FALSE) {
     header($_SERVER['SERVER_PROTOCOL'] . ' 403 Forbidden');
     exit;
   }
@@ -1331,7 +1340,7 @@ function install_select_language(&$install_state) {
       }
       // One language, but not an interactive installation. Assume the user
       // knows what he is doing.
-      $langcode = current($files);
+      $file = current($files);
       $install_state['parameters']['langcode'] = $file->langcode;
       return;
     }
diff --git a/core/includes/session.inc b/core/includes/session.inc
index b07997c..5761dc9 100644
--- a/core/includes/session.inc
+++ b/core/includes/session.inc
@@ -348,6 +348,12 @@ function drupal_session_started($set = NULL) {
  */
 function drupal_session_regenerate() {
   global $user, $is_https;
+
+  // Nothing to do if we are not allowed to change the session.
+  if (!drupal_save_session()) {
+    return;
+  }
+
   if ($is_https && variable_get('https', FALSE)) {
     $insecure_session_name = substr(session_name(), 1);
     if (!isset($GLOBALS['lazy_session']) && isset($_COOKIE[$insecure_session_name])) {
@@ -417,6 +423,11 @@ function drupal_session_regenerate() {
 function _drupal_session_destroy($sid) {
   global $user, $is_https;
 
+  // Nothing to do if we are not allowed to change the session.
+  if (!drupal_save_session()) {
+    return;
+  }
+
   // Delete session data.
   db_delete('sessions')
     ->condition($is_https ? 'ssid' : 'sid', $sid)
@@ -464,6 +475,11 @@ function _drupal_session_delete_cookie($name, $secure = NULL) {
  *   User ID.
  */
 function drupal_session_destroy_uid($uid) {
+  // Nothing to do if we are not allowed to change the session.
+  if (!drupal_save_session()) {
+    return;
+  }
+
   db_delete('sessions')
     ->condition('uid', $uid)
     ->execute();
@@ -506,7 +522,10 @@ function _drupal_session_garbage_collection($lifetime) {
  *   FALSE if writing session data has been disabled. Otherwise, TRUE.
  */
 function drupal_save_session($status = NULL) {
-  $save_session = &drupal_static(__FUNCTION__, TRUE);
+  // PHP session ID, session, and cookie handling happens in the global scope.
+  // This value has to persist across calls to drupal_static_reset(), since a
+  // potentially wrong or disallowed session would be written otherwise.
+  static $save_session = TRUE;
   if (isset($status)) {
     $save_session = $status;
   }
diff --git a/core/modules/block/block.install b/core/modules/block/block.install
index 8fcecbe..d3dab51 100644
--- a/core/modules/block/block.install
+++ b/core/modules/block/block.install
@@ -74,7 +74,8 @@ function block_schema() {
       ),
       'pages' => array(
         'type' => 'text',
-        'not null' => TRUE,
+        // @todo Block module saves empty strings instead of NULL.
+        'not null' => FALSE,
         'description' => 'Contents of the "Pages" block; contains either a list of paths on which to include/exclude the block or PHP code, depending on "visibility" setting.',
       ),
       'title' => array(
@@ -312,6 +313,17 @@ function block_update_8002() {
 }
 
 /**
+ * Make {block}.pages optional.
+ */
+function block_update_8003() {
+  db_change_field('block', 'pages', 'pages', array(
+    'type' => 'text',
+    'not null' => FALSE,
+    'description' => 'Contents of the "Pages" block; contains either a list of paths on which to include/exclude the block or PHP code, depending on "visibility" setting.',
+  ));
+}
+
+/**
  * @} End of "addtogroup updates-7.x-to-8.x".
  * The next series of updates should start at 9000.
  */
diff --git a/core/modules/node/node.module b/core/modules/node/node.module
index 3db5bbd..83c4483 100644
--- a/core/modules/node/node.module
+++ b/core/modules/node/node.module
@@ -3988,6 +3988,9 @@ function node_unpublish_by_keyword_action(Node $node, $context) {
  */
 function node_requirements($phase) {
   $requirements = array();
+  if ($phase !== 'runtime') {
+    return $requirements;
+  }
   // Ensure translations don't break at install time
   $t = get_t();
   // Only show rebuild button if there are either 0, or 2 or more, rows
diff --git a/core/modules/simpletest/lib/Drupal/simpletest/TestBase.php b/core/modules/simpletest/lib/Drupal/simpletest/TestBase.php
index 6517bd1..b24fb8f 100644
--- a/core/modules/simpletest/lib/Drupal/simpletest/TestBase.php
+++ b/core/modules/simpletest/lib/Drupal/simpletest/TestBase.php
@@ -150,15 +150,7 @@ abstract class TestBase {
     );
 
     // Store assertion for display after the test has completed.
-    try {
-      $connection = Database::getConnection('default', 'simpletest_original_default');
-    }
-    catch (ConnectionNotDefinedException $e) {
-      // If the test was not set up, the simpletest_original_default
-      // connection does not exist.
-      $connection = Database::getConnection('default', 'default');
-    }
-    $connection
+    self::getDatabaseConnection()
       ->insert('simpletest')
       ->fields($assertion)
       ->execute();
@@ -212,7 +204,8 @@ abstract class TestBase {
       'file' => $caller['file'],
     );
 
-    return db_insert('simpletest')
+    return self::getDatabaseConnection()
+      ->insert('simpletest')
       ->fields($assertion)
       ->execute();
   }
@@ -228,11 +221,24 @@ abstract class TestBase {
    * @see Drupal\simpletest\TestBase::insertAssert()
    */
   public static function deleteAssert($message_id) {
-    return (bool) db_delete('simpletest')
+    return (bool) self::getDatabaseConnection()
+      ->delete('simpletest')
       ->condition('message_id', $message_id)
       ->execute();
   }
 
+  public static function getDatabaseConnection() {
+    try {
+      $connection = Database::getConnection('default', 'simpletest_original_default');
+    }
+    catch (ConnectionNotDefinedException $e) {
+      // If the test was not set up, the simpletest_original_default
+      // connection does not exist.
+      $connection = Database::getConnection('default', 'default');
+    }
+    return $connection;
+  }
+
   /**
    * Cycles through backtrace until the first non-assertion method is found.
    *
@@ -593,6 +599,14 @@ abstract class TestBase {
       );
     }
     Database::addConnectionInfo('default', 'default', $connection_info['default']);
+
+    // Additionally override global $databases, since the installer does not use
+    // the Database connection info.
+    // @see install_verify_database_settings()
+    // @see install_database_errors()
+    // @todo Fix installer to use Database connection info.
+    global $databases;
+    $databases['default']['default'] = $connection_info['default'];
   }
 
   /**
@@ -622,7 +636,10 @@ abstract class TestBase {
     // Save further contextual information.
     $this->originalFileDirectory = variable_get('file_public_path', conf_path() . '/files');
     $this->originalProfile = drupal_get_profile();
-    $this->originalUser = $user;
+    $this->originalUser = clone $user;
+
+    // Ensure that the current session is not changed by the new environment.
+    drupal_save_session(FALSE);
 
     // Save and clean the shutdown callbacks array because it is static cached
     // and will be changed by the test run. Otherwise it will contain callbacks
@@ -692,6 +709,10 @@ abstract class TestBase {
     // Restore original database connection.
     Database::removeConnection('default');
     Database::renameConnection('simpletest_original_default', 'default');
+    // @see TestBase::changeDatabasePrefix()
+    global $databases;
+    $connection_info = Database::getConnectionInfo('default');
+    $databases['default']['default'] = $connection_info['default'];
 
     // Reset all static variables.
     drupal_static_reset();
diff --git a/core/modules/simpletest/lib/Drupal/simpletest/WebTestBase.php b/core/modules/simpletest/lib/Drupal/simpletest/WebTestBase.php
index 0856611..6db5e39 100644
--- a/core/modules/simpletest/lib/Drupal/simpletest/WebTestBase.php
+++ b/core/modules/simpletest/lib/Drupal/simpletest/WebTestBase.php
@@ -581,6 +581,13 @@ abstract class WebTestBase extends TestBase {
     global $user, $conf;
     $language_interface = drupal_container()->get(LANGUAGE_TYPE_INTERFACE);
 
+    // When running tests through the Simpletest UI (vs. on the command line),
+    // Simpletest's batch conflicts with the installer's batch. Batch API does
+    // not support the concept of nested batches (in which the nested is not
+    // progressive), so we need to temporarily pretend there was no batch.
+    // Backup the currently running Simpletest batch.
+    $this->originalBatch = batch_get();
+
     // Create the database prefix for this test.
     $this->prepareDatabasePrefix();
 
@@ -597,18 +604,78 @@ abstract class WebTestBase extends TestBase {
     // write back to persistent caches when they are destructed.
     $this->changeDatabasePrefix();
 
-    // Preset the 'install_profile' system variable, so the first call into
-    // system_rebuild_module_data() (in drupal_install_system()) will register
-    // the test's profile as a module. Without this, the installation profile of
-    // the parent site (executing the test) is registered, and the test
-    // profile's hook_install() and other hook implementations are never invoked.
-    $conf['install_profile'] = $this->profile;
+    // Set the 'simpletest_parent_profile' variable to add the parent profile's
+    // search path to the child site's search paths.
+    // @see drupal_system_listing()
+    $conf['simpletest_parent_profile'] = $this->originalProfile;
+
+    // Set installer parameters.
+    // @see install.php, install.core.inc
+    $connection_info = Database::getConnectionInfo('default');
+    $this->root_user = (object) array(
+      'name' => 'admin',
+      'mail' => 'admin@example.com',
+      'pass_raw' => $this->randomName(),
+    );
+    $settings = array(
+      'interactive' => FALSE,
+      'parameters' => array(
+        'profile' => $this->profile,
+        'langcode' => 'en',
+      ),
+      'forms' => array(
+        'install_settings_form' => array(
+          'driver' => $connection_info['default']['driver'],
+          'username' => $connection_info['default']['username'],
+          'host' => $connection_info['default']['host'],
+          'port' => $connection_info['default']['port'],
+          'password' => $connection_info['default']['password'],
+          'database' => $connection_info['default']['database'],
+          'prefix' => $connection_info['default']['prefix'],
+        ),
+        'install_configure_form' => array(
+          'site_name' => 'Drupal',
+          'site_mail' => 'simpletest@example.com',
+          'account' => array(
+            'name' => $this->root_user->name,
+            'mail' => $this->root_user->mail,
+            'pass' => array(
+              'pass1' => $this->root_user->pass_raw,
+              'pass2' => $this->root_user->pass_raw,
+            ),
+          ),
+          // form_type_checkboxes_value() requires NULL instead of FALSE values
+          // for programmatic form submissions to disable a checkbox.
+          'update_status_module' => array(
+            1 => NULL,
+            2 => NULL,
+          ),
+        ),
+      ),
+    );
+
+    // Replace the global $user session with an anonymous user to resemble a
+    // regular installation.
+    $user = drupal_anonymous_user();
 
-    // Perform the actual Drupal installation.
-    include_once DRUPAL_ROOT . '/core/includes/install.inc';
-    drupal_install_system();
+    // Reset the static batch to remove Simpletest's batch operations.
+    $batch = &batch_get();
+    $batch = array();
 
-    $this->preloadRegistry();
+    // Execute the non-interactive installer.
+    require_once DRUPAL_ROOT . '/core/includes/install.core.inc';
+    install_drupal($settings);
+
+    // Ensure that the session is not changed by the new environment.
+    drupal_save_session(FALSE);
+
+    // Restore the original Simpletest batch.
+    $batch = &batch_get();
+    $batch = $this->originalBatch;
+
+    // Revert install_begin_request() cache and lock service overrides.
+    unset($conf['cache_classes']);
+    unset($conf['lock_backend']);
 
     // Set path variables.
     variable_set('file_public_path', $this->public_files_directory);
@@ -618,16 +685,8 @@ abstract class WebTestBase extends TestBase {
     // Set the 'simpletest_parent_profile' variable to add the parent profile's
     // search path to the child site's search paths.
     // @see drupal_system_listing()
-    // @todo This may need to be primed like 'install_profile' above.
     variable_set('simpletest_parent_profile', $this->originalProfile);
 
-    // Include the testing profile.
-    variable_set('install_profile', $this->profile);
-    $profile_details = install_profile_info($this->profile, 'en');
-
-    // Install the modules specified by the testing profile.
-    module_enable($profile_details['dependencies'], FALSE);
-
     // Install modules needed for this test. This could have been passed in as
     // either a single array argument or a variable number of string arguments.
     // @todo Remove this compatibility layer in Drupal 8, and only accept
@@ -641,36 +700,9 @@ abstract class WebTestBase extends TestBase {
       $this->assertTrue($success, t('Enabled modules: %modules', array('%modules' => implode(', ', $modules))));
     }
 
-    // Run the profile tasks.
-    $install_profile_module_exists = db_query("SELECT 1 FROM {system} WHERE type = 'module' AND name = :name", array(
-      ':name' => $this->profile,
-    ))->fetchField();
-    if ($install_profile_module_exists) {
-      module_enable(array($this->profile), FALSE);
-    }
-
     // Reset/rebuild all data structures after enabling the modules.
     $this->resetAll();
 
-    // Run cron once in that environment, as install.php does at the end of
-    // the installation process.
-    drupal_cron_run();
-
-    // Ensure that the session is not written to the new environment and replace
-    // the global $user session with uid 1 from the new test site.
-    drupal_save_session(FALSE);
-    // Login as uid 1.
-    $user = user_load(1);
-
-    // Restore necessary variables.
-    variable_set('install_task', 'done');
-    config('system.site')->set('mail', 'simpletest@example.com')->save();
-    variable_set('date_default_timezone', date_default_timezone_get());
-
-    // Set up English language.
-    unset($conf['language_default']);
-    $language_interface = language_default();
-
     // Use the test mail class instead of the default mail handler class.
     variable_set('mail_system', array('default-system' => 'Drupal\Core\Mail\VariableLog'));
 
@@ -679,42 +711,6 @@ abstract class WebTestBase extends TestBase {
   }
 
   /**
-   * Preload the registry from the testing site.
-   *
-   * This method is called by Drupal\simpletest\WebTestBase::setUp(), and preloads
-   * the registry from the testing site to cut down on the time it takes to
-   * set up a clean environment for the current test run.
-   */
-  protected function preloadRegistry() {
-    // Use two separate queries, each with their own connections: copy the
-    // {registry} and {registry_file} tables over from the parent installation
-    // to the child installation.
-    $original_connection = Database::getConnection('default', 'simpletest_original_default');
-    $test_connection = Database::getConnection();
-
-    foreach (array('registry', 'registry_file') as $table) {
-      // Find the records from the parent database.
-      $source_query = $original_connection
-        ->select($table, array(), array('fetch' => PDO::FETCH_ASSOC))
-        ->fields($table);
-
-      $dest_query = $test_connection->insert($table);
-
-      $first = TRUE;
-      foreach ($source_query->execute() as $row) {
-        if ($first) {
-          $dest_query->fields(array_keys($row));
-          $first = FALSE;
-        }
-        // Insert the records into the child database.
-        $dest_query->values($row);
-      }
-
-      $dest_query->execute();
-    }
-  }
-
-  /**
    * Reset all data structures after having enabled new modules.
    *
    * This method is called by Drupal\simpletest\WebTestBase::setUp() after enabling
diff --git a/sites/default/files/.htaccess b/sites/default/files/.htaccess
new file mode 100755
index 0000000..189ef8d
--- /dev/null
+++ b/sites/default/files/.htaccess
@@ -0,0 +1,3 @@
+SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
+Options None
+Options +FollowSymLinks
\ No newline at end of file
diff --git a/sites/default/files/config_oEMEb3KzJOrLIWK_tqxq8--BrpQtOoOxpEgFkeKFH8M/.htaccess b/sites/default/files/config_oEMEb3KzJOrLIWK_tqxq8--BrpQtOoOxpEgFkeKFH8M/.htaccess
new file mode 100755
index 0000000..8d2ad47
--- /dev/null
+++ b/sites/default/files/config_oEMEb3KzJOrLIWK_tqxq8--BrpQtOoOxpEgFkeKFH8M/.htaccess
@@ -0,0 +1,4 @@
+SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
+Deny from all
+Options None
+Options +FollowSymLinks
\ No newline at end of file
diff --git a/sites/default/files/simpletest/verbose/.htaccess b/sites/default/files/simpletest/verbose/.htaccess
new file mode 100644
index 0000000..45fde0b
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/.htaccess
@@ -0,0 +1,3 @@
+<IfModule mod_expires.c>
+ExpiresActive Off
+</IfModule>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-1.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-1.html
new file mode 100644
index 0000000..98d402c
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-1.html
@@ -0,0 +1,76 @@
+<hr />ID #1 (<a href="Drupal_system_Tests_Session_SessionTest-0.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-2.html">Next</a>)<hr />GET request to: session-test/get<hr />Ending URL: http://localhost/drupal/index.php/session-test/get<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>Session value | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"iNK_qeBDdsQDA3lmdxw5akIYvy0TaIqBwlgY75eh-OM","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front not-logged-in no-sidebars page-session-test page-session-test-get" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+    
+    <nav role="navigation" class="breadcrumb"><h2 class="element-invisible">You are here</h2><ol><li><a href="/drupal/index.php/">Home</a></li></ol></nav>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">Session value</h1>                <div class="tabs"></div>                                      </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-10.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-10.html
new file mode 100644
index 0000000..360bad4
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-10.html
@@ -0,0 +1,76 @@
+<hr />ID #10 (<a href="Drupal_system_Tests_Session_SessionTest-9.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-11.html">Next</a>)<hr />GET request to: session-test/get<hr />Ending URL: http://localhost/drupal/index.php/session-test/get<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>Session value | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"gQaeRwJZznLWmH_ZsVAAF2EuKC-Vmey1C-h59jNJFBo","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front not-logged-in no-sidebars page-session-test page-session-test-get" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+    
+    <nav role="navigation" class="breadcrumb"><h2 class="element-invisible">You are here</h2><ol><li><a href="/drupal/index.php/">Home</a></li></ol></nav>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">Session value</h1>                <div class="tabs"></div>                                      </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-11.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-11.html
new file mode 100644
index 0000000..a03908c
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-11.html
@@ -0,0 +1,91 @@
+<hr />ID #11 (<a href="Drupal_system_Tests_Session_SessionTest-10.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-12.html">Next</a>)<hr />GET request to: user<hr />Ending URL: http://localhost/drupal/index.php/user<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>User account | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"qxOjIMetVqhD3_i7puootQCqB24eHcWPvLiSJVTrkaQ","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html front not-logged-in no-sidebars page-user" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+    
+    
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">User account</h1>                <div class="tabs"><h2 class="element-invisible">Primary tabs</h2><ul class="tabs primary"><li><a href="/drupal/index.php/user/register">Create new account</a></li>
+<li class="active"><a href="/drupal/index.php/user" class="active">Log in<span class="element-invisible">(active tab)</span></a></li>
+<li><a href="/drupal/index.php/user/password">Request new password</a></li>
+</ul></div>                        <form class="user-login" action="/drupal/index.php/user" method="post" id="user-login" accept-charset="UTF-8"><div><div class="form-item form-type-textfield form-item-name">
+  <label for="edit-name">Username <abbr class="form-required" title="This field is required.">*</abbr></label>
+ <input autofocus="autofocus" aria-describedby="edit-name--description" type="text" id="edit-name" name="name" value="" size="60" maxlength="60" class="form-text required" required="required" aria-required="true" />
+<div class="description" id="edit-name--description">Enter your Drupal username.</div>
+</div>
+<div class="form-item form-type-password form-item-pass">
+  <label for="edit-pass">Password <abbr class="form-required" title="This field is required.">*</abbr></label>
+ <input aria-describedby="edit-pass--description" type="password" id="edit-pass" name="pass" size="60" maxlength="128" class="form-text required" required="required" aria-required="true" />
+<div class="description" id="edit-pass--description">Enter the password that accompanies your username.</div>
+</div>
+<input type="hidden" name="form_build_id" value="form-bWfrJT1In3K40HQEsq6MujDpo-57xEi4Y4sqNnWMrPY" />
+<input type="hidden" name="form_id" value="user_login" />
+<div class="form-actions form-wrapper" id="edit-actions"><input type="submit" id="edit-submit" name="op" value="Log in" class="form-submit" /></div></div></form>              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-12.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-12.html
new file mode 100644
index 0000000..a0df7bf
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-12.html
@@ -0,0 +1,89 @@
+<hr />ID #12 (<a href="Drupal_system_Tests_Session_SessionTest-11.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-13.html">Next</a>)<hr />POST request to: user<hr />Ending URL: http://localhost/drupal/index.php/user/2<hr />Fields: <code><span style="color: #000000">
+<span style="color: #0000BB">&lt;?php&nbsp;</span><span style="color: #007700">array&nbsp;(<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'name'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'sj49xdLC'</span><span style="color: #007700">,<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'pass'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'xrECrVP7z9'</span><span style="color: #007700">,<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'form_build_id'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'form-bWfrJT1In3K40HQEsq6MujDpo-57xEi4Y4sqNnWMrPY'</span><span style="color: #007700">,<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'form_id'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'user_login'</span><span style="color: #007700">,<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'op'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'Log&nbsp;in'</span><span style="color: #007700">,<br />)</span>
+</span>
+</code><hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>sj49xdLC | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"NlZCTFAozrrsUC_Nt64m5zcAaSNOlMcXLT5daEyLtoU","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front logged-in no-sidebars page-user page-user- page-user-2" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+          <nav role="navigation">
+                <h2 class="element-invisible">Secondary menu</h2><ul id="secondary-menu" class="links inline clearfix"><li class="menu-2 odd first"><a href="/drupal/index.php/user">My account</a></li><li class="menu-12 even last"><a href="/drupal/index.php/user/logout">Log out</a></li></ul>      </nav>
+    
+    <nav role="navigation" class="breadcrumb"><h2 class="element-invisible">You are here</h2><ol><li><a href="/drupal/index.php/">Home</a></li></ol></nav>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">sj49xdLC</h1>                <div class="tabs"><h2 class="element-invisible">Primary tabs</h2><ul class="tabs primary"><li class="active"><a href="/drupal/index.php/user/2" class="active">View<span class="element-invisible">(active tab)</span></a></li>
+<li><a href="/drupal/index.php/user/2/edit">Edit</a></li>
+</ul></div>                        <article class="profile">
+  <div class="form-item form-type-item">
+  <label>Member for </label>
+ 40 sec
+</div>
+</article>
+              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-13.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-13.html
new file mode 100644
index 0000000..55c8235
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-13.html
@@ -0,0 +1,78 @@
+<hr />ID #13 (<a href="Drupal_system_Tests_Session_SessionTest-12.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-14.html">Next</a>)<hr />GET request to: session-test/set/cRCh0ota<hr />Ending URL: http://localhost/drupal/index.php/session-test/set/cRCh0ota<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>Set session value | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"NlZCTFAozrrsUC_Nt64m5zcAaSNOlMcXLT5daEyLtoU","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front logged-in no-sidebars page-session-test page-session-test-set page-session-test-set-crch0ota" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+          <nav role="navigation">
+                <h2 class="element-invisible">Secondary menu</h2><ul id="secondary-menu" class="links inline clearfix"><li class="menu-2 odd first"><a href="/drupal/index.php/user">My account</a></li><li class="menu-12 even last"><a href="/drupal/index.php/user/logout">Log out</a></li></ul>      </nav>
+    
+    <nav role="navigation" class="breadcrumb"><h2 class="element-invisible">You are here</h2><ol><li><a href="/drupal/index.php/">Home</a></li></ol></nav>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">Set session value</h1>                <div class="tabs"></div>                        The current value of the stored session variable has been set to <em class="placeholder">cRCh0ota</em>              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-14.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-14.html
new file mode 100644
index 0000000..9dcb2ee
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-14.html
@@ -0,0 +1,78 @@
+<hr />ID #14 (<a href="Drupal_system_Tests_Session_SessionTest-13.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-15.html">Next</a>)<hr />GET request to: session-test/get<hr />Ending URL: http://localhost/drupal/index.php/session-test/get<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>Session value | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"NlZCTFAozrrsUC_Nt64m5zcAaSNOlMcXLT5daEyLtoU","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front logged-in no-sidebars page-session-test page-session-test-get" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+          <nav role="navigation">
+                <h2 class="element-invisible">Secondary menu</h2><ul id="secondary-menu" class="links inline clearfix"><li class="menu-2 odd first"><a href="/drupal/index.php/user">My account</a></li><li class="menu-12 even last"><a href="/drupal/index.php/user/logout">Log out</a></li></ul>      </nav>
+    
+    <nav role="navigation" class="breadcrumb"><h2 class="element-invisible">You are here</h2><ol><li><a href="/drupal/index.php/">Home</a></li></ol></nav>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">Session value</h1>                <div class="tabs"></div>                        The current value of the stored session variable is: <em class="placeholder">cRCh0ota</em>              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-15.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-15.html
new file mode 100644
index 0000000..4452d41
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-15.html
@@ -0,0 +1,78 @@
+<hr />ID #15 (<a href="Drupal_system_Tests_Session_SessionTest-14.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-16.html">Next</a>)<hr />GET request to: session-test/no-set/vFVYesWc<hr />Ending URL: http://localhost/drupal/index.php/session-test/no-set/vFVYesWc<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>Set session value but do not save session | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"NlZCTFAozrrsUC_Nt64m5zcAaSNOlMcXLT5daEyLtoU","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front logged-in no-sidebars page-session-test page-session-test-no-set page-session-test-no-set-vfvyeswc" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+          <nav role="navigation">
+                <h2 class="element-invisible">Secondary menu</h2><ul id="secondary-menu" class="links inline clearfix"><li class="menu-2 odd first"><a href="/drupal/index.php/user">My account</a></li><li class="menu-12 even last"><a href="/drupal/index.php/user/logout">Log out</a></li></ul>      </nav>
+    
+    <nav role="navigation" class="breadcrumb"><h2 class="element-invisible">You are here</h2><ol><li><a href="/drupal/index.php/">Home</a></li></ol></nav>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">Set session value but do not save session</h1>                <div class="tabs"></div>                        session saving was disabled, and then <em class="placeholder">vFVYesWc</em> was set              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-16.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-16.html
new file mode 100644
index 0000000..e1a6379
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-16.html
@@ -0,0 +1,78 @@
+<hr />ID #16 (<a href="Drupal_system_Tests_Session_SessionTest-15.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-17.html">Next</a>)<hr />GET request to: session-test/get<hr />Ending URL: http://localhost/drupal/index.php/session-test/get<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>Session value | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"NlZCTFAozrrsUC_Nt64m5zcAaSNOlMcXLT5daEyLtoU","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front logged-in no-sidebars page-session-test page-session-test-get" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+          <nav role="navigation">
+                <h2 class="element-invisible">Secondary menu</h2><ul id="secondary-menu" class="links inline clearfix"><li class="menu-2 odd first"><a href="/drupal/index.php/user">My account</a></li><li class="menu-12 even last"><a href="/drupal/index.php/user/logout">Log out</a></li></ul>      </nav>
+    
+    <nav role="navigation" class="breadcrumb"><h2 class="element-invisible">You are here</h2><ol><li><a href="/drupal/index.php/">Home</a></li></ol></nav>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">Session value</h1>                <div class="tabs"></div>                        The current value of the stored session variable is: <em class="placeholder">cRCh0ota</em>              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-17.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-17.html
new file mode 100644
index 0000000..1ff0a98
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-17.html
@@ -0,0 +1,76 @@
+<hr />ID #17 (<a href="Drupal_system_Tests_Session_SessionTest-16.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-18.html">Next</a>)<hr />GET request to: session-test/get<hr />Ending URL: http://localhost/drupal/index.php/session-test/get<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>Session value | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"WqdFrnvHleaZmoRTBl8_9sdUwnmzAvM7LrhwaPNOF9w","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front not-logged-in no-sidebars page-session-test page-session-test-get" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+    
+    <nav role="navigation" class="breadcrumb"><h2 class="element-invisible">You are here</h2><ol><li><a href="/drupal/index.php/">Home</a></li></ol></nav>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">Session value</h1>                <div class="tabs"></div>                                      </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-18.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-18.html
new file mode 100644
index 0000000..9e9d03e
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-18.html
@@ -0,0 +1,78 @@
+<hr />ID #18 (<a href="Drupal_system_Tests_Session_SessionTest-17.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-19.html">Next</a>)<hr />GET request to: session-test/get<hr />Ending URL: http://localhost/drupal/index.php/session-test/get<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>Session value | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"NlZCTFAozrrsUC_Nt64m5zcAaSNOlMcXLT5daEyLtoU","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front logged-in no-sidebars page-session-test page-session-test-get" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+          <nav role="navigation">
+                <h2 class="element-invisible">Secondary menu</h2><ul id="secondary-menu" class="links inline clearfix"><li class="menu-2 odd first"><a href="/drupal/index.php/user">My account</a></li><li class="menu-12 even last"><a href="/drupal/index.php/user/logout">Log out</a></li></ul>      </nav>
+    
+    <nav role="navigation" class="breadcrumb"><h2 class="element-invisible">You are here</h2><ol><li><a href="/drupal/index.php/">Home</a></li></ol></nav>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">Session value</h1>                <div class="tabs"></div>                        The current value of the stored session variable is: <em class="placeholder">cRCh0ota</em>              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-19.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-19.html
new file mode 100644
index 0000000..cabadba
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-19.html
@@ -0,0 +1,91 @@
+<hr />ID #19 (<a href="Drupal_system_Tests_Session_SessionTest-18.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-20.html">Next</a>)<hr />GET request to: user/logout<hr />Ending URL: http://localhost/drupal/index.php/user<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>User account | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"mpmY59agVCa5ertZVe8dZTtbF3chU1XBkDojwUnTsKA","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html front not-logged-in no-sidebars page-user" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+    
+    
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">User account</h1>                <div class="tabs"><h2 class="element-invisible">Primary tabs</h2><ul class="tabs primary"><li><a href="/drupal/index.php/user/register">Create new account</a></li>
+<li class="active"><a href="/drupal/index.php/user" class="active">Log in<span class="element-invisible">(active tab)</span></a></li>
+<li><a href="/drupal/index.php/user/password">Request new password</a></li>
+</ul></div>                        <form class="user-login" action="/drupal/index.php/user" method="post" id="user-login" accept-charset="UTF-8"><div><div class="form-item form-type-textfield form-item-name">
+  <label for="edit-name">Username <abbr class="form-required" title="This field is required.">*</abbr></label>
+ <input autofocus="autofocus" aria-describedby="edit-name--description" type="text" id="edit-name" name="name" value="" size="60" maxlength="60" class="form-text required" required="required" aria-required="true" />
+<div class="description" id="edit-name--description">Enter your Drupal username.</div>
+</div>
+<div class="form-item form-type-password form-item-pass">
+  <label for="edit-pass">Password <abbr class="form-required" title="This field is required.">*</abbr></label>
+ <input aria-describedby="edit-pass--description" type="password" id="edit-pass" name="pass" size="60" maxlength="128" class="form-text required" required="required" aria-required="true" />
+<div class="description" id="edit-pass--description">Enter the password that accompanies your username.</div>
+</div>
+<input type="hidden" name="form_build_id" value="form-GEwl-Vl9E5-6eATT-e6cn8Zsjarsw4JUHWg_izjUyv0" />
+<input type="hidden" name="form_id" value="user_login" />
+<div class="form-actions form-wrapper" id="edit-actions"><input type="submit" id="edit-submit" name="op" value="Log in" class="form-submit" /></div></div></form>              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-2.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-2.html
new file mode 100644
index 0000000..170dd22
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-2.html
@@ -0,0 +1,91 @@
+<hr />ID #2 (<a href="Drupal_system_Tests_Session_SessionTest-1.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-3.html">Next</a>)<hr />GET request to: user<hr />Ending URL: http://localhost/drupal/index.php/user<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>User account | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"QFGH4bHftCmE6DgB9vdHIbux4HK28mY3ledqkrEP0rk","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html front not-logged-in no-sidebars page-user" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+    
+    
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">User account</h1>                <div class="tabs"><h2 class="element-invisible">Primary tabs</h2><ul class="tabs primary"><li><a href="/drupal/index.php/user/register">Create new account</a></li>
+<li class="active"><a href="/drupal/index.php/user" class="active">Log in<span class="element-invisible">(active tab)</span></a></li>
+<li><a href="/drupal/index.php/user/password">Request new password</a></li>
+</ul></div>                        <form class="user-login" action="/drupal/index.php/user" method="post" id="user-login" accept-charset="UTF-8"><div><div class="form-item form-type-textfield form-item-name">
+  <label for="edit-name">Username <abbr class="form-required" title="This field is required.">*</abbr></label>
+ <input autofocus="autofocus" aria-describedby="edit-name--description" type="text" id="edit-name" name="name" value="" size="60" maxlength="60" class="form-text required" required="required" aria-required="true" />
+<div class="description" id="edit-name--description">Enter your Drupal username.</div>
+</div>
+<div class="form-item form-type-password form-item-pass">
+  <label for="edit-pass">Password <abbr class="form-required" title="This field is required.">*</abbr></label>
+ <input aria-describedby="edit-pass--description" type="password" id="edit-pass" name="pass" size="60" maxlength="128" class="form-text required" required="required" aria-required="true" />
+<div class="description" id="edit-pass--description">Enter the password that accompanies your username.</div>
+</div>
+<input type="hidden" name="form_build_id" value="form-eC_xfuYONZ4MYP7NblXuJgrDLHRq9i8m6NBpve8yz9Y" />
+<input type="hidden" name="form_id" value="user_login" />
+<div class="form-actions form-wrapper" id="edit-actions"><input type="submit" id="edit-submit" name="op" value="Log in" class="form-submit" /></div></div></form>              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-20.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-20.html
new file mode 100644
index 0000000..6bb5249
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-20.html
@@ -0,0 +1,76 @@
+<hr />ID #20 (<a href="Drupal_system_Tests_Session_SessionTest-19.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-21.html">Next</a>)<hr />GET request to: session-test/get<hr />Ending URL: http://localhost/drupal/index.php/session-test/get<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>Session value | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"jKhpZN1niNfUF8tjtLTSNc1P5Tslp49dKAfi061Ltww","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front not-logged-in no-sidebars page-session-test page-session-test-get" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+    
+    <nav role="navigation" class="breadcrumb"><h2 class="element-invisible">You are here</h2><ol><li><a href="/drupal/index.php/">Home</a></li></ol></nav>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">Session value</h1>                <div class="tabs"></div>                                      </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-21.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-21.html
new file mode 100644
index 0000000..26fb378
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-21.html
@@ -0,0 +1,76 @@
+<hr />ID #21 (<a href="Drupal_system_Tests_Session_SessionTest-20.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-22.html">Next</a>)<hr />GET request to: session-test/get<hr />Ending URL: http://localhost/drupal/index.php/session-test/get<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>Session value | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"vYaDScmKMNjFT91IeU1Le8vEzbFKQR85SfO1T8reyeY","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front not-logged-in no-sidebars page-session-test page-session-test-get" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+    
+    <nav role="navigation" class="breadcrumb"><h2 class="element-invisible">You are here</h2><ol><li><a href="/drupal/index.php/">Home</a></li></ol></nav>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">Session value</h1>                <div class="tabs"></div>                                      </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-22.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-22.html
new file mode 100644
index 0000000..e8215e7
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-22.html
@@ -0,0 +1,76 @@
+<hr />ID #22 (<a href="Drupal_system_Tests_Session_SessionTest-21.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-23.html">Next</a>)<hr />GET request to: session-test/set/kcwv2eel<hr />Ending URL: http://localhost/drupal/index.php/session-test/set/kcwv2eel<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>Set session value | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"V7bOyCqi4E0mkZyy8jwb-E9kCkTS_793XhrOVe0WhzU","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front not-logged-in no-sidebars page-session-test page-session-test-set page-session-test-set-kcwv2eel" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+    
+    <nav role="navigation" class="breadcrumb"><h2 class="element-invisible">You are here</h2><ol><li><a href="/drupal/index.php/">Home</a></li></ol></nav>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">Set session value</h1>                <div class="tabs"></div>                        The current value of the stored session variable has been set to <em class="placeholder">kcwv2eel</em>              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-23.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-23.html
new file mode 100644
index 0000000..aaf6bd6
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-23.html
@@ -0,0 +1,76 @@
+<hr />ID #23 (<a href="Drupal_system_Tests_Session_SessionTest-22.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-24.html">Next</a>)<hr />GET request to: session-test/get<hr />Ending URL: http://localhost/drupal/index.php/session-test/get<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>Session value | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"V7bOyCqi4E0mkZyy8jwb-E9kCkTS_793XhrOVe0WhzU","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front not-logged-in no-sidebars page-session-test page-session-test-get" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+    
+    <nav role="navigation" class="breadcrumb"><h2 class="element-invisible">You are here</h2><ol><li><a href="/drupal/index.php/">Home</a></li></ol></nav>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">Session value</h1>                <div class="tabs"></div>                        The current value of the stored session variable is: <em class="placeholder">kcwv2eel</em>              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-24.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-24.html
new file mode 100644
index 0000000..4e31d3c
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-24.html
@@ -0,0 +1,76 @@
+<hr />ID #24 (<a href="Drupal_system_Tests_Session_SessionTest-23.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-25.html">Next</a>)<hr />GET request to: session-test/no-set/eptwrX62<hr />Ending URL: http://localhost/drupal/index.php/session-test/no-set/eptwrX62<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>Set session value but do not save session | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"V7bOyCqi4E0mkZyy8jwb-E9kCkTS_793XhrOVe0WhzU","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front not-logged-in no-sidebars page-session-test page-session-test-no-set page-session-test-no-set-eptwrx62" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+    
+    <nav role="navigation" class="breadcrumb"><h2 class="element-invisible">You are here</h2><ol><li><a href="/drupal/index.php/">Home</a></li></ol></nav>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">Set session value but do not save session</h1>                <div class="tabs"></div>                        session saving was disabled, and then <em class="placeholder">eptwrX62</em> was set              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-25.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-25.html
new file mode 100644
index 0000000..b25f3f2
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-25.html
@@ -0,0 +1,76 @@
+<hr />ID #25 (<a href="Drupal_system_Tests_Session_SessionTest-24.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-26.html">Next</a>)<hr />GET request to: session-test/get<hr />Ending URL: http://localhost/drupal/index.php/session-test/get<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>Session value | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"V7bOyCqi4E0mkZyy8jwb-E9kCkTS_793XhrOVe0WhzU","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front not-logged-in no-sidebars page-session-test page-session-test-get" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+    
+    <nav role="navigation" class="breadcrumb"><h2 class="element-invisible">You are here</h2><ol><li><a href="/drupal/index.php/">Home</a></li></ol></nav>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">Session value</h1>                <div class="tabs"></div>                        The current value of the stored session variable is: <em class="placeholder">kcwv2eel</em>              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-26.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-26.html
new file mode 100644
index 0000000..2645f7c
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-26.html
@@ -0,0 +1,91 @@
+<hr />ID #26 (<a href="Drupal_system_Tests_Session_SessionTest-25.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-27.html">Next</a>)<hr />GET request to: user<hr />Ending URL: http://localhost/drupal/index.php/user<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>User account | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"V7bOyCqi4E0mkZyy8jwb-E9kCkTS_793XhrOVe0WhzU","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html front not-logged-in no-sidebars page-user" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+    
+    
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">User account</h1>                <div class="tabs"><h2 class="element-invisible">Primary tabs</h2><ul class="tabs primary"><li><a href="/drupal/index.php/user/register">Create new account</a></li>
+<li class="active"><a href="/drupal/index.php/user" class="active">Log in<span class="element-invisible">(active tab)</span></a></li>
+<li><a href="/drupal/index.php/user/password">Request new password</a></li>
+</ul></div>                        <form class="user-login" action="/drupal/index.php/user" method="post" id="user-login" accept-charset="UTF-8"><div><div class="form-item form-type-textfield form-item-name">
+  <label for="edit-name">Username <abbr class="form-required" title="This field is required.">*</abbr></label>
+ <input autofocus="autofocus" aria-describedby="edit-name--description" type="text" id="edit-name" name="name" value="" size="60" maxlength="60" class="form-text required" required="required" aria-required="true" />
+<div class="description" id="edit-name--description">Enter your Drupal username.</div>
+</div>
+<div class="form-item form-type-password form-item-pass">
+  <label for="edit-pass">Password <abbr class="form-required" title="This field is required.">*</abbr></label>
+ <input aria-describedby="edit-pass--description" type="password" id="edit-pass" name="pass" size="60" maxlength="128" class="form-text required" required="required" aria-required="true" />
+<div class="description" id="edit-pass--description">Enter the password that accompanies your username.</div>
+</div>
+<input type="hidden" name="form_build_id" value="form-i0ypxNC9T3Uc51Fzh_yjerMb5RrHehlcO_QR1isj0K4" />
+<input type="hidden" name="form_id" value="user_login" />
+<div class="form-actions form-wrapper" id="edit-actions"><input type="submit" id="edit-submit" name="op" value="Log in" class="form-submit" /></div></div></form>              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-27.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-27.html
new file mode 100644
index 0000000..6bab69a
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-27.html
@@ -0,0 +1,89 @@
+<hr />ID #27 (<a href="Drupal_system_Tests_Session_SessionTest-26.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-28.html">Next</a>)<hr />POST request to: user<hr />Ending URL: http://localhost/drupal/index.php/user/2<hr />Fields: <code><span style="color: #000000">
+<span style="color: #0000BB">&lt;?php&nbsp;</span><span style="color: #007700">array&nbsp;(<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'name'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'sj49xdLC'</span><span style="color: #007700">,<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'pass'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'xrECrVP7z9'</span><span style="color: #007700">,<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'form_build_id'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'form-i0ypxNC9T3Uc51Fzh_yjerMb5RrHehlcO_QR1isj0K4'</span><span style="color: #007700">,<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'form_id'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'user_login'</span><span style="color: #007700">,<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'op'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'Log&nbsp;in'</span><span style="color: #007700">,<br />)</span>
+</span>
+</code><hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>sj49xdLC | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"Ae_SxO11uF9dEhfd_LCR4Ydg_MvLPI_Ug61qVsb8Njg","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front logged-in no-sidebars page-user page-user- page-user-2" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+          <nav role="navigation">
+                <h2 class="element-invisible">Secondary menu</h2><ul id="secondary-menu" class="links inline clearfix"><li class="menu-2 odd first"><a href="/drupal/index.php/user">My account</a></li><li class="menu-12 even last"><a href="/drupal/index.php/user/logout">Log out</a></li></ul>      </nav>
+    
+    <nav role="navigation" class="breadcrumb"><h2 class="element-invisible">You are here</h2><ol><li><a href="/drupal/index.php/">Home</a></li></ol></nav>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">sj49xdLC</h1>                <div class="tabs"><h2 class="element-invisible">Primary tabs</h2><ul class="tabs primary"><li class="active"><a href="/drupal/index.php/user/2" class="active">View<span class="element-invisible">(active tab)</span></a></li>
+<li><a href="/drupal/index.php/user/2/edit">Edit</a></li>
+</ul></div>                        <article class="profile">
+  <div class="form-item form-type-item">
+  <label>Member for </label>
+ 44 sec
+</div>
+</article>
+              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-28.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-28.html
new file mode 100644
index 0000000..b4a31ca
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-28.html
@@ -0,0 +1,76 @@
+<hr />ID #28 (<a href="Drupal_system_Tests_Session_SessionTest-27.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-29.html">Next</a>)<hr />GET request to: session-test/get<hr />Ending URL: http://localhost/drupal/index.php/session-test/get<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>Session value | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"Jt9WPdQmQ59xrZ7LCAMisG_LPz0LbigpOY2cn3LKqWk","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front not-logged-in no-sidebars page-session-test page-session-test-get" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+    
+    <nav role="navigation" class="breadcrumb"><h2 class="element-invisible">You are here</h2><ol><li><a href="/drupal/index.php/">Home</a></li></ol></nav>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">Session value</h1>                <div class="tabs"></div>                                      </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-29.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-29.html
new file mode 100644
index 0000000..22f0ec4
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-29.html
@@ -0,0 +1,76 @@
+<hr />ID #29 (<a href="Drupal_system_Tests_Session_SessionTest-28.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-30.html">Next</a>)<hr />GET request to: session-test/get<hr />Ending URL: http://localhost/drupal/index.php/session-test/get<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>Session value | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"gGyDXB-7LX7u6xaQ338ZdHAHQH-E2KGZUkiBCEF3yXE","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front not-logged-in no-sidebars page-session-test page-session-test-get" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+    
+    <nav role="navigation" class="breadcrumb"><h2 class="element-invisible">You are here</h2><ol><li><a href="/drupal/index.php/">Home</a></li></ol></nav>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">Session value</h1>                <div class="tabs"></div>                                      </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-3.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-3.html
new file mode 100644
index 0000000..8dd436e
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-3.html
@@ -0,0 +1,89 @@
+<hr />ID #3 (<a href="Drupal_system_Tests_Session_SessionTest-2.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-4.html">Next</a>)<hr />POST request to: user<hr />Ending URL: http://localhost/drupal/index.php/user/2<hr />Fields: <code><span style="color: #000000">
+<span style="color: #0000BB">&lt;?php&nbsp;</span><span style="color: #007700">array&nbsp;(<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'name'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'v8kE1xGE'</span><span style="color: #007700">,<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'pass'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'eJLB9M8ucG'</span><span style="color: #007700">,<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'form_build_id'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'form-eC_xfuYONZ4MYP7NblXuJgrDLHRq9i8m6NBpve8yz9Y'</span><span style="color: #007700">,<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'form_id'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'user_login'</span><span style="color: #007700">,<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'op'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'Log&nbsp;in'</span><span style="color: #007700">,<br />)</span>
+</span>
+</code><hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>v8kE1xGE | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"-rXVoaCQfSTGN-dKCZttXEK_GuDvLjRsIA2HM-Nxx6Q","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front logged-in no-sidebars page-user page-user- page-user-2" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+          <nav role="navigation">
+                <h2 class="element-invisible">Secondary menu</h2><ul id="secondary-menu" class="links inline clearfix"><li class="menu-2 odd first"><a href="/drupal/index.php/user">My account</a></li><li class="menu-12 even last"><a href="/drupal/index.php/user/logout">Log out</a></li></ul>      </nav>
+    
+    <nav role="navigation" class="breadcrumb"><h2 class="element-invisible">You are here</h2><ol><li><a href="/drupal/index.php/">Home</a></li></ol></nav>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">v8kE1xGE</h1>                <div class="tabs"><h2 class="element-invisible">Primary tabs</h2><ul class="tabs primary"><li class="active"><a href="/drupal/index.php/user/2" class="active">View<span class="element-invisible">(active tab)</span></a></li>
+<li><a href="/drupal/index.php/user/2/edit">Edit</a></li>
+</ul></div>                        <article class="profile">
+  <div class="form-item form-type-item">
+  <label>Member for </label>
+ 29 sec
+</div>
+</article>
+              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-30.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-30.html
new file mode 100644
index 0000000..60aab4e
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-30.html
@@ -0,0 +1,76 @@
+<hr />ID #30 (<a href="Drupal_system_Tests_Session_SessionTest-29.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-31.html">Next</a>)<hr />GET request to: session-test/get<hr />Ending URL: http://localhost/drupal/index.php/session-test/get<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>Session value | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"zv8DvwKOkSuHKhS1srQy2oW8L_3aEZPc7h7gOaXXTK8","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front not-logged-in no-sidebars page-session-test page-session-test-get" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+    
+    <nav role="navigation" class="breadcrumb"><h2 class="element-invisible">You are here</h2><ol><li><a href="/drupal/index.php/">Home</a></li></ol></nav>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">Session value</h1>                <div class="tabs"></div>                                      </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-31.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-31.html
new file mode 100644
index 0000000..e09f4ee
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-31.html
@@ -0,0 +1,91 @@
+<hr />ID #31 (<a href="Drupal_system_Tests_Session_SessionTest-30.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-32.html">Next</a>)<hr />GET request to: user<hr />Ending URL: http://localhost/drupal/index.php/user<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>User account | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"IapYl4Gm9aQE2y5zB5agvOxyZJk7zmAfRs768rSpcFc","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html front not-logged-in no-sidebars page-user" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+    
+    
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">User account</h1>                <div class="tabs"><h2 class="element-invisible">Primary tabs</h2><ul class="tabs primary"><li><a href="/drupal/index.php/user/register">Create new account</a></li>
+<li class="active"><a href="/drupal/index.php/user" class="active">Log in<span class="element-invisible">(active tab)</span></a></li>
+<li><a href="/drupal/index.php/user/password">Request new password</a></li>
+</ul></div>                        <form class="user-login" action="/drupal/index.php/user" method="post" id="user-login" accept-charset="UTF-8"><div><div class="form-item form-type-textfield form-item-name">
+  <label for="edit-name">Username <abbr class="form-required" title="This field is required.">*</abbr></label>
+ <input autofocus="autofocus" aria-describedby="edit-name--description" type="text" id="edit-name" name="name" value="" size="60" maxlength="60" class="form-text required" required="required" aria-required="true" />
+<div class="description" id="edit-name--description">Enter your Drupal username.</div>
+</div>
+<div class="form-item form-type-password form-item-pass">
+  <label for="edit-pass">Password <abbr class="form-required" title="This field is required.">*</abbr></label>
+ <input aria-describedby="edit-pass--description" type="password" id="edit-pass" name="pass" size="60" maxlength="128" class="form-text required" required="required" aria-required="true" />
+<div class="description" id="edit-pass--description">Enter the password that accompanies your username.</div>
+</div>
+<input type="hidden" name="form_build_id" value="form-cJW_YISsqOJrOYftWcUjDEJaZPau_wrlDMH8eL6BFyk" />
+<input type="hidden" name="form_id" value="user_login" />
+<div class="form-actions form-wrapper" id="edit-actions"><input type="submit" id="edit-submit" name="op" value="Log in" class="form-submit" /></div></div></form>              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-32.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-32.html
new file mode 100644
index 0000000..acde232
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-32.html
@@ -0,0 +1,89 @@
+<hr />ID #32 (<a href="Drupal_system_Tests_Session_SessionTest-31.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-33.html">Next</a>)<hr />POST request to: user<hr />Ending URL: http://localhost/drupal/index.php/user/3<hr />Fields: <code><span style="color: #000000">
+<span style="color: #0000BB">&lt;?php&nbsp;</span><span style="color: #007700">array&nbsp;(<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'name'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'g5ClFh00'</span><span style="color: #007700">,<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'pass'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'u5LunU4xSJ'</span><span style="color: #007700">,<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'form_build_id'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'form-cJW_YISsqOJrOYftWcUjDEJaZPau_wrlDMH8eL6BFyk'</span><span style="color: #007700">,<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'form_id'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'user_login'</span><span style="color: #007700">,<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'op'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'Log&nbsp;in'</span><span style="color: #007700">,<br />)</span>
+</span>
+</code><hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>g5ClFh00 | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"HtZ_NidZIg9wIxXz67yPgf5tXpTpeznegSzO_7Dr4n8","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front logged-in no-sidebars page-user page-user- page-user-3" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+          <nav role="navigation">
+                <h2 class="element-invisible">Secondary menu</h2><ul id="secondary-menu" class="links inline clearfix"><li class="menu-2 odd first"><a href="/drupal/index.php/user">My account</a></li><li class="menu-12 even last"><a href="/drupal/index.php/user/logout">Log out</a></li></ul>      </nav>
+    
+    <nav role="navigation" class="breadcrumb"><h2 class="element-invisible">You are here</h2><ol><li><a href="/drupal/index.php/">Home</a></li></ol></nav>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">g5ClFh00</h1>                <div class="tabs"><h2 class="element-invisible">Primary tabs</h2><ul class="tabs primary"><li class="active"><a href="/drupal/index.php/user/3" class="active">View<span class="element-invisible">(active tab)</span></a></li>
+<li><a href="/drupal/index.php/user/3/edit">Edit</a></li>
+</ul></div>                        <article class="profile">
+  <div class="form-item form-type-item">
+  <label>Member for </label>
+ 47 sec
+</div>
+</article>
+              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-33.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-33.html
new file mode 100644
index 0000000..176275e
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-33.html
@@ -0,0 +1,91 @@
+<hr />ID #33 (<a href="Drupal_system_Tests_Session_SessionTest-32.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-34.html">Next</a>)<hr />GET request to: <hr />Ending URL: http://localhost/drupal/index.php/<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>User account | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"Rca1KZOmYuYXNJK0-z1FRiNhbWyDfTfWoS-X-jDbymI","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html front not-logged-in no-sidebars page-user" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+    
+    
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">User account</h1>                <div class="tabs"><h2 class="element-invisible">Primary tabs</h2><ul class="tabs primary"><li><a href="/drupal/index.php/user/register">Create new account</a></li>
+<li class="active"><a href="/drupal/index.php/user" class="active">Log in<span class="element-invisible">(active tab)</span></a></li>
+<li><a href="/drupal/index.php/user/password">Request new password</a></li>
+</ul></div>                        <form class="user-login" action="/drupal/index.php/" method="post" id="user-login" accept-charset="UTF-8"><div><div class="form-item form-type-textfield form-item-name">
+  <label for="edit-name">Username <abbr class="form-required" title="This field is required.">*</abbr></label>
+ <input autofocus="autofocus" aria-describedby="edit-name--description" type="text" id="edit-name" name="name" value="" size="60" maxlength="60" class="form-text required" required="required" aria-required="true" />
+<div class="description" id="edit-name--description">Enter your Drupal username.</div>
+</div>
+<div class="form-item form-type-password form-item-pass">
+  <label for="edit-pass">Password <abbr class="form-required" title="This field is required.">*</abbr></label>
+ <input aria-describedby="edit-pass--description" type="password" id="edit-pass" name="pass" size="60" maxlength="128" class="form-text required" required="required" aria-required="true" />
+<div class="description" id="edit-pass--description">Enter the password that accompanies your username.</div>
+</div>
+<input type="hidden" name="form_build_id" value="form-ysatGL8xV1RQYgPQh0KsWtRlElCc2FhPMq1yr4w1rMM" />
+<input type="hidden" name="form_id" value="user_login" />
+<div class="form-actions form-wrapper" id="edit-actions"><input type="submit" id="edit-submit" name="op" value="Log in" class="form-submit" /></div></div></form>              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-34.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-34.html
new file mode 100644
index 0000000..0d7dccb
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-34.html
@@ -0,0 +1,91 @@
+<hr />ID #34 (<a href="Drupal_system_Tests_Session_SessionTest-33.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-35.html">Next</a>)<hr />GET request to: <hr />Ending URL: http://localhost/drupal/index.php/<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>User account | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"9mE9z5GAybx_q75s7gq5fzRe-rY-e5IkAjgdH80_al8","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html front not-logged-in no-sidebars page-user" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+    
+    
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">User account</h1>                <div class="tabs"><h2 class="element-invisible">Primary tabs</h2><ul class="tabs primary"><li><a href="/drupal/index.php/user/register">Create new account</a></li>
+<li class="active"><a href="/drupal/index.php/user" class="active">Log in<span class="element-invisible">(active tab)</span></a></li>
+<li><a href="/drupal/index.php/user/password">Request new password</a></li>
+</ul></div>                        <form class="user-login" action="/drupal/index.php/" method="post" id="user-login" accept-charset="UTF-8"><div><div class="form-item form-type-textfield form-item-name">
+  <label for="edit-name">Username <abbr class="form-required" title="This field is required.">*</abbr></label>
+ <input autofocus="autofocus" aria-describedby="edit-name--description" type="text" id="edit-name" name="name" value="" size="60" maxlength="60" class="form-text required" required="required" aria-required="true" />
+<div class="description" id="edit-name--description">Enter your Drupal username.</div>
+</div>
+<div class="form-item form-type-password form-item-pass">
+  <label for="edit-pass">Password <abbr class="form-required" title="This field is required.">*</abbr></label>
+ <input aria-describedby="edit-pass--description" type="password" id="edit-pass" name="pass" size="60" maxlength="128" class="form-text required" required="required" aria-required="true" />
+<div class="description" id="edit-pass--description">Enter the password that accompanies your username.</div>
+</div>
+<input type="hidden" name="form_build_id" value="form-UGITCLb8wjU9AsnVjlmTh986yRJOWe_GGjuAmnOC70U" />
+<input type="hidden" name="form_id" value="user_login" />
+<div class="form-actions form-wrapper" id="edit-actions"><input type="submit" id="edit-submit" name="op" value="Log in" class="form-submit" /></div></div></form>              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-35.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-35.html
new file mode 100644
index 0000000..222f214
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-35.html
@@ -0,0 +1 @@
+<hr />ID #35 (<a href="Drupal_system_Tests_Session_SessionTest-34.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-36.html">Next</a>)<hr />GET request to: session-test/set-message<hr />Ending URL: http://localhost/drupal/index.php/session-test/set-message<hr />A message was set.
\ No newline at end of file
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-36.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-36.html
new file mode 100644
index 0000000..fe74601
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-36.html
@@ -0,0 +1,95 @@
+<hr />ID #36 (<a href="Drupal_system_Tests_Session_SessionTest-35.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-37.html">Next</a>)<hr />GET request to: <hr />Ending URL: http://localhost/drupal/index.php/<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>User account | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"TLJdKNUni_s3I2uF4lEFvzLrgsF-g1j-wu7QMvrRDzI","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html front not-logged-in no-sidebars page-user" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+    
+    
+          <div id="messages"><div class="messages status">
+<h2 class="element-invisible">Status message</h2>
+This is a dummy message.</div>
+</div>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">User account</h1>                <div class="tabs"><h2 class="element-invisible">Primary tabs</h2><ul class="tabs primary"><li><a href="/drupal/index.php/user/register">Create new account</a></li>
+<li class="active"><a href="/drupal/index.php/user" class="active">Log in<span class="element-invisible">(active tab)</span></a></li>
+<li><a href="/drupal/index.php/user/password">Request new password</a></li>
+</ul></div>                        <form class="user-login" action="/drupal/index.php/" method="post" id="user-login" accept-charset="UTF-8"><div><div class="form-item form-type-textfield form-item-name">
+  <label for="edit-name">Username <abbr class="form-required" title="This field is required.">*</abbr></label>
+ <input autofocus="autofocus" aria-describedby="edit-name--description" type="text" id="edit-name" name="name" value="" size="60" maxlength="60" class="form-text required" required="required" aria-required="true" />
+<div class="description" id="edit-name--description">Enter your Drupal username.</div>
+</div>
+<div class="form-item form-type-password form-item-pass">
+  <label for="edit-pass">Password <abbr class="form-required" title="This field is required.">*</abbr></label>
+ <input aria-describedby="edit-pass--description" type="password" id="edit-pass" name="pass" size="60" maxlength="128" class="form-text required" required="required" aria-required="true" />
+<div class="description" id="edit-pass--description">Enter the password that accompanies your username.</div>
+</div>
+<input type="hidden" name="form_build_id" value="form-52r2mc1KAGr9jNI9oSTTcJaBCYNcXQ2x-sB7rSYW1wI" />
+<input type="hidden" name="form_id" value="user_login" />
+<div class="form-actions form-wrapper" id="edit-actions"><input type="submit" id="edit-submit" name="op" value="Log in" class="form-submit" /></div></div></form>              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-37.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-37.html
new file mode 100644
index 0000000..7a84964
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-37.html
@@ -0,0 +1,91 @@
+<hr />ID #37 (<a href="Drupal_system_Tests_Session_SessionTest-36.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-38.html">Next</a>)<hr />GET request to: <hr />Ending URL: http://localhost/drupal/index.php/<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>User account | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"9mE9z5GAybx_q75s7gq5fzRe-rY-e5IkAjgdH80_al8","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html front not-logged-in no-sidebars page-user" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+    
+    
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">User account</h1>                <div class="tabs"><h2 class="element-invisible">Primary tabs</h2><ul class="tabs primary"><li><a href="/drupal/index.php/user/register">Create new account</a></li>
+<li class="active"><a href="/drupal/index.php/user" class="active">Log in<span class="element-invisible">(active tab)</span></a></li>
+<li><a href="/drupal/index.php/user/password">Request new password</a></li>
+</ul></div>                        <form class="user-login" action="/drupal/index.php/" method="post" id="user-login" accept-charset="UTF-8"><div><div class="form-item form-type-textfield form-item-name">
+  <label for="edit-name">Username <abbr class="form-required" title="This field is required.">*</abbr></label>
+ <input autofocus="autofocus" aria-describedby="edit-name--description" type="text" id="edit-name" name="name" value="" size="60" maxlength="60" class="form-text required" required="required" aria-required="true" />
+<div class="description" id="edit-name--description">Enter your Drupal username.</div>
+</div>
+<div class="form-item form-type-password form-item-pass">
+  <label for="edit-pass">Password <abbr class="form-required" title="This field is required.">*</abbr></label>
+ <input aria-describedby="edit-pass--description" type="password" id="edit-pass" name="pass" size="60" maxlength="128" class="form-text required" required="required" aria-required="true" />
+<div class="description" id="edit-pass--description">Enter the password that accompanies your username.</div>
+</div>
+<input type="hidden" name="form_build_id" value="form-UGITCLb8wjU9AsnVjlmTh986yRJOWe_GGjuAmnOC70U" />
+<input type="hidden" name="form_id" value="user_login" />
+<div class="form-actions form-wrapper" id="edit-actions"><input type="submit" id="edit-submit" name="op" value="Log in" class="form-submit" /></div></div></form>              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-38.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-38.html
new file mode 100644
index 0000000..3fd3572
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-38.html
@@ -0,0 +1 @@
+<hr />ID #38 (<a href="Drupal_system_Tests_Session_SessionTest-37.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-39.html">Next</a>)<hr />GET request to: session-test/set-message-but-dont-save<hr />Ending URL: http://localhost/drupal/index.php/session-test/set-message-but-dont-save<hr />A message was set.
\ No newline at end of file
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-39.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-39.html
new file mode 100644
index 0000000..f70bcb8
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-39.html
@@ -0,0 +1,91 @@
+<hr />ID #39 (<a href="Drupal_system_Tests_Session_SessionTest-38.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-40.html">Next</a>)<hr />GET request to: <hr />Ending URL: http://localhost/drupal/index.php/<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>User account | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"9mE9z5GAybx_q75s7gq5fzRe-rY-e5IkAjgdH80_al8","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html front not-logged-in no-sidebars page-user" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+    
+    
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">User account</h1>                <div class="tabs"><h2 class="element-invisible">Primary tabs</h2><ul class="tabs primary"><li><a href="/drupal/index.php/user/register">Create new account</a></li>
+<li class="active"><a href="/drupal/index.php/user" class="active">Log in<span class="element-invisible">(active tab)</span></a></li>
+<li><a href="/drupal/index.php/user/password">Request new password</a></li>
+</ul></div>                        <form class="user-login" action="/drupal/index.php/" method="post" id="user-login" accept-charset="UTF-8"><div><div class="form-item form-type-textfield form-item-name">
+  <label for="edit-name">Username <abbr class="form-required" title="This field is required.">*</abbr></label>
+ <input autofocus="autofocus" aria-describedby="edit-name--description" type="text" id="edit-name" name="name" value="" size="60" maxlength="60" class="form-text required" required="required" aria-required="true" />
+<div class="description" id="edit-name--description">Enter your Drupal username.</div>
+</div>
+<div class="form-item form-type-password form-item-pass">
+  <label for="edit-pass">Password <abbr class="form-required" title="This field is required.">*</abbr></label>
+ <input aria-describedby="edit-pass--description" type="password" id="edit-pass" name="pass" size="60" maxlength="128" class="form-text required" required="required" aria-required="true" />
+<div class="description" id="edit-pass--description">Enter the password that accompanies your username.</div>
+</div>
+<input type="hidden" name="form_build_id" value="form-UGITCLb8wjU9AsnVjlmTh986yRJOWe_GGjuAmnOC70U" />
+<input type="hidden" name="form_id" value="user_login" />
+<div class="form-actions form-wrapper" id="edit-actions"><input type="submit" id="edit-submit" name="op" value="Log in" class="form-submit" /></div></div></form>              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-4.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-4.html
new file mode 100644
index 0000000..7855e12
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-4.html
@@ -0,0 +1,91 @@
+<hr />ID #4 (<a href="Drupal_system_Tests_Session_SessionTest-3.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-5.html">Next</a>)<hr />GET request to: user/logout<hr />Ending URL: http://localhost/drupal/index.php/user<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>User account | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"MVRLHlLXY9iaZHcGoLHc_s3Kffg4sFUAer1IfgwVf4M","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html front not-logged-in no-sidebars page-user" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+    
+    
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">User account</h1>                <div class="tabs"><h2 class="element-invisible">Primary tabs</h2><ul class="tabs primary"><li><a href="/drupal/index.php/user/register">Create new account</a></li>
+<li class="active"><a href="/drupal/index.php/user" class="active">Log in<span class="element-invisible">(active tab)</span></a></li>
+<li><a href="/drupal/index.php/user/password">Request new password</a></li>
+</ul></div>                        <form class="user-login" action="/drupal/index.php/user" method="post" id="user-login" accept-charset="UTF-8"><div><div class="form-item form-type-textfield form-item-name">
+  <label for="edit-name">Username <abbr class="form-required" title="This field is required.">*</abbr></label>
+ <input autofocus="autofocus" aria-describedby="edit-name--description" type="text" id="edit-name" name="name" value="" size="60" maxlength="60" class="form-text required" required="required" aria-required="true" />
+<div class="description" id="edit-name--description">Enter your Drupal username.</div>
+</div>
+<div class="form-item form-type-password form-item-pass">
+  <label for="edit-pass">Password <abbr class="form-required" title="This field is required.">*</abbr></label>
+ <input aria-describedby="edit-pass--description" type="password" id="edit-pass" name="pass" size="60" maxlength="128" class="form-text required" required="required" aria-required="true" />
+<div class="description" id="edit-pass--description">Enter the password that accompanies your username.</div>
+</div>
+<input type="hidden" name="form_build_id" value="form-qKWrooIGSp4FM-yrVr3TYOLTCdPH4OpQinOmwczUuG0" />
+<input type="hidden" name="form_id" value="user_login" />
+<div class="form-actions form-wrapper" id="edit-actions"><input type="submit" id="edit-submit" name="op" value="Log in" class="form-submit" /></div></div></form>              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-40.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-40.html
new file mode 100644
index 0000000..a940b51
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-40.html
@@ -0,0 +1,91 @@
+<hr />ID #40 (<a href="Drupal_system_Tests_Session_SessionTest-39.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-41.html">Next</a>)<hr />GET request to: user<hr />Ending URL: http://localhost/drupal/index.php/user<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>User account | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"IFHorjg2nDNVW71MYmbN8MhQzSMGjmiPAdWGb93_EVk","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html front not-logged-in no-sidebars page-user" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+    
+    
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">User account</h1>                <div class="tabs"><h2 class="element-invisible">Primary tabs</h2><ul class="tabs primary"><li><a href="/drupal/index.php/user/register">Create new account</a></li>
+<li class="active"><a href="/drupal/index.php/user" class="active">Log in<span class="element-invisible">(active tab)</span></a></li>
+<li><a href="/drupal/index.php/user/password">Request new password</a></li>
+</ul></div>                        <form class="user-login" action="/drupal/index.php/user" method="post" id="user-login" accept-charset="UTF-8"><div><div class="form-item form-type-textfield form-item-name">
+  <label for="edit-name">Username <abbr class="form-required" title="This field is required.">*</abbr></label>
+ <input autofocus="autofocus" aria-describedby="edit-name--description" type="text" id="edit-name" name="name" value="" size="60" maxlength="60" class="form-text required" required="required" aria-required="true" />
+<div class="description" id="edit-name--description">Enter your Drupal username.</div>
+</div>
+<div class="form-item form-type-password form-item-pass">
+  <label for="edit-pass">Password <abbr class="form-required" title="This field is required.">*</abbr></label>
+ <input aria-describedby="edit-pass--description" type="password" id="edit-pass" name="pass" size="60" maxlength="128" class="form-text required" required="required" aria-required="true" />
+<div class="description" id="edit-pass--description">Enter the password that accompanies your username.</div>
+</div>
+<input type="hidden" name="form_build_id" value="form-HrwSt9jK8jl9jKHkoIaW3T58XqnIQzazn03p491asqs" />
+<input type="hidden" name="form_id" value="user_login" />
+<div class="form-actions form-wrapper" id="edit-actions"><input type="submit" id="edit-submit" name="op" value="Log in" class="form-submit" /></div></div></form>              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-41.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-41.html
new file mode 100644
index 0000000..d96bd1b
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-41.html
@@ -0,0 +1,89 @@
+<hr />ID #41 (<a href="Drupal_system_Tests_Session_SessionTest-40.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-42.html">Next</a>)<hr />POST request to: user<hr />Ending URL: http://localhost/drupal/index.php/user/2<hr />Fields: <code><span style="color: #000000">
+<span style="color: #0000BB">&lt;?php&nbsp;</span><span style="color: #007700">array&nbsp;(<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'name'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'rbA5hsHi'</span><span style="color: #007700">,<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'pass'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'Sz2m9CHxEJ'</span><span style="color: #007700">,<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'form_build_id'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'form-HrwSt9jK8jl9jKHkoIaW3T58XqnIQzazn03p491asqs'</span><span style="color: #007700">,<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'form_id'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'user_login'</span><span style="color: #007700">,<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'op'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'Log&nbsp;in'</span><span style="color: #007700">,<br />)</span>
+</span>
+</code><hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>rbA5hsHi | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"gjHWQ-DkaxA3VLvnDAUwt1YssQ_w5RwYA0Lb4ZimEWM","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front logged-in no-sidebars page-user page-user- page-user-2" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+          <nav role="navigation">
+                <h2 class="element-invisible">Secondary menu</h2><ul id="secondary-menu" class="links inline clearfix"><li class="menu-2 odd first"><a href="/drupal/index.php/user">My account</a></li><li class="menu-12 even last"><a href="/drupal/index.php/user/logout">Log out</a></li></ul>      </nav>
+    
+    <nav role="navigation" class="breadcrumb"><h2 class="element-invisible">You are here</h2><ol><li><a href="/drupal/index.php/">Home</a></li></ol></nav>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">rbA5hsHi</h1>                <div class="tabs"><h2 class="element-invisible">Primary tabs</h2><ul class="tabs primary"><li class="active"><a href="/drupal/index.php/user/2" class="active">View<span class="element-invisible">(active tab)</span></a></li>
+<li><a href="/drupal/index.php/user/2/edit">Edit</a></li>
+</ul></div>                        <article class="profile">
+  <div class="form-item form-type-item">
+  <label>Member for </label>
+ 1 min 3 sec
+</div>
+</article>
+              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-42.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-42.html
new file mode 100644
index 0000000..957ca57
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-42.html
@@ -0,0 +1,78 @@
+<hr />ID #42 (<a href="Drupal_system_Tests_Session_SessionTest-41.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-43.html">Next</a>)<hr />GET request to: session-test/set/foo<hr />Ending URL: http://localhost/drupal/index.php/session-test/set/foo<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>Set session value | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"gjHWQ-DkaxA3VLvnDAUwt1YssQ_w5RwYA0Lb4ZimEWM","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front logged-in no-sidebars page-session-test page-session-test-set page-session-test-set-foo" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+          <nav role="navigation">
+                <h2 class="element-invisible">Secondary menu</h2><ul id="secondary-menu" class="links inline clearfix"><li class="menu-2 odd first"><a href="/drupal/index.php/user">My account</a></li><li class="menu-12 even last"><a href="/drupal/index.php/user/logout">Log out</a></li></ul>      </nav>
+    
+    <nav role="navigation" class="breadcrumb"><h2 class="element-invisible">You are here</h2><ol><li><a href="/drupal/index.php/">Home</a></li></ol></nav>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">Set session value</h1>                <div class="tabs"></div>                        The current value of the stored session variable has been set to <em class="placeholder">foo</em>              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-43.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-43.html
new file mode 100644
index 0000000..44ada44
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-43.html
@@ -0,0 +1,78 @@
+<hr />ID #43 (<a href="Drupal_system_Tests_Session_SessionTest-42.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-44.html">Next</a>)<hr />GET request to: session-test/set/foo<hr />Ending URL: http://localhost/drupal/index.php/session-test/set/foo<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>Set session value | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"gjHWQ-DkaxA3VLvnDAUwt1YssQ_w5RwYA0Lb4ZimEWM","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front logged-in no-sidebars page-session-test page-session-test-set page-session-test-set-foo" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+          <nav role="navigation">
+                <h2 class="element-invisible">Secondary menu</h2><ul id="secondary-menu" class="links inline clearfix"><li class="menu-2 odd first"><a href="/drupal/index.php/user">My account</a></li><li class="menu-12 even last"><a href="/drupal/index.php/user/logout">Log out</a></li></ul>      </nav>
+    
+    <nav role="navigation" class="breadcrumb"><h2 class="element-invisible">You are here</h2><ol><li><a href="/drupal/index.php/">Home</a></li></ol></nav>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">Set session value</h1>                <div class="tabs"></div>                        The current value of the stored session variable has been set to <em class="placeholder">foo</em>              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-44.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-44.html
new file mode 100644
index 0000000..580bbcf
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-44.html
@@ -0,0 +1,86 @@
+<hr />ID #44 (<a href="Drupal_system_Tests_Session_SessionTest-43.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-45.html">Next</a>)<hr />GET request to: <hr />Ending URL: http://localhost/drupal/index.php/<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>rbA5hsHi | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"gjHWQ-DkaxA3VLvnDAUwt1YssQ_w5RwYA0Lb4ZimEWM","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front logged-in no-sidebars page-user page-user- page-user-2" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+          <nav role="navigation">
+                <h2 class="element-invisible">Secondary menu</h2><ul id="secondary-menu" class="links inline clearfix"><li class="menu-2 odd first"><a href="/drupal/index.php/user">My account</a></li><li class="menu-12 even last"><a href="/drupal/index.php/user/logout">Log out</a></li></ul>      </nav>
+    
+    <nav role="navigation" class="breadcrumb"><h2 class="element-invisible">You are here</h2><ol><li><a href="/drupal/index.php/">Home</a></li></ol></nav>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">rbA5hsHi</h1>                <div class="tabs"><h2 class="element-invisible">Primary tabs</h2><ul class="tabs primary"><li class="active"><a href="/drupal/index.php/user/2" class="active">View<span class="element-invisible">(active tab)</span></a></li>
+<li><a href="/drupal/index.php/user/2/edit">Edit</a></li>
+</ul></div>                        <article class="profile">
+  <div class="form-item form-type-item">
+  <label>Member for </label>
+ 1 min 7 sec
+</div>
+</article>
+              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-45.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-45.html
new file mode 100644
index 0000000..16de0e5
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-45.html
@@ -0,0 +1,86 @@
+<hr />ID #45 (<a href="Drupal_system_Tests_Session_SessionTest-44.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-46.html">Next</a>)<hr />GET request to: <hr />Ending URL: http://localhost/drupal/index.php/<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>rbA5hsHi | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"gjHWQ-DkaxA3VLvnDAUwt1YssQ_w5RwYA0Lb4ZimEWM","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front logged-in no-sidebars page-user page-user- page-user-2" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+          <nav role="navigation">
+                <h2 class="element-invisible">Secondary menu</h2><ul id="secondary-menu" class="links inline clearfix"><li class="menu-2 odd first"><a href="/drupal/index.php/user">My account</a></li><li class="menu-12 even last"><a href="/drupal/index.php/user/logout">Log out</a></li></ul>      </nav>
+    
+    <nav role="navigation" class="breadcrumb"><h2 class="element-invisible">You are here</h2><ol><li><a href="/drupal/index.php/">Home</a></li></ol></nav>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">rbA5hsHi</h1>                <div class="tabs"><h2 class="element-invisible">Primary tabs</h2><ul class="tabs primary"><li class="active"><a href="/drupal/index.php/user/2" class="active">View<span class="element-invisible">(active tab)</span></a></li>
+<li><a href="/drupal/index.php/user/2/edit">Edit</a></li>
+</ul></div>                        <article class="profile">
+  <div class="form-item form-type-item">
+  <label>Member for </label>
+ 1 min 7 sec
+</div>
+</article>
+              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-46.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-46.html
new file mode 100644
index 0000000..f94c794
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-46.html
@@ -0,0 +1,91 @@
+<hr />ID #46 (<a href="Drupal_system_Tests_Session_SessionTest-45.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-47.html">Next</a>)<hr />GET request to: user<hr />Ending URL: http://localhost/drupal/index.php/user<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>User account | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"YYnG3YfY15MFB3B_HjNBLleQ3RnWx-b7rnU1JkA5lMA","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html front not-logged-in no-sidebars page-user" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+    
+    
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">User account</h1>                <div class="tabs"><h2 class="element-invisible">Primary tabs</h2><ul class="tabs primary"><li><a href="/drupal/index.php/user/register">Create new account</a></li>
+<li class="active"><a href="/drupal/index.php/user" class="active">Log in<span class="element-invisible">(active tab)</span></a></li>
+<li><a href="/drupal/index.php/user/password">Request new password</a></li>
+</ul></div>                        <form class="user-login" action="/drupal/index.php/user" method="post" id="user-login" accept-charset="UTF-8"><div><div class="form-item form-type-textfield form-item-name">
+  <label for="edit-name">Username <abbr class="form-required" title="This field is required.">*</abbr></label>
+ <input autofocus="autofocus" aria-describedby="edit-name--description" type="text" id="edit-name" name="name" value="" size="60" maxlength="60" class="form-text required" required="required" aria-required="true" />
+<div class="description" id="edit-name--description">Enter your Drupal username.</div>
+</div>
+<div class="form-item form-type-password form-item-pass">
+  <label for="edit-pass">Password <abbr class="form-required" title="This field is required.">*</abbr></label>
+ <input aria-describedby="edit-pass--description" type="password" id="edit-pass" name="pass" size="60" maxlength="128" class="form-text required" required="required" aria-required="true" />
+<div class="description" id="edit-pass--description">Enter the password that accompanies your username.</div>
+</div>
+<input type="hidden" name="form_build_id" value="form-9KoBAZ3Xvcg-5XH8PB8XrYQLhocjr8qNGxY3JyVGjdc" />
+<input type="hidden" name="form_id" value="user_login" />
+<div class="form-actions form-wrapper" id="edit-actions"><input type="submit" id="edit-submit" name="op" value="Log in" class="form-submit" /></div></div></form>              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-47.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-47.html
new file mode 100644
index 0000000..808c10a
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-47.html
@@ -0,0 +1,89 @@
+<hr />ID #47 (<a href="Drupal_system_Tests_Session_SessionTest-46.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-48.html">Next</a>)<hr />POST request to: user<hr />Ending URL: http://localhost/drupal/index.php/user/2<hr />Fields: <code><span style="color: #000000">
+<span style="color: #0000BB">&lt;?php&nbsp;</span><span style="color: #007700">array&nbsp;(<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'name'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'opCYEAmN'</span><span style="color: #007700">,<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'pass'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'dLpAuM4bTz'</span><span style="color: #007700">,<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'form_build_id'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'form-9KoBAZ3Xvcg-5XH8PB8XrYQLhocjr8qNGxY3JyVGjdc'</span><span style="color: #007700">,<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'form_id'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'user_login'</span><span style="color: #007700">,<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'op'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'Log&nbsp;in'</span><span style="color: #007700">,<br />)</span>
+</span>
+</code><hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>opCYEAmN | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"_jmmIcqwKfuQPOVYm-JRE3AT2bnjaGwUCw0DNnPKz60","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front logged-in no-sidebars page-user page-user- page-user-2" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+          <nav role="navigation">
+                <h2 class="element-invisible">Secondary menu</h2><ul id="secondary-menu" class="links inline clearfix"><li class="menu-2 odd first"><a href="/drupal/index.php/user">My account</a></li><li class="menu-12 even last"><a href="/drupal/index.php/user/logout">Log out</a></li></ul>      </nav>
+    
+    <nav role="navigation" class="breadcrumb"><h2 class="element-invisible">You are here</h2><ol><li><a href="/drupal/index.php/">Home</a></li></ol></nav>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">opCYEAmN</h1>                <div class="tabs"><h2 class="element-invisible">Primary tabs</h2><ul class="tabs primary"><li class="active"><a href="/drupal/index.php/user/2" class="active">View<span class="element-invisible">(active tab)</span></a></li>
+<li><a href="/drupal/index.php/user/2/edit">Edit</a></li>
+</ul></div>                        <article class="profile">
+  <div class="form-item form-type-item">
+  <label>Member for </label>
+ 1 min 15 sec
+</div>
+</article>
+              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-48.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-48.html
new file mode 100644
index 0000000..d89ee87
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-48.html
@@ -0,0 +1,78 @@
+<hr />ID #48 (<a href="Drupal_system_Tests_Session_SessionTest-47.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-49.html">Next</a>)<hr />GET request to: session-test/is-logged-in<hr />Ending URL: http://localhost/drupal/index.php/session-test/is-logged-in<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>Check if user is logged in | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"_jmmIcqwKfuQPOVYm-JRE3AT2bnjaGwUCw0DNnPKz60","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front logged-in no-sidebars page-session-test page-session-test-is-logged-in" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+          <nav role="navigation">
+                <h2 class="element-invisible">Secondary menu</h2><ul id="secondary-menu" class="links inline clearfix"><li class="menu-2 odd first"><a href="/drupal/index.php/user">My account</a></li><li class="menu-12 even last"><a href="/drupal/index.php/user/logout">Log out</a></li></ul>      </nav>
+    
+    <nav role="navigation" class="breadcrumb"><h2 class="element-invisible">You are here</h2><ol><li><a href="/drupal/index.php/">Home</a></li></ol></nav>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">Check if user is logged in</h1>                <div class="tabs"></div>                        User is logged in.              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-49.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-49.html
new file mode 100644
index 0000000..a74427c
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-49.html
@@ -0,0 +1,77 @@
+<hr />ID #49 (<a href="Drupal_system_Tests_Session_SessionTest-48.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-50.html">Next</a>)<hr />GET request to: session-test/id-from-cookie<hr />Ending URL: http://localhost/drupal/index.php/session-test/id-from-cookie<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>Session ID from cookie | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"fhi62sPwI3jGk204praVs6RWMV6QGvv7X5RD4IDyQOE","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front not-logged-in no-sidebars page-session-test page-session-test-id-from-cookie" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+    
+    <nav role="navigation" class="breadcrumb"><h2 class="element-invisible">You are here</h2><ol><li><a href="/drupal/index.php/">Home</a></li></ol></nav>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">Session ID from cookie</h1>                <div class="tabs"></div>                        session_id:
+              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-5.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-5.html
new file mode 100644
index 0000000..c670439
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-5.html
@@ -0,0 +1,77 @@
+<hr />ID #5 (<a href="Drupal_system_Tests_Session_SessionTest-4.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-6.html">Next</a>)<hr />GET request to: session-test/id<hr />Ending URL: http://localhost/drupal/index.php/session-test/id<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>Session ID | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"DOrfdu48rFkkXS41AKI8ihT5QQSXcppPT5Z9uUUby3k","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front not-logged-in no-sidebars page-session-test page-session-test-id" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+    
+    <nav role="navigation" class="breadcrumb"><h2 class="element-invisible">You are here</h2><ol><li><a href="/drupal/index.php/">Home</a></li></ol></nav>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">Session ID</h1>                <div class="tabs"></div>                        session_id:nn3GexyBP2JX1g5jScz6HnaSq01j__cMzNOgNF1S5Ig
+              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-50.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-50.html
new file mode 100644
index 0000000..6f2fb36
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-50.html
@@ -0,0 +1,76 @@
+<hr />ID #50 (<a href="Drupal_system_Tests_Session_SessionTest-49.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-51.html">Next</a>)<hr />GET request to: session-test/is-logged-in<hr />Ending URL: http://localhost/drupal/index.php/session-test/is-logged-in<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>Access denied | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"c1EzP1DSovtUvtTjbqV0DwZoTe8pMFCdTc3no70eAHI","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front not-logged-in no-sidebars page-session-test page-session-test-is-logged-in" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+    
+    
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">Access denied</h1>                <div class="tabs"></div>                        You are not authorized to access this page.              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-6.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-6.html
new file mode 100644
index 0000000..3116b10
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-6.html
@@ -0,0 +1,91 @@
+<hr />ID #6 (<a href="Drupal_system_Tests_Session_SessionTest-5.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-7.html">Next</a>)<hr />GET request to: user<hr />Ending URL: http://localhost/drupal/index.php/user<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>User account | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"DOrfdu48rFkkXS41AKI8ihT5QQSXcppPT5Z9uUUby3k","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html front not-logged-in no-sidebars page-user" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+    
+    
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">User account</h1>                <div class="tabs"><h2 class="element-invisible">Primary tabs</h2><ul class="tabs primary"><li><a href="/drupal/index.php/user/register">Create new account</a></li>
+<li class="active"><a href="/drupal/index.php/user" class="active">Log in<span class="element-invisible">(active tab)</span></a></li>
+<li><a href="/drupal/index.php/user/password">Request new password</a></li>
+</ul></div>                        <form class="user-login" action="/drupal/index.php/user" method="post" id="user-login" accept-charset="UTF-8"><div><div class="form-item form-type-textfield form-item-name">
+  <label for="edit-name">Username <abbr class="form-required" title="This field is required.">*</abbr></label>
+ <input autofocus="autofocus" aria-describedby="edit-name--description" type="text" id="edit-name" name="name" value="" size="60" maxlength="60" class="form-text required" required="required" aria-required="true" />
+<div class="description" id="edit-name--description">Enter your Drupal username.</div>
+</div>
+<div class="form-item form-type-password form-item-pass">
+  <label for="edit-pass">Password <abbr class="form-required" title="This field is required.">*</abbr></label>
+ <input aria-describedby="edit-pass--description" type="password" id="edit-pass" name="pass" size="60" maxlength="128" class="form-text required" required="required" aria-required="true" />
+<div class="description" id="edit-pass--description">Enter the password that accompanies your username.</div>
+</div>
+<input type="hidden" name="form_build_id" value="form-kzivg7KEF-UJuQCzrz18mpOlpuKG3kgfvC5PqEgpRDU" />
+<input type="hidden" name="form_id" value="user_login" />
+<div class="form-actions form-wrapper" id="edit-actions"><input type="submit" id="edit-submit" name="op" value="Log in" class="form-submit" /></div></div></form>              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-7.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-7.html
new file mode 100644
index 0000000..c9b15df
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-7.html
@@ -0,0 +1,4 @@
+<hr />ID #7 (<a href="Drupal_system_Tests_Session_SessionTest-6.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-8.html">Next</a>)<hr />POST request to: user<hr />Ending URL: http://localhost/drupal/index.php/user<hr />Fields: <code><span style="color: #000000">
+<span style="color: #0000BB">&lt;?php&nbsp;</span><span style="color: #007700">array&nbsp;(<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'name'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'session_test_user'</span><span style="color: #007700">,<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'pass'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'eJLB9M8ucG'</span><span style="color: #007700">,<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'form_build_id'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'form-kzivg7KEF-UJuQCzrz18mpOlpuKG3kgfvC5PqEgpRDU'</span><span style="color: #007700">,<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'form_id'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'user_login'</span><span style="color: #007700">,<br />&nbsp;&nbsp;</span><span style="color: #DD0000">'op'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">'Log&nbsp;in'</span><span style="color: #007700">,<br />)</span>
+</span>
+</code><hr />
\ No newline at end of file
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-8.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-8.html
new file mode 100644
index 0000000..06ed77f
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-8.html
@@ -0,0 +1,86 @@
+<hr />ID #8 (<a href="Drupal_system_Tests_Session_SessionTest-7.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-9.html">Next</a>)<hr />GET request to: user<hr />Ending URL: http://localhost/drupal/index.php/user<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>session_test_user | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"JVeNCvikp-2mKq1NfkdhKKibkCrXiH0C7MLGe0R1leY","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front logged-in no-sidebars page-user page-user- page-user-2" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+          <nav role="navigation">
+                <h2 class="element-invisible">Secondary menu</h2><ul id="secondary-menu" class="links inline clearfix"><li class="menu-2 odd first"><a href="/drupal/index.php/user">My account</a></li><li class="menu-12 even last"><a href="/drupal/index.php/user/logout">Log out</a></li></ul>      </nav>
+    
+    <nav role="navigation" class="breadcrumb"><h2 class="element-invisible">You are here</h2><ol><li><a href="/drupal/index.php/">Home</a></li></ol></nav>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">session_test_user</h1>                <div class="tabs"><h2 class="element-invisible">Primary tabs</h2><ul class="tabs primary"><li class="active"><a href="/drupal/index.php/user/2" class="active">View<span class="element-invisible">(active tab)</span></a></li>
+<li><a href="/drupal/index.php/user/2/edit">Edit</a></li>
+</ul></div>                        <article class="profile">
+  <div class="form-item form-type-item">
+  <label>Member for </label>
+ 31 sec
+</div>
+</article>
+              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-9.html b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-9.html
new file mode 100644
index 0000000..bb271bf
--- /dev/null
+++ b/sites/default/files/simpletest/verbose/Drupal_system_Tests_Session_SessionTest-9.html
@@ -0,0 +1,79 @@
+<hr />ID #9 (<a href="Drupal_system_Tests_Session_SessionTest-8.html">Previous</a> | <a href="Drupal_system_Tests_Session_SessionTest-10.html">Next</a>)<hr />GET request to: session-test/id<hr />Ending URL: http://localhost/drupal/index.php/session-test/id<hr /><!DOCTYPE html>
+<html lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8" />
+<meta name="viewport" content="width=device-width" />
+<meta http-equiv="cleartype" content="on" />
+<meta name="HandheldFriendly" content="true" />
+<meta name="MobileOptimized" content="width" />
+<meta name="Generator" content="Drupal 8 (http://drupal.org)" />
+<link rel="shortcut icon" href="http://localhost/drupal/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
+    <title>Session ID | Drupal</title>
+    <style media="all">
+@import url("http://localhost/drupal/core/modules/system/system.base.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/system/system.theme.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/modules/field/theme/field.css?m79dqq");
+@import url("http://localhost/drupal/core/modules/user/user.css?m79dqq");
+</style>
+<style media="all">
+@import url("http://localhost/drupal/core/themes/stark/css/layout.css?m79dqq");
+</style>
+    
+<!--[if lte IE 8]>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/html5.js?v=11"></script>
+<![endif]-->
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.js?v=1.7.0"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/jquery.once.js?v=1.2"></script>
+<script type="text/javascript" src="http://localhost/drupal/core/misc/drupal.js?m79dqq"></script>
+<script type="text/javascript">
+<!--//--><![CDATA[//><!--
+jQuery.extend(Drupal.settings, {"basePath":"\/drupal\/","scriptPath":"index.php\/","pathPrefix":"","ajaxPageState":{"theme":"stark","theme_token":"JVeNCvikp-2mKq1NfkdhKKibkCrXiH0C7MLGe0R1leY","js":{"core\/misc\/html5.js":1,"core\/misc\/jquery.js":1,"core\/misc\/jquery.once.js":1,"core\/misc\/drupal.js":1},"css":{"core\/modules\/system\/system.base.css":1,"core\/modules\/system\/system.theme.css":1,"core\/modules\/field\/theme\/field.css":1,"core\/modules\/user\/user.css":1,"core\/themes\/stark\/css\/layout.css":1}}});
+//--><!]]>
+</script>
+  </head>
+  <body class="html not-front logged-in no-sidebars page-session-test page-session-test-id" >
+    <div id="skip-link">
+      <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
+    </div>
+        
+  <div id="page">
+    <header id="header" role="banner" class="clearfix">
+
+              <a href="/drupal/index.php/" title="Home" rel="home" id="logo">
+          <img src="http://localhost/drupal/core/themes/stark/logo.png" alt="Home" />
+        </a>
+      
+              <div id="name-and-slogan">
+                                    <p id="site-name"><strong>
+                <a href="/drupal/index.php/" title="Home" rel="home">Drupal</a>
+              </strong></p>
+                      
+                  </div><!-- #name-and-slogan -->
+      
+      
+    </header>
+
+          <nav role="navigation">
+                <h2 class="element-invisible">Secondary menu</h2><ul id="secondary-menu" class="links inline clearfix"><li class="menu-2 odd first"><a href="/drupal/index.php/user">My account</a></li><li class="menu-12 even last"><a href="/drupal/index.php/user/logout">Log out</a></li></ul>      </nav>
+    
+    <nav role="navigation" class="breadcrumb"><h2 class="element-invisible">You are here</h2><ol><li><a href="/drupal/index.php/">Home</a></li></ol></nav>
+    
+    <div id="main" role="main" class="clearfix">
+    <a id="main-content"></a>
+
+      <div id="content" class="column">
+                        <h1 class="title" id="page-title">Session ID</h1>                <div class="tabs"></div>                        session_id:jZW5mGU-2AnM00vv8TucsSfpi1U1BvETe4g3PZzxlT4
+              </div>
+
+      
+      
+    </div><!-- #main -->
+
+    <footer id="footer" role="contentinfo">
+          </footer>
+
+  </div><!-- #page -->
+      </body>
+</html>
diff --git a/sites/default/settings.php b/sites/default/settings.php
new file mode 100644
index 0000000..6679a1f
--- /dev/null
+++ b/sites/default/settings.php
@@ -0,0 +1,576 @@
+<?php
+
+/**
+ * @file
+ * Drupal site-specific configuration file.
+ *
+ * IMPORTANT NOTE:
+ * This file may have been set to read-only by the Drupal installation
+ * program. If you make changes to this file, be sure to protect it again
+ * after making your modifications. Failure to remove write permissions
+ * to this file is a security risk.
+ *
+ * The configuration file to be loaded is based upon the rules below.
+ *
+ * The configuration directory will be discovered by stripping the
+ * website's hostname from left to right and pathname from right to
+ * left. The first configuration file found will be used and any
+ * others will be ignored. If no other configuration file is found
+ * then the default configuration file at 'sites/default' will be used.
+ *
+ * For example, for a fictitious site installed at
+ * http://www.drupal.org/mysite/test/, the 'settings.php'
+ * is searched in the following directories:
+ *
+ * - sites/www.drupal.org.mysite.test
+ * - sites/drupal.org.mysite.test
+ * - sites/org.mysite.test
+ *
+ * - sites/www.drupal.org.mysite
+ * - sites/drupal.org.mysite
+ * - sites/org.mysite
+ *
+ * - sites/www.drupal.org
+ * - sites/drupal.org
+ * - sites/org
+ *
+ * - sites/default
+ *
+ * If you are installing on a non-standard port number, prefix the
+ * hostname with that number. For example,
+ * http://www.drupal.org:8080/mysite/test/ could be loaded from
+ * sites/8080.www.drupal.org.mysite.test/.
+ */
+
+/**
+ * Database settings:
+ *
+ * The $databases array specifies the database connection or
+ * connections that Drupal may use.  Drupal is able to connect
+ * to multiple databases, including multiple types of databases,
+ * during the same request.
+ *
+ * Each database connection is specified as an array of settings,
+ * similar to the following:
+ * @code
+ * array(
+ *   'driver' => 'mysql',
+ *   'database' => 'databasename',
+ *   'username' => 'username',
+ *   'password' => 'password',
+ *   'host' => 'localhost',
+ *   'port' => 3306,
+ *   'prefix' => 'myprefix_',
+ *   'collation' => 'utf8_general_ci',
+ * );
+ * @endcode
+ *
+ * The "driver" property indicates what Drupal database driver the
+ * connection should use.  This is usually the same as the name of the
+ * database type, such as mysql or sqlite, but not always.  The other
+ * properties will vary depending on the driver.  For SQLite, you must
+ * specify a database file name in a directory that is writable by the
+ * webserver.  For most other drivers, you must specify a
+ * username, password, host, and database name.
+ *
+ * Transaction support is enabled by default for all drivers that support it,
+ * including MySQL. To explicitly disable it, set the 'transactions' key to
+ * FALSE.
+ * Note that some configurations of MySQL, such as the MyISAM engine, don't
+ * support it and will proceed silently even if enabled. If you experience
+ * transaction related crashes with such configuration, set the 'transactions'
+ * key to FALSE.
+ *
+ * For each database, you may optionally specify multiple "target" databases.
+ * A target database allows Drupal to try to send certain queries to a
+ * different database if it can but fall back to the default connection if not.
+ * That is useful for master/slave replication, as Drupal may try to connect
+ * to a slave server when appropriate and if one is not available will simply
+ * fall back to the single master server.
+ *
+ * The general format for the $databases array is as follows:
+ * @code
+ * $databases['default']['default'] = $info_array;
+ * $databases['default']['slave'][] = $info_array;
+ * $databases['default']['slave'][] = $info_array;
+ * $databases['extra']['default'] = $info_array;
+ * @endcode
+ *
+ * In the above example, $info_array is an array of settings described above.
+ * The first line sets a "default" database that has one master database
+ * (the second level default).  The second and third lines create an array
+ * of potential slave databases.  Drupal will select one at random for a given
+ * request as needed.  The fourth line creates a new database with a name of
+ * "extra".
+ *
+ * For a single database configuration, the following is sufficient:
+ * @code
+ * $databases['default']['default'] = array(
+ *   'driver' => 'mysql',
+ *   'database' => 'databasename',
+ *   'username' => 'username',
+ *   'password' => 'password',
+ *   'host' => 'localhost',
+ *   'prefix' => 'main_',
+ *   'collation' => 'utf8_general_ci',
+ * );
+ * @endcode
+ *
+ * You can optionally set prefixes for some or all database table names
+ * by using the 'prefix' setting. If a prefix is specified, the table
+ * name will be prepended with its value. Be sure to use valid database
+ * characters only, usually alphanumeric and underscore. If no prefixes
+ * are desired, leave it as an empty string ''.
+ *
+ * To have all database names prefixed, set 'prefix' as a string:
+ * @code
+ *   'prefix' => 'main_',
+ * @endcode
+ * To provide prefixes for specific tables, set 'prefix' as an array.
+ * The array's keys are the table names and the values are the prefixes.
+ * The 'default' element is mandatory and holds the prefix for any tables
+ * not specified elsewhere in the array. Example:
+ * @code
+ *   'prefix' => array(
+ *     'default'   => 'main_',
+ *     'users'     => 'shared_',
+ *     'sessions'  => 'shared_',
+ *     'role'      => 'shared_',
+ *     'authmap'   => 'shared_',
+ *   ),
+ * @endcode
+ * You can also use a reference to a schema/database as a prefix. This maybe
+ * useful if your Drupal installation exists in a schema that is not the default
+ * or you want to access several databases from the same code base at the same
+ * time.
+ * Example:
+ * @code
+ *   'prefix' => array(
+ *     'default'   => 'main.',
+ *     'users'     => 'shared.',
+ *     'sessions'  => 'shared.',
+ *     'role'      => 'shared.',
+ *     'authmap'   => 'shared.',
+ *   );
+ * @endcode
+ * NOTE: MySQL and SQLite's definition of a schema is a database.
+ *
+ * Advanced users can add or override initial commands to execute when
+ * connecting to the database server, as well as PDO connection settings. For
+ * example, to enable MySQL SELECT queries to exceed the max_join_size system
+ * variable, and to reduce the database connection timeout to 5 seconds:
+ *
+ * @code
+ * $databases['default']['default'] = array(
+ *   'init_commands' => array(
+ *     'big_selects' => 'SET SQL_BIG_SELECTS=1',
+ *   ),
+ *   'pdo' => array(
+ *     PDO::ATTR_TIMEOUT => 5,
+ *   ),
+ * );
+ * @endcode
+ *
+ * WARNING: These defaults are designed for database portability. Changing them
+ * may cause unexpected behavior, including potential data loss.
+ *
+ * @see DatabaseConnection_mysql::__construct
+ * @see DatabaseConnection_pgsql::__construct
+ * @see DatabaseConnection_sqlite::__construct
+ *
+ * Database configuration format:
+ * @code
+ *   $databases['default']['default'] = array(
+ *     'driver' => 'mysql',
+ *     'database' => 'databasename',
+ *     'username' => 'username',
+ *     'password' => 'password',
+ *     'host' => 'localhost',
+ *     'prefix' => '',
+ *   );
+ *   $databases['default']['default'] = array(
+ *     'driver' => 'pgsql',
+ *     'database' => 'databasename',
+ *     'username' => 'username',
+ *     'password' => 'password',
+ *     'host' => 'localhost',
+ *     'prefix' => '',
+ *   );
+ *   $databases['default']['default'] = array(
+ *     'driver' => 'sqlite',
+ *     'database' => '/path/to/databasefilename',
+ *   );
+ * @endcode
+ */
+$databases = array (
+  'default' => 
+  array (
+    'default' => 
+    array (
+      'database' => 'test_d8',
+      'username' => 'root',
+      'password' => '',
+      'host' => 'localhost',
+      'port' => '',
+      'driver' => 'mysql',
+      'prefix' => '',
+    ),
+  ),
+);
+
+/**
+ * Access control for update.php script.
+ *
+ * If you are updating your Drupal installation using the update.php script but
+ * are not logged in using either an account with the "Administer software
+ * updates" permission or the site maintenance account (the account that was
+ * created during installation), you will need to modify the access check
+ * statement below. Change the FALSE to a TRUE to disable the access check.
+ * After finishing the upgrade, be sure to open this file again and change the
+ * TRUE back to a FALSE!
+ */
+$update_free_access = FALSE;
+
+/**
+ * Salt for one-time login links and cancel links, form tokens, etc.
+ *
+ * This variable will be set to a random value by the installer. All one-time
+ * login links will be invalidated if the value is changed. Note that if your
+ * site is deployed on a cluster of web servers, you must ensure that this
+ * variable has the same value on each server. If this variable is empty, a hash
+ * of the serialized database credentials will be used as a fallback salt.
+ *
+ * For enhanced security, you may set this variable to a value using the
+ * contents of a file outside your docroot that is never saved together
+ * with any backups of your Drupal files and database.
+ *
+ * Example:
+ *   $drupal_hash_salt = file_get_contents('/home/example/salt.txt');
+ *
+ */
+$drupal_hash_salt = 'mJEIbNlt8LcWuSVyydFpdFtQV8yDD2JIwI3C8ot8UOA';
+
+/**
+ * Location of the site configuration files.
+ *
+ * By default, Drupal configuration files are stored in a randomly named
+ * directory under the default public files path. On install the
+ * named directory is created in the default files directory. For enhanced
+ * security, you may set this variable to a location outside your docroot.
+ *
+ * @todo Flesh this out, provide more details, etc.
+ *
+ * Example:
+ *   $config_directory_name = '/some/directory/outside/webroot';
+ */
+$config_directory_name = 'config_oEMEb3KzJOrLIWK_tqxq8--BrpQtOoOxpEgFkeKFH8M';
+
+/**
+ * Base URL (optional).
+ *
+ * If Drupal is generating incorrect URLs on your site, which could
+ * be in HTML headers (links to CSS and JS files) or visible links on pages
+ * (such as in menus), uncomment the Base URL statement below (remove the
+ * leading hash sign) and fill in the absolute URL to your Drupal installation.
+ *
+ * You might also want to force users to use a given domain.
+ * See the .htaccess file for more information.
+ *
+ * Examples:
+ *   $base_url = 'http://www.example.com';
+ *   $base_url = 'http://www.example.com:8888';
+ *   $base_url = 'http://www.example.com/drupal';
+ *   $base_url = 'https://www.example.com:8888/drupal';
+ *
+ * It is not allowed to have a trailing slash; Drupal will add it
+ * for you.
+ */
+# $base_url = 'http://www.example.com';  // NO trailing slash!
+
+/**
+ * PHP settings:
+ *
+ * To see what PHP settings are possible, including whether they can be set at
+ * runtime (by using ini_set()), read the PHP documentation:
+ * http://php.net/manual/ini.list.php
+ * See drupal_environment_initialize() in core/includes/bootstrap.inc for
+ * required runtime settings and the .htaccess file for non-runtime settings.
+ * Settings defined there should not be duplicated here so as to avoid conflict
+ * issues.
+ */
+
+/**
+ * Some distributions of Linux (most notably Debian) ship their PHP
+ * installations with garbage collection (gc) disabled. Since Drupal depends on
+ * PHP's garbage collection for clearing sessions, ensure that garbage
+ * collection occurs by using the most common settings.
+ */
+ini_set('session.gc_probability', 1);
+ini_set('session.gc_divisor', 100);
+
+/**
+ * Set session lifetime (in seconds), i.e. the time from the user's last visit
+ * to the active session may be deleted by the session garbage collector. When
+ * a session is deleted, authenticated users are logged out, and the contents
+ * of the user's $_SESSION variable is discarded.
+ */
+ini_set('session.gc_maxlifetime', 200000);
+
+/**
+ * Set session cookie lifetime (in seconds), i.e. the time from the session is
+ * created to the cookie expires, i.e. when the browser is expected to discard
+ * the cookie. The value 0 means "until the browser is closed".
+ */
+ini_set('session.cookie_lifetime', 2000000);
+
+/**
+ * If you encounter a situation where users post a large amount of text, and
+ * the result is stripped out upon viewing but can still be edited, Drupal's
+ * output filter may not have sufficient memory to process it.  If you
+ * experience this issue, you may wish to uncomment the following two lines
+ * and increase the limits of these variables.  For more information, see
+ * http://php.net/manual/pcre.configuration.php.
+ */
+# ini_set('pcre.backtrack_limit', 200000);
+# ini_set('pcre.recursion_limit', 200000);
+
+/**
+ * Drupal automatically generates a unique session cookie name for each site
+ * based on its full domain name. If you have multiple domains pointing at the
+ * same Drupal site, you can either redirect them all to a single domain (see
+ * comment in .htaccess), or uncomment the line below and specify their shared
+ * base domain. Doing so assures that users remain logged in as they cross
+ * between your various domains. Make sure to always start the $cookie_domain
+ * with a leading dot, as per RFC 2109.
+ */
+# $cookie_domain = '.example.com';
+
+/**
+ * Variable overrides:
+ *
+ * To override specific entries in the 'variable' table for this site,
+ * set them here. You usually don't need to use this feature. This is
+ * useful in a configuration file for a vhost or directory, rather than
+ * the default settings.php. Any configuration setting from the 'variable'
+ * table can be given a new value. Note that any values you provide in
+ * these variable overrides will not be modifiable from the Drupal
+ * administration interface.
+ *
+ * The following overrides are examples:
+ * - site_name: Defines the site's name.
+ * - theme_default: Defines the default theme for this site.
+ * - anonymous: Defines the human-readable name of anonymous users.
+ * Remove the leading hash signs to enable.
+ */
+# $conf['site_name'] = 'My Drupal site';
+# $conf['theme_default'] = 'stark';
+# $conf['anonymous'] = 'Visitor';
+
+/**
+ * A custom theme can be set for the offline page. This applies when the site
+ * is explicitly set to maintenance mode through the administration page or when
+ * the database is inactive due to an error. It can be set through the
+ * 'maintenance_theme' key. The template file should also be copied into the
+ * theme. It is located inside 'core/modules/system/maintenance-page.tpl.php'.
+ * Note: This setting does not apply to installation and update pages.
+ */
+# $conf['maintenance_theme'] = 'bartik';
+
+/**
+ * Reverse Proxy Configuration:
+ *
+ * Reverse proxy servers are often used to enhance the performance
+ * of heavily visited sites and may also provide other site caching,
+ * security, or encryption benefits. In an environment where Drupal
+ * is behind a reverse proxy, the real IP address of the client should
+ * be determined such that the correct client IP address is available
+ * to Drupal's logging, statistics, and access management systems. In
+ * the most simple scenario, the proxy server will add an
+ * X-Forwarded-For header to the request that contains the client IP
+ * address. However, HTTP headers are vulnerable to spoofing, where a
+ * malicious client could bypass restrictions by setting the
+ * X-Forwarded-For header directly. Therefore, Drupal's proxy
+ * configuration requires the IP addresses of all remote proxies to be
+ * specified in $conf['reverse_proxy_addresses'] to work correctly.
+ *
+ * Enable this setting to get Drupal to determine the client IP from
+ * the X-Forwarded-For header (or $conf['reverse_proxy_header'] if set).
+ * If you are unsure about this setting, do not have a reverse proxy,
+ * or Drupal operates in a shared hosting environment, this setting
+ * should remain commented out.
+ *
+ * In order for this setting to be used you must specify every possible
+ * reverse proxy IP address in $conf['reverse_proxy_addresses'].
+ * If a complete list of reverse proxies is not available in your
+ * environment (for example, if you use a CDN) you may set the
+ * $_SERVER['REMOTE_ADDR'] variable directly in settings.php.
+ * Be aware, however, that it is likely that this would allow IP
+ * address spoofing unless more advanced precautions are taken.
+ */
+# $conf['reverse_proxy'] = TRUE;
+
+/**
+ * Specify every reverse proxy IP address in your environment.
+ * This setting is required if $conf['reverse_proxy'] is TRUE.
+ */
+# $conf['reverse_proxy_addresses'] = array('a.b.c.d', ...);
+
+/**
+ * Set this value if your proxy server sends the client IP in a header
+ * other than X-Forwarded-For.
+ */
+# $conf['reverse_proxy_header'] = 'HTTP_X_CLUSTER_CLIENT_IP';
+
+/**
+ * Page caching:
+ *
+ * By default, Drupal sends a "Vary: Cookie" HTTP header for anonymous page
+ * views. This tells a HTTP proxy that it may return a page from its local
+ * cache without contacting the web server, if the user sends the same Cookie
+ * header as the user who originally requested the cached page. Without "Vary:
+ * Cookie", authenticated users would also be served the anonymous page from
+ * the cache. If the site has mostly anonymous users except a few known
+ * editors/administrators, the Vary header can be omitted. This allows for
+ * better caching in HTTP proxies (including reverse proxies), i.e. even if
+ * clients send different cookies, they still get content served from the cache.
+ * However, authenticated users should access the site directly (i.e. not use an
+ * HTTP proxy, and bypass the reverse proxy if one is used) in order to avoid
+ * getting cached pages from the proxy.
+ */
+# $conf['omit_vary_cookie'] = TRUE;
+
+/**
+ * CSS/JS aggregated file gzip compression:
+ *
+ * By default, when CSS or JS aggregation and clean URLs are enabled Drupal will
+ * store a gzip compressed (.gz) copy of the aggregated files. If this file is
+ * available then rewrite rules in the default .htaccess file will serve these
+ * files to browsers that accept gzip encoded content. This allows pages to load
+ * faster for these users and has minimal impact on server load. If you are
+ * using a webserver other than Apache httpd, or a caching reverse proxy that is
+ * configured to cache and compress these files itself you may want to uncomment
+ * one or both of the below lines, which will prevent gzip files being stored.
+ */
+# $conf['css_gzip_compression'] = FALSE;
+# $conf['js_gzip_compression'] = FALSE;
+
+/**
+ * String overrides:
+ *
+ * To override specific strings on your site with or without enabling locale
+ * module, add an entry to this list. This functionality allows you to change
+ * a small number of your site's default English language interface strings.
+ *
+ * Remove the leading hash signs to enable.
+ */
+# $conf['locale_custom_strings_en'][''] = array(
+#   'forum'      => 'Discussion board',
+#   '@count min' => '@count minutes',
+# );
+
+/**
+ *
+ * IP blocking:
+ *
+ * To bypass database queries for denied IP addresses, use this setting.
+ * Drupal queries the {blocked_ips} table by default on every page request
+ * for both authenticated and anonymous users. This allows the system to
+ * block IP addresses from within the administrative interface and before any
+ * modules are loaded. However on high traffic websites you may want to avoid
+ * this query, allowing you to bypass database access altogether for anonymous
+ * users under certain caching configurations.
+ *
+ * If using this setting, you will need to add back any IP addresses which
+ * you may have blocked via the administrative interface. Each element of this
+ * array represents a blocked IP address. Uncommenting the array and leaving it
+ * empty will have the effect of disabling IP blocking on your site.
+ *
+ * Remove the leading hash signs to enable.
+ */
+# $conf['blocked_ips'] = array(
+#   'a.b.c.d',
+# );
+
+/**
+ * Fast 404 pages:
+ *
+ * Drupal can generate fully themed 404 pages. However, some of these responses
+ * are for images or other resource files that are not displayed to the user.
+ * This can waste bandwidth, and also generate server load.
+ *
+ * The options below return a simple, fast 404 page for URLs matching a
+ * specific pattern:
+ * - 404_fast_paths_exclude: A regular expression to match paths to exclude,
+ *   such as images generated by image styles, or dynamically-resized images.
+ *   If you need to add more paths, you can add '|path' to the expression.
+ * - 404_fast_paths: A regular expression to match paths that should return a
+ *   simple 404 page, rather than the fully themed 404 page. If you don't have
+ *   any aliases ending in htm or html you can add '|s?html?' to the expression.
+ * - 404_fast_html: The html to return for simple 404 pages.
+ *
+ * Add leading hash signs if you would like to disable this functionality.
+ */
+$conf['404_fast_paths_exclude'] = '/\/(?:styles)\//';
+$conf['404_fast_paths'] = '/\.(?:txt|png|gif|jpe?g|css|js|ico|swf|flv|cgi|bat|pl|dll|exe|asp)$/i';
+$conf['404_fast_html'] = '<!DOCTYPE html><head><title>404 Not Found</title></head><body><h1>Not Found</h1><p>The requested URL "@path" was not found on this server.</p></body></html>';
+
+/**
+ * By default, fast 404s are returned as part of the normal page request
+ * process, which will properly serve valid pages that happen to match and will
+ * also log actual 404s to the Drupal log. Alternatively you can choose to
+ * return a 404 now by uncommenting the following line. This will reduce server
+ * load, but will cause even valid pages that happen to match the pattern to
+ * return 404s, rather than the actual page. It will also prevent the Drupal
+ * system log entry. Ensure you understand the effects of this before enabling.
+ *
+ * To enable this functionality, remove the leading hash sign below.
+ */
+# drupal_fast_404();
+
+/**
+ * External access proxy settings:
+ *
+ * If your site must access the Internet via a web proxy then you can enter
+ * the proxy settings here. Currently only basic authentication is supported
+ * by using the username and password variables. The proxy_user_agent variable
+ * can be set to NULL for proxies that require no User-Agent header or to a
+ * non-empty string for proxies that limit requests to a specific agent. The
+ * proxy_exceptions variable is an array of host names to be accessed directly,
+ * not via proxy.
+ */
+# $conf['proxy_server'] = '';
+# $conf['proxy_port'] = 8080;
+# $conf['proxy_username'] = '';
+# $conf['proxy_password'] = '';
+# $conf['proxy_user_agent'] = '';
+# $conf['proxy_exceptions'] = array('127.0.0.1', 'localhost');
+
+/**
+ * Authorized file system operations:
+ *
+ * The Update Manager module included with Drupal provides a mechanism for
+ * site administrators to securely install missing updates for the site
+ * directly through the web user interface by providing either SSH or FTP
+ * credentials. This allows the site to update the new files as the user who
+ * owns all the Drupal files, instead of as the user the webserver is running
+ * as. However, some sites might wish to disable this functionality, and only
+ * update the code directly via SSH or FTP themselves. This setting completely
+ * disables all functionality related to these authorized file operations.
+ *
+ * Remove the leading hash signs to disable.
+ */
+# $conf['allow_authorize_operations'] = FALSE;
+
+/**
+ * Load local development override configuration, if available.
+ *
+ * Use settings.local.php to override variables on secondary (staging,
+ * development, etc) installations of this site. Typically used to disable
+ * caching, JavaScript/CSS compression, re-routing of outgoing e-mails, and
+ * other things that should not happen on development and testing sites.
+ *
+ * Keep this code block at the end of this file to take full effect.
+ */
+# if (file_exists(DRUPAL_ROOT . '/' . $conf_path . '/settings.local.php')) {
+#   include DRUPAL_ROOT . '/' . $conf_path . '/settings.local.php';
+# }
