diff --git a/core/modules/system/lib/Drupal/system/Plugin/Core/Condition/RequestPath.php b/core/modules/system/lib/Drupal/system/Plugin/Core/Condition/RequestPath.php
new file mode 100644
index 0000000..8ce013c
--- /dev/null
+++ b/core/modules/system/lib/Drupal/system/Plugin/Core/Condition/RequestPath.php
@@ -0,0 +1,164 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\system\Plugin\Core\Condition\RequestPath.
+ */
+
+namespace Drupal\system\Plugin\Core\Condition;
+
+use Drupal\Component\Utility\Unicode;
+use Drupal\Core\Condition\ConditionPluginBase;
+use Drupal\Core\Path\AliasManagerInterface;
+use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
+use Drupal\Core\StringTranslation\TranslationInterface;
+use Symfony\Component\DependencyInjection\ContainerInterface;
+use Symfony\Component\HttpFoundation\RequestStack;
+
+
+/**
+ * Provides a 'Request Path' condition.
+ *
+ * @Condition(
+ *   id = "request_path",
+ *   label = @Translation("Request Path"),
+ *   module = "system"
+ * )
+ */
+class RequestPath extends ConditionPluginBase implements ContainerFactoryPluginInterface {
+
+  /**
+   * A request object.
+   *
+   * @var \Symfony\Component\HttpFoundation\RequestStack
+   */
+  protected $requestStack;
+
+  /**
+   * An alias manager to find the alias for the current system path.
+   *
+   * @var \Drupal\Core\Path\AliasManagerInterface
+   */
+  protected $aliasManager;
+
+  /**
+   * The translation manager.
+   *
+   * @var \Drupal\Core\StringTranslation\TranslationInterface
+   */
+  protected $translationManager;
+
+  /**
+   * Constructs a RequestPath condition plugin.
+   *
+   * @param \Symfony\Component\HttpFoundation\RequestStack $request_stack
+   *   The HttpRequest object representing the current request.
+   * @param \Drupal\Core\Path\AliasManagerInterface $alias_manager
+   *   An alias manager to find the alias for the current system path.
+   * @param \Drupal\Core\StringTranslation\TranslationInterface $translation_manager
+   *   The translation manager.
+   * @param array $configuration
+   *   A configuration array containing information about the plugin instance.
+   * @param string $plugin_id
+   *   The plugin_id for the plugin instance.
+   * @param array $plugin_definition
+   *   The plugin implementation definition.
+   */
+  public function __construct(RequestStack $request_stack, AliasManagerInterface $alias_manager, TranslationInterface $translation_manager, array $configuration, $plugin_id, array $plugin_definition) {
+    parent::__construct($configuration, $plugin_id, $plugin_definition);
+    $this->requestStack = $request_stack;
+    $this->aliasManager = $alias_manager;
+    $this->translationManager = $translation_manager;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
+    return new static(
+      $container->get('request_stack'),
+      $container->get('path.alias_manager.cached'),
+      $container->get('string_translation'),
+      $configuration,
+      $plugin_id,
+      $plugin_definition);
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function buildConfigurationForm(array $form, array &$form_state) {
+    $form['pages'] = array(
+      '#type' => 'textarea',
+      '#title' => $this->t('Pages'),
+      '#default_value' => !empty($this->configuration['pages']) ? $this->configuration['pages'] : '',
+      '#description' => $this->t("Specify pages by using their paths. Enter one path per line. The '*' character is a wildcard. Example paths are %user for the current user's page and %user-wildcard for every user page. %front is the front page.", array(
+          '%user' => 'user',
+          '%user-wildcard' => 'user/*',
+          '%front' => '<front>',
+        )),
+    );
+    return parent::buildConfigurationForm($form, $form_state);
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function submitConfigurationForm(array &$form, array &$form_state) {
+    $this->configuration['pages'] = $form_state['values']['pages'];
+    parent::submitConfigurationForm($form, $form_state);
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function summary() {
+    $pages = array_map('trim', explode("\n", $this->configuration['pages']));
+    $pages = implode(', ', $pages);
+    if (!empty($this->configuration['negate'])) {
+      return $this->t('Do not return true on the following pages: @pages', array('@pages' => $pages));
+    }
+    return $this->t('Return true on the following pages: @pages', array('@pages' => $pages));
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function evaluate() {
+    // Convert path to lowercase. This allows comparison of the same path
+    // with different case. Ex: /Page, /page, /PAGE.
+    $pages = Unicode::strtolower($this->configuration['pages']);
+
+    $patterns = preg_split('/(\r\n?|\n)/', $pages);
+    // Compare the lowercase path alias (if any) and internal path.
+    $path = $this->requestStack->getCurrentRequest()->attributes->get('system_path');
+    $path_alias = Unicode::strtolower($this->aliasManager->getAliasByPath($path));
+
+    return $this->matchPath($path_alias, $patterns) || (($path != $path_alias) && $this->matchPath($path, $patterns));
+  }
+
+  /**
+   * Translates a string to the current language or to a given language.
+   *
+   * See the t() documentation for details.
+   */
+  protected function t($string, array $args = array(), array $options = array()) {
+    return $this->translationManager->translate($string, $args, $options);
+  }
+
+  /**
+   * Check if a path matches any pattern in a set of patterns.
+   *
+   * @param string $path
+   *   The path to match.
+   * @param array $patterns
+   *   String containing a set of patterns separated by \n, \r or \r\n.
+   *
+   * @return bool
+   *   TRUE if the path matches a pattern, FALSE otherwise.
+   */
+  protected function matchPath($path, $patterns) {
+    return drupal_match_path($path, $patterns);
+  }
+
+}
diff --git a/core/modules/system/tests/Drupal/system/Tests/Condition/RequestPathConditionTest.php b/core/modules/system/tests/Drupal/system/Tests/Condition/RequestPathConditionTest.php
new file mode 100644
index 0000000..b127bf3
--- /dev/null
+++ b/core/modules/system/tests/Drupal/system/Tests/Condition/RequestPathConditionTest.php
@@ -0,0 +1,140 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\system\Tests\Condition\RequestPathConditionTest.
+ */
+
+namespace Drupal\system\Tests\Condition;
+
+use Drupal\Core\Path\PathMatcher;
+use Drupal\system\Plugin\Core\Condition\RequestPath;
+use Drupal\Tests\UnitTestCase;
+use Symfony\Component\HttpFoundation\Request;
+use Symfony\Component\HttpFoundation\RequestStack;
+
+/**
+ * Tests path processor functionality.
+ *
+ * @group Drupal
+ * @see \Drupal\system\Plugin\Core\Condition\RequestPath
+ */
+class RequestPathConditionTest extends UnitTestCase {
+
+  /**
+   * The request used for testing.
+   *
+   * @var \Symfony\Component\HttpFoundation\Request
+   */
+  protected $request;
+
+  /**
+   * The request path condition plugin under test.
+   *
+   * @var \Drupal\system\Plugin\Core\Condition\RequestPath
+   */
+  protected $condition;
+
+  /**
+   * {@inheritdoc}
+   */
+  public static function getInfo() {
+    return array(
+      'name' => 'Request Path Condition Plugin',
+      'description' => 'Tests that the Request Path Condition, provided by the system module, is working properly.',
+      'group' => 'Condition API',
+    );
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function setUp() {
+    $condition_manager = $this->getMockBuilder('Drupal\Core\Condition\ConditionManager')
+      ->disableOriginalConstructor()
+      ->getMock();
+
+    // Create an alias manager stub.
+    $alias_manager = $this->getMockBuilder('Drupal\Core\Path\AliasManagerInterface')
+      ->getMock();
+
+    // Create an translation manager stub.
+    $translation_manager = $this->getMockBuilder('Drupal\Core\StringTranslation\TranslationInterface')
+      ->getMock();
+
+    $system_path_map = array(
+      // Set up one proper alias that can be resolved to a system path.
+      array('my/aliased/page', NULL, 'foo'),
+    );
+
+    $alias_manager->expects($this->any())
+      ->method('getAliasByPath')
+      ->will($this->returnValueMap($system_path_map));
+
+    // Create a stub config factory with all config settings that will be
+    // checked during this test.
+    $config_factory_stub = $this->getConfigFactoryStub(
+      array(
+        'system.site' => array(
+          'page.front' => 'user',
+        ),
+      )
+    );
+    $this->request = Request::create('http://test.com/my/pass/page');
+
+
+    // The condition checks the system_path attribute of the request so we must
+    // set that to the path we want to evaluate.
+    $this->request->attributes->set('system_path', 'my/pass/page');
+
+    $request_stack = new RequestStack();
+    $request_stack->push($this->request);
+    $this->condition = new RequestPath($request_stack, $alias_manager, $translation_manager, array(), 'request_path', array());
+    $this->condition->setExecutableManager($condition_manager);
+
+    $pages = "my/pass/page\r\nmy/pass/page2\r\nfoo";
+    $this->condition->setConfig('pages', $pages);
+  }
+
+  /**
+   * Tests standard paths.
+   */
+  public function testStandardPaths() {
+    // Check the first configured path and summary.
+    $this->assertTrue($this->condition->evaluate(), 'The system_path my/pass/page passes.');
+
+    // Check the second configured path.
+    $this->request->attributes->set('system_path', 'my/pass/page2');
+    $this->assertTrue($this->condition->evaluate(), 'The system_path my/pass/page2 passes.');
+  }
+
+  /**
+   * Tests alias paths.
+   */
+  public function testAliasPaths() {
+    // Check that a system path that is not included in the pages config, but
+    // whose alias is, passes.
+    $this->request->attributes->set('system_path', 'my/aliased/page');
+    $this->assertTrue($this->condition->evaluate(), 'The system_path my/aliased/page passes.');
+  }
+
+  /**
+   * Tests wildcard paths.
+   */
+  public function testWildcardPaths() {
+    $this->request->attributes->set('system_path', 'my/pass/page3');
+    $this->condition->setConfig('pages', 'my/pass/*');
+    $this->assertTrue($this->condition->evaluate(), 'The system_path my/pass/page3 passes for wildcard paths.');
+  }
+
+  /**
+   * Tests missing paths.
+   */
+  public function testMissingPaths() {
+    // Check that a system path that is not included in the pages config, either
+    // directly or via an alias, fails.
+    $this->request->attributes->set('system_path', 'my/fail/page4');
+    $this->assertFalse($this->condition->evaluate(), 'The system_path my/fail/page4 fails.');
+  }
+
+}
